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

Version Description

  • 02/08/2021
  • Feature - Form field icons in user registration.
  • Feature - Login with username, email or both option.
  • Enhance - Select all option in multiple choice field.
  • Refactor - User Registration List table parsing.
  • Refactor - Settings page design and parsing.
  • Refactor - Metabox parsing from core.
  • Refactor - JS libraries.
  • Refactor - JS Codes.
  • Dev - Introduce new filter hooks for profile update message.
  • Dev - Introduce a new action to add extra validation to edit profile fields.
  • Fix - Email updation issue in edit profile.
  • Fix - Invite code visible in edit profile.
  • Fix - String translation in edit profile.
  • Fix - Class translation issue.
  • Fix - Date field required validation.
Download this release

Release Info

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

Code changes from version 1.9.9 to 2.0.0

assets/css/_forms.scss CHANGED
@@ -89,7 +89,7 @@
89
  margin-bottom: 0;
90
 
91
  &::after {
92
- content: '';
93
  border-radius: 3px;
94
  position: absolute;
95
  left: 32px;
@@ -162,9 +162,9 @@
162
  content: none;
163
  }
164
 
165
- &::after{
166
  display: inline-block;
167
- content: '';
168
  height: 14px;
169
  width: 14px;
170
  background: $white;
@@ -201,15 +201,15 @@
201
  }
202
  }
203
 
204
- .select2-results__option .wrap:before{
205
- content:"\2610";
206
- width:25px;
207
- height:25px;
208
  padding-right: 10px;
209
  }
210
 
211
- .select2-results__option[data-selected=true] .wrap:before{
212
- content:"\2714";
213
  }
214
 
215
  .select2-drop,
@@ -220,7 +220,8 @@
220
  .select2-results {
221
  line-height: 1.5em;
222
 
223
- .select2-results__option, .select2-results__group {
 
224
  margin: 0;
225
  padding: 8px;
226
  }
@@ -271,6 +272,7 @@
271
  border-radius: 4px;
272
  line-height: 1.5;
273
  border: 1px solid #ddd !important;
 
274
 
275
  li {
276
  margin: 0;
@@ -281,12 +283,20 @@
281
  }
282
 
283
  .select2-selection__rendered {
284
- display: block;
 
 
285
 
286
  .select2-selection__choice {
287
- margin-top: 4px;
288
- margin-right: 4px;
289
  line-height: 1.4;
 
 
 
 
 
 
 
290
  }
291
  }
292
  }
89
  margin-bottom: 0;
90
 
91
  &::after {
92
+ content: "";
93
  border-radius: 3px;
94
  position: absolute;
95
  left: 32px;
162
  content: none;
163
  }
164
 
165
+ &::after {
166
  display: inline-block;
167
+ content: "";
168
  height: 14px;
169
  width: 14px;
170
  background: $white;
201
  }
202
  }
203
 
204
+ .select2-results__option .wrap:before {
205
+ content: "\2610";
206
+ width: 25px;
207
+ height: 25px;
208
  padding-right: 10px;
209
  }
210
 
211
+ .select2-results__option[data-selected="true"] .wrap:before {
212
+ content: "\2714";
213
  }
214
 
215
  .select2-drop,
220
  .select2-results {
221
  line-height: 1.5em;
222
 
223
+ .select2-results__option,
224
+ .select2-results__group {
225
  margin: 0;
226
  padding: 8px;
227
  }
272
  border-radius: 4px;
273
  line-height: 1.5;
274
  border: 1px solid #ddd !important;
275
+ padding-left: 4px;
276
 
277
  li {
278
  margin: 0;
283
  }
284
 
285
  .select2-selection__rendered {
286
+ // display: block;
287
+ display: flex;
288
+ margin: 0px;
289
 
290
  .select2-selection__choice {
291
+ margin: 4px;
 
292
  line-height: 1.4;
293
+ display: flex;
294
+ align-items: center;
295
+ justify-content: center;
296
+
297
+ .select2-selection__choice__remove {
298
+ bottom: 0px;
299
+ }
300
  }
301
  }
302
  }
assets/css/_spacing.scss CHANGED
@@ -4,21 +4,30 @@
4
  @include media-breakpoint-up($breakpoint) {
5
  $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
6
 
7
- @each $prop, $abbrev in (margin: m, padding: p) {
8
- @each $size, $length in $grid-spacers {
9
- .ur-#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length !important; }
 
 
 
 
 
 
10
  .ur-#{$abbrev}t#{$infix}-#{$size},
11
  .ur-#{$abbrev}y#{$infix}-#{$size} {
12
  #{$prop}-top: $length !important;
13
  }
 
14
  .ur-#{$abbrev}r#{$infix}-#{$size},
15
  .ur-#{$abbrev}x#{$infix}-#{$size} {
16
  #{$prop}-right: $length !important;
17
  }
 
18
  .ur-#{$abbrev}b#{$infix}-#{$size},
19
  .ur-#{$abbrev}y#{$infix}-#{$size} {
20
  #{$prop}-bottom: $length !important;
21
  }
 
22
  .ur-#{$abbrev}l#{$infix}-#{$size},
23
  .ur-#{$abbrev}x#{$infix}-#{$size} {
24
  #{$prop}-left: $length !important;
@@ -27,21 +36,28 @@
27
  }
28
 
29
  // Negative margins (e.g., where `.ur-mb-n1` is negative version of `.ur-mb-1`)
30
- @each $size, $length in $grid-spacers {
31
- @if $size != 0 {
32
- .ur-m#{$infix}-n#{$size} { margin: -$length !important; }
 
 
 
 
33
  .ur-mt#{$infix}-n#{$size},
34
  .ur-my#{$infix}-n#{$size} {
35
  margin-top: -$length !important;
36
  }
 
37
  .ur-mr#{$infix}-n#{$size},
38
  .ur-mx#{$infix}-n#{$size} {
39
  margin-right: -$length !important;
40
  }
 
41
  .ur-mb#{$infix}-n#{$size},
42
  .ur-my#{$infix}-n#{$size} {
43
  margin-bottom: -$length !important;
44
  }
 
45
  .ur-ml#{$infix}-n#{$size},
46
  .ur-mx#{$infix}-n#{$size} {
47
  margin-left: -$length !important;
@@ -50,22 +66,36 @@
50
  }
51
 
52
  // Some special margin utils
53
- .ur-m#{$infix}-auto { margin: auto !important; }
 
 
 
54
  .ur-mt#{$infix}-auto,
55
  .ur-my#{$infix}-auto {
56
  margin-top: auto !important;
57
  }
 
58
  .ur-mr#{$infix}-auto,
59
  .ur-mx#{$infix}-auto {
60
  margin-right: auto !important;
61
  }
 
62
  .ur-mb#{$infix}-auto,
63
  .ur-my#{$infix}-auto {
64
  margin-bottom: auto !important;
65
  }
 
66
  .ur-ml#{$infix}-auto,
67
  .ur-mx#{$infix}-auto {
68
  margin-left: auto !important;
69
  }
70
  }
71
  }
 
 
 
 
 
 
 
 
4
  @include media-breakpoint-up($breakpoint) {
5
  $infix: breakpoint-infix($breakpoint, $grid-breakpoints);
6
 
7
+ @each $prop,
8
+ $abbrev in (margin: m, padding: p) {
9
+
10
+ @each $size,
11
+ $length in $grid-spacers {
12
+ .ur-#{$abbrev}#{$infix}-#{$size} {
13
+ #{$prop}: $length !important;
14
+ }
15
+
16
  .ur-#{$abbrev}t#{$infix}-#{$size},
17
  .ur-#{$abbrev}y#{$infix}-#{$size} {
18
  #{$prop}-top: $length !important;
19
  }
20
+
21
  .ur-#{$abbrev}r#{$infix}-#{$size},
22
  .ur-#{$abbrev}x#{$infix}-#{$size} {
23
  #{$prop}-right: $length !important;
24
  }
25
+
26
  .ur-#{$abbrev}b#{$infix}-#{$size},
27
  .ur-#{$abbrev}y#{$infix}-#{$size} {
28
  #{$prop}-bottom: $length !important;
29
  }
30
+
31
  .ur-#{$abbrev}l#{$infix}-#{$size},
32
  .ur-#{$abbrev}x#{$infix}-#{$size} {
33
  #{$prop}-left: $length !important;
36
  }
37
 
38
  // Negative margins (e.g., where `.ur-mb-n1` is negative version of `.ur-mb-1`)
39
+ @each $size,
40
+ $length in $grid-spacers {
41
+ @if $size !=0 {
42
+ .ur-m#{$infix}-n#{$size} {
43
+ margin: -$length !important;
44
+ }
45
+
46
  .ur-mt#{$infix}-n#{$size},
47
  .ur-my#{$infix}-n#{$size} {
48
  margin-top: -$length !important;
49
  }
50
+
51
  .ur-mr#{$infix}-n#{$size},
52
  .ur-mx#{$infix}-n#{$size} {
53
  margin-right: -$length !important;
54
  }
55
+
56
  .ur-mb#{$infix}-n#{$size},
57
  .ur-my#{$infix}-n#{$size} {
58
  margin-bottom: -$length !important;
59
  }
60
+
61
  .ur-ml#{$infix}-n#{$size},
62
  .ur-mx#{$infix}-n#{$size} {
63
  margin-left: -$length !important;
66
  }
67
 
68
  // Some special margin utils
69
+ .ur-m#{$infix}-auto {
70
+ margin: auto !important;
71
+ }
72
+
73
  .ur-mt#{$infix}-auto,
74
  .ur-my#{$infix}-auto {
75
  margin-top: auto !important;
76
  }
77
+
78
  .ur-mr#{$infix}-auto,
79
  .ur-mx#{$infix}-auto {
80
  margin-right: auto !important;
81
  }
82
+
83
  .ur-mb#{$infix}-auto,
84
  .ur-my#{$infix}-auto {
85
  margin-bottom: auto !important;
86
  }
87
+
88
  .ur-ml#{$infix}-auto,
89
  .ur-mx#{$infix}-auto {
90
  margin-left: auto !important;
91
  }
92
  }
93
  }
94
+
95
+ .pt-0 {
96
+ padding-top: 0px;
97
+ }
98
+
99
+ .pb-0 {
100
+ padding-bottom: 0px;
101
+ }
assets/css/admin-rtl.css CHANGED
@@ -1,2 +1 @@
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-d-none{display:none!important}.ur-d-inline{display:inline!important}.ur-d-inline-block{display:inline-block!important}.ur-d-block{display:block!important}.ur-d-table{display:table!important}.ur-d-table-row{display:table-row!important}.ur-d-table-cell{display:table-cell!important}.ur-d-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}@media (min-width:576px){.ur-d-sm-none{display:none!important}.ur-d-sm-inline{display:inline!important}.ur-d-sm-inline-block{display:inline-block!important}.ur-d-sm-block{display:block!important}.ur-d-sm-table{display:table!important}.ur-d-sm-table-row{display:table-row!important}.ur-d-sm-table-cell{display:table-cell!important}.ur-d-sm-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-sm-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}}@media (min-width:768px){.ur-d-md-none{display:none!important}.ur-d-md-inline{display:inline!important}.ur-d-md-inline-block{display:inline-block!important}.ur-d-md-block{display:block!important}.ur-d-md-table{display:table!important}.ur-d-md-table-row{display:table-row!important}.ur-d-md-table-cell{display:table-cell!important}.ur-d-md-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-md-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}}@media (min-width:992px){.ur-d-lg-none{display:none!important}.ur-d-lg-inline{display:inline!important}.ur-d-lg-inline-block{display:inline-block!important}.ur-d-lg-block{display:block!important}.ur-d-lg-table{display:table!important}.ur-d-lg-table-row{display:table-row!important}.ur-d-lg-table-cell{display:table-cell!important}.ur-d-lg-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-lg-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}}@media (min-width:1200px){.ur-d-xl-none{display:none!important}.ur-d-xl-inline{display:inline!important}.ur-d-xl-inline-block{display:inline-block!important}.ur-d-xl-block{display:block!important}.ur-d-xl-table{display:table!important}.ur-d-xl-table-row{display:table-row!important}.ur-d-xl-table-cell{display:table-cell!important}.ur-d-xl-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-xl-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}}@media (min-width:1400px){.ur-d-xxl-none{display:none!important}.ur-d-xxl-inline{display:inline!important}.ur-d-xxl-inline-block{display:inline-block!important}.ur-d-xxl-block{display:block!important}.ur-d-xxl-table{display:table!important}.ur-d-xxl-table-row{display:table-row!important}.ur-d-xxl-table-cell{display:table-cell!important}.ur-d-xxl-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-xxl-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}}.ur-flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}@media (min-width:576px){.ur-flex-sm-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-sm-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-sm-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-sm-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-sm-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-sm-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-sm-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-sm-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-sm-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-sm-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-sm-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-sm-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-sm-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-sm-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-sm-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-sm-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-sm-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-sm-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-sm-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-sm-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-sm-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-sm-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-sm-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-sm-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-sm-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-sm-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-sm-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-sm-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-sm-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-sm-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-sm-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}@media (min-width:768px){.ur-flex-md-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-md-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-md-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-md-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-md-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-md-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-md-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-md-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-md-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-md-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-md-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-md-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-md-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-md-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-md-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-md-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-md-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-md-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-md-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-md-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-md-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-md-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-md-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-md-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-md-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-md-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-md-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-md-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-md-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-md-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-md-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}@media (min-width:992px){.ur-flex-lg-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-lg-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-lg-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-lg-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-lg-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-lg-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-lg-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-lg-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-lg-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-lg-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-lg-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-lg-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-lg-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-lg-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-lg-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-lg-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-lg-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-lg-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-lg-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-lg-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-lg-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-lg-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-lg-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-lg-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-lg-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-lg-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-lg-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-lg-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-lg-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-lg-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-lg-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.ur-flex-xl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-xl-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-xl-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-xl-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-xl-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-xl-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-xl-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-xl-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-xl-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-xl-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-xl-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-xl-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-xl-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-xl-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-xl-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-xl-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-xl-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-xl-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-xl-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-xl-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-xl-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-xl-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-xl-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-xl-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-xl-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-xl-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-xl-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-xl-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-xl-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-xl-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-xl-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}@media (min-width:1400px){.ur-flex-xxl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-xxl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-xxl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-xxl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-xxl-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-xxl-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-xxl-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-xxl-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-xxl-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-xxl-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-xxl-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-xxl-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-xxl-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-xxl-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-xxl-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-xxl-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-xxl-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-xxl-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-xxl-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-xxl-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-xxl-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-xxl-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-xxl-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-xxl-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-xxl-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-xxl-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-xxl-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-xxl-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-xxl-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-xxl-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-xxl-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-xxl-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-xxl-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-xxl-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}.ur-ml-auto{margin-right:auto}.ur-mr-auto{margin-right:auto}.ur-h2,.ur-h3,.ur-h4{font-weight:600!important}.ur-h2{font-size:28px!important}.ur-h3{font-size:20px!important}.ur-h4{font-size:16px!important}.ur-text-center{text-align:center}.ur-text-right{text-align:left}.ur-text-muted{color:#b6bbcf}@font-face{font-family:UserRegistration;src:url(../fonts/UserRegistration.eot?nk6vrg);src:url(../fonts/UserRegistration.eot?nk6vrg#iefix) format("embedded-opentype"),url(../fonts/UserRegistration.ttf?nk6vrg) format("truetype"),url(../fonts/UserRegistration.woff?nk6vrg) format("woff"),url(../fonts/UserRegistration.svg?nk6vrg#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-icon-credit-card::before{content:""}.ur-icon-range::before{content:""}.ur-icon-course::before{content:""}.ur-icon-mailerlite::before{content:""}.user-registration-table{width:100%;background:#fff;border-collapse:collapse}.user-registration-table__column-md{width:40%}.user-registration-table__column-sm{width:20%}.user-registration-table__column-auto{width:1%;white-space:nowrap}.user-registration-table__img{height:40px;width:40px;border-radius:4px;overflow:hidden}.user-registration-table caption,.user-registration-table td,.user-registration-table th{padding:1rem .5rem;text-align:right;border-bottom:1px solid #dee0e9}.user-registration-table caption:first-child,.user-registration-table td:first-child,.user-registration-table th:first-child{padding-right:1rem}.user-registration-table caption:last-child,.user-registration-table td:last-child,.user-registration-table th:last-child{padding-left:1rem}.user-registration-table td{vertical-align:top}.user-registration-table caption,.user-registration-table th{font-size:14px;font-weight:500}.user-registration-table thead th{background:#fafafc}.user-registration-table input,.user-registration-table select,.user-registration-table textarea{width:100%;box-shadow:none;border-radius:4px}.ur-form-group{margin-bottom:16px}.ur-label{display:block;width:100%;margin-bottom:8px;color:#4c5477;font-size:13px;font-weight:500;line-height:1.25}.swal2-container .user-registration-swal2-modal .swal2-input,.ur-input{display:block;width:100%;border:1px solid #dee0e9;border-radius:4px}.user-registration-custom-file{color:#676d8a;font-size:14px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;position:relative}.user-registration-custom-file input{position:absolute;z-index:2;width:100%;margin:0;opacity:0}.user-registration-custom-file__label{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;width:100%;padding:2px 8px 2px 2px;background-color:#fff;border:1px solid #dee0e9;border-radius:4px;z-index:1}.user-registration-custom-file__button{margin-right:auto;display:inline-block;background:#676d8a;color:#fff;padding:6px 15px;border-radius:4px}.user-registration-custom-file+.help{margin-top:4px}.ur-form-field--sm{width:80px;-webkit-box-flex:0;-webkit-flex:0 0 80px;flex:0 0 80px}.user-registration-editable-title{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;position:relative}.user-registration-editable-title .user-registration-editable-title__icon{background:#dee0e9;color:#4c5477;width:32px;height:32px;-webkit-box-flex:0;-webkit-flex:0 0 32px;flex:0 0 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}.user-registration-editable-title .user-registration-editable-title__icon::after{content:'';border-radius:3px;position:absolute;right:32px;left:calc(100% - 32px);height:32px;border-radius:3px 0 0 3px;-webkit-transition:all .3s ease 0s;transition:all .3s ease 0s}.user-registration-editable-title .user-registration-editable-title__input{color:#2d3559;background:0 0;font-size:16px;font-weight:500;width:auto;height:32px;padding:4px 8px;pointer-events:none;border:1px solid transparent!important;border-radius:4px 0 0 4px;z-index:1}.user-registration-editable-title .user-registration-editable-title__input.is-editing{border-color:transparent;pointer-events:all}.user-registration-editable-title .user-registration-editable-title__input.is-editing+.user-registration-editable-title__icon{color:#fff;background:#475bb2;border-radius:0 3px 3px 0}.user-registration-editable-title .user-registration-editable-title__input.is-editing+.user-registration-editable-title__icon::after{top:0;left:0;border:1px solid #475bb2}.user-registration-editable-title .user-registration-editable-title__input:focus{box-shadow:none}.user-registration-switch{display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.user-registration-switch input[type=checkbox]{display:none}.user-registration-switch input[type=checkbox].user-registration-switch__control{background:#676d8a;width:28px;height:18px;border-radius:10px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-flex:0;-webkit-flex:0 0 28px;flex:0 0 28px;margin:0;position:relative;border:2px solid #676d8a;-webkit-transition:.1s -webkit-transform ease;transition:.1s -webkit-transform ease;transition:.1s transform ease;transition:.1s transform ease,.1s -webkit-transform ease;box-sizing:border-box}.user-registration-switch input[type=checkbox].user-registration-switch__control::before{content:none}.user-registration-switch input[type=checkbox].user-registration-switch__control::after{display:inline-block;content:'';height:14px;width:14px;background:#fff;border-radius:50%;position:absolute;-webkit-transition:.1s -webkit-transform ease;transition:.1s -webkit-transform ease;transition:.1s transform ease;transition:.1s transform ease,.1s -webkit-transform ease}.user-registration-switch input[type=checkbox]:checked{background:#37b24d;border-color:#37b24d}.user-registration-switch input[type=checkbox]:checked::after{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}.user-registration-switch label{margin:0 8px 0 0!important}.user-registration input{border-color:#dee0e9}.user-registration .select2.select2-container{width:100%!important}.user-registration .select2-results__option .wrap:before{content:"\2610";width:25px;height:25px;padding-left:10px}.user-registration .select2-results__option[data-selected=true] .wrap:before{content:"\2714"}.user-registration .select2-drop,.user-registration .select2-dropdown{z-index:999999!important}.user-registration .select2-results{line-height:1.5em}.user-registration .select2-results .select2-results__group,.user-registration .select2-results .select2-results__option{margin:0;padding:8px}.user-registration .select2-dropdown{border-color:#dee0e9}.user-registration .select2-dropdown--below{box-shadow:0 1px 1px rgba(0,0,0,.1)}.user-registration .select2-dropdown--above{box-shadow:0 -1px 1px rgba(0,0,0,.1)}.user-registration .select2-container .select2-selection__rendered.ui-sortable li{cursor:move}.user-registration .select2-container .select2-selection{border-color:#dee0e9}.user-registration .select2-container .select2-search__field{min-width:20px}.user-registration .select2-container .select2-selection--single{height:32px}.user-registration .select2-container .select2-selection--single .select2-selection__rendered{display:block;line-height:32px;padding-left:24px}.user-registration .select2-container .select2-selection--single .select2-selection__arrow{left:3px;height:30px}.user-registration .select2-container .select2-selection--multiple{min-height:28px;border-radius:4px;line-height:1.5;border:1px solid #ddd!important}.user-registration .select2-container .select2-selection--multiple li{margin:0}.user-registration .select2-container .select2-selection--multiple .select2-selection__choice{padding:2px 6px}.user-registration .select2-container .select2-selection--multiple .select2-selection__rendered{display:block}.user-registration .select2-container .select2-selection--multiple .select2-selection__rendered .select2-selection__choice{margin-top:4px;margin-left:4px;line-height:1.4}.user-registration .select2-container .select2-selection__clear{color:#999;margin-top:-1px}.user-registration .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;height:32px}.user-registration-badge{display:inline-block;font-size:1em;line-height:1;padding:4px 8px;border-radius:10px}.user-registration-badge.user-registration-badge--primary{background:#475bb2;color:#fff}.user-registration-badge.user-registration-badge--primary-subtle{background:#c4cbe7;color:#475bb2}.user-registration-badge.user-registration-badge--secondary{background:#676d8a;color:#fff}.user-registration-badge.user-registration-badge--secondary-subtle{background:#cbced9;color:#676d8a}.user-registration-badge.user-registration-badge--success{background:#37b24d;color:#fff}.user-registration-badge.user-registration-badge--success-subtle{background:#b4e8bd;color:#2b8b3c}.user-registration-badge.user-registration-badge--danger{background:#ff4149;color:#fff}.user-registration-badge.user-registration-badge--danger-subtle{background:#ffdadc;color:#ff4149}.user-registration-badge.user-registration-badge--warning{background:#ffba00;color:#fff}.user-registration-badge.user-registration-badge--warning-subtle{background:#ffeab3;color:#b38200}.user-registration-badge.user-registration-badge--info{background:#2ea2cc;color:#fff}.user-registration-badge.user-registration-badge--info-subtle{background:#bce2f0;color:#2991b7}.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;box-shadow:0 1px 3px rgba(182,187,207,.15)}.ur-form-container .button+.button,.ur-form-container .button+button,.ur-form-container button+.button,.ur-form-container button+button,.user-registration .button+.button,.user-registration .button+button,.user-registration button+.button,.user-registration button+button{margin-right:6px}.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;text-align:center}.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:.9;vertical-align:middle}.ur-form-container .button.button-icon svg,.ur-form-container button.button-icon svg,.user-registration .button.button-icon svg,.user-registration button.button-icon svg{display:block;margin:0 auto}.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.is-active,.ur-form-container button.is-active,.user-registration .button.is-active,.user-registration button.is-active{background:#475bb2;color:#fff;border-color:#475bb2}.ur-form-container .button.is-active:active,.ur-form-container .button.is-active:focus,.ur-form-container .button.is-active:hover,.ur-form-container button.is-active:active,.ur-form-container button.is-active:focus,.ur-form-container button.is-active:hover,.user-registration .button.is-active:active,.user-registration .button.is-active:focus,.user-registration .button.is-active:hover,.user-registration button.is-active:active,.user-registration button.is-active:focus,.user-registration button.is-active:hover{background:#475bb2;color:#fff;border-color:#475bb2}.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}.ur-form-container .button-tertiary,.user-registration .button-tertiary{background:#fff;color:#2d3559;border:1px solid #dee0e9}.ur-form-container .button-tertiary:active,.ur-form-container .button-tertiary:focus,.ur-form-container .button-tertiary:hover,.user-registration .button-tertiary:active,.user-registration .button-tertiary:focus,.user-registration .button-tertiary:hover{background:#f0f1f5;border-color:#dee0e9}.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}.user-registration-button-group{position:relative;display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;vertical-align:middle}.user-registration-button-group .button:not(:first-child),.user-registration-button-group>button:not(:first-child){margin-right:-1px;border-top-right-radius:0;border-bottom-right-radius:0}.user-registration-button-group .button:not(:last-child),.user-registration-button-group>button:not(:last-child){border-top-left-radius:0;border-bottom-left-radius:0}.user-registration-button-group .button,.user-registration-button-group button{margin-left:0!important}.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}.user-registration-card{background:#fff;border-radius:4px;display:block;border:1px solid #dee0e9}.user-registration-card a{text-decoration:none}.user-registration-card__header{padding:16px 20px;border-bottom:1px solid #dee0e9}.user-registration-card__title{font-size:1.25em;line-height:1.3;margin:0}.user-registration-card__body{padding:20px}.user-registration-list-group{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;padding-right:0;margin-bottom:0}.user-registration-list-group--flush>.user-registration-list-group__item{border-width:0 0 1px}.user-registration-list-group--flush>.user-registration-list-group__item:last-child{border-bottom-width:0}.user-registration-list-group--no-gutter .user-registration-list-group__item{padding-left:0;padding-right:0}.user-registration-list-group__item{position:relative;display:block;padding:1rem 1.25rem;background-color:transparent;border:1px solid #dee0e9}.user-registration-list-group__item:first-child{border-top-right-radius:8px;border-top-left-radius:8px}.user-registration-page.user-registration-modal-open{overflow:hidden}.user-registration-page.user-registration-modal-open .user-registration-modal{max-width:100%}.user-registration-modal{position:fixed;top:0;right:0;left:0;height:100%;width:100%;margin:0 auto!important;overflow-x:hidden;overflow-y:auto;z-index:999}.user-registration-modal .user-registration-modal__backdrop{position:fixed;right:0;top:0;background-color:rgba(45,53,89,.5);min-width:100%;min-height:100%;z-index:1}.user-registration-modal .user-registration-modal__content{background:#fff;position:relative;width:auto;margin:16px;border-radius:8px;z-index:99999;box-shadow:0 3px 25px 0 rgba(45,53,89,.4)}@media (min-width:576px){.user-registration-modal .user-registration-modal__content{max-width:500px;margin:24px auto}}@media (min-width:992px){.user-registration-modal .user-registration-modal__content.user-registration-modal__content--lg,.user-registration-modal .user-registration-modal__content.user-registration-modal__content--xl{max-width:800px}}@media (min-width:1200px){.user-registration-modal .user-registration-modal__content.user-registration-modal__content--xl{max-width:1140px}}.user-registration-modal .user-registration-modal__header{display:-webkit-box;display:-webkit-flex;display:flex;padding:16px;border-bottom:1px solid #dee0e9}.user-registration-modal .user-registration-modal__header .user-registration-modal__title{font-size:20px;line-height:1.4;margin:0;padding:0}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon{position:relative;display:block;width:32px;height:32px;-webkit-box-flex:0;-webkit-flex:0 0 32px;flex:0 0 32px;cursor:pointer;margin-right:auto}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::after,.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::before{content:'';height:2px;width:16px;display:block;position:absolute;top:50%;right:0;left:0;margin:0 auto;background:#b6bbcf}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::before{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.user-registration-modal .user-registration-modal__body{position:relative;padding:16px}.user-registration-modal .user-registration-modal__body #user-registration,.user-registration-modal .user-registration-modal__body .login,.user-registration-modal .user-registration-modal__body .user-registration{margin:0;padding:0;border:none}.user-registration-modal .user-registration-modal__footer{padding:16px;border-top:1px solid #dee0e9}.user-registration-modal .user-registration-modal__footer *{margin:4px}.swal2-container .user-registration-swal2-modal{padding:40px}.swal2-container .user-registration-swal2-modal .swal2-input{font-size:16px}.swal2-container .user-registration-swal2-modal .swal2-animate-success-icon [class^=swal2-success-circular-line],.swal2-container .user-registration-swal2-modal .swal2-animate-success-icon [class^=swal2-success-line]{-webkit-animation:none;animation:none}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon{font-size:28px;width:56px;height:56px;line-height:56px;margin:0 auto 16px;border-width:2px;border-radius:50%}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line]{height:3px;width:28px;top:50%;right:0;left:0;margin:0 auto}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line][class$=left]{-webkit-transform:translateY(-50%) rotate(-45deg);-ms-transform:translateY(-50%) rotate(-45deg);transform:translateY(-50%) rotate(-45deg)}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line][class$=right]{-webkit-transform:translateY(-50%) rotate(45deg);-ms-transform:translateY(-50%) rotate(45deg);transform:translateY(-50%) rotate(45deg)}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line]{height:3px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{width:16px;top:56%;right:10px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:47%;width:32px;left:6px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line]{height:64px;width:32px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-75px;right:27px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-26px;right:82px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success .swal2-success-ring{top:-3px;right:-2px;border-width:2px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success .swal2-success-fix{height:64px;right:2px;left:0;margin:0 auto;top:-2px;bottom:0;width:6px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon::before{font-size:40px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-title{color:#2d3559;font-size:24px;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:16px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-title .dashicons{color:#ff4149;font-size:28px;width:56px;height:56px;line-height:56px;margin:0 auto 16px;border:2px solid #ff4149;border-radius:50%}.swal2-container .user-registration-swal2-modal__title{line-height:1.35;display:block}.swal2-container .user-registration-swal2-modal .swal2-content{color:#4c5477;font-size:1em;line-height:1.5}.swal2-container .user-registration-swal2-modal .swal2-actions button{margin-top:0;margin-bottom:0}.swal2-container .user-registration-swal2-modal--centered .swal2-title{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.ur-nav{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;padding-right:0;margin-bottom:0;list-style:none}.ur-nav--tab{display:-webkit-box;display:-webkit-flex;display:flex;border-bottom:1px solid #dee0e9}.user-registration_page_user-registration-settings .ur-nav--tab{padding:0;margin:0 16px;border-bottom:0}.ur-nav__link{display:block;font-weight:500;color:#2d3559;padding:8px 12px;text-decoration:none;border:1px solid transparent}.ur-nav__link:focus,.ur-nav__link:hover{color:#475bb2}.ur-nav__link.is-active{background-color:#475bb2;border-color:#dee0e9 #dee0e9 #fff;border-radius:4px 4px 0 0}.user-registration_page_user-registration-settings .ur-nav__link{background-color:transparent;color:#fff;margin:0}.user-registration_page_user-registration-settings .ur-nav__link.is-active{background-color:#fff;color:#2d3559;border-color:#fff}.ur-scroll-ui{position:relative;overflow-x:auto;overflow-y:hidden}.ur-scroll-ui__items{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto;overflow-y:hidden;white-space:nowrap;scroll-behavior:smooth}.ur-scroll-ui__items::-webkit-scrollbar{display:none}.ur-scroll-ui__item{display:inline-block;height:100%}.ur-scroll-ui__scroll-nav{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;position:absolute;top:0;bottom:0;padding:8px}.ur-scroll-ui__scroll-nav--backward{right:0}.ur-scroll-ui__scroll-nav--forward{left:0}.ur-scroll-ui__scroll-nav__icon{color:#333;cursor:pointer}.ur-scroll-ui .is-disabled{display:none}.ur-bg-light{background-color:#f0f1f5}.ur-border{border:1px solid #dee0e9!important}.ur-border-top{border-top:1px solid #dee0e9!important}.ur-border-right{border-left:1px solid #dee0e9!important}.ur-border-bottom{border-bottom:1px solid #dee0e9!important}.ur-border-left{border-right:1px solid #dee0e9!important}.ur-border-0{border:0!important}.ur-border-top-0{border-top:0!important}.ur-border-right-0{border-left:0!important}.ur-border-bottom-0{border-bottom:0!important}.ur-border-left-0{border-right:0!important}.ur-m-0{margin:0!important}.ur-mt-0,.ur-my-0{margin-top:0!important}.ur-mr-0,.ur-mx-0{margin-left:0!important}.ur-mb-0,.ur-my-0{margin-bottom:0!important}.ur-ml-0,.ur-mx-0{margin-right:0!important}.ur-m-1{margin:4px!important}.ur-mt-1,.ur-my-1{margin-top:4px!important}.ur-mr-1,.ur-mx-1{margin-left:4px!important}.ur-mb-1,.ur-my-1{margin-bottom:4px!important}.ur-ml-1,.ur-mx-1{margin-right:4px!important}.ur-m-2{margin:8px!important}.ur-mt-2,.ur-my-2{margin-top:8px!important}.ur-mr-2,.ur-mx-2{margin-left:8px!important}.ur-mb-2,.ur-my-2{margin-bottom:8px!important}.ur-ml-2,.ur-mx-2{margin-right:8px!important}.ur-m-3{margin:12px!important}.ur-mt-3,.ur-my-3{margin-top:12px!important}.ur-mr-3,.ur-mx-3{margin-left:12px!important}.ur-mb-3,.ur-my-3{margin-bottom:12px!important}.ur-ml-3,.ur-mx-3{margin-right:12px!important}.ur-m-4{margin:16px!important}.ur-mt-4,.ur-my-4{margin-top:16px!important}.ur-mr-4,.ur-mx-4{margin-left:16px!important}.ur-mb-4,.ur-my-4{margin-bottom:16px!important}.ur-ml-4,.ur-mx-4{margin-right:16px!important}.ur-m-5{margin:20px!important}.ur-mt-5,.ur-my-5{margin-top:20px!important}.ur-mr-5,.ur-mx-5{margin-left:20px!important}.ur-mb-5,.ur-my-5{margin-bottom:20px!important}.ur-ml-5,.ur-mx-5{margin-right:20px!important}.ur-m-6{margin:24px!important}.ur-mt-6,.ur-my-6{margin-top:24px!important}.ur-mr-6,.ur-mx-6{margin-left:24px!important}.ur-mb-6,.ur-my-6{margin-bottom:24px!important}.ur-ml-6,.ur-mx-6{margin-right:24px!important}.ur-m-7{margin:28px!important}.ur-mt-7,.ur-my-7{margin-top:28px!important}.ur-mr-7,.ur-mx-7{margin-left:28px!important}.ur-mb-7,.ur-my-7{margin-bottom:28px!important}.ur-ml-7,.ur-mx-7{margin-right:28px!important}.ur-m-8{margin:32px!important}.ur-mt-8,.ur-my-8{margin-top:32px!important}.ur-mr-8,.ur-mx-8{margin-left:32px!important}.ur-mb-8,.ur-my-8{margin-bottom:32px!important}.ur-ml-8,.ur-mx-8{margin-right:32px!important}.ur-p-0{padding:0!important}.ur-pt-0,.ur-py-0{padding-top:0!important}.ur-pr-0,.ur-px-0{padding-left:0!important}.ur-pb-0,.ur-py-0{padding-bottom:0!important}.ur-pl-0,.ur-px-0{padding-right:0!important}.ur-p-1{padding:4px!important}.ur-pt-1,.ur-py-1{padding-top:4px!important}.ur-pr-1,.ur-px-1{padding-left:4px!important}.ur-pb-1,.ur-py-1{padding-bottom:4px!important}.ur-pl-1,.ur-px-1{padding-right:4px!important}.ur-p-2{padding:8px!important}.ur-pt-2,.ur-py-2{padding-top:8px!important}.ur-pr-2,.ur-px-2{padding-left:8px!important}.ur-pb-2,.ur-py-2{padding-bottom:8px!important}.ur-pl-2,.ur-px-2{padding-right:8px!important}.ur-p-3{padding:12px!important}.ur-pt-3,.ur-py-3{padding-top:12px!important}.ur-pr-3,.ur-px-3{padding-left:12px!important}.ur-pb-3,.ur-py-3{padding-bottom:12px!important}.ur-pl-3,.ur-px-3{padding-right:12px!important}.ur-p-4{padding:16px!important}.ur-pt-4,.ur-py-4{padding-top:16px!important}.ur-pr-4,.ur-px-4{padding-left:16px!important}.ur-pb-4,.ur-py-4{padding-bottom:16px!important}.ur-pl-4,.ur-px-4{padding-right:16px!important}.ur-p-5{padding:20px!important}.ur-pt-5,.ur-py-5{padding-top:20px!important}.ur-pr-5,.ur-px-5{padding-left:20px!important}.ur-pb-5,.ur-py-5{padding-bottom:20px!important}.ur-pl-5,.ur-px-5{padding-right:20px!important}.ur-p-6{padding:24px!important}.ur-pt-6,.ur-py-6{padding-top:24px!important}.ur-pr-6,.ur-px-6{padding-left:24px!important}.ur-pb-6,.ur-py-6{padding-bottom:24px!important}.ur-pl-6,.ur-px-6{padding-right:24px!important}.ur-p-7{padding:28px!important}.ur-pt-7,.ur-py-7{padding-top:28px!important}.ur-pr-7,.ur-px-7{padding-left:28px!important}.ur-pb-7,.ur-py-7{padding-bottom:28px!important}.ur-pl-7,.ur-px-7{padding-right:28px!important}.ur-p-8{padding:32px!important}.ur-pt-8,.ur-py-8{padding-top:32px!important}.ur-pr-8,.ur-px-8{padding-left:32px!important}.ur-pb-8,.ur-py-8{padding-bottom:32px!important}.ur-pl-8,.ur-px-8{padding-right:32px!important}.ur-m-n1{margin:-4px!important}.ur-mt-n1,.ur-my-n1{margin-top:-4px!important}.ur-mr-n1,.ur-mx-n1{margin-left:-4px!important}.ur-mb-n1,.ur-my-n1{margin-bottom:-4px!important}.ur-ml-n1,.ur-mx-n1{margin-right:-4px!important}.ur-m-n2{margin:-8px!important}.ur-mt-n2,.ur-my-n2{margin-top:-8px!important}.ur-mr-n2,.ur-mx-n2{margin-left:-8px!important}.ur-mb-n2,.ur-my-n2{margin-bottom:-8px!important}.ur-ml-n2,.ur-mx-n2{margin-right:-8px!important}.ur-m-n3{margin:-12px!important}.ur-mt-n3,.ur-my-n3{margin-top:-12px!important}.ur-mr-n3,.ur-mx-n3{margin-left:-12px!important}.ur-mb-n3,.ur-my-n3{margin-bottom:-12px!important}.ur-ml-n3,.ur-mx-n3{margin-right:-12px!important}.ur-m-n4{margin:-16px!important}.ur-mt-n4,.ur-my-n4{margin-top:-16px!important}.ur-mr-n4,.ur-mx-n4{margin-left:-16px!important}.ur-mb-n4,.ur-my-n4{margin-bottom:-16px!important}.ur-ml-n4,.ur-mx-n4{margin-right:-16px!important}.ur-m-n5{margin:-20px!important}.ur-mt-n5,.ur-my-n5{margin-top:-20px!important}.ur-mr-n5,.ur-mx-n5{margin-left:-20px!important}.ur-mb-n5,.ur-my-n5{margin-bottom:-20px!important}.ur-ml-n5,.ur-mx-n5{margin-right:-20px!important}.ur-m-n6{margin:-24px!important}.ur-mt-n6,.ur-my-n6{margin-top:-24px!important}.ur-mr-n6,.ur-mx-n6{margin-left:-24px!important}.ur-mb-n6,.ur-my-n6{margin-bottom:-24px!important}.ur-ml-n6,.ur-mx-n6{margin-right:-24px!important}.ur-m-n7{margin:-28px!important}.ur-mt-n7,.ur-my-n7{margin-top:-28px!important}.ur-mr-n7,.ur-mx-n7{margin-left:-28px!important}.ur-mb-n7,.ur-my-n7{margin-bottom:-28px!important}.ur-ml-n7,.ur-mx-n7{margin-right:-28px!important}.ur-m-n8{margin:-32px!important}.ur-mt-n8,.ur-my-n8{margin-top:-32px!important}.ur-mr-n8,.ur-mx-n8{margin-left:-32px!important}.ur-mb-n8,.ur-my-n8{margin-bottom:-32px!important}.ur-ml-n8,.ur-mx-n8{margin-right:-32px!important}.ur-m-auto{margin:auto!important}.ur-mt-auto,.ur-my-auto{margin-top:auto!important}.ur-mr-auto,.ur-mx-auto{margin-left:auto!important}.ur-mb-auto,.ur-my-auto{margin-bottom:auto!important}.ur-ml-auto,.ur-mx-auto{margin-right:auto!important}@media (min-width:576px){.ur-m-sm-0{margin:0!important}.ur-mt-sm-0,.ur-my-sm-0{margin-top:0!important}.ur-mr-sm-0,.ur-mx-sm-0{margin-left:0!important}.ur-mb-sm-0,.ur-my-sm-0{margin-bottom:0!important}.ur-ml-sm-0,.ur-mx-sm-0{margin-right:0!important}.ur-m-sm-1{margin:4px!important}.ur-mt-sm-1,.ur-my-sm-1{margin-top:4px!important}.ur-mr-sm-1,.ur-mx-sm-1{margin-left:4px!important}.ur-mb-sm-1,.ur-my-sm-1{margin-bottom:4px!important}.ur-ml-sm-1,.ur-mx-sm-1{margin-right:4px!important}.ur-m-sm-2{margin:8px!important}.ur-mt-sm-2,.ur-my-sm-2{margin-top:8px!important}.ur-mr-sm-2,.ur-mx-sm-2{margin-left:8px!important}.ur-mb-sm-2,.ur-my-sm-2{margin-bottom:8px!important}.ur-ml-sm-2,.ur-mx-sm-2{margin-right:8px!important}.ur-m-sm-3{margin:12px!important}.ur-mt-sm-3,.ur-my-sm-3{margin-top:12px!important}.ur-mr-sm-3,.ur-mx-sm-3{margin-left:12px!important}.ur-mb-sm-3,.ur-my-sm-3{margin-bottom:12px!important}.ur-ml-sm-3,.ur-mx-sm-3{margin-right:12px!important}.ur-m-sm-4{margin:16px!important}.ur-mt-sm-4,.ur-my-sm-4{margin-top:16px!important}.ur-mr-sm-4,.ur-mx-sm-4{margin-left:16px!important}.ur-mb-sm-4,.ur-my-sm-4{margin-bottom:16px!important}.ur-ml-sm-4,.ur-mx-sm-4{margin-right:16px!important}.ur-m-sm-5{margin:20px!important}.ur-mt-sm-5,.ur-my-sm-5{margin-top:20px!important}.ur-mr-sm-5,.ur-mx-sm-5{margin-left:20px!important}.ur-mb-sm-5,.ur-my-sm-5{margin-bottom:20px!important}.ur-ml-sm-5,.ur-mx-sm-5{margin-right:20px!important}.ur-m-sm-6{margin:24px!important}.ur-mt-sm-6,.ur-my-sm-6{margin-top:24px!important}.ur-mr-sm-6,.ur-mx-sm-6{margin-left:24px!important}.ur-mb-sm-6,.ur-my-sm-6{margin-bottom:24px!important}.ur-ml-sm-6,.ur-mx-sm-6{margin-right:24px!important}.ur-m-sm-7{margin:28px!important}.ur-mt-sm-7,.ur-my-sm-7{margin-top:28px!important}.ur-mr-sm-7,.ur-mx-sm-7{margin-left:28px!important}.ur-mb-sm-7,.ur-my-sm-7{margin-bottom:28px!important}.ur-ml-sm-7,.ur-mx-sm-7{margin-right:28px!important}.ur-m-sm-8{margin:32px!important}.ur-mt-sm-8,.ur-my-sm-8{margin-top:32px!important}.ur-mr-sm-8,.ur-mx-sm-8{margin-left:32px!important}.ur-mb-sm-8,.ur-my-sm-8{margin-bottom:32px!important}.ur-ml-sm-8,.ur-mx-sm-8{margin-right:32px!important}.ur-p-sm-0{padding:0!important}.ur-pt-sm-0,.ur-py-sm-0{padding-top:0!important}.ur-pr-sm-0,.ur-px-sm-0{padding-left:0!important}.ur-pb-sm-0,.ur-py-sm-0{padding-bottom:0!important}.ur-pl-sm-0,.ur-px-sm-0{padding-right:0!important}.ur-p-sm-1{padding:4px!important}.ur-pt-sm-1,.ur-py-sm-1{padding-top:4px!important}.ur-pr-sm-1,.ur-px-sm-1{padding-left:4px!important}.ur-pb-sm-1,.ur-py-sm-1{padding-bottom:4px!important}.ur-pl-sm-1,.ur-px-sm-1{padding-right:4px!important}.ur-p-sm-2{padding:8px!important}.ur-pt-sm-2,.ur-py-sm-2{padding-top:8px!important}.ur-pr-sm-2,.ur-px-sm-2{padding-left:8px!important}.ur-pb-sm-2,.ur-py-sm-2{padding-bottom:8px!important}.ur-pl-sm-2,.ur-px-sm-2{padding-right:8px!important}.ur-p-sm-3{padding:12px!important}.ur-pt-sm-3,.ur-py-sm-3{padding-top:12px!important}.ur-pr-sm-3,.ur-px-sm-3{padding-left:12px!important}.ur-pb-sm-3,.ur-py-sm-3{padding-bottom:12px!important}.ur-pl-sm-3,.ur-px-sm-3{padding-right:12px!important}.ur-p-sm-4{padding:16px!important}.ur-pt-sm-4,.ur-py-sm-4{padding-top:16px!important}.ur-pr-sm-4,.ur-px-sm-4{padding-left:16px!important}.ur-pb-sm-4,.ur-py-sm-4{padding-bottom:16px!important}.ur-pl-sm-4,.ur-px-sm-4{padding-right:16px!important}.ur-p-sm-5{padding:20px!important}.ur-pt-sm-5,.ur-py-sm-5{padding-top:20px!important}.ur-pr-sm-5,.ur-px-sm-5{padding-left:20px!important}.ur-pb-sm-5,.ur-py-sm-5{padding-bottom:20px!important}.ur-pl-sm-5,.ur-px-sm-5{padding-right:20px!important}.ur-p-sm-6{padding:24px!important}.ur-pt-sm-6,.ur-py-sm-6{padding-top:24px!important}.ur-pr-sm-6,.ur-px-sm-6{padding-left:24px!important}.ur-pb-sm-6,.ur-py-sm-6{padding-bottom:24px!important}.ur-pl-sm-6,.ur-px-sm-6{padding-right:24px!important}.ur-p-sm-7{padding:28px!important}.ur-pt-sm-7,.ur-py-sm-7{padding-top:28px!important}.ur-pr-sm-7,.ur-px-sm-7{padding-left:28px!important}.ur-pb-sm-7,.ur-py-sm-7{padding-bottom:28px!important}.ur-pl-sm-7,.ur-px-sm-7{padding-right:28px!important}.ur-p-sm-8{padding:32px!important}.ur-pt-sm-8,.ur-py-sm-8{padding-top:32px!important}.ur-pr-sm-8,.ur-px-sm-8{padding-left:32px!important}.ur-pb-sm-8,.ur-py-sm-8{padding-bottom:32px!important}.ur-pl-sm-8,.ur-px-sm-8{padding-right:32px!important}.ur-m-sm-n1{margin:-4px!important}.ur-mt-sm-n1,.ur-my-sm-n1{margin-top:-4px!important}.ur-mr-sm-n1,.ur-mx-sm-n1{margin-left:-4px!important}.ur-mb-sm-n1,.ur-my-sm-n1{margin-bottom:-4px!important}.ur-ml-sm-n1,.ur-mx-sm-n1{margin-right:-4px!important}.ur-m-sm-n2{margin:-8px!important}.ur-mt-sm-n2,.ur-my-sm-n2{margin-top:-8px!important}.ur-mr-sm-n2,.ur-mx-sm-n2{margin-left:-8px!important}.ur-mb-sm-n2,.ur-my-sm-n2{margin-bottom:-8px!important}.ur-ml-sm-n2,.ur-mx-sm-n2{margin-right:-8px!important}.ur-m-sm-n3{margin:-12px!important}.ur-mt-sm-n3,.ur-my-sm-n3{margin-top:-12px!important}.ur-mr-sm-n3,.ur-mx-sm-n3{margin-left:-12px!important}.ur-mb-sm-n3,.ur-my-sm-n3{margin-bottom:-12px!important}.ur-ml-sm-n3,.ur-mx-sm-n3{margin-right:-12px!important}.ur-m-sm-n4{margin:-16px!important}.ur-mt-sm-n4,.ur-my-sm-n4{margin-top:-16px!important}.ur-mr-sm-n4,.ur-mx-sm-n4{margin-left:-16px!important}.ur-mb-sm-n4,.ur-my-sm-n4{margin-bottom:-16px!important}.ur-ml-sm-n4,.ur-mx-sm-n4{margin-right:-16px!important}.ur-m-sm-n5{margin:-20px!important}.ur-mt-sm-n5,.ur-my-sm-n5{margin-top:-20px!important}.ur-mr-sm-n5,.ur-mx-sm-n5{margin-left:-20px!important}.ur-mb-sm-n5,.ur-my-sm-n5{margin-bottom:-20px!important}.ur-ml-sm-n5,.ur-mx-sm-n5{margin-right:-20px!important}.ur-m-sm-n6{margin:-24px!important}.ur-mt-sm-n6,.ur-my-sm-n6{margin-top:-24px!important}.ur-mr-sm-n6,.ur-mx-sm-n6{margin-left:-24px!important}.ur-mb-sm-n6,.ur-my-sm-n6{margin-bottom:-24px!important}.ur-ml-sm-n6,.ur-mx-sm-n6{margin-right:-24px!important}.ur-m-sm-n7{margin:-28px!important}.ur-mt-sm-n7,.ur-my-sm-n7{margin-top:-28px!important}.ur-mr-sm-n7,.ur-mx-sm-n7{margin-left:-28px!important}.ur-mb-sm-n7,.ur-my-sm-n7{margin-bottom:-28px!important}.ur-ml-sm-n7,.ur-mx-sm-n7{margin-right:-28px!important}.ur-m-sm-n8{margin:-32px!important}.ur-mt-sm-n8,.ur-my-sm-n8{margin-top:-32px!important}.ur-mr-sm-n8,.ur-mx-sm-n8{margin-left:-32px!important}.ur-mb-sm-n8,.ur-my-sm-n8{margin-bottom:-32px!important}.ur-ml-sm-n8,.ur-mx-sm-n8{margin-right:-32px!important}.ur-m-sm-auto{margin:auto!important}.ur-mt-sm-auto,.ur-my-sm-auto{margin-top:auto!important}.ur-mr-sm-auto,.ur-mx-sm-auto{margin-left:auto!important}.ur-mb-sm-auto,.ur-my-sm-auto{margin-bottom:auto!important}.ur-ml-sm-auto,.ur-mx-sm-auto{margin-right:auto!important}}@media (min-width:768px){.ur-m-md-0{margin:0!important}.ur-mt-md-0,.ur-my-md-0{margin-top:0!important}.ur-mr-md-0,.ur-mx-md-0{margin-left:0!important}.ur-mb-md-0,.ur-my-md-0{margin-bottom:0!important}.ur-ml-md-0,.ur-mx-md-0{margin-right:0!important}.ur-m-md-1{margin:4px!important}.ur-mt-md-1,.ur-my-md-1{margin-top:4px!important}.ur-mr-md-1,.ur-mx-md-1{margin-left:4px!important}.ur-mb-md-1,.ur-my-md-1{margin-bottom:4px!important}.ur-ml-md-1,.ur-mx-md-1{margin-right:4px!important}.ur-m-md-2{margin:8px!important}.ur-mt-md-2,.ur-my-md-2{margin-top:8px!important}.ur-mr-md-2,.ur-mx-md-2{margin-left:8px!important}.ur-mb-md-2,.ur-my-md-2{margin-bottom:8px!important}.ur-ml-md-2,.ur-mx-md-2{margin-right:8px!important}.ur-m-md-3{margin:12px!important}.ur-mt-md-3,.ur-my-md-3{margin-top:12px!important}.ur-mr-md-3,.ur-mx-md-3{margin-left:12px!important}.ur-mb-md-3,.ur-my-md-3{margin-bottom:12px!important}.ur-ml-md-3,.ur-mx-md-3{margin-right:12px!important}.ur-m-md-4{margin:16px!important}.ur-mt-md-4,.ur-my-md-4{margin-top:16px!important}.ur-mr-md-4,.ur-mx-md-4{margin-left:16px!important}.ur-mb-md-4,.ur-my-md-4{margin-bottom:16px!important}.ur-ml-md-4,.ur-mx-md-4{margin-right:16px!important}.ur-m-md-5{margin:20px!important}.ur-mt-md-5,.ur-my-md-5{margin-top:20px!important}.ur-mr-md-5,.ur-mx-md-5{margin-left:20px!important}.ur-mb-md-5,.ur-my-md-5{margin-bottom:20px!important}.ur-ml-md-5,.ur-mx-md-5{margin-right:20px!important}.ur-m-md-6{margin:24px!important}.ur-mt-md-6,.ur-my-md-6{margin-top:24px!important}.ur-mr-md-6,.ur-mx-md-6{margin-left:24px!important}.ur-mb-md-6,.ur-my-md-6{margin-bottom:24px!important}.ur-ml-md-6,.ur-mx-md-6{margin-right:24px!important}.ur-m-md-7{margin:28px!important}.ur-mt-md-7,.ur-my-md-7{margin-top:28px!important}.ur-mr-md-7,.ur-mx-md-7{margin-left:28px!important}.ur-mb-md-7,.ur-my-md-7{margin-bottom:28px!important}.ur-ml-md-7,.ur-mx-md-7{margin-right:28px!important}.ur-m-md-8{margin:32px!important}.ur-mt-md-8,.ur-my-md-8{margin-top:32px!important}.ur-mr-md-8,.ur-mx-md-8{margin-left:32px!important}.ur-mb-md-8,.ur-my-md-8{margin-bottom:32px!important}.ur-ml-md-8,.ur-mx-md-8{margin-right:32px!important}.ur-p-md-0{padding:0!important}.ur-pt-md-0,.ur-py-md-0{padding-top:0!important}.ur-pr-md-0,.ur-px-md-0{padding-left:0!important}.ur-pb-md-0,.ur-py-md-0{padding-bottom:0!important}.ur-pl-md-0,.ur-px-md-0{padding-right:0!important}.ur-p-md-1{padding:4px!important}.ur-pt-md-1,.ur-py-md-1{padding-top:4px!important}.ur-pr-md-1,.ur-px-md-1{padding-left:4px!important}.ur-pb-md-1,.ur-py-md-1{padding-bottom:4px!important}.ur-pl-md-1,.ur-px-md-1{padding-right:4px!important}.ur-p-md-2{padding:8px!important}.ur-pt-md-2,.ur-py-md-2{padding-top:8px!important}.ur-pr-md-2,.ur-px-md-2{padding-left:8px!important}.ur-pb-md-2,.ur-py-md-2{padding-bottom:8px!important}.ur-pl-md-2,.ur-px-md-2{padding-right:8px!important}.ur-p-md-3{padding:12px!important}.ur-pt-md-3,.ur-py-md-3{padding-top:12px!important}.ur-pr-md-3,.ur-px-md-3{padding-left:12px!important}.ur-pb-md-3,.ur-py-md-3{padding-bottom:12px!important}.ur-pl-md-3,.ur-px-md-3{padding-right:12px!important}.ur-p-md-4{padding:16px!important}.ur-pt-md-4,.ur-py-md-4{padding-top:16px!important}.ur-pr-md-4,.ur-px-md-4{padding-left:16px!important}.ur-pb-md-4,.ur-py-md-4{padding-bottom:16px!important}.ur-pl-md-4,.ur-px-md-4{padding-right:16px!important}.ur-p-md-5{padding:20px!important}.ur-pt-md-5,.ur-py-md-5{padding-top:20px!important}.ur-pr-md-5,.ur-px-md-5{padding-left:20px!important}.ur-pb-md-5,.ur-py-md-5{padding-bottom:20px!important}.ur-pl-md-5,.ur-px-md-5{padding-right:20px!important}.ur-p-md-6{padding:24px!important}.ur-pt-md-6,.ur-py-md-6{padding-top:24px!important}.ur-pr-md-6,.ur-px-md-6{padding-left:24px!important}.ur-pb-md-6,.ur-py-md-6{padding-bottom:24px!important}.ur-pl-md-6,.ur-px-md-6{padding-right:24px!important}.ur-p-md-7{padding:28px!important}.ur-pt-md-7,.ur-py-md-7{padding-top:28px!important}.ur-pr-md-7,.ur-px-md-7{padding-left:28px!important}.ur-pb-md-7,.ur-py-md-7{padding-bottom:28px!important}.ur-pl-md-7,.ur-px-md-7{padding-right:28px!important}.ur-p-md-8{padding:32px!important}.ur-pt-md-8,.ur-py-md-8{padding-top:32px!important}.ur-pr-md-8,.ur-px-md-8{padding-left:32px!important}.ur-pb-md-8,.ur-py-md-8{padding-bottom:32px!important}.ur-pl-md-8,.ur-px-md-8{padding-right:32px!important}.ur-m-md-n1{margin:-4px!important}.ur-mt-md-n1,.ur-my-md-n1{margin-top:-4px!important}.ur-mr-md-n1,.ur-mx-md-n1{margin-left:-4px!important}.ur-mb-md-n1,.ur-my-md-n1{margin-bottom:-4px!important}.ur-ml-md-n1,.ur-mx-md-n1{margin-right:-4px!important}.ur-m-md-n2{margin:-8px!important}.ur-mt-md-n2,.ur-my-md-n2{margin-top:-8px!important}.ur-mr-md-n2,.ur-mx-md-n2{margin-left:-8px!important}.ur-mb-md-n2,.ur-my-md-n2{margin-bottom:-8px!important}.ur-ml-md-n2,.ur-mx-md-n2{margin-right:-8px!important}.ur-m-md-n3{margin:-12px!important}.ur-mt-md-n3,.ur-my-md-n3{margin-top:-12px!important}.ur-mr-md-n3,.ur-mx-md-n3{margin-left:-12px!important}.ur-mb-md-n3,.ur-my-md-n3{margin-bottom:-12px!important}.ur-ml-md-n3,.ur-mx-md-n3{margin-right:-12px!important}.ur-m-md-n4{margin:-16px!important}.ur-mt-md-n4,.ur-my-md-n4{margin-top:-16px!important}.ur-mr-md-n4,.ur-mx-md-n4{margin-left:-16px!important}.ur-mb-md-n4,.ur-my-md-n4{margin-bottom:-16px!important}.ur-ml-md-n4,.ur-mx-md-n4{margin-right:-16px!important}.ur-m-md-n5{margin:-20px!important}.ur-mt-md-n5,.ur-my-md-n5{margin-top:-20px!important}.ur-mr-md-n5,.ur-mx-md-n5{margin-left:-20px!important}.ur-mb-md-n5,.ur-my-md-n5{margin-bottom:-20px!important}.ur-ml-md-n5,.ur-mx-md-n5{margin-right:-20px!important}.ur-m-md-n6{margin:-24px!important}.ur-mt-md-n6,.ur-my-md-n6{margin-top:-24px!important}.ur-mr-md-n6,.ur-mx-md-n6{margin-left:-24px!important}.ur-mb-md-n6,.ur-my-md-n6{margin-bottom:-24px!important}.ur-ml-md-n6,.ur-mx-md-n6{margin-right:-24px!important}.ur-m-md-n7{margin:-28px!important}.ur-mt-md-n7,.ur-my-md-n7{margin-top:-28px!important}.ur-mr-md-n7,.ur-mx-md-n7{margin-left:-28px!important}.ur-mb-md-n7,.ur-my-md-n7{margin-bottom:-28px!important}.ur-ml-md-n7,.ur-mx-md-n7{margin-right:-28px!important}.ur-m-md-n8{margin:-32px!important}.ur-mt-md-n8,.ur-my-md-n8{margin-top:-32px!important}.ur-mr-md-n8,.ur-mx-md-n8{margin-left:-32px!important}.ur-mb-md-n8,.ur-my-md-n8{margin-bottom:-32px!important}.ur-ml-md-n8,.ur-mx-md-n8{margin-right:-32px!important}.ur-m-md-auto{margin:auto!important}.ur-mt-md-auto,.ur-my-md-auto{margin-top:auto!important}.ur-mr-md-auto,.ur-mx-md-auto{margin-left:auto!important}.ur-mb-md-auto,.ur-my-md-auto{margin-bottom:auto!important}.ur-ml-md-auto,.ur-mx-md-auto{margin-right:auto!important}}@media (min-width:992px){.ur-m-lg-0{margin:0!important}.ur-mt-lg-0,.ur-my-lg-0{margin-top:0!important}.ur-mr-lg-0,.ur-mx-lg-0{margin-left:0!important}.ur-mb-lg-0,.ur-my-lg-0{margin-bottom:0!important}.ur-ml-lg-0,.ur-mx-lg-0{margin-right:0!important}.ur-m-lg-1{margin:4px!important}.ur-mt-lg-1,.ur-my-lg-1{margin-top:4px!important}.ur-mr-lg-1,.ur-mx-lg-1{margin-left:4px!important}.ur-mb-lg-1,.ur-my-lg-1{margin-bottom:4px!important}.ur-ml-lg-1,.ur-mx-lg-1{margin-right:4px!important}.ur-m-lg-2{margin:8px!important}.ur-mt-lg-2,.ur-my-lg-2{margin-top:8px!important}.ur-mr-lg-2,.ur-mx-lg-2{margin-left:8px!important}.ur-mb-lg-2,.ur-my-lg-2{margin-bottom:8px!important}.ur-ml-lg-2,.ur-mx-lg-2{margin-right:8px!important}.ur-m-lg-3{margin:12px!important}.ur-mt-lg-3,.ur-my-lg-3{margin-top:12px!important}.ur-mr-lg-3,.ur-mx-lg-3{margin-left:12px!important}.ur-mb-lg-3,.ur-my-lg-3{margin-bottom:12px!important}.ur-ml-lg-3,.ur-mx-lg-3{margin-right:12px!important}.ur-m-lg-4{margin:16px!important}.ur-mt-lg-4,.ur-my-lg-4{margin-top:16px!important}.ur-mr-lg-4,.ur-mx-lg-4{margin-left:16px!important}.ur-mb-lg-4,.ur-my-lg-4{margin-bottom:16px!important}.ur-ml-lg-4,.ur-mx-lg-4{margin-right:16px!important}.ur-m-lg-5{margin:20px!important}.ur-mt-lg-5,.ur-my-lg-5{margin-top:20px!important}.ur-mr-lg-5,.ur-mx-lg-5{margin-left:20px!important}.ur-mb-lg-5,.ur-my-lg-5{margin-bottom:20px!important}.ur-ml-lg-5,.ur-mx-lg-5{margin-right:20px!important}.ur-m-lg-6{margin:24px!important}.ur-mt-lg-6,.ur-my-lg-6{margin-top:24px!important}.ur-mr-lg-6,.ur-mx-lg-6{margin-left:24px!important}.ur-mb-lg-6,.ur-my-lg-6{margin-bottom:24px!important}.ur-ml-lg-6,.ur-mx-lg-6{margin-right:24px!important}.ur-m-lg-7{margin:28px!important}.ur-mt-lg-7,.ur-my-lg-7{margin-top:28px!important}.ur-mr-lg-7,.ur-mx-lg-7{margin-left:28px!important}.ur-mb-lg-7,.ur-my-lg-7{margin-bottom:28px!important}.ur-ml-lg-7,.ur-mx-lg-7{margin-right:28px!important}.ur-m-lg-8{margin:32px!important}.ur-mt-lg-8,.ur-my-lg-8{margin-top:32px!important}.ur-mr-lg-8,.ur-mx-lg-8{margin-left:32px!important}.ur-mb-lg-8,.ur-my-lg-8{margin-bottom:32px!important}.ur-ml-lg-8,.ur-mx-lg-8{margin-right:32px!important}.ur-p-lg-0{padding:0!important}.ur-pt-lg-0,.ur-py-lg-0{padding-top:0!important}.ur-pr-lg-0,.ur-px-lg-0{padding-left:0!important}.ur-pb-lg-0,.ur-py-lg-0{padding-bottom:0!important}.ur-pl-lg-0,.ur-px-lg-0{padding-right:0!important}.ur-p-lg-1{padding:4px!important}.ur-pt-lg-1,.ur-py-lg-1{padding-top:4px!important}.ur-pr-lg-1,.ur-px-lg-1{padding-left:4px!important}.ur-pb-lg-1,.ur-py-lg-1{padding-bottom:4px!important}.ur-pl-lg-1,.ur-px-lg-1{padding-right:4px!important}.ur-p-lg-2{padding:8px!important}.ur-pt-lg-2,.ur-py-lg-2{padding-top:8px!important}.ur-pr-lg-2,.ur-px-lg-2{padding-left:8px!important}.ur-pb-lg-2,.ur-py-lg-2{padding-bottom:8px!important}.ur-pl-lg-2,.ur-px-lg-2{padding-right:8px!important}.ur-p-lg-3{padding:12px!important}.ur-pt-lg-3,.ur-py-lg-3{padding-top:12px!important}.ur-pr-lg-3,.ur-px-lg-3{padding-left:12px!important}.ur-pb-lg-3,.ur-py-lg-3{padding-bottom:12px!important}.ur-pl-lg-3,.ur-px-lg-3{padding-right:12px!important}.ur-p-lg-4{padding:16px!important}.ur-pt-lg-4,.ur-py-lg-4{padding-top:16px!important}.ur-pr-lg-4,.ur-px-lg-4{padding-left:16px!important}.ur-pb-lg-4,.ur-py-lg-4{padding-bottom:16px!important}.ur-pl-lg-4,.ur-px-lg-4{padding-right:16px!important}.ur-p-lg-5{padding:20px!important}.ur-pt-lg-5,.ur-py-lg-5{padding-top:20px!important}.ur-pr-lg-5,.ur-px-lg-5{padding-left:20px!important}.ur-pb-lg-5,.ur-py-lg-5{padding-bottom:20px!important}.ur-pl-lg-5,.ur-px-lg-5{padding-right:20px!important}.ur-p-lg-6{padding:24px!important}.ur-pt-lg-6,.ur-py-lg-6{padding-top:24px!important}.ur-pr-lg-6,.ur-px-lg-6{padding-left:24px!important}.ur-pb-lg-6,.ur-py-lg-6{padding-bottom:24px!important}.ur-pl-lg-6,.ur-px-lg-6{padding-right:24px!important}.ur-p-lg-7{padding:28px!important}.ur-pt-lg-7,.ur-py-lg-7{padding-top:28px!important}.ur-pr-lg-7,.ur-px-lg-7{padding-left:28px!important}.ur-pb-lg-7,.ur-py-lg-7{padding-bottom:28px!important}.ur-pl-lg-7,.ur-px-lg-7{padding-right:28px!important}.ur-p-lg-8{padding:32px!important}.ur-pt-lg-8,.ur-py-lg-8{padding-top:32px!important}.ur-pr-lg-8,.ur-px-lg-8{padding-left:32px!important}.ur-pb-lg-8,.ur-py-lg-8{padding-bottom:32px!important}.ur-pl-lg-8,.ur-px-lg-8{padding-right:32px!important}.ur-m-lg-n1{margin:-4px!important}.ur-mt-lg-n1,.ur-my-lg-n1{margin-top:-4px!important}.ur-mr-lg-n1,.ur-mx-lg-n1{margin-left:-4px!important}.ur-mb-lg-n1,.ur-my-lg-n1{margin-bottom:-4px!important}.ur-ml-lg-n1,.ur-mx-lg-n1{margin-right:-4px!important}.ur-m-lg-n2{margin:-8px!important}.ur-mt-lg-n2,.ur-my-lg-n2{margin-top:-8px!important}.ur-mr-lg-n2,.ur-mx-lg-n2{margin-left:-8px!important}.ur-mb-lg-n2,.ur-my-lg-n2{margin-bottom:-8px!important}.ur-ml-lg-n2,.ur-mx-lg-n2{margin-right:-8px!important}.ur-m-lg-n3{margin:-12px!important}.ur-mt-lg-n3,.ur-my-lg-n3{margin-top:-12px!important}.ur-mr-lg-n3,.ur-mx-lg-n3{margin-left:-12px!important}.ur-mb-lg-n3,.ur-my-lg-n3{margin-bottom:-12px!important}.ur-ml-lg-n3,.ur-mx-lg-n3{margin-right:-12px!important}.ur-m-lg-n4{margin:-16px!important}.ur-mt-lg-n4,.ur-my-lg-n4{margin-top:-16px!important}.ur-mr-lg-n4,.ur-mx-lg-n4{margin-left:-16px!important}.ur-mb-lg-n4,.ur-my-lg-n4{margin-bottom:-16px!important}.ur-ml-lg-n4,.ur-mx-lg-n4{margin-right:-16px!important}.ur-m-lg-n5{margin:-20px!important}.ur-mt-lg-n5,.ur-my-lg-n5{margin-top:-20px!important}.ur-mr-lg-n5,.ur-mx-lg-n5{margin-left:-20px!important}.ur-mb-lg-n5,.ur-my-lg-n5{margin-bottom:-20px!important}.ur-ml-lg-n5,.ur-mx-lg-n5{margin-right:-20px!important}.ur-m-lg-n6{margin:-24px!important}.ur-mt-lg-n6,.ur-my-lg-n6{margin-top:-24px!important}.ur-mr-lg-n6,.ur-mx-lg-n6{margin-left:-24px!important}.ur-mb-lg-n6,.ur-my-lg-n6{margin-bottom:-24px!important}.ur-ml-lg-n6,.ur-mx-lg-n6{margin-right:-24px!important}.ur-m-lg-n7{margin:-28px!important}.ur-mt-lg-n7,.ur-my-lg-n7{margin-top:-28px!important}.ur-mr-lg-n7,.ur-mx-lg-n7{margin-left:-28px!important}.ur-mb-lg-n7,.ur-my-lg-n7{margin-bottom:-28px!important}.ur-ml-lg-n7,.ur-mx-lg-n7{margin-right:-28px!important}.ur-m-lg-n8{margin:-32px!important}.ur-mt-lg-n8,.ur-my-lg-n8{margin-top:-32px!important}.ur-mr-lg-n8,.ur-mx-lg-n8{margin-left:-32px!important}.ur-mb-lg-n8,.ur-my-lg-n8{margin-bottom:-32px!important}.ur-ml-lg-n8,.ur-mx-lg-n8{margin-right:-32px!important}.ur-m-lg-auto{margin:auto!important}.ur-mt-lg-auto,.ur-my-lg-auto{margin-top:auto!important}.ur-mr-lg-auto,.ur-mx-lg-auto{margin-left:auto!important}.ur-mb-lg-auto,.ur-my-lg-auto{margin-bottom:auto!important}.ur-ml-lg-auto,.ur-mx-lg-auto{margin-right:auto!important}}@media (min-width:1200px){.ur-m-xl-0{margin:0!important}.ur-mt-xl-0,.ur-my-xl-0{margin-top:0!important}.ur-mr-xl-0,.ur-mx-xl-0{margin-left:0!important}.ur-mb-xl-0,.ur-my-xl-0{margin-bottom:0!important}.ur-ml-xl-0,.ur-mx-xl-0{margin-right:0!important}.ur-m-xl-1{margin:4px!important}.ur-mt-xl-1,.ur-my-xl-1{margin-top:4px!important}.ur-mr-xl-1,.ur-mx-xl-1{margin-left:4px!important}.ur-mb-xl-1,.ur-my-xl-1{margin-bottom:4px!important}.ur-ml-xl-1,.ur-mx-xl-1{margin-right:4px!important}.ur-m-xl-2{margin:8px!important}.ur-mt-xl-2,.ur-my-xl-2{margin-top:8px!important}.ur-mr-xl-2,.ur-mx-xl-2{margin-left:8px!important}.ur-mb-xl-2,.ur-my-xl-2{margin-bottom:8px!important}.ur-ml-xl-2,.ur-mx-xl-2{margin-right:8px!important}.ur-m-xl-3{margin:12px!important}.ur-mt-xl-3,.ur-my-xl-3{margin-top:12px!important}.ur-mr-xl-3,.ur-mx-xl-3{margin-left:12px!important}.ur-mb-xl-3,.ur-my-xl-3{margin-bottom:12px!important}.ur-ml-xl-3,.ur-mx-xl-3{margin-right:12px!important}.ur-m-xl-4{margin:16px!important}.ur-mt-xl-4,.ur-my-xl-4{margin-top:16px!important}.ur-mr-xl-4,.ur-mx-xl-4{margin-left:16px!important}.ur-mb-xl-4,.ur-my-xl-4{margin-bottom:16px!important}.ur-ml-xl-4,.ur-mx-xl-4{margin-right:16px!important}.ur-m-xl-5{margin:20px!important}.ur-mt-xl-5,.ur-my-xl-5{margin-top:20px!important}.ur-mr-xl-5,.ur-mx-xl-5{margin-left:20px!important}.ur-mb-xl-5,.ur-my-xl-5{margin-bottom:20px!important}.ur-ml-xl-5,.ur-mx-xl-5{margin-right:20px!important}.ur-m-xl-6{margin:24px!important}.ur-mt-xl-6,.ur-my-xl-6{margin-top:24px!important}.ur-mr-xl-6,.ur-mx-xl-6{margin-left:24px!important}.ur-mb-xl-6,.ur-my-xl-6{margin-bottom:24px!important}.ur-ml-xl-6,.ur-mx-xl-6{margin-right:24px!important}.ur-m-xl-7{margin:28px!important}.ur-mt-xl-7,.ur-my-xl-7{margin-top:28px!important}.ur-mr-xl-7,.ur-mx-xl-7{margin-left:28px!important}.ur-mb-xl-7,.ur-my-xl-7{margin-bottom:28px!important}.ur-ml-xl-7,.ur-mx-xl-7{margin-right:28px!important}.ur-m-xl-8{margin:32px!important}.ur-mt-xl-8,.ur-my-xl-8{margin-top:32px!important}.ur-mr-xl-8,.ur-mx-xl-8{margin-left:32px!important}.ur-mb-xl-8,.ur-my-xl-8{margin-bottom:32px!important}.ur-ml-xl-8,.ur-mx-xl-8{margin-right:32px!important}.ur-p-xl-0{padding:0!important}.ur-pt-xl-0,.ur-py-xl-0{padding-top:0!important}.ur-pr-xl-0,.ur-px-xl-0{padding-left:0!important}.ur-pb-xl-0,.ur-py-xl-0{padding-bottom:0!important}.ur-pl-xl-0,.ur-px-xl-0{padding-right:0!important}.ur-p-xl-1{padding:4px!important}.ur-pt-xl-1,.ur-py-xl-1{padding-top:4px!important}.ur-pr-xl-1,.ur-px-xl-1{padding-left:4px!important}.ur-pb-xl-1,.ur-py-xl-1{padding-bottom:4px!important}.ur-pl-xl-1,.ur-px-xl-1{padding-right:4px!important}.ur-p-xl-2{padding:8px!important}.ur-pt-xl-2,.ur-py-xl-2{padding-top:8px!important}.ur-pr-xl-2,.ur-px-xl-2{padding-left:8px!important}.ur-pb-xl-2,.ur-py-xl-2{padding-bottom:8px!important}.ur-pl-xl-2,.ur-px-xl-2{padding-right:8px!important}.ur-p-xl-3{padding:12px!important}.ur-pt-xl-3,.ur-py-xl-3{padding-top:12px!important}.ur-pr-xl-3,.ur-px-xl-3{padding-left:12px!important}.ur-pb-xl-3,.ur-py-xl-3{padding-bottom:12px!important}.ur-pl-xl-3,.ur-px-xl-3{padding-right:12px!important}.ur-p-xl-4{padding:16px!important}.ur-pt-xl-4,.ur-py-xl-4{padding-top:16px!important}.ur-pr-xl-4,.ur-px-xl-4{padding-left:16px!important}.ur-pb-xl-4,.ur-py-xl-4{padding-bottom:16px!important}.ur-pl-xl-4,.ur-px-xl-4{padding-right:16px!important}.ur-p-xl-5{padding:20px!important}.ur-pt-xl-5,.ur-py-xl-5{padding-top:20px!important}.ur-pr-xl-5,.ur-px-xl-5{padding-left:20px!important}.ur-pb-xl-5,.ur-py-xl-5{padding-bottom:20px!important}.ur-pl-xl-5,.ur-px-xl-5{padding-right:20px!important}.ur-p-xl-6{padding:24px!important}.ur-pt-xl-6,.ur-py-xl-6{padding-top:24px!important}.ur-pr-xl-6,.ur-px-xl-6{padding-left:24px!important}.ur-pb-xl-6,.ur-py-xl-6{padding-bottom:24px!important}.ur-pl-xl-6,.ur-px-xl-6{padding-right:24px!important}.ur-p-xl-7{padding:28px!important}.ur-pt-xl-7,.ur-py-xl-7{padding-top:28px!important}.ur-pr-xl-7,.ur-px-xl-7{padding-left:28px!important}.ur-pb-xl-7,.ur-py-xl-7{padding-bottom:28px!important}.ur-pl-xl-7,.ur-px-xl-7{padding-right:28px!important}.ur-p-xl-8{padding:32px!important}.ur-pt-xl-8,.ur-py-xl-8{padding-top:32px!important}.ur-pr-xl-8,.ur-px-xl-8{padding-left:32px!important}.ur-pb-xl-8,.ur-py-xl-8{padding-bottom:32px!important}.ur-pl-xl-8,.ur-px-xl-8{padding-right:32px!important}.ur-m-xl-n1{margin:-4px!important}.ur-mt-xl-n1,.ur-my-xl-n1{margin-top:-4px!important}.ur-mr-xl-n1,.ur-mx-xl-n1{margin-left:-4px!important}.ur-mb-xl-n1,.ur-my-xl-n1{margin-bottom:-4px!important}.ur-ml-xl-n1,.ur-mx-xl-n1{margin-right:-4px!important}.ur-m-xl-n2{margin:-8px!important}.ur-mt-xl-n2,.ur-my-xl-n2{margin-top:-8px!important}.ur-mr-xl-n2,.ur-mx-xl-n2{margin-left:-8px!important}.ur-mb-xl-n2,.ur-my-xl-n2{margin-bottom:-8px!important}.ur-ml-xl-n2,.ur-mx-xl-n2{margin-right:-8px!important}.ur-m-xl-n3{margin:-12px!important}.ur-mt-xl-n3,.ur-my-xl-n3{margin-top:-12px!important}.ur-mr-xl-n3,.ur-mx-xl-n3{margin-left:-12px!important}.ur-mb-xl-n3,.ur-my-xl-n3{margin-bottom:-12px!important}.ur-ml-xl-n3,.ur-mx-xl-n3{margin-right:-12px!important}.ur-m-xl-n4{margin:-16px!important}.ur-mt-xl-n4,.ur-my-xl-n4{margin-top:-16px!important}.ur-mr-xl-n4,.ur-mx-xl-n4{margin-left:-16px!important}.ur-mb-xl-n4,.ur-my-xl-n4{margin-bottom:-16px!important}.ur-ml-xl-n4,.ur-mx-xl-n4{margin-right:-16px!important}.ur-m-xl-n5{margin:-20px!important}.ur-mt-xl-n5,.ur-my-xl-n5{margin-top:-20px!important}.ur-mr-xl-n5,.ur-mx-xl-n5{margin-left:-20px!important}.ur-mb-xl-n5,.ur-my-xl-n5{margin-bottom:-20px!important}.ur-ml-xl-n5,.ur-mx-xl-n5{margin-right:-20px!important}.ur-m-xl-n6{margin:-24px!important}.ur-mt-xl-n6,.ur-my-xl-n6{margin-top:-24px!important}.ur-mr-xl-n6,.ur-mx-xl-n6{margin-left:-24px!important}.ur-mb-xl-n6,.ur-my-xl-n6{margin-bottom:-24px!important}.ur-ml-xl-n6,.ur-mx-xl-n6{margin-right:-24px!important}.ur-m-xl-n7{margin:-28px!important}.ur-mt-xl-n7,.ur-my-xl-n7{margin-top:-28px!important}.ur-mr-xl-n7,.ur-mx-xl-n7{margin-left:-28px!important}.ur-mb-xl-n7,.ur-my-xl-n7{margin-bottom:-28px!important}.ur-ml-xl-n7,.ur-mx-xl-n7{margin-right:-28px!important}.ur-m-xl-n8{margin:-32px!important}.ur-mt-xl-n8,.ur-my-xl-n8{margin-top:-32px!important}.ur-mr-xl-n8,.ur-mx-xl-n8{margin-left:-32px!important}.ur-mb-xl-n8,.ur-my-xl-n8{margin-bottom:-32px!important}.ur-ml-xl-n8,.ur-mx-xl-n8{margin-right:-32px!important}.ur-m-xl-auto{margin:auto!important}.ur-mt-xl-auto,.ur-my-xl-auto{margin-top:auto!important}.ur-mr-xl-auto,.ur-mx-xl-auto{margin-left:auto!important}.ur-mb-xl-auto,.ur-my-xl-auto{margin-bottom:auto!important}.ur-ml-xl-auto,.ur-mx-xl-auto{margin-right:auto!important}}@media (min-width:1400px){.ur-m-xxl-0{margin:0!important}.ur-mt-xxl-0,.ur-my-xxl-0{margin-top:0!important}.ur-mr-xxl-0,.ur-mx-xxl-0{margin-left:0!important}.ur-mb-xxl-0,.ur-my-xxl-0{margin-bottom:0!important}.ur-ml-xxl-0,.ur-mx-xxl-0{margin-right:0!important}.ur-m-xxl-1{margin:4px!important}.ur-mt-xxl-1,.ur-my-xxl-1{margin-top:4px!important}.ur-mr-xxl-1,.ur-mx-xxl-1{margin-left:4px!important}.ur-mb-xxl-1,.ur-my-xxl-1{margin-bottom:4px!important}.ur-ml-xxl-1,.ur-mx-xxl-1{margin-right:4px!important}.ur-m-xxl-2{margin:8px!important}.ur-mt-xxl-2,.ur-my-xxl-2{margin-top:8px!important}.ur-mr-xxl-2,.ur-mx-xxl-2{margin-left:8px!important}.ur-mb-xxl-2,.ur-my-xxl-2{margin-bottom:8px!important}.ur-ml-xxl-2,.ur-mx-xxl-2{margin-right:8px!important}.ur-m-xxl-3{margin:12px!important}.ur-mt-xxl-3,.ur-my-xxl-3{margin-top:12px!important}.ur-mr-xxl-3,.ur-mx-xxl-3{margin-left:12px!important}.ur-mb-xxl-3,.ur-my-xxl-3{margin-bottom:12px!important}.ur-ml-xxl-3,.ur-mx-xxl-3{margin-right:12px!important}.ur-m-xxl-4{margin:16px!important}.ur-mt-xxl-4,.ur-my-xxl-4{margin-top:16px!important}.ur-mr-xxl-4,.ur-mx-xxl-4{margin-left:16px!important}.ur-mb-xxl-4,.ur-my-xxl-4{margin-bottom:16px!important}.ur-ml-xxl-4,.ur-mx-xxl-4{margin-right:16px!important}.ur-m-xxl-5{margin:20px!important}.ur-mt-xxl-5,.ur-my-xxl-5{margin-top:20px!important}.ur-mr-xxl-5,.ur-mx-xxl-5{margin-left:20px!important}.ur-mb-xxl-5,.ur-my-xxl-5{margin-bottom:20px!important}.ur-ml-xxl-5,.ur-mx-xxl-5{margin-right:20px!important}.ur-m-xxl-6{margin:24px!important}.ur-mt-xxl-6,.ur-my-xxl-6{margin-top:24px!important}.ur-mr-xxl-6,.ur-mx-xxl-6{margin-left:24px!important}.ur-mb-xxl-6,.ur-my-xxl-6{margin-bottom:24px!important}.ur-ml-xxl-6,.ur-mx-xxl-6{margin-right:24px!important}.ur-m-xxl-7{margin:28px!important}.ur-mt-xxl-7,.ur-my-xxl-7{margin-top:28px!important}.ur-mr-xxl-7,.ur-mx-xxl-7{margin-left:28px!important}.ur-mb-xxl-7,.ur-my-xxl-7{margin-bottom:28px!important}.ur-ml-xxl-7,.ur-mx-xxl-7{margin-right:28px!important}.ur-m-xxl-8{margin:32px!important}.ur-mt-xxl-8,.ur-my-xxl-8{margin-top:32px!important}.ur-mr-xxl-8,.ur-mx-xxl-8{margin-left:32px!important}.ur-mb-xxl-8,.ur-my-xxl-8{margin-bottom:32px!important}.ur-ml-xxl-8,.ur-mx-xxl-8{margin-right:32px!important}.ur-p-xxl-0{padding:0!important}.ur-pt-xxl-0,.ur-py-xxl-0{padding-top:0!important}.ur-pr-xxl-0,.ur-px-xxl-0{padding-left:0!important}.ur-pb-xxl-0,.ur-py-xxl-0{padding-bottom:0!important}.ur-pl-xxl-0,.ur-px-xxl-0{padding-right:0!important}.ur-p-xxl-1{padding:4px!important}.ur-pt-xxl-1,.ur-py-xxl-1{padding-top:4px!important}.ur-pr-xxl-1,.ur-px-xxl-1{padding-left:4px!important}.ur-pb-xxl-1,.ur-py-xxl-1{padding-bottom:4px!important}.ur-pl-xxl-1,.ur-px-xxl-1{padding-right:4px!important}.ur-p-xxl-2{padding:8px!important}.ur-pt-xxl-2,.ur-py-xxl-2{padding-top:8px!important}.ur-pr-xxl-2,.ur-px-xxl-2{padding-left:8px!important}.ur-pb-xxl-2,.ur-py-xxl-2{padding-bottom:8px!important}.ur-pl-xxl-2,.ur-px-xxl-2{padding-right:8px!important}.ur-p-xxl-3{padding:12px!important}.ur-pt-xxl-3,.ur-py-xxl-3{padding-top:12px!important}.ur-pr-xxl-3,.ur-px-xxl-3{padding-left:12px!important}.ur-pb-xxl-3,.ur-py-xxl-3{padding-bottom:12px!important}.ur-pl-xxl-3,.ur-px-xxl-3{padding-right:12px!important}.ur-p-xxl-4{padding:16px!important}.ur-pt-xxl-4,.ur-py-xxl-4{padding-top:16px!important}.ur-pr-xxl-4,.ur-px-xxl-4{padding-left:16px!important}.ur-pb-xxl-4,.ur-py-xxl-4{padding-bottom:16px!important}.ur-pl-xxl-4,.ur-px-xxl-4{padding-right:16px!important}.ur-p-xxl-5{padding:20px!important}.ur-pt-xxl-5,.ur-py-xxl-5{padding-top:20px!important}.ur-pr-xxl-5,.ur-px-xxl-5{padding-left:20px!important}.ur-pb-xxl-5,.ur-py-xxl-5{padding-bottom:20px!important}.ur-pl-xxl-5,.ur-px-xxl-5{padding-right:20px!important}.ur-p-xxl-6{padding:24px!important}.ur-pt-xxl-6,.ur-py-xxl-6{padding-top:24px!important}.ur-pr-xxl-6,.ur-px-xxl-6{padding-left:24px!important}.ur-pb-xxl-6,.ur-py-xxl-6{padding-bottom:24px!important}.ur-pl-xxl-6,.ur-px-xxl-6{padding-right:24px!important}.ur-p-xxl-7{padding:28px!important}.ur-pt-xxl-7,.ur-py-xxl-7{padding-top:28px!important}.ur-pr-xxl-7,.ur-px-xxl-7{padding-left:28px!important}.ur-pb-xxl-7,.ur-py-xxl-7{padding-bottom:28px!important}.ur-pl-xxl-7,.ur-px-xxl-7{padding-right:28px!important}.ur-p-xxl-8{padding:32px!important}.ur-pt-xxl-8,.ur-py-xxl-8{padding-top:32px!important}.ur-pr-xxl-8,.ur-px-xxl-8{padding-left:32px!important}.ur-pb-xxl-8,.ur-py-xxl-8{padding-bottom:32px!important}.ur-pl-xxl-8,.ur-px-xxl-8{padding-right:32px!important}.ur-m-xxl-n1{margin:-4px!important}.ur-mt-xxl-n1,.ur-my-xxl-n1{margin-top:-4px!important}.ur-mr-xxl-n1,.ur-mx-xxl-n1{margin-left:-4px!important}.ur-mb-xxl-n1,.ur-my-xxl-n1{margin-bottom:-4px!important}.ur-ml-xxl-n1,.ur-mx-xxl-n1{margin-right:-4px!important}.ur-m-xxl-n2{margin:-8px!important}.ur-mt-xxl-n2,.ur-my-xxl-n2{margin-top:-8px!important}.ur-mr-xxl-n2,.ur-mx-xxl-n2{margin-left:-8px!important}.ur-mb-xxl-n2,.ur-my-xxl-n2{margin-bottom:-8px!important}.ur-ml-xxl-n2,.ur-mx-xxl-n2{margin-right:-8px!important}.ur-m-xxl-n3{margin:-12px!important}.ur-mt-xxl-n3,.ur-my-xxl-n3{margin-top:-12px!important}.ur-mr-xxl-n3,.ur-mx-xxl-n3{margin-left:-12px!important}.ur-mb-xxl-n3,.ur-my-xxl-n3{margin-bottom:-12px!important}.ur-ml-xxl-n3,.ur-mx-xxl-n3{margin-right:-12px!important}.ur-m-xxl-n4{margin:-16px!important}.ur-mt-xxl-n4,.ur-my-xxl-n4{margin-top:-16px!important}.ur-mr-xxl-n4,.ur-mx-xxl-n4{margin-left:-16px!important}.ur-mb-xxl-n4,.ur-my-xxl-n4{margin-bottom:-16px!important}.ur-ml-xxl-n4,.ur-mx-xxl-n4{margin-right:-16px!important}.ur-m-xxl-n5{margin:-20px!important}.ur-mt-xxl-n5,.ur-my-xxl-n5{margin-top:-20px!important}.ur-mr-xxl-n5,.ur-mx-xxl-n5{margin-left:-20px!important}.ur-mb-xxl-n5,.ur-my-xxl-n5{margin-bottom:-20px!important}.ur-ml-xxl-n5,.ur-mx-xxl-n5{margin-right:-20px!important}.ur-m-xxl-n6{margin:-24px!important}.ur-mt-xxl-n6,.ur-my-xxl-n6{margin-top:-24px!important}.ur-mr-xxl-n6,.ur-mx-xxl-n6{margin-left:-24px!important}.ur-mb-xxl-n6,.ur-my-xxl-n6{margin-bottom:-24px!important}.ur-ml-xxl-n6,.ur-mx-xxl-n6{margin-right:-24px!important}.ur-m-xxl-n7{margin:-28px!important}.ur-mt-xxl-n7,.ur-my-xxl-n7{margin-top:-28px!important}.ur-mr-xxl-n7,.ur-mx-xxl-n7{margin-left:-28px!important}.ur-mb-xxl-n7,.ur-my-xxl-n7{margin-bottom:-28px!important}.ur-ml-xxl-n7,.ur-mx-xxl-n7{margin-right:-28px!important}.ur-m-xxl-n8{margin:-32px!important}.ur-mt-xxl-n8,.ur-my-xxl-n8{margin-top:-32px!important}.ur-mr-xxl-n8,.ur-mx-xxl-n8{margin-left:-32px!important}.ur-mb-xxl-n8,.ur-my-xxl-n8{margin-bottom:-32px!important}.ur-ml-xxl-n8,.ur-mx-xxl-n8{margin-right:-32px!important}.ur-m-xxl-auto{margin:auto!important}.ur-mt-xxl-auto,.ur-my-xxl-auto{margin-top:auto!important}.ur-mr-xxl-auto,.ur-mx-xxl-auto{margin-left:auto!important}.ur-mb-xxl-auto,.ur-my-xxl-auto{margin-bottom:auto!important}.ur-ml-xxl-auto,.ur-mx-xxl-auto{margin-right:auto!important}}.ur-container,.ur-container-full,.ur-container-lg,.ur-container-md,.ur-container-sm,.ur-container-xl,.ur-container-xxl{width:100%;padding-left:12px;padding-right:12px;margin-left:auto;margin-right:auto}.ur-container *,.ur-container ::after,.ur-container ::before,.ur-container-full *,.ur-container-full ::after,.ur-container-full ::before,.ur-container-lg *,.ur-container-lg ::after,.ur-container-lg ::before,.ur-container-md *,.ur-container-md ::after,.ur-container-md ::before,.ur-container-sm *,.ur-container-sm ::after,.ur-container-sm ::before,.ur-container-xl *,.ur-container-xl ::after,.ur-container-xl ::before,.ur-container-xxl *,.ur-container-xxl ::after,.ur-container-xxl ::before{box-sizing:border-box}@media (min-width:576px){.ur-container,.ur-container-sm{max-width:540px}}@media (min-width:768px){.ur-container,.ur-container-md,.ur-container-sm{max-width:720px}}@media (min-width:992px){.ur-container,.ur-container-lg,.ur-container-md,.ur-container-sm{max-width:960px}}@media (min-width:1200px){.ur-container,.ur-container-lg,.ur-container-md,.ur-container-sm,.ur-container-xl{max-width:1140px}}@media (min-width:1400px){.ur-container,.ur-container-lg,.ur-container-md,.ur-container-sm,.ur-container-xl,.ur-container-xxl{max-width:1320px}}.ur-row{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-left:-12px;margin-right:-12px}.ur-col,.ur-col-1,.ur-col-10,.ur-col-11,.ur-col-12,.ur-col-2,.ur-col-3,.ur-col-4,.ur-col-5,.ur-col-6,.ur-col-7,.ur-col-8,.ur-col-9,.ur-col-auto,.ur-col-lg,.ur-col-lg-1,.ur-col-lg-10,.ur-col-lg-11,.ur-col-lg-12,.ur-col-lg-2,.ur-col-lg-3,.ur-col-lg-4,.ur-col-lg-5,.ur-col-lg-6,.ur-col-lg-7,.ur-col-lg-8,.ur-col-lg-9,.ur-col-lg-auto,.ur-col-md,.ur-col-md-1,.ur-col-md-10,.ur-col-md-11,.ur-col-md-12,.ur-col-md-2,.ur-col-md-3,.ur-col-md-4,.ur-col-md-5,.ur-col-md-6,.ur-col-md-7,.ur-col-md-8,.ur-col-md-9,.ur-col-md-auto,.ur-col-sm,.ur-col-sm-1,.ur-col-sm-10,.ur-col-sm-11,.ur-col-sm-12,.ur-col-sm-2,.ur-col-sm-3,.ur-col-sm-4,.ur-col-sm-5,.ur-col-sm-6,.ur-col-sm-7,.ur-col-sm-8,.ur-col-sm-9,.ur-col-sm-auto,.ur-col-xl,.ur-col-xl-1,.ur-col-xl-10,.ur-col-xl-11,.ur-col-xl-12,.ur-col-xl-2,.ur-col-xl-3,.ur-col-xl-4,.ur-col-xl-5,.ur-col-xl-6,.ur-col-xl-7,.ur-col-xl-8,.ur-col-xl-9,.ur-col-xl-auto,.ur-col-xxl,.ur-col-xxl-1,.ur-col-xxl-10,.ur-col-xxl-11,.ur-col-xxl-12,.ur-col-xxl-2,.ur-col-xxl-3,.ur-col-xxl-4,.ur-col-xxl-5,.ur-col-xxl-6,.ur-col-xxl-7,.ur-col-xxl-8,.ur-col-xxl-9,.ur-col-xxl-auto{position:relative;width:100%;padding-left:12px;padding-right:12px}.ur-col{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-1{margin-right:8.3333333333%}.ur-offset-2{margin-right:16.6666666667%}.ur-offset-3{margin-right:25%}.ur-offset-4{margin-right:33.3333333333%}.ur-offset-5{margin-right:41.6666666667%}.ur-offset-6{margin-right:50%}.ur-offset-7{margin-right:58.3333333333%}.ur-offset-8{margin-right:66.6666666667%}.ur-offset-9{margin-right:75%}.ur-offset-10{margin-right:83.3333333333%}.ur-offset-11{margin-right:91.6666666667%}.ur-g-0,.ur-gx-0{--bs-gutter-x:0}.ur-g-0,.ur-gy-0{--bs-gutter-y:0}.ur-g-1,.ur-gx-1{--bs-gutter-x:4px}.ur-g-1,.ur-gy-1{--bs-gutter-y:4px}.ur-g-2,.ur-gx-2{--bs-gutter-x:8px}.ur-g-2,.ur-gy-2{--bs-gutter-y:8px}.ur-g-3,.ur-gx-3{--bs-gutter-x:12px}.ur-g-3,.ur-gy-3{--bs-gutter-y:12px}.ur-g-4,.ur-gx-4{--bs-gutter-x:16px}.ur-g-4,.ur-gy-4{--bs-gutter-y:16px}.ur-g-5,.ur-gx-5{--bs-gutter-x:20px}.ur-g-5,.ur-gy-5{--bs-gutter-y:20px}.ur-g-6,.ur-gx-6{--bs-gutter-x:24px}.ur-g-6,.ur-gy-6{--bs-gutter-y:24px}.ur-g-7,.ur-gx-7{--bs-gutter-x:28px}.ur-g-7,.ur-gy-7{--bs-gutter-y:28px}.ur-g-8,.ur-gx-8{--bs-gutter-x:32px}.ur-g-8,.ur-gy-8{--bs-gutter-y:32px}@media (min-width:576px){.ur-col-sm{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-sm-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-sm-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-sm-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-sm-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-sm-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-sm-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-sm-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-sm-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-sm-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-sm-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-sm-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-sm-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-sm-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-sm-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-sm-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-sm-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-sm-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-sm-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-sm-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-sm-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-sm-0{margin-right:0}.ur-offset-sm-1{margin-right:8.3333333333%}.ur-offset-sm-2{margin-right:16.6666666667%}.ur-offset-sm-3{margin-right:25%}.ur-offset-sm-4{margin-right:33.3333333333%}.ur-offset-sm-5{margin-right:41.6666666667%}.ur-offset-sm-6{margin-right:50%}.ur-offset-sm-7{margin-right:58.3333333333%}.ur-offset-sm-8{margin-right:66.6666666667%}.ur-offset-sm-9{margin-right:75%}.ur-offset-sm-10{margin-right:83.3333333333%}.ur-offset-sm-11{margin-right:91.6666666667%}.ur-g-sm-0,.ur-gx-sm-0{--bs-gutter-x:0}.ur-g-sm-0,.ur-gy-sm-0{--bs-gutter-y:0}.ur-g-sm-1,.ur-gx-sm-1{--bs-gutter-x:4px}.ur-g-sm-1,.ur-gy-sm-1{--bs-gutter-y:4px}.ur-g-sm-2,.ur-gx-sm-2{--bs-gutter-x:8px}.ur-g-sm-2,.ur-gy-sm-2{--bs-gutter-y:8px}.ur-g-sm-3,.ur-gx-sm-3{--bs-gutter-x:12px}.ur-g-sm-3,.ur-gy-sm-3{--bs-gutter-y:12px}.ur-g-sm-4,.ur-gx-sm-4{--bs-gutter-x:16px}.ur-g-sm-4,.ur-gy-sm-4{--bs-gutter-y:16px}.ur-g-sm-5,.ur-gx-sm-5{--bs-gutter-x:20px}.ur-g-sm-5,.ur-gy-sm-5{--bs-gutter-y:20px}.ur-g-sm-6,.ur-gx-sm-6{--bs-gutter-x:24px}.ur-g-sm-6,.ur-gy-sm-6{--bs-gutter-y:24px}.ur-g-sm-7,.ur-gx-sm-7{--bs-gutter-x:28px}.ur-g-sm-7,.ur-gy-sm-7{--bs-gutter-y:28px}.ur-g-sm-8,.ur-gx-sm-8{--bs-gutter-x:32px}.ur-g-sm-8,.ur-gy-sm-8{--bs-gutter-y:32px}}@media (min-width:768px){.ur-col-md{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-md-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-md-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-md-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-md-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-md-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-md-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-md-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-md-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-md-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-md-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-md-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-md-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-md-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-md-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-md-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-md-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-md-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-md-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-md-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-md-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-md-0{margin-right:0}.ur-offset-md-1{margin-right:8.3333333333%}.ur-offset-md-2{margin-right:16.6666666667%}.ur-offset-md-3{margin-right:25%}.ur-offset-md-4{margin-right:33.3333333333%}.ur-offset-md-5{margin-right:41.6666666667%}.ur-offset-md-6{margin-right:50%}.ur-offset-md-7{margin-right:58.3333333333%}.ur-offset-md-8{margin-right:66.6666666667%}.ur-offset-md-9{margin-right:75%}.ur-offset-md-10{margin-right:83.3333333333%}.ur-offset-md-11{margin-right:91.6666666667%}.ur-g-md-0,.ur-gx-md-0{--bs-gutter-x:0}.ur-g-md-0,.ur-gy-md-0{--bs-gutter-y:0}.ur-g-md-1,.ur-gx-md-1{--bs-gutter-x:4px}.ur-g-md-1,.ur-gy-md-1{--bs-gutter-y:4px}.ur-g-md-2,.ur-gx-md-2{--bs-gutter-x:8px}.ur-g-md-2,.ur-gy-md-2{--bs-gutter-y:8px}.ur-g-md-3,.ur-gx-md-3{--bs-gutter-x:12px}.ur-g-md-3,.ur-gy-md-3{--bs-gutter-y:12px}.ur-g-md-4,.ur-gx-md-4{--bs-gutter-x:16px}.ur-g-md-4,.ur-gy-md-4{--bs-gutter-y:16px}.ur-g-md-5,.ur-gx-md-5{--bs-gutter-x:20px}.ur-g-md-5,.ur-gy-md-5{--bs-gutter-y:20px}.ur-g-md-6,.ur-gx-md-6{--bs-gutter-x:24px}.ur-g-md-6,.ur-gy-md-6{--bs-gutter-y:24px}.ur-g-md-7,.ur-gx-md-7{--bs-gutter-x:28px}.ur-g-md-7,.ur-gy-md-7{--bs-gutter-y:28px}.ur-g-md-8,.ur-gx-md-8{--bs-gutter-x:32px}.ur-g-md-8,.ur-gy-md-8{--bs-gutter-y:32px}}@media (min-width:992px){.ur-col-lg{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-lg-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-lg-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-lg-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-lg-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-lg-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-lg-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-lg-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-lg-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-lg-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-lg-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-lg-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-lg-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-lg-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-lg-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-lg-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-lg-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-lg-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-lg-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-lg-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-lg-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-lg-0{margin-right:0}.ur-offset-lg-1{margin-right:8.3333333333%}.ur-offset-lg-2{margin-right:16.6666666667%}.ur-offset-lg-3{margin-right:25%}.ur-offset-lg-4{margin-right:33.3333333333%}.ur-offset-lg-5{margin-right:41.6666666667%}.ur-offset-lg-6{margin-right:50%}.ur-offset-lg-7{margin-right:58.3333333333%}.ur-offset-lg-8{margin-right:66.6666666667%}.ur-offset-lg-9{margin-right:75%}.ur-offset-lg-10{margin-right:83.3333333333%}.ur-offset-lg-11{margin-right:91.6666666667%}.ur-g-lg-0,.ur-gx-lg-0{--bs-gutter-x:0}.ur-g-lg-0,.ur-gy-lg-0{--bs-gutter-y:0}.ur-g-lg-1,.ur-gx-lg-1{--bs-gutter-x:4px}.ur-g-lg-1,.ur-gy-lg-1{--bs-gutter-y:4px}.ur-g-lg-2,.ur-gx-lg-2{--bs-gutter-x:8px}.ur-g-lg-2,.ur-gy-lg-2{--bs-gutter-y:8px}.ur-g-lg-3,.ur-gx-lg-3{--bs-gutter-x:12px}.ur-g-lg-3,.ur-gy-lg-3{--bs-gutter-y:12px}.ur-g-lg-4,.ur-gx-lg-4{--bs-gutter-x:16px}.ur-g-lg-4,.ur-gy-lg-4{--bs-gutter-y:16px}.ur-g-lg-5,.ur-gx-lg-5{--bs-gutter-x:20px}.ur-g-lg-5,.ur-gy-lg-5{--bs-gutter-y:20px}.ur-g-lg-6,.ur-gx-lg-6{--bs-gutter-x:24px}.ur-g-lg-6,.ur-gy-lg-6{--bs-gutter-y:24px}.ur-g-lg-7,.ur-gx-lg-7{--bs-gutter-x:28px}.ur-g-lg-7,.ur-gy-lg-7{--bs-gutter-y:28px}.ur-g-lg-8,.ur-gx-lg-8{--bs-gutter-x:32px}.ur-g-lg-8,.ur-gy-lg-8{--bs-gutter-y:32px}}@media (min-width:1200px){.ur-col-xl{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-xl-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-xl-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-xl-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-xl-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-xl-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-xl-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-xl-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-xl-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-xl-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-xl-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-xl-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-xl-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-xl-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-xl-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-xl-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-xl-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-xl-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-xl-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-xl-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-xl-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-xl-0{margin-right:0}.ur-offset-xl-1{margin-right:8.3333333333%}.ur-offset-xl-2{margin-right:16.6666666667%}.ur-offset-xl-3{margin-right:25%}.ur-offset-xl-4{margin-right:33.3333333333%}.ur-offset-xl-5{margin-right:41.6666666667%}.ur-offset-xl-6{margin-right:50%}.ur-offset-xl-7{margin-right:58.3333333333%}.ur-offset-xl-8{margin-right:66.6666666667%}.ur-offset-xl-9{margin-right:75%}.ur-offset-xl-10{margin-right:83.3333333333%}.ur-offset-xl-11{margin-right:91.6666666667%}.ur-g-xl-0,.ur-gx-xl-0{--bs-gutter-x:0}.ur-g-xl-0,.ur-gy-xl-0{--bs-gutter-y:0}.ur-g-xl-1,.ur-gx-xl-1{--bs-gutter-x:4px}.ur-g-xl-1,.ur-gy-xl-1{--bs-gutter-y:4px}.ur-g-xl-2,.ur-gx-xl-2{--bs-gutter-x:8px}.ur-g-xl-2,.ur-gy-xl-2{--bs-gutter-y:8px}.ur-g-xl-3,.ur-gx-xl-3{--bs-gutter-x:12px}.ur-g-xl-3,.ur-gy-xl-3{--bs-gutter-y:12px}.ur-g-xl-4,.ur-gx-xl-4{--bs-gutter-x:16px}.ur-g-xl-4,.ur-gy-xl-4{--bs-gutter-y:16px}.ur-g-xl-5,.ur-gx-xl-5{--bs-gutter-x:20px}.ur-g-xl-5,.ur-gy-xl-5{--bs-gutter-y:20px}.ur-g-xl-6,.ur-gx-xl-6{--bs-gutter-x:24px}.ur-g-xl-6,.ur-gy-xl-6{--bs-gutter-y:24px}.ur-g-xl-7,.ur-gx-xl-7{--bs-gutter-x:28px}.ur-g-xl-7,.ur-gy-xl-7{--bs-gutter-y:28px}.ur-g-xl-8,.ur-gx-xl-8{--bs-gutter-x:32px}.ur-g-xl-8,.ur-gy-xl-8{--bs-gutter-y:32px}}@media (min-width:1400px){.ur-col-xxl{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-xxl-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-xxl-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-xxl-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-xxl-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-xxl-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-xxl-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-xxl-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-xxl-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-xxl-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-xxl-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-xxl-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-xxl-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-xxl-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-xxl-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-xxl-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-xxl-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-xxl-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-xxl-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-xxl-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-xxl-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-xxl-0{margin-right:0}.ur-offset-xxl-1{margin-right:8.3333333333%}.ur-offset-xxl-2{margin-right:16.6666666667%}.ur-offset-xxl-3{margin-right:25%}.ur-offset-xxl-4{margin-right:33.3333333333%}.ur-offset-xxl-5{margin-right:41.6666666667%}.ur-offset-xxl-6{margin-right:50%}.ur-offset-xxl-7{margin-right:58.3333333333%}.ur-offset-xxl-8{margin-right:66.6666666667%}.ur-offset-xxl-9{margin-right:75%}.ur-offset-xxl-10{margin-right:83.3333333333%}.ur-offset-xxl-11{margin-right:91.6666666667%}.ur-g-xxl-0,.ur-gx-xxl-0{--bs-gutter-x:0}.ur-g-xxl-0,.ur-gy-xxl-0{--bs-gutter-y:0}.ur-g-xxl-1,.ur-gx-xxl-1{--bs-gutter-x:4px}.ur-g-xxl-1,.ur-gy-xxl-1{--bs-gutter-y:4px}.ur-g-xxl-2,.ur-gx-xxl-2{--bs-gutter-x:8px}.ur-g-xxl-2,.ur-gy-xxl-2{--bs-gutter-y:8px}.ur-g-xxl-3,.ur-gx-xxl-3{--bs-gutter-x:12px}.ur-g-xxl-3,.ur-gy-xxl-3{--bs-gutter-y:12px}.ur-g-xxl-4,.ur-gx-xxl-4{--bs-gutter-x:16px}.ur-g-xxl-4,.ur-gy-xxl-4{--bs-gutter-y:16px}.ur-g-xxl-5,.ur-gx-xxl-5{--bs-gutter-x:20px}.ur-g-xxl-5,.ur-gy-xxl-5{--bs-gutter-y:20px}.ur-g-xxl-6,.ur-gx-xxl-6{--bs-gutter-x:24px}.ur-g-xxl-6,.ur-gy-xxl-6{--bs-gutter-y:24px}.ur-g-xxl-7,.ur-gx-xxl-7{--bs-gutter-x:28px}.ur-g-xxl-7,.ur-gy-xxl-7{--bs-gutter-y:28px}.ur-g-xxl-8,.ur-gx-xxl-8{--bs-gutter-x:32px}.ur-g-xxl-8,.ur-gy-xxl-8{--bs-gutter-y:32px}}.user-registration-overlay{background-color:rgba(45,53,89,.3);position:absolute;right:0;left:0;top:0;bottom:0;z-index:1}.user-registration-overlay.is-fixed{position:fixed}#wpcontent .user-registration-overlay{margin-right:-20px}.user-registration-overlay .ur-spinner{position:absolute;right:0;left:0;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0 auto}.user-registration-overlay .ur-spinner::before{width:20px;height:20px}#wpcontent .wrap .user-registration-header{margin:-10px -22px 0 -20px}.user-registration-header{background:#fff;padding:12px 16px}.user-registration_page_user-registration-settings .user-registration-header{background-color:#475bb2;padding:20px 0 0}.user-registration_page_user-registration-settings .user-registration-header .ur-scroll-ui__scroll-nav__icon{color:#fff}.user-registration_page_user-registration-settings .user-registration-header .ur-scroll-ui__scroll-nav--backward{background:-webkit-gradient(linear,left top,right top,from(rgba(71,91,178,.3)),color-stop(rgba(71,91,178,.85)),to(#475bb2));background:-webkit-linear-gradient(left,rgba(71,91,178,.3),rgba(71,91,178,.85),#475bb2);background:linear-gradient(to right,rgba(71,91,178,.3),rgba(71,91,178,.85),#475bb2)}.user-registration_page_user-registration-settings .user-registration-header .ur-scroll-ui__scroll-nav--forward{background:-webkit-gradient(linear,right top,left top,from(rgba(71,91,178,.3)),color-stop(rgba(71,91,178,.85)),to(#475bb2));background:-webkit-linear-gradient(right,rgba(71,91,178,.3),rgba(71,91,178,.85),#475bb2);background:linear-gradient(to left,rgba(71,91,178,.3),rgba(71,91,178,.85),#475bb2)}.user-registration_page_user-registration-settings .user-registration-header .subsubsub{background:#fff;font-size:13px;padding:0 16px;margin-top:0;float:none;text-align:right}.user-registration_page_user-registration-settings .user-registration-header .subsubsub a{color:#2d3559;display:block;font-weight:500;padding:8px 12px}.user-registration_page_user-registration-settings .user-registration-header .subsubsub a.current{color:#475bb2}.user-registration-template-setup{max-width:1074px;margin:40px auto 0}.user-registration-template-setup *,.user-registration-template-setup ::after,.user-registration-template-setup ::before{box-sizing:border-box}.user-registration-template-wrap{cursor:pointer;margin-bottom:24px}.user-registration-template-wrap#user-registration-email-template-blank .user-registration-template-wrap__figure::before{content:'';display:block;background-color:rgba(45,53,89,.2);position:absolute;top:0;bottom:0;width:100%;-webkit-transition:all .3s ease 0s;transition:all .3s ease 0s;opacity:0;visibility:none}.user-registration-template-wrap#user-registration-email-template-blank:hover .user-registration-template-wrap__figure::before{opacity:1;visibility:visible}.user-registration-template-wrap__figure{background-color:#f0f1f5;margin:0;min-height:260px;position:relative;border-radius:4px;overflow:hidden}.user-registration-template-wrap__figure img{max-width:100%;display:block}.user-registration-template-wrap__overlay{background:rgba(45,53,89,.6);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;position:absolute;right:0;left:0;top:0;bottom:0;-webkit-transition:all .3s ease 0s;transition:all .3s ease 0s;visibility:hidden;opacity:0}.user-registration-template-wrap__overlay .button{border-color:#fff}.user-registration-template-wrap__title{color:#4c5477;font-size:16px;font-weight:500}.user-registration-template-wrap__title:hover{color:#475bb2}.user-registration-template-wrap:hover .user-registration-template-wrap__overlay{visibility:visible;opacity:1}@-webkit-keyframes spin{100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}@keyframes spin{100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}@-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)}}.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}.toplevel_page_user-registration .shortcode .widefat,.user-registration_page_user-registration-frontend-list .shortcode .widefat{width:calc(100% - 40px)}.toplevel_page_user-registration .shortcode .ur-copy-shortcode,.user-registration_page_user-registration-frontend-list .shortcode .ur-copy-shortcode{padding:4px;line-height:1}.user-registration_page_user-registration-settings .notice{display:none}.ur-spinner{width:16px;height:16px;margin-right:6px;margin-bottom:2px;display:inline-block;vertical-align:middle}.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}.user-registration__wrap *,.user-registration__wrap ::after,.user-registration__wrap ::before{box-sizing:border-box}.ur-export-users-page{margin-top:24px}.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 .nav-tab-inside .postbox .hndle{border-bottom:1px solid #ccd0d4}.swal2-container .user-registration-swal2-modal .ur-export-users-page .nav-tab-content .nav-tab-inside .postbox .swal2-input,.ur-export-users-page .nav-tab-content .nav-tab-inside .postbox .swal2-container .user-registration-swal2-modal .swal2-input,.ur-export-users-page .nav-tab-content .nav-tab-inside .postbox .ur-input{max-width:inherit}.ur-export-users-page .nav-tab-content .hndle,.ur-export-users-page .nav-tab-content .stuffbox .hndle{margin:10px;padding-bottom:10px}.ur-export-users-page .nav-tab-content .stuffbox{padding:10px}.ur-label .user-registration-help-tip{margin-right:2px}.ur_addons_wrap *,.ur_addons_wrap ::after,.ur_addons_wrap ::before{box-sizing:border-box}.ur_addons_wrap .products{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-right:-12px;margin-left:-12px}.ur_addons_wrap .products li{width:20%;padding:0 12px;-webkit-box-flex:0;-webkit-flex:0 0 20%;flex:0 0 20%;margin-bottom:24px}@media only screen and (max-width:1599px){.ur_addons_wrap .products li{width:33.333%;-webkit-box-flex:0;-webkit-flex:0 0 33.333%;flex:0 0 33.333%}}@media only screen and (max-width:768px){.ur_addons_wrap .products li{width:50%;-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%}}@media only screen and (max-width:480px){.ur_addons_wrap .products li{width:100%;-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;margin-bottom:12px}}.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;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 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 label{display:inline-block}.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,.ur-registered-from h4{color:#2d3559;font-weight:500}.ur-registered-from h4{font-size:16px}.ur-registered-from .ur-field label{font-weight:400;word-break:break-all}.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 .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-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;margin:0;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}.ur-portal-tooltip,.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}.ur-portal-tooltip::after,.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}#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)}.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:#37b24d}.ur-builder-message-container .ur-message .ur-success p::before{content:"\f12a";color:#37b24d}.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 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 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 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}}
1
+ @charset "UTF-8";.ur-d-none{display:none!important}.ur-d-inline{display:inline!important}.ur-d-inline-block{display:inline-block!important}.ur-d-block{display:block!important}.ur-d-table{display:table!important}.ur-d-table-row{display:table-row!important}.ur-d-table-cell{display:table-cell!important}.ur-d-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}@media (min-width:576px){.ur-d-sm-none{display:none!important}.ur-d-sm-inline{display:inline!important}.ur-d-sm-inline-block{display:inline-block!important}.ur-d-sm-block{display:block!important}.ur-d-sm-table{display:table!important}.ur-d-sm-table-row{display:table-row!important}.ur-d-sm-table-cell{display:table-cell!important}.ur-d-sm-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-sm-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}}@media (min-width:768px){.ur-d-md-none{display:none!important}.ur-d-md-inline{display:inline!important}.ur-d-md-inline-block{display:inline-block!important}.ur-d-md-block{display:block!important}.ur-d-md-table{display:table!important}.ur-d-md-table-row{display:table-row!important}.ur-d-md-table-cell{display:table-cell!important}.ur-d-md-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-md-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}}@media (min-width:992px){.ur-d-lg-none{display:none!important}.ur-d-lg-inline{display:inline!important}.ur-d-lg-inline-block{display:inline-block!important}.ur-d-lg-block{display:block!important}.ur-d-lg-table{display:table!important}.ur-d-lg-table-row{display:table-row!important}.ur-d-lg-table-cell{display:table-cell!important}.ur-d-lg-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-lg-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}}@media (min-width:1200px){.ur-d-xl-none{display:none!important}.ur-d-xl-inline{display:inline!important}.ur-d-xl-inline-block{display:inline-block!important}.ur-d-xl-block{display:block!important}.ur-d-xl-table{display:table!important}.ur-d-xl-table-row{display:table-row!important}.ur-d-xl-table-cell{display:table-cell!important}.ur-d-xl-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-xl-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}}@media (min-width:1400px){.ur-d-xxl-none{display:none!important}.ur-d-xxl-inline{display:inline!important}.ur-d-xxl-inline-block{display:inline-block!important}.ur-d-xxl-block{display:block!important}.ur-d-xxl-table{display:table!important}.ur-d-xxl-table-row{display:table-row!important}.ur-d-xxl-table-cell{display:table-cell!important}.ur-d-xxl-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-xxl-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}}.ur-flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}@media (min-width:576px){.ur-flex-sm-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-sm-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-sm-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-sm-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-sm-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-sm-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-sm-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-sm-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-sm-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-sm-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-sm-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-sm-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-sm-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-sm-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-sm-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-sm-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-sm-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-sm-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-sm-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-sm-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-sm-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-sm-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-sm-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-sm-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-sm-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-sm-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-sm-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-sm-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-sm-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-sm-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-sm-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}@media (min-width:768px){.ur-flex-md-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-md-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-md-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-md-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-md-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-md-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-md-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-md-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-md-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-md-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-md-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-md-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-md-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-md-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-md-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-md-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-md-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-md-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-md-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-md-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-md-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-md-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-md-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-md-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-md-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-md-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-md-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-md-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-md-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-md-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-md-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}@media (min-width:992px){.ur-flex-lg-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-lg-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-lg-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-lg-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-lg-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-lg-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-lg-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-lg-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-lg-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-lg-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-lg-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-lg-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-lg-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-lg-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-lg-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-lg-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-lg-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-lg-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-lg-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-lg-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-lg-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-lg-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-lg-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-lg-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-lg-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-lg-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-lg-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-lg-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-lg-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-lg-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-lg-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.ur-flex-xl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-xl-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-xl-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-xl-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-xl-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-xl-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-xl-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-xl-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-xl-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-xl-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-xl-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-xl-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-xl-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-xl-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-xl-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-xl-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-xl-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-xl-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-xl-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-xl-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-xl-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-xl-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-xl-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-xl-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-xl-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-xl-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-xl-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-xl-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-xl-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-xl-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-xl-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}@media (min-width:1400px){.ur-flex-xxl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-xxl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-xxl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-xxl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-xxl-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-xxl-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-xxl-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-xxl-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-xxl-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-xxl-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-xxl-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-xxl-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-xxl-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-xxl-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-xxl-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-xxl-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-xxl-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-xxl-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-xxl-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-xxl-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-xxl-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-xxl-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-xxl-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-xxl-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-xxl-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-xxl-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-xxl-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-xxl-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-xxl-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-xxl-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-xxl-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-xxl-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-xxl-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-xxl-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}.ur-ml-auto{margin-right:auto}.ur-mr-auto{margin-right:auto}.ur-h2,.ur-h3,.ur-h4{font-weight:600!important}.ur-h2{font-size:28px!important}.ur-h3{font-size:20px!important}.ur-h4{font-size:16px!important}.ur-text-center{text-align:center}.ur-text-right{text-align:left}.ur-text-muted{color:#b6bbcf}@font-face{font-family:UserRegistration;src:url(../fonts/UserRegistration.eot?nk6vrg);src:url(../fonts/UserRegistration.eot?nk6vrg#iefix) format("embedded-opentype"),url(../fonts/UserRegistration.ttf?nk6vrg) format("truetype"),url(../fonts/UserRegistration.woff?nk6vrg) format("woff"),url(../fonts/UserRegistration.svg?nk6vrg#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-icon-credit-card::before{content:""}.ur-icon-range::before{content:""}.ur-icon-course::before{content:""}.ur-icon-mailerlite::before{content:""}.user-registration-table{width:100%;background:#fff;border-collapse:collapse}.user-registration-table__column-md{width:40%}.user-registration-table__column-sm{width:20%}.user-registration-table__column-auto{width:1%;white-space:nowrap}.user-registration-table__img{height:40px;width:40px;border-radius:4px;overflow:hidden}.user-registration-table caption,.user-registration-table td,.user-registration-table th{padding:1rem .5rem;text-align:right;border-bottom:1px solid #dee0e9}.user-registration-table caption:first-child,.user-registration-table td:first-child,.user-registration-table th:first-child{padding-right:1rem}.user-registration-table caption:last-child,.user-registration-table td:last-child,.user-registration-table th:last-child{padding-left:1rem}.user-registration-table td{vertical-align:top}.user-registration-table caption,.user-registration-table th{font-size:14px;font-weight:500}.user-registration-table thead th{background:#fafafc}.user-registration-table input,.user-registration-table select,.user-registration-table textarea{width:100%;box-shadow:none;border-radius:4px}.ur-form-group{margin-bottom:16px}.ur-label{display:block;width:100%;margin-bottom:8px;color:#4c5477;font-size:13px;font-weight:500;line-height:1.25}.swal2-container .user-registration-swal2-modal .swal2-input,.ur-input{display:block;width:100%;border:1px solid #dee0e9;border-radius:4px}.user-registration-custom-file{color:#676d8a;font-size:14px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;position:relative}.user-registration-custom-file input{position:absolute;z-index:2;width:100%;margin:0;opacity:0}.user-registration-custom-file__label{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;width:100%;padding:2px 8px 2px 2px;background-color:#fff;border:1px solid #dee0e9;border-radius:4px;z-index:1}.user-registration-custom-file__button{margin-right:auto;display:inline-block;background:#676d8a;color:#fff;padding:6px 15px;border-radius:4px}.user-registration-custom-file+.help{margin-top:4px}.ur-form-field--sm{width:80px;-webkit-box-flex:0;-webkit-flex:0 0 80px;flex:0 0 80px}.user-registration-editable-title{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;position:relative}.user-registration-editable-title .user-registration-editable-title__icon{background:#dee0e9;color:#4c5477;width:32px;height:32px;-webkit-box-flex:0;-webkit-flex:0 0 32px;flex:0 0 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}.user-registration-editable-title .user-registration-editable-title__icon::after{content:"";border-radius:3px;position:absolute;right:32px;left:calc(100% - 32px);height:32px;border-radius:3px 0 0 3px;-webkit-transition:all .3s ease 0s;transition:all .3s ease 0s}.user-registration-editable-title .user-registration-editable-title__input{color:#2d3559;background:0 0;font-size:16px;font-weight:500;width:auto;height:32px;padding:4px 8px;pointer-events:none;border:1px solid transparent!important;border-radius:4px 0 0 4px;z-index:1}.user-registration-editable-title .user-registration-editable-title__input.is-editing{border-color:transparent;pointer-events:all}.user-registration-editable-title .user-registration-editable-title__input.is-editing+.user-registration-editable-title__icon{color:#fff;background:#475bb2;border-radius:0 3px 3px 0}.user-registration-editable-title .user-registration-editable-title__input.is-editing+.user-registration-editable-title__icon::after{top:0;left:0;border:1px solid #475bb2}.user-registration-editable-title .user-registration-editable-title__input:focus{box-shadow:none}.user-registration-switch{display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.user-registration-switch input[type=checkbox]{display:none}.user-registration-switch input[type=checkbox].user-registration-switch__control{background:#676d8a;width:28px;height:18px;border-radius:10px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-flex:0;-webkit-flex:0 0 28px;flex:0 0 28px;margin:0;position:relative;border:2px solid #676d8a;-webkit-transition:.1s -webkit-transform ease;transition:.1s -webkit-transform ease;transition:.1s transform ease;transition:.1s transform ease,.1s -webkit-transform ease;box-sizing:border-box}.user-registration-switch input[type=checkbox].user-registration-switch__control::before{content:none}.user-registration-switch input[type=checkbox].user-registration-switch__control::after{display:inline-block;content:"";height:14px;width:14px;background:#fff;border-radius:50%;position:absolute;-webkit-transition:.1s -webkit-transform ease;transition:.1s -webkit-transform ease;transition:.1s transform ease;transition:.1s transform ease,.1s -webkit-transform ease}.user-registration-switch input[type=checkbox]:checked{background:#37b24d;border-color:#37b24d}.user-registration-switch input[type=checkbox]:checked::after{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}.user-registration-switch label{margin:0 8px 0 0!important}.user-registration input{border-color:#dee0e9}.user-registration .select2.select2-container{width:100%!important}.user-registration .select2-results__option .wrap:before{content:"\2610";width:25px;height:25px;padding-left:10px}.user-registration .select2-results__option[data-selected=true] .wrap:before{content:"\2714"}.user-registration .select2-drop,.user-registration .select2-dropdown{z-index:999999!important}.user-registration .select2-results{line-height:1.5em}.user-registration .select2-results .select2-results__group,.user-registration .select2-results .select2-results__option{margin:0;padding:8px}.user-registration .select2-dropdown{border-color:#dee0e9}.user-registration .select2-dropdown--below{box-shadow:0 1px 1px rgba(0,0,0,.1)}.user-registration .select2-dropdown--above{box-shadow:0 -1px 1px rgba(0,0,0,.1)}.user-registration .select2-container .select2-selection__rendered.ui-sortable li{cursor:move}.user-registration .select2-container .select2-selection{border-color:#dee0e9}.user-registration .select2-container .select2-search__field{min-width:20px}.user-registration .select2-container .select2-selection--single{height:32px}.user-registration .select2-container .select2-selection--single .select2-selection__rendered{display:block;line-height:32px;padding-left:24px}.user-registration .select2-container .select2-selection--single .select2-selection__arrow{left:3px;height:30px}.user-registration .select2-container .select2-selection--multiple{min-height:28px;border-radius:4px;line-height:1.5;border:1px solid #ddd!important;padding-right:4px}.user-registration .select2-container .select2-selection--multiple li{margin:0}.user-registration .select2-container .select2-selection--multiple .select2-selection__choice{padding:2px 6px}.user-registration .select2-container .select2-selection--multiple .select2-selection__rendered{display:-webkit-box;display:-webkit-flex;display:flex;margin:0}.user-registration .select2-container .select2-selection--multiple .select2-selection__rendered .select2-selection__choice{margin:4px;line-height:1.4;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}.user-registration .select2-container .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove{bottom:0}.user-registration .select2-container .select2-selection__clear{color:#999;margin-top:-1px}.user-registration .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;height:32px}.user-registration-badge{display:inline-block;font-size:1em;line-height:1;padding:4px 8px;border-radius:10px}.user-registration-badge.user-registration-badge--primary{background:#475bb2;color:#fff}.user-registration-badge.user-registration-badge--primary-subtle{background:#c4cbe7;color:#475bb2}.user-registration-badge.user-registration-badge--secondary{background:#676d8a;color:#fff}.user-registration-badge.user-registration-badge--secondary-subtle{background:#cbced9;color:#676d8a}.user-registration-badge.user-registration-badge--success{background:#37b24d;color:#fff}.user-registration-badge.user-registration-badge--success-subtle{background:#b4e8bd;color:#2b8b3c}.user-registration-badge.user-registration-badge--danger{background:#ff4149;color:#fff}.user-registration-badge.user-registration-badge--danger-subtle{background:#ffdadc;color:#ff4149}.user-registration-badge.user-registration-badge--warning{background:#ffba00;color:#fff}.user-registration-badge.user-registration-badge--warning-subtle{background:#ffeab3;color:#b38200}.user-registration-badge.user-registration-badge--info{background:#2ea2cc;color:#fff}.user-registration-badge.user-registration-badge--info-subtle{background:#bce2f0;color:#2991b7}.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;box-shadow:0 1px 3px rgba(182,187,207,.15)}.ur-form-container .button+.button,.ur-form-container .button+button,.ur-form-container button+.button,.ur-form-container button+button,.user-registration .button+.button,.user-registration .button+button,.user-registration button+.button,.user-registration button+button{margin-right:6px}.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;text-align:center}.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:.9;vertical-align:middle}.ur-form-container .button.button-icon svg,.ur-form-container button.button-icon svg,.user-registration .button.button-icon svg,.user-registration button.button-icon svg{display:block;margin:0 auto}.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.is-active,.ur-form-container button.is-active,.user-registration .button.is-active,.user-registration button.is-active{background:#475bb2;color:#fff;border-color:#475bb2}.ur-form-container .button.is-active:active,.ur-form-container .button.is-active:focus,.ur-form-container .button.is-active:hover,.ur-form-container button.is-active:active,.ur-form-container button.is-active:focus,.ur-form-container button.is-active:hover,.user-registration .button.is-active:active,.user-registration .button.is-active:focus,.user-registration .button.is-active:hover,.user-registration button.is-active:active,.user-registration button.is-active:focus,.user-registration button.is-active:hover{background:#475bb2;color:#fff;border-color:#475bb2}.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}.ur-form-container .button-tertiary,.user-registration .button-tertiary{background:#fff;color:#2d3559;border:1px solid #dee0e9}.ur-form-container .button-tertiary:active,.ur-form-container .button-tertiary:focus,.ur-form-container .button-tertiary:hover,.user-registration .button-tertiary:active,.user-registration .button-tertiary:focus,.user-registration .button-tertiary:hover{background:#f0f1f5;border-color:#dee0e9}.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}.user-registration-button-group{position:relative;display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;vertical-align:middle}.user-registration-button-group .button:not(:first-child),.user-registration-button-group>button:not(:first-child){margin-right:-1px;border-top-right-radius:0;border-bottom-right-radius:0}.user-registration-button-group .button:not(:last-child),.user-registration-button-group>button:not(:last-child){border-top-left-radius:0;border-bottom-left-radius:0}.user-registration-button-group .button,.user-registration-button-group button{margin-left:0!important}.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}.user-registration-card{background:#fff;border-radius:4px;display:block;border:1px solid #dee0e9}.user-registration-card a{text-decoration:none}.user-registration-card__header{padding:16px 20px;border-bottom:1px solid #dee0e9}.user-registration-card__title{font-size:1.25em;line-height:1.3;margin:0;font-weight:600}.user-registration-card__body{padding:20px}.user-registration-list-group{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;padding-right:0;margin-bottom:0}.user-registration-list-group--flush>.user-registration-list-group__item{border-width:0 0 1px}.user-registration-list-group--flush>.user-registration-list-group__item:last-child{border-bottom-width:0}.user-registration-list-group--no-gutter .user-registration-list-group__item{padding-left:0;padding-right:0}.user-registration-list-group__item{position:relative;display:block;padding:1rem 1.25rem;background-color:transparent;border:1px solid #dee0e9}.user-registration-list-group__item:first-child{border-top-right-radius:8px;border-top-left-radius:8px}.user-registration-page.user-registration-modal-open{overflow:hidden}.user-registration-page.user-registration-modal-open .user-registration-modal{max-width:100%}.user-registration-modal{position:fixed;top:0;right:0;left:0;height:100%;width:100%;margin:0 auto!important;overflow-x:hidden;overflow-y:auto;z-index:999}.user-registration-modal .user-registration-modal__backdrop{position:fixed;right:0;top:0;background-color:rgba(45,53,89,.5);min-width:100%;min-height:100%;z-index:1}.user-registration-modal .user-registration-modal__content{background:#fff;position:relative;width:auto;margin:16px;border-radius:8px;z-index:99999;box-shadow:0 3px 25px 0 rgba(45,53,89,.4)}@media (min-width:576px){.user-registration-modal .user-registration-modal__content{max-width:500px;margin:24px auto}}@media (min-width:992px){.user-registration-modal .user-registration-modal__content.user-registration-modal__content--lg,.user-registration-modal .user-registration-modal__content.user-registration-modal__content--xl{max-width:800px}}@media (min-width:1200px){.user-registration-modal .user-registration-modal__content.user-registration-modal__content--xl{max-width:1140px}}.user-registration-modal .user-registration-modal__header{display:-webkit-box;display:-webkit-flex;display:flex;padding:16px;border-bottom:1px solid #dee0e9}.user-registration-modal .user-registration-modal__header .user-registration-modal__title{font-size:20px;line-height:1.4;margin:0;padding:0}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon{position:relative;display:block;width:32px;height:32px;-webkit-box-flex:0;-webkit-flex:0 0 32px;flex:0 0 32px;cursor:pointer;margin-right:auto}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::after,.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::before{content:"";height:2px;width:16px;display:block;position:absolute;top:50%;right:0;left:0;margin:0 auto;background:#b6bbcf}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::before{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.user-registration-modal .user-registration-modal__body{position:relative;padding:16px}.user-registration-modal .user-registration-modal__body #user-registration,.user-registration-modal .user-registration-modal__body .login,.user-registration-modal .user-registration-modal__body .user-registration{margin:0;padding:0;border:none}.user-registration-modal .user-registration-modal__footer{padding:16px;border-top:1px solid #dee0e9}.user-registration-modal .user-registration-modal__footer *{margin:4px}.swal2-container .user-registration-swal2-modal{padding:40px}.swal2-container .user-registration-swal2-modal .swal2-input{font-size:16px}.swal2-container .user-registration-swal2-modal .swal2-animate-success-icon [class^=swal2-success-circular-line],.swal2-container .user-registration-swal2-modal .swal2-animate-success-icon [class^=swal2-success-line]{-webkit-animation:none;animation:none}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon{width:56px;height:56px;line-height:56px;margin:0 auto 16px;border-width:2px;border-radius:50%}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line]{height:3px;width:28px;top:50%;right:0;left:0;margin:0 auto}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line][class$=left]{-webkit-transform:translateY(-50%) rotate(-45deg);-ms-transform:translateY(-50%) rotate(-45deg);transform:translateY(-50%) rotate(-45deg)}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line][class$=right]{-webkit-transform:translateY(-50%) rotate(45deg);-ms-transform:translateY(-50%) rotate(45deg);transform:translateY(-50%) rotate(45deg)}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line]{height:3px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{width:16px;top:56%;right:10px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:47%;width:32px;left:6px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line]{height:64px;width:32px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-75px;right:27px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-26px;right:82px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success .swal2-success-ring{top:-3px;right:-2px;border-width:2px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success .swal2-success-fix{height:64px;right:2px;left:0;margin:0 auto;top:-2px;bottom:0;width:6px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon::before{font-size:40px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-title{color:#2d3559;font-size:24px;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:16px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-title .dashicons{color:#ff4149;font-size:28px;width:56px;height:56px;line-height:56px;margin:0 auto 16px;border:2px solid #ff4149;border-radius:50%}.swal2-container .user-registration-swal2-modal__title{line-height:1.35;display:block}.swal2-container .user-registration-swal2-modal .swal2-content{color:#4c5477;font-size:1em;line-height:1.5}.swal2-container .user-registration-swal2-modal .swal2-actions button{margin-top:0;margin-bottom:0}.swal2-container .user-registration-swal2-modal--centered .swal2-title{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.ur-nav{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;padding-right:0;margin-bottom:0;list-style:none}.ur-nav--tab{display:-webkit-box;display:-webkit-flex;display:flex;border-bottom:1px solid #dee0e9}.user-registration_page_user-registration-settings .ur-nav--tab{padding:0;margin:0 16px;border-bottom:0}.ur-nav__link{display:block;font-weight:500;color:#2d3559;padding:8px 12px;text-decoration:none;border:1px solid transparent}.ur-nav__link:focus,.ur-nav__link:hover{color:#475bb2}.ur-nav__link.is-active{background-color:#475bb2;border-color:#dee0e9 #dee0e9 #fff;border-radius:4px 4px 0 0}.user-registration_page_user-registration-settings .ur-nav__link{background-color:transparent;color:#fff;margin:0}.user-registration_page_user-registration-settings .ur-nav__link.is-active{background-color:#fff;color:#2d3559;border-color:#fff}.ur-scroll-ui{position:relative;overflow-x:auto;overflow-y:hidden}.ur-scroll-ui__items{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto;overflow-y:hidden;white-space:nowrap;scroll-behavior:smooth}.ur-scroll-ui__items::-webkit-scrollbar{display:none}.ur-scroll-ui__item{display:inline-block;height:100%}.ur-scroll-ui__scroll-nav{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;position:absolute;top:0;bottom:0;padding:8px}.ur-scroll-ui__scroll-nav--backward{right:0}.ur-scroll-ui__scroll-nav--forward{left:0}.ur-scroll-ui__scroll-nav__icon{color:#333;cursor:pointer}.ur-scroll-ui .is-disabled{display:none}.ur-bg-light{background-color:#f0f1f5}.ur-border{border:1px solid #dee0e9!important}.ur-border-top{border-top:1px solid #dee0e9!important}.ur-border-right{border-left:1px solid #dee0e9!important}.ur-border-bottom{border-bottom:1px solid #dee0e9!important}.ur-border-left{border-right:1px solid #dee0e9!important}.ur-border-0{border:0!important}.ur-border-top-0{border-top:0!important}.ur-border-right-0{border-left:0!important}.ur-border-bottom-0{border-bottom:0!important}.ur-border-left-0{border-right:0!important}.ur-m-0{margin:0!important}.ur-mt-0,.ur-my-0{margin-top:0!important}.ur-mr-0,.ur-mx-0{margin-left:0!important}.ur-mb-0,.ur-my-0{margin-bottom:0!important}.ur-ml-0,.ur-mx-0{margin-right:0!important}.ur-m-1{margin:4px!important}.ur-mt-1,.ur-my-1{margin-top:4px!important}.ur-mr-1,.ur-mx-1{margin-left:4px!important}.ur-mb-1,.ur-my-1{margin-bottom:4px!important}.ur-ml-1,.ur-mx-1{margin-right:4px!important}.ur-m-2{margin:8px!important}.ur-mt-2,.ur-my-2{margin-top:8px!important}.ur-mr-2,.ur-mx-2{margin-left:8px!important}.ur-mb-2,.ur-my-2{margin-bottom:8px!important}.ur-ml-2,.ur-mx-2{margin-right:8px!important}.ur-m-3{margin:12px!important}.ur-mt-3,.ur-my-3{margin-top:12px!important}.ur-mr-3,.ur-mx-3{margin-left:12px!important}.ur-mb-3,.ur-my-3{margin-bottom:12px!important}.ur-ml-3,.ur-mx-3{margin-right:12px!important}.ur-m-4{margin:16px!important}.ur-mt-4,.ur-my-4{margin-top:16px!important}.ur-mr-4,.ur-mx-4{margin-left:16px!important}.ur-mb-4,.ur-my-4{margin-bottom:16px!important}.ur-ml-4,.ur-mx-4{margin-right:16px!important}.ur-m-5{margin:20px!important}.ur-mt-5,.ur-my-5{margin-top:20px!important}.ur-mr-5,.ur-mx-5{margin-left:20px!important}.ur-mb-5,.ur-my-5{margin-bottom:20px!important}.ur-ml-5,.ur-mx-5{margin-right:20px!important}.ur-m-6{margin:24px!important}.ur-mt-6,.ur-my-6{margin-top:24px!important}.ur-mr-6,.ur-mx-6{margin-left:24px!important}.ur-mb-6,.ur-my-6{margin-bottom:24px!important}.ur-ml-6,.ur-mx-6{margin-right:24px!important}.ur-m-7{margin:28px!important}.ur-mt-7,.ur-my-7{margin-top:28px!important}.ur-mr-7,.ur-mx-7{margin-left:28px!important}.ur-mb-7,.ur-my-7{margin-bottom:28px!important}.ur-ml-7,.ur-mx-7{margin-right:28px!important}.ur-m-8{margin:32px!important}.ur-mt-8,.ur-my-8{margin-top:32px!important}.ur-mr-8,.ur-mx-8{margin-left:32px!important}.ur-mb-8,.ur-my-8{margin-bottom:32px!important}.ur-ml-8,.ur-mx-8{margin-right:32px!important}.ur-p-0{padding:0!important}.ur-pt-0,.ur-py-0{padding-top:0!important}.ur-pr-0,.ur-px-0{padding-left:0!important}.ur-pb-0,.ur-py-0{padding-bottom:0!important}.ur-pl-0,.ur-px-0{padding-right:0!important}.ur-p-1{padding:4px!important}.ur-pt-1,.ur-py-1{padding-top:4px!important}.ur-pr-1,.ur-px-1{padding-left:4px!important}.ur-pb-1,.ur-py-1{padding-bottom:4px!important}.ur-pl-1,.ur-px-1{padding-right:4px!important}.ur-p-2{padding:8px!important}.ur-pt-2,.ur-py-2{padding-top:8px!important}.ur-pr-2,.ur-px-2{padding-left:8px!important}.ur-pb-2,.ur-py-2{padding-bottom:8px!important}.ur-pl-2,.ur-px-2{padding-right:8px!important}.ur-p-3{padding:12px!important}.ur-pt-3,.ur-py-3{padding-top:12px!important}.ur-pr-3,.ur-px-3{padding-left:12px!important}.ur-pb-3,.ur-py-3{padding-bottom:12px!important}.ur-pl-3,.ur-px-3{padding-right:12px!important}.ur-p-4{padding:16px!important}.ur-pt-4,.ur-py-4{padding-top:16px!important}.ur-pr-4,.ur-px-4{padding-left:16px!important}.ur-pb-4,.ur-py-4{padding-bottom:16px!important}.ur-pl-4,.ur-px-4{padding-right:16px!important}.ur-p-5{padding:20px!important}.ur-pt-5,.ur-py-5{padding-top:20px!important}.ur-pr-5,.ur-px-5{padding-left:20px!important}.ur-pb-5,.ur-py-5{padding-bottom:20px!important}.ur-pl-5,.ur-px-5{padding-right:20px!important}.ur-p-6{padding:24px!important}.ur-pt-6,.ur-py-6{padding-top:24px!important}.ur-pr-6,.ur-px-6{padding-left:24px!important}.ur-pb-6,.ur-py-6{padding-bottom:24px!important}.ur-pl-6,.ur-px-6{padding-right:24px!important}.ur-p-7{padding:28px!important}.ur-pt-7,.ur-py-7{padding-top:28px!important}.ur-pr-7,.ur-px-7{padding-left:28px!important}.ur-pb-7,.ur-py-7{padding-bottom:28px!important}.ur-pl-7,.ur-px-7{padding-right:28px!important}.ur-p-8{padding:32px!important}.ur-pt-8,.ur-py-8{padding-top:32px!important}.ur-pr-8,.ur-px-8{padding-left:32px!important}.ur-pb-8,.ur-py-8{padding-bottom:32px!important}.ur-pl-8,.ur-px-8{padding-right:32px!important}.ur-m-n1{margin:-4px!important}.ur-mt-n1,.ur-my-n1{margin-top:-4px!important}.ur-mr-n1,.ur-mx-n1{margin-left:-4px!important}.ur-mb-n1,.ur-my-n1{margin-bottom:-4px!important}.ur-ml-n1,.ur-mx-n1{margin-right:-4px!important}.ur-m-n2{margin:-8px!important}.ur-mt-n2,.ur-my-n2{margin-top:-8px!important}.ur-mr-n2,.ur-mx-n2{margin-left:-8px!important}.ur-mb-n2,.ur-my-n2{margin-bottom:-8px!important}.ur-ml-n2,.ur-mx-n2{margin-right:-8px!important}.ur-m-n3{margin:-12px!important}.ur-mt-n3,.ur-my-n3{margin-top:-12px!important}.ur-mr-n3,.ur-mx-n3{margin-left:-12px!important}.ur-mb-n3,.ur-my-n3{margin-bottom:-12px!important}.ur-ml-n3,.ur-mx-n3{margin-right:-12px!important}.ur-m-n4{margin:-16px!important}.ur-mt-n4,.ur-my-n4{margin-top:-16px!important}.ur-mr-n4,.ur-mx-n4{margin-left:-16px!important}.ur-mb-n4,.ur-my-n4{margin-bottom:-16px!important}.ur-ml-n4,.ur-mx-n4{margin-right:-16px!important}.ur-m-n5{margin:-20px!important}.ur-mt-n5,.ur-my-n5{margin-top:-20px!important}.ur-mr-n5,.ur-mx-n5{margin-left:-20px!important}.ur-mb-n5,.ur-my-n5{margin-bottom:-20px!important}.ur-ml-n5,.ur-mx-n5{margin-right:-20px!important}.ur-m-n6{margin:-24px!important}.ur-mt-n6,.ur-my-n6{margin-top:-24px!important}.ur-mr-n6,.ur-mx-n6{margin-left:-24px!important}.ur-mb-n6,.ur-my-n6{margin-bottom:-24px!important}.ur-ml-n6,.ur-mx-n6{margin-right:-24px!important}.ur-m-n7{margin:-28px!important}.ur-mt-n7,.ur-my-n7{margin-top:-28px!important}.ur-mr-n7,.ur-mx-n7{margin-left:-28px!important}.ur-mb-n7,.ur-my-n7{margin-bottom:-28px!important}.ur-ml-n7,.ur-mx-n7{margin-right:-28px!important}.ur-m-n8{margin:-32px!important}.ur-mt-n8,.ur-my-n8{margin-top:-32px!important}.ur-mr-n8,.ur-mx-n8{margin-left:-32px!important}.ur-mb-n8,.ur-my-n8{margin-bottom:-32px!important}.ur-ml-n8,.ur-mx-n8{margin-right:-32px!important}.ur-m-auto{margin:auto!important}.ur-mt-auto,.ur-my-auto{margin-top:auto!important}.ur-mr-auto,.ur-mx-auto{margin-left:auto!important}.ur-mb-auto,.ur-my-auto{margin-bottom:auto!important}.ur-ml-auto,.ur-mx-auto{margin-right:auto!important}@media (min-width:576px){.ur-m-sm-0{margin:0!important}.ur-mt-sm-0,.ur-my-sm-0{margin-top:0!important}.ur-mr-sm-0,.ur-mx-sm-0{margin-left:0!important}.ur-mb-sm-0,.ur-my-sm-0{margin-bottom:0!important}.ur-ml-sm-0,.ur-mx-sm-0{margin-right:0!important}.ur-m-sm-1{margin:4px!important}.ur-mt-sm-1,.ur-my-sm-1{margin-top:4px!important}.ur-mr-sm-1,.ur-mx-sm-1{margin-left:4px!important}.ur-mb-sm-1,.ur-my-sm-1{margin-bottom:4px!important}.ur-ml-sm-1,.ur-mx-sm-1{margin-right:4px!important}.ur-m-sm-2{margin:8px!important}.ur-mt-sm-2,.ur-my-sm-2{margin-top:8px!important}.ur-mr-sm-2,.ur-mx-sm-2{margin-left:8px!important}.ur-mb-sm-2,.ur-my-sm-2{margin-bottom:8px!important}.ur-ml-sm-2,.ur-mx-sm-2{margin-right:8px!important}.ur-m-sm-3{margin:12px!important}.ur-mt-sm-3,.ur-my-sm-3{margin-top:12px!important}.ur-mr-sm-3,.ur-mx-sm-3{margin-left:12px!important}.ur-mb-sm-3,.ur-my-sm-3{margin-bottom:12px!important}.ur-ml-sm-3,.ur-mx-sm-3{margin-right:12px!important}.ur-m-sm-4{margin:16px!important}.ur-mt-sm-4,.ur-my-sm-4{margin-top:16px!important}.ur-mr-sm-4,.ur-mx-sm-4{margin-left:16px!important}.ur-mb-sm-4,.ur-my-sm-4{margin-bottom:16px!important}.ur-ml-sm-4,.ur-mx-sm-4{margin-right:16px!important}.ur-m-sm-5{margin:20px!important}.ur-mt-sm-5,.ur-my-sm-5{margin-top:20px!important}.ur-mr-sm-5,.ur-mx-sm-5{margin-left:20px!important}.ur-mb-sm-5,.ur-my-sm-5{margin-bottom:20px!important}.ur-ml-sm-5,.ur-mx-sm-5{margin-right:20px!important}.ur-m-sm-6{margin:24px!important}.ur-mt-sm-6,.ur-my-sm-6{margin-top:24px!important}.ur-mr-sm-6,.ur-mx-sm-6{margin-left:24px!important}.ur-mb-sm-6,.ur-my-sm-6{margin-bottom:24px!important}.ur-ml-sm-6,.ur-mx-sm-6{margin-right:24px!important}.ur-m-sm-7{margin:28px!important}.ur-mt-sm-7,.ur-my-sm-7{margin-top:28px!important}.ur-mr-sm-7,.ur-mx-sm-7{margin-left:28px!important}.ur-mb-sm-7,.ur-my-sm-7{margin-bottom:28px!important}.ur-ml-sm-7,.ur-mx-sm-7{margin-right:28px!important}.ur-m-sm-8{margin:32px!important}.ur-mt-sm-8,.ur-my-sm-8{margin-top:32px!important}.ur-mr-sm-8,.ur-mx-sm-8{margin-left:32px!important}.ur-mb-sm-8,.ur-my-sm-8{margin-bottom:32px!important}.ur-ml-sm-8,.ur-mx-sm-8{margin-right:32px!important}.ur-p-sm-0{padding:0!important}.ur-pt-sm-0,.ur-py-sm-0{padding-top:0!important}.ur-pr-sm-0,.ur-px-sm-0{padding-left:0!important}.ur-pb-sm-0,.ur-py-sm-0{padding-bottom:0!important}.ur-pl-sm-0,.ur-px-sm-0{padding-right:0!important}.ur-p-sm-1{padding:4px!important}.ur-pt-sm-1,.ur-py-sm-1{padding-top:4px!important}.ur-pr-sm-1,.ur-px-sm-1{padding-left:4px!important}.ur-pb-sm-1,.ur-py-sm-1{padding-bottom:4px!important}.ur-pl-sm-1,.ur-px-sm-1{padding-right:4px!important}.ur-p-sm-2{padding:8px!important}.ur-pt-sm-2,.ur-py-sm-2{padding-top:8px!important}.ur-pr-sm-2,.ur-px-sm-2{padding-left:8px!important}.ur-pb-sm-2,.ur-py-sm-2{padding-bottom:8px!important}.ur-pl-sm-2,.ur-px-sm-2{padding-right:8px!important}.ur-p-sm-3{padding:12px!important}.ur-pt-sm-3,.ur-py-sm-3{padding-top:12px!important}.ur-pr-sm-3,.ur-px-sm-3{padding-left:12px!important}.ur-pb-sm-3,.ur-py-sm-3{padding-bottom:12px!important}.ur-pl-sm-3,.ur-px-sm-3{padding-right:12px!important}.ur-p-sm-4{padding:16px!important}.ur-pt-sm-4,.ur-py-sm-4{padding-top:16px!important}.ur-pr-sm-4,.ur-px-sm-4{padding-left:16px!important}.ur-pb-sm-4,.ur-py-sm-4{padding-bottom:16px!important}.ur-pl-sm-4,.ur-px-sm-4{padding-right:16px!important}.ur-p-sm-5{padding:20px!important}.ur-pt-sm-5,.ur-py-sm-5{padding-top:20px!important}.ur-pr-sm-5,.ur-px-sm-5{padding-left:20px!important}.ur-pb-sm-5,.ur-py-sm-5{padding-bottom:20px!important}.ur-pl-sm-5,.ur-px-sm-5{padding-right:20px!important}.ur-p-sm-6{padding:24px!important}.ur-pt-sm-6,.ur-py-sm-6{padding-top:24px!important}.ur-pr-sm-6,.ur-px-sm-6{padding-left:24px!important}.ur-pb-sm-6,.ur-py-sm-6{padding-bottom:24px!important}.ur-pl-sm-6,.ur-px-sm-6{padding-right:24px!important}.ur-p-sm-7{padding:28px!important}.ur-pt-sm-7,.ur-py-sm-7{padding-top:28px!important}.ur-pr-sm-7,.ur-px-sm-7{padding-left:28px!important}.ur-pb-sm-7,.ur-py-sm-7{padding-bottom:28px!important}.ur-pl-sm-7,.ur-px-sm-7{padding-right:28px!important}.ur-p-sm-8{padding:32px!important}.ur-pt-sm-8,.ur-py-sm-8{padding-top:32px!important}.ur-pr-sm-8,.ur-px-sm-8{padding-left:32px!important}.ur-pb-sm-8,.ur-py-sm-8{padding-bottom:32px!important}.ur-pl-sm-8,.ur-px-sm-8{padding-right:32px!important}.ur-m-sm-n1{margin:-4px!important}.ur-mt-sm-n1,.ur-my-sm-n1{margin-top:-4px!important}.ur-mr-sm-n1,.ur-mx-sm-n1{margin-left:-4px!important}.ur-mb-sm-n1,.ur-my-sm-n1{margin-bottom:-4px!important}.ur-ml-sm-n1,.ur-mx-sm-n1{margin-right:-4px!important}.ur-m-sm-n2{margin:-8px!important}.ur-mt-sm-n2,.ur-my-sm-n2{margin-top:-8px!important}.ur-mr-sm-n2,.ur-mx-sm-n2{margin-left:-8px!important}.ur-mb-sm-n2,.ur-my-sm-n2{margin-bottom:-8px!important}.ur-ml-sm-n2,.ur-mx-sm-n2{margin-right:-8px!important}.ur-m-sm-n3{margin:-12px!important}.ur-mt-sm-n3,.ur-my-sm-n3{margin-top:-12px!important}.ur-mr-sm-n3,.ur-mx-sm-n3{margin-left:-12px!important}.ur-mb-sm-n3,.ur-my-sm-n3{margin-bottom:-12px!important}.ur-ml-sm-n3,.ur-mx-sm-n3{margin-right:-12px!important}.ur-m-sm-n4{margin:-16px!important}.ur-mt-sm-n4,.ur-my-sm-n4{margin-top:-16px!important}.ur-mr-sm-n4,.ur-mx-sm-n4{margin-left:-16px!important}.ur-mb-sm-n4,.ur-my-sm-n4{margin-bottom:-16px!important}.ur-ml-sm-n4,.ur-mx-sm-n4{margin-right:-16px!important}.ur-m-sm-n5{margin:-20px!important}.ur-mt-sm-n5,.ur-my-sm-n5{margin-top:-20px!important}.ur-mr-sm-n5,.ur-mx-sm-n5{margin-left:-20px!important}.ur-mb-sm-n5,.ur-my-sm-n5{margin-bottom:-20px!important}.ur-ml-sm-n5,.ur-mx-sm-n5{margin-right:-20px!important}.ur-m-sm-n6{margin:-24px!important}.ur-mt-sm-n6,.ur-my-sm-n6{margin-top:-24px!important}.ur-mr-sm-n6,.ur-mx-sm-n6{margin-left:-24px!important}.ur-mb-sm-n6,.ur-my-sm-n6{margin-bottom:-24px!important}.ur-ml-sm-n6,.ur-mx-sm-n6{margin-right:-24px!important}.ur-m-sm-n7{margin:-28px!important}.ur-mt-sm-n7,.ur-my-sm-n7{margin-top:-28px!important}.ur-mr-sm-n7,.ur-mx-sm-n7{margin-left:-28px!important}.ur-mb-sm-n7,.ur-my-sm-n7{margin-bottom:-28px!important}.ur-ml-sm-n7,.ur-mx-sm-n7{margin-right:-28px!important}.ur-m-sm-n8{margin:-32px!important}.ur-mt-sm-n8,.ur-my-sm-n8{margin-top:-32px!important}.ur-mr-sm-n8,.ur-mx-sm-n8{margin-left:-32px!important}.ur-mb-sm-n8,.ur-my-sm-n8{margin-bottom:-32px!important}.ur-ml-sm-n8,.ur-mx-sm-n8{margin-right:-32px!important}.ur-m-sm-auto{margin:auto!important}.ur-mt-sm-auto,.ur-my-sm-auto{margin-top:auto!important}.ur-mr-sm-auto,.ur-mx-sm-auto{margin-left:auto!important}.ur-mb-sm-auto,.ur-my-sm-auto{margin-bottom:auto!important}.ur-ml-sm-auto,.ur-mx-sm-auto{margin-right:auto!important}}@media (min-width:768px){.ur-m-md-0{margin:0!important}.ur-mt-md-0,.ur-my-md-0{margin-top:0!important}.ur-mr-md-0,.ur-mx-md-0{margin-left:0!important}.ur-mb-md-0,.ur-my-md-0{margin-bottom:0!important}.ur-ml-md-0,.ur-mx-md-0{margin-right:0!important}.ur-m-md-1{margin:4px!important}.ur-mt-md-1,.ur-my-md-1{margin-top:4px!important}.ur-mr-md-1,.ur-mx-md-1{margin-left:4px!important}.ur-mb-md-1,.ur-my-md-1{margin-bottom:4px!important}.ur-ml-md-1,.ur-mx-md-1{margin-right:4px!important}.ur-m-md-2{margin:8px!important}.ur-mt-md-2,.ur-my-md-2{margin-top:8px!important}.ur-mr-md-2,.ur-mx-md-2{margin-left:8px!important}.ur-mb-md-2,.ur-my-md-2{margin-bottom:8px!important}.ur-ml-md-2,.ur-mx-md-2{margin-right:8px!important}.ur-m-md-3{margin:12px!important}.ur-mt-md-3,.ur-my-md-3{margin-top:12px!important}.ur-mr-md-3,.ur-mx-md-3{margin-left:12px!important}.ur-mb-md-3,.ur-my-md-3{margin-bottom:12px!important}.ur-ml-md-3,.ur-mx-md-3{margin-right:12px!important}.ur-m-md-4{margin:16px!important}.ur-mt-md-4,.ur-my-md-4{margin-top:16px!important}.ur-mr-md-4,.ur-mx-md-4{margin-left:16px!important}.ur-mb-md-4,.ur-my-md-4{margin-bottom:16px!important}.ur-ml-md-4,.ur-mx-md-4{margin-right:16px!important}.ur-m-md-5{margin:20px!important}.ur-mt-md-5,.ur-my-md-5{margin-top:20px!important}.ur-mr-md-5,.ur-mx-md-5{margin-left:20px!important}.ur-mb-md-5,.ur-my-md-5{margin-bottom:20px!important}.ur-ml-md-5,.ur-mx-md-5{margin-right:20px!important}.ur-m-md-6{margin:24px!important}.ur-mt-md-6,.ur-my-md-6{margin-top:24px!important}.ur-mr-md-6,.ur-mx-md-6{margin-left:24px!important}.ur-mb-md-6,.ur-my-md-6{margin-bottom:24px!important}.ur-ml-md-6,.ur-mx-md-6{margin-right:24px!important}.ur-m-md-7{margin:28px!important}.ur-mt-md-7,.ur-my-md-7{margin-top:28px!important}.ur-mr-md-7,.ur-mx-md-7{margin-left:28px!important}.ur-mb-md-7,.ur-my-md-7{margin-bottom:28px!important}.ur-ml-md-7,.ur-mx-md-7{margin-right:28px!important}.ur-m-md-8{margin:32px!important}.ur-mt-md-8,.ur-my-md-8{margin-top:32px!important}.ur-mr-md-8,.ur-mx-md-8{margin-left:32px!important}.ur-mb-md-8,.ur-my-md-8{margin-bottom:32px!important}.ur-ml-md-8,.ur-mx-md-8{margin-right:32px!important}.ur-p-md-0{padding:0!important}.ur-pt-md-0,.ur-py-md-0{padding-top:0!important}.ur-pr-md-0,.ur-px-md-0{padding-left:0!important}.ur-pb-md-0,.ur-py-md-0{padding-bottom:0!important}.ur-pl-md-0,.ur-px-md-0{padding-right:0!important}.ur-p-md-1{padding:4px!important}.ur-pt-md-1,.ur-py-md-1{padding-top:4px!important}.ur-pr-md-1,.ur-px-md-1{padding-left:4px!important}.ur-pb-md-1,.ur-py-md-1{padding-bottom:4px!important}.ur-pl-md-1,.ur-px-md-1{padding-right:4px!important}.ur-p-md-2{padding:8px!important}.ur-pt-md-2,.ur-py-md-2{padding-top:8px!important}.ur-pr-md-2,.ur-px-md-2{padding-left:8px!important}.ur-pb-md-2,.ur-py-md-2{padding-bottom:8px!important}.ur-pl-md-2,.ur-px-md-2{padding-right:8px!important}.ur-p-md-3{padding:12px!important}.ur-pt-md-3,.ur-py-md-3{padding-top:12px!important}.ur-pr-md-3,.ur-px-md-3{padding-left:12px!important}.ur-pb-md-3,.ur-py-md-3{padding-bottom:12px!important}.ur-pl-md-3,.ur-px-md-3{padding-right:12px!important}.ur-p-md-4{padding:16px!important}.ur-pt-md-4,.ur-py-md-4{padding-top:16px!important}.ur-pr-md-4,.ur-px-md-4{padding-left:16px!important}.ur-pb-md-4,.ur-py-md-4{padding-bottom:16px!important}.ur-pl-md-4,.ur-px-md-4{padding-right:16px!important}.ur-p-md-5{padding:20px!important}.ur-pt-md-5,.ur-py-md-5{padding-top:20px!important}.ur-pr-md-5,.ur-px-md-5{padding-left:20px!important}.ur-pb-md-5,.ur-py-md-5{padding-bottom:20px!important}.ur-pl-md-5,.ur-px-md-5{padding-right:20px!important}.ur-p-md-6{padding:24px!important}.ur-pt-md-6,.ur-py-md-6{padding-top:24px!important}.ur-pr-md-6,.ur-px-md-6{padding-left:24px!important}.ur-pb-md-6,.ur-py-md-6{padding-bottom:24px!important}.ur-pl-md-6,.ur-px-md-6{padding-right:24px!important}.ur-p-md-7{padding:28px!important}.ur-pt-md-7,.ur-py-md-7{padding-top:28px!important}.ur-pr-md-7,.ur-px-md-7{padding-left:28px!important}.ur-pb-md-7,.ur-py-md-7{padding-bottom:28px!important}.ur-pl-md-7,.ur-px-md-7{padding-right:28px!important}.ur-p-md-8{padding:32px!important}.ur-pt-md-8,.ur-py-md-8{padding-top:32px!important}.ur-pr-md-8,.ur-px-md-8{padding-left:32px!important}.ur-pb-md-8,.ur-py-md-8{padding-bottom:32px!important}.ur-pl-md-8,.ur-px-md-8{padding-right:32px!important}.ur-m-md-n1{margin:-4px!important}.ur-mt-md-n1,.ur-my-md-n1{margin-top:-4px!important}.ur-mr-md-n1,.ur-mx-md-n1{margin-left:-4px!important}.ur-mb-md-n1,.ur-my-md-n1{margin-bottom:-4px!important}.ur-ml-md-n1,.ur-mx-md-n1{margin-right:-4px!important}.ur-m-md-n2{margin:-8px!important}.ur-mt-md-n2,.ur-my-md-n2{margin-top:-8px!important}.ur-mr-md-n2,.ur-mx-md-n2{margin-left:-8px!important}.ur-mb-md-n2,.ur-my-md-n2{margin-bottom:-8px!important}.ur-ml-md-n2,.ur-mx-md-n2{margin-right:-8px!important}.ur-m-md-n3{margin:-12px!important}.ur-mt-md-n3,.ur-my-md-n3{margin-top:-12px!important}.ur-mr-md-n3,.ur-mx-md-n3{margin-left:-12px!important}.ur-mb-md-n3,.ur-my-md-n3{margin-bottom:-12px!important}.ur-ml-md-n3,.ur-mx-md-n3{margin-right:-12px!important}.ur-m-md-n4{margin:-16px!important}.ur-mt-md-n4,.ur-my-md-n4{margin-top:-16px!important}.ur-mr-md-n4,.ur-mx-md-n4{margin-left:-16px!important}.ur-mb-md-n4,.ur-my-md-n4{margin-bottom:-16px!important}.ur-ml-md-n4,.ur-mx-md-n4{margin-right:-16px!important}.ur-m-md-n5{margin:-20px!important}.ur-mt-md-n5,.ur-my-md-n5{margin-top:-20px!important}.ur-mr-md-n5,.ur-mx-md-n5{margin-left:-20px!important}.ur-mb-md-n5,.ur-my-md-n5{margin-bottom:-20px!important}.ur-ml-md-n5,.ur-mx-md-n5{margin-right:-20px!important}.ur-m-md-n6{margin:-24px!important}.ur-mt-md-n6,.ur-my-md-n6{margin-top:-24px!important}.ur-mr-md-n6,.ur-mx-md-n6{margin-left:-24px!important}.ur-mb-md-n6,.ur-my-md-n6{margin-bottom:-24px!important}.ur-ml-md-n6,.ur-mx-md-n6{margin-right:-24px!important}.ur-m-md-n7{margin:-28px!important}.ur-mt-md-n7,.ur-my-md-n7{margin-top:-28px!important}.ur-mr-md-n7,.ur-mx-md-n7{margin-left:-28px!important}.ur-mb-md-n7,.ur-my-md-n7{margin-bottom:-28px!important}.ur-ml-md-n7,.ur-mx-md-n7{margin-right:-28px!important}.ur-m-md-n8{margin:-32px!important}.ur-mt-md-n8,.ur-my-md-n8{margin-top:-32px!important}.ur-mr-md-n8,.ur-mx-md-n8{margin-left:-32px!important}.ur-mb-md-n8,.ur-my-md-n8{margin-bottom:-32px!important}.ur-ml-md-n8,.ur-mx-md-n8{margin-right:-32px!important}.ur-m-md-auto{margin:auto!important}.ur-mt-md-auto,.ur-my-md-auto{margin-top:auto!important}.ur-mr-md-auto,.ur-mx-md-auto{margin-left:auto!important}.ur-mb-md-auto,.ur-my-md-auto{margin-bottom:auto!important}.ur-ml-md-auto,.ur-mx-md-auto{margin-right:auto!important}}@media (min-width:992px){.ur-m-lg-0{margin:0!important}.ur-mt-lg-0,.ur-my-lg-0{margin-top:0!important}.ur-mr-lg-0,.ur-mx-lg-0{margin-left:0!important}.ur-mb-lg-0,.ur-my-lg-0{margin-bottom:0!important}.ur-ml-lg-0,.ur-mx-lg-0{margin-right:0!important}.ur-m-lg-1{margin:4px!important}.ur-mt-lg-1,.ur-my-lg-1{margin-top:4px!important}.ur-mr-lg-1,.ur-mx-lg-1{margin-left:4px!important}.ur-mb-lg-1,.ur-my-lg-1{margin-bottom:4px!important}.ur-ml-lg-1,.ur-mx-lg-1{margin-right:4px!important}.ur-m-lg-2{margin:8px!important}.ur-mt-lg-2,.ur-my-lg-2{margin-top:8px!important}.ur-mr-lg-2,.ur-mx-lg-2{margin-left:8px!important}.ur-mb-lg-2,.ur-my-lg-2{margin-bottom:8px!important}.ur-ml-lg-2,.ur-mx-lg-2{margin-right:8px!important}.ur-m-lg-3{margin:12px!important}.ur-mt-lg-3,.ur-my-lg-3{margin-top:12px!important}.ur-mr-lg-3,.ur-mx-lg-3{margin-left:12px!important}.ur-mb-lg-3,.ur-my-lg-3{margin-bottom:12px!important}.ur-ml-lg-3,.ur-mx-lg-3{margin-right:12px!important}.ur-m-lg-4{margin:16px!important}.ur-mt-lg-4,.ur-my-lg-4{margin-top:16px!important}.ur-mr-lg-4,.ur-mx-lg-4{margin-left:16px!important}.ur-mb-lg-4,.ur-my-lg-4{margin-bottom:16px!important}.ur-ml-lg-4,.ur-mx-lg-4{margin-right:16px!important}.ur-m-lg-5{margin:20px!important}.ur-mt-lg-5,.ur-my-lg-5{margin-top:20px!important}.ur-mr-lg-5,.ur-mx-lg-5{margin-left:20px!important}.ur-mb-lg-5,.ur-my-lg-5{margin-bottom:20px!important}.ur-ml-lg-5,.ur-mx-lg-5{margin-right:20px!important}.ur-m-lg-6{margin:24px!important}.ur-mt-lg-6,.ur-my-lg-6{margin-top:24px!important}.ur-mr-lg-6,.ur-mx-lg-6{margin-left:24px!important}.ur-mb-lg-6,.ur-my-lg-6{margin-bottom:24px!important}.ur-ml-lg-6,.ur-mx-lg-6{margin-right:24px!important}.ur-m-lg-7{margin:28px!important}.ur-mt-lg-7,.ur-my-lg-7{margin-top:28px!important}.ur-mr-lg-7,.ur-mx-lg-7{margin-left:28px!important}.ur-mb-lg-7,.ur-my-lg-7{margin-bottom:28px!important}.ur-ml-lg-7,.ur-mx-lg-7{margin-right:28px!important}.ur-m-lg-8{margin:32px!important}.ur-mt-lg-8,.ur-my-lg-8{margin-top:32px!important}.ur-mr-lg-8,.ur-mx-lg-8{margin-left:32px!important}.ur-mb-lg-8,.ur-my-lg-8{margin-bottom:32px!important}.ur-ml-lg-8,.ur-mx-lg-8{margin-right:32px!important}.ur-p-lg-0{padding:0!important}.ur-pt-lg-0,.ur-py-lg-0{padding-top:0!important}.ur-pr-lg-0,.ur-px-lg-0{padding-left:0!important}.ur-pb-lg-0,.ur-py-lg-0{padding-bottom:0!important}.ur-pl-lg-0,.ur-px-lg-0{padding-right:0!important}.ur-p-lg-1{padding:4px!important}.ur-pt-lg-1,.ur-py-lg-1{padding-top:4px!important}.ur-pr-lg-1,.ur-px-lg-1{padding-left:4px!important}.ur-pb-lg-1,.ur-py-lg-1{padding-bottom:4px!important}.ur-pl-lg-1,.ur-px-lg-1{padding-right:4px!important}.ur-p-lg-2{padding:8px!important}.ur-pt-lg-2,.ur-py-lg-2{padding-top:8px!important}.ur-pr-lg-2,.ur-px-lg-2{padding-left:8px!important}.ur-pb-lg-2,.ur-py-lg-2{padding-bottom:8px!important}.ur-pl-lg-2,.ur-px-lg-2{padding-right:8px!important}.ur-p-lg-3{padding:12px!important}.ur-pt-lg-3,.ur-py-lg-3{padding-top:12px!important}.ur-pr-lg-3,.ur-px-lg-3{padding-left:12px!important}.ur-pb-lg-3,.ur-py-lg-3{padding-bottom:12px!important}.ur-pl-lg-3,.ur-px-lg-3{padding-right:12px!important}.ur-p-lg-4{padding:16px!important}.ur-pt-lg-4,.ur-py-lg-4{padding-top:16px!important}.ur-pr-lg-4,.ur-px-lg-4{padding-left:16px!important}.ur-pb-lg-4,.ur-py-lg-4{padding-bottom:16px!important}.ur-pl-lg-4,.ur-px-lg-4{padding-right:16px!important}.ur-p-lg-5{padding:20px!important}.ur-pt-lg-5,.ur-py-lg-5{padding-top:20px!important}.ur-pr-lg-5,.ur-px-lg-5{padding-left:20px!important}.ur-pb-lg-5,.ur-py-lg-5{padding-bottom:20px!important}.ur-pl-lg-5,.ur-px-lg-5{padding-right:20px!important}.ur-p-lg-6{padding:24px!important}.ur-pt-lg-6,.ur-py-lg-6{padding-top:24px!important}.ur-pr-lg-6,.ur-px-lg-6{padding-left:24px!important}.ur-pb-lg-6,.ur-py-lg-6{padding-bottom:24px!important}.ur-pl-lg-6,.ur-px-lg-6{padding-right:24px!important}.ur-p-lg-7{padding:28px!important}.ur-pt-lg-7,.ur-py-lg-7{padding-top:28px!important}.ur-pr-lg-7,.ur-px-lg-7{padding-left:28px!important}.ur-pb-lg-7,.ur-py-lg-7{padding-bottom:28px!important}.ur-pl-lg-7,.ur-px-lg-7{padding-right:28px!important}.ur-p-lg-8{padding:32px!important}.ur-pt-lg-8,.ur-py-lg-8{padding-top:32px!important}.ur-pr-lg-8,.ur-px-lg-8{padding-left:32px!important}.ur-pb-lg-8,.ur-py-lg-8{padding-bottom:32px!important}.ur-pl-lg-8,.ur-px-lg-8{padding-right:32px!important}.ur-m-lg-n1{margin:-4px!important}.ur-mt-lg-n1,.ur-my-lg-n1{margin-top:-4px!important}.ur-mr-lg-n1,.ur-mx-lg-n1{margin-left:-4px!important}.ur-mb-lg-n1,.ur-my-lg-n1{margin-bottom:-4px!important}.ur-ml-lg-n1,.ur-mx-lg-n1{margin-right:-4px!important}.ur-m-lg-n2{margin:-8px!important}.ur-mt-lg-n2,.ur-my-lg-n2{margin-top:-8px!important}.ur-mr-lg-n2,.ur-mx-lg-n2{margin-left:-8px!important}.ur-mb-lg-n2,.ur-my-lg-n2{margin-bottom:-8px!important}.ur-ml-lg-n2,.ur-mx-lg-n2{margin-right:-8px!important}.ur-m-lg-n3{margin:-12px!important}.ur-mt-lg-n3,.ur-my-lg-n3{margin-top:-12px!important}.ur-mr-lg-n3,.ur-mx-lg-n3{margin-left:-12px!important}.ur-mb-lg-n3,.ur-my-lg-n3{margin-bottom:-12px!important}.ur-ml-lg-n3,.ur-mx-lg-n3{margin-right:-12px!important}.ur-m-lg-n4{margin:-16px!important}.ur-mt-lg-n4,.ur-my-lg-n4{margin-top:-16px!important}.ur-mr-lg-n4,.ur-mx-lg-n4{margin-left:-16px!important}.ur-mb-lg-n4,.ur-my-lg-n4{margin-bottom:-16px!important}.ur-ml-lg-n4,.ur-mx-lg-n4{margin-right:-16px!important}.ur-m-lg-n5{margin:-20px!important}.ur-mt-lg-n5,.ur-my-lg-n5{margin-top:-20px!important}.ur-mr-lg-n5,.ur-mx-lg-n5{margin-left:-20px!important}.ur-mb-lg-n5,.ur-my-lg-n5{margin-bottom:-20px!important}.ur-ml-lg-n5,.ur-mx-lg-n5{margin-right:-20px!important}.ur-m-lg-n6{margin:-24px!important}.ur-mt-lg-n6,.ur-my-lg-n6{margin-top:-24px!important}.ur-mr-lg-n6,.ur-mx-lg-n6{margin-left:-24px!important}.ur-mb-lg-n6,.ur-my-lg-n6{margin-bottom:-24px!important}.ur-ml-lg-n6,.ur-mx-lg-n6{margin-right:-24px!important}.ur-m-lg-n7{margin:-28px!important}.ur-mt-lg-n7,.ur-my-lg-n7{margin-top:-28px!important}.ur-mr-lg-n7,.ur-mx-lg-n7{margin-left:-28px!important}.ur-mb-lg-n7,.ur-my-lg-n7{margin-bottom:-28px!important}.ur-ml-lg-n7,.ur-mx-lg-n7{margin-right:-28px!important}.ur-m-lg-n8{margin:-32px!important}.ur-mt-lg-n8,.ur-my-lg-n8{margin-top:-32px!important}.ur-mr-lg-n8,.ur-mx-lg-n8{margin-left:-32px!important}.ur-mb-lg-n8,.ur-my-lg-n8{margin-bottom:-32px!important}.ur-ml-lg-n8,.ur-mx-lg-n8{margin-right:-32px!important}.ur-m-lg-auto{margin:auto!important}.ur-mt-lg-auto,.ur-my-lg-auto{margin-top:auto!important}.ur-mr-lg-auto,.ur-mx-lg-auto{margin-left:auto!important}.ur-mb-lg-auto,.ur-my-lg-auto{margin-bottom:auto!important}.ur-ml-lg-auto,.ur-mx-lg-auto{margin-right:auto!important}}@media (min-width:1200px){.ur-m-xl-0{margin:0!important}.ur-mt-xl-0,.ur-my-xl-0{margin-top:0!important}.ur-mr-xl-0,.ur-mx-xl-0{margin-left:0!important}.ur-mb-xl-0,.ur-my-xl-0{margin-bottom:0!important}.ur-ml-xl-0,.ur-mx-xl-0{margin-right:0!important}.ur-m-xl-1{margin:4px!important}.ur-mt-xl-1,.ur-my-xl-1{margin-top:4px!important}.ur-mr-xl-1,.ur-mx-xl-1{margin-left:4px!important}.ur-mb-xl-1,.ur-my-xl-1{margin-bottom:4px!important}.ur-ml-xl-1,.ur-mx-xl-1{margin-right:4px!important}.ur-m-xl-2{margin:8px!important}.ur-mt-xl-2,.ur-my-xl-2{margin-top:8px!important}.ur-mr-xl-2,.ur-mx-xl-2{margin-left:8px!important}.ur-mb-xl-2,.ur-my-xl-2{margin-bottom:8px!important}.ur-ml-xl-2,.ur-mx-xl-2{margin-right:8px!important}.ur-m-xl-3{margin:12px!important}.ur-mt-xl-3,.ur-my-xl-3{margin-top:12px!important}.ur-mr-xl-3,.ur-mx-xl-3{margin-left:12px!important}.ur-mb-xl-3,.ur-my-xl-3{margin-bottom:12px!important}.ur-ml-xl-3,.ur-mx-xl-3{margin-right:12px!important}.ur-m-xl-4{margin:16px!important}.ur-mt-xl-4,.ur-my-xl-4{margin-top:16px!important}.ur-mr-xl-4,.ur-mx-xl-4{margin-left:16px!important}.ur-mb-xl-4,.ur-my-xl-4{margin-bottom:16px!important}.ur-ml-xl-4,.ur-mx-xl-4{margin-right:16px!important}.ur-m-xl-5{margin:20px!important}.ur-mt-xl-5,.ur-my-xl-5{margin-top:20px!important}.ur-mr-xl-5,.ur-mx-xl-5{margin-left:20px!important}.ur-mb-xl-5,.ur-my-xl-5{margin-bottom:20px!important}.ur-ml-xl-5,.ur-mx-xl-5{margin-right:20px!important}.ur-m-xl-6{margin:24px!important}.ur-mt-xl-6,.ur-my-xl-6{margin-top:24px!important}.ur-mr-xl-6,.ur-mx-xl-6{margin-left:24px!important}.ur-mb-xl-6,.ur-my-xl-6{margin-bottom:24px!important}.ur-ml-xl-6,.ur-mx-xl-6{margin-right:24px!important}.ur-m-xl-7{margin:28px!important}.ur-mt-xl-7,.ur-my-xl-7{margin-top:28px!important}.ur-mr-xl-7,.ur-mx-xl-7{margin-left:28px!important}.ur-mb-xl-7,.ur-my-xl-7{margin-bottom:28px!important}.ur-ml-xl-7,.ur-mx-xl-7{margin-right:28px!important}.ur-m-xl-8{margin:32px!important}.ur-mt-xl-8,.ur-my-xl-8{margin-top:32px!important}.ur-mr-xl-8,.ur-mx-xl-8{margin-left:32px!important}.ur-mb-xl-8,.ur-my-xl-8{margin-bottom:32px!important}.ur-ml-xl-8,.ur-mx-xl-8{margin-right:32px!important}.ur-p-xl-0{padding:0!important}.ur-pt-xl-0,.ur-py-xl-0{padding-top:0!important}.ur-pr-xl-0,.ur-px-xl-0{padding-left:0!important}.ur-pb-xl-0,.ur-py-xl-0{padding-bottom:0!important}.ur-pl-xl-0,.ur-px-xl-0{padding-right:0!important}.ur-p-xl-1{padding:4px!important}.ur-pt-xl-1,.ur-py-xl-1{padding-top:4px!important}.ur-pr-xl-1,.ur-px-xl-1{padding-left:4px!important}.ur-pb-xl-1,.ur-py-xl-1{padding-bottom:4px!important}.ur-pl-xl-1,.ur-px-xl-1{padding-right:4px!important}.ur-p-xl-2{padding:8px!important}.ur-pt-xl-2,.ur-py-xl-2{padding-top:8px!important}.ur-pr-xl-2,.ur-px-xl-2{padding-left:8px!important}.ur-pb-xl-2,.ur-py-xl-2{padding-bottom:8px!important}.ur-pl-xl-2,.ur-px-xl-2{padding-right:8px!important}.ur-p-xl-3{padding:12px!important}.ur-pt-xl-3,.ur-py-xl-3{padding-top:12px!important}.ur-pr-xl-3,.ur-px-xl-3{padding-left:12px!important}.ur-pb-xl-3,.ur-py-xl-3{padding-bottom:12px!important}.ur-pl-xl-3,.ur-px-xl-3{padding-right:12px!important}.ur-p-xl-4{padding:16px!important}.ur-pt-xl-4,.ur-py-xl-4{padding-top:16px!important}.ur-pr-xl-4,.ur-px-xl-4{padding-left:16px!important}.ur-pb-xl-4,.ur-py-xl-4{padding-bottom:16px!important}.ur-pl-xl-4,.ur-px-xl-4{padding-right:16px!important}.ur-p-xl-5{padding:20px!important}.ur-pt-xl-5,.ur-py-xl-5{padding-top:20px!important}.ur-pr-xl-5,.ur-px-xl-5{padding-left:20px!important}.ur-pb-xl-5,.ur-py-xl-5{padding-bottom:20px!important}.ur-pl-xl-5,.ur-px-xl-5{padding-right:20px!important}.ur-p-xl-6{padding:24px!important}.ur-pt-xl-6,.ur-py-xl-6{padding-top:24px!important}.ur-pr-xl-6,.ur-px-xl-6{padding-left:24px!important}.ur-pb-xl-6,.ur-py-xl-6{padding-bottom:24px!important}.ur-pl-xl-6,.ur-px-xl-6{padding-right:24px!important}.ur-p-xl-7{padding:28px!important}.ur-pt-xl-7,.ur-py-xl-7{padding-top:28px!important}.ur-pr-xl-7,.ur-px-xl-7{padding-left:28px!important}.ur-pb-xl-7,.ur-py-xl-7{padding-bottom:28px!important}.ur-pl-xl-7,.ur-px-xl-7{padding-right:28px!important}.ur-p-xl-8{padding:32px!important}.ur-pt-xl-8,.ur-py-xl-8{padding-top:32px!important}.ur-pr-xl-8,.ur-px-xl-8{padding-left:32px!important}.ur-pb-xl-8,.ur-py-xl-8{padding-bottom:32px!important}.ur-pl-xl-8,.ur-px-xl-8{padding-right:32px!important}.ur-m-xl-n1{margin:-4px!important}.ur-mt-xl-n1,.ur-my-xl-n1{margin-top:-4px!important}.ur-mr-xl-n1,.ur-mx-xl-n1{margin-left:-4px!important}.ur-mb-xl-n1,.ur-my-xl-n1{margin-bottom:-4px!important}.ur-ml-xl-n1,.ur-mx-xl-n1{margin-right:-4px!important}.ur-m-xl-n2{margin:-8px!important}.ur-mt-xl-n2,.ur-my-xl-n2{margin-top:-8px!important}.ur-mr-xl-n2,.ur-mx-xl-n2{margin-left:-8px!important}.ur-mb-xl-n2,.ur-my-xl-n2{margin-bottom:-8px!important}.ur-ml-xl-n2,.ur-mx-xl-n2{margin-right:-8px!important}.ur-m-xl-n3{margin:-12px!important}.ur-mt-xl-n3,.ur-my-xl-n3{margin-top:-12px!important}.ur-mr-xl-n3,.ur-mx-xl-n3{margin-left:-12px!important}.ur-mb-xl-n3,.ur-my-xl-n3{margin-bottom:-12px!important}.ur-ml-xl-n3,.ur-mx-xl-n3{margin-right:-12px!important}.ur-m-xl-n4{margin:-16px!important}.ur-mt-xl-n4,.ur-my-xl-n4{margin-top:-16px!important}.ur-mr-xl-n4,.ur-mx-xl-n4{margin-left:-16px!important}.ur-mb-xl-n4,.ur-my-xl-n4{margin-bottom:-16px!important}.ur-ml-xl-n4,.ur-mx-xl-n4{margin-right:-16px!important}.ur-m-xl-n5{margin:-20px!important}.ur-mt-xl-n5,.ur-my-xl-n5{margin-top:-20px!important}.ur-mr-xl-n5,.ur-mx-xl-n5{margin-left:-20px!important}.ur-mb-xl-n5,.ur-my-xl-n5{margin-bottom:-20px!important}.ur-ml-xl-n5,.ur-mx-xl-n5{margin-right:-20px!important}.ur-m-xl-n6{margin:-24px!important}.ur-mt-xl-n6,.ur-my-xl-n6{margin-top:-24px!important}.ur-mr-xl-n6,.ur-mx-xl-n6{margin-left:-24px!important}.ur-mb-xl-n6,.ur-my-xl-n6{margin-bottom:-24px!important}.ur-ml-xl-n6,.ur-mx-xl-n6{margin-right:-24px!important}.ur-m-xl-n7{margin:-28px!important}.ur-mt-xl-n7,.ur-my-xl-n7{margin-top:-28px!important}.ur-mr-xl-n7,.ur-mx-xl-n7{margin-left:-28px!important}.ur-mb-xl-n7,.ur-my-xl-n7{margin-bottom:-28px!important}.ur-ml-xl-n7,.ur-mx-xl-n7{margin-right:-28px!important}.ur-m-xl-n8{margin:-32px!important}.ur-mt-xl-n8,.ur-my-xl-n8{margin-top:-32px!important}.ur-mr-xl-n8,.ur-mx-xl-n8{margin-left:-32px!important}.ur-mb-xl-n8,.ur-my-xl-n8{margin-bottom:-32px!important}.ur-ml-xl-n8,.ur-mx-xl-n8{margin-right:-32px!important}.ur-m-xl-auto{margin:auto!important}.ur-mt-xl-auto,.ur-my-xl-auto{margin-top:auto!important}.ur-mr-xl-auto,.ur-mx-xl-auto{margin-left:auto!important}.ur-mb-xl-auto,.ur-my-xl-auto{margin-bottom:auto!important}.ur-ml-xl-auto,.ur-mx-xl-auto{margin-right:auto!important}}@media (min-width:1400px){.ur-m-xxl-0{margin:0!important}.ur-mt-xxl-0,.ur-my-xxl-0{margin-top:0!important}.ur-mr-xxl-0,.ur-mx-xxl-0{margin-left:0!important}.ur-mb-xxl-0,.ur-my-xxl-0{margin-bottom:0!important}.ur-ml-xxl-0,.ur-mx-xxl-0{margin-right:0!important}.ur-m-xxl-1{margin:4px!important}.ur-mt-xxl-1,.ur-my-xxl-1{margin-top:4px!important}.ur-mr-xxl-1,.ur-mx-xxl-1{margin-left:4px!important}.ur-mb-xxl-1,.ur-my-xxl-1{margin-bottom:4px!important}.ur-ml-xxl-1,.ur-mx-xxl-1{margin-right:4px!important}.ur-m-xxl-2{margin:8px!important}.ur-mt-xxl-2,.ur-my-xxl-2{margin-top:8px!important}.ur-mr-xxl-2,.ur-mx-xxl-2{margin-left:8px!important}.ur-mb-xxl-2,.ur-my-xxl-2{margin-bottom:8px!important}.ur-ml-xxl-2,.ur-mx-xxl-2{margin-right:8px!important}.ur-m-xxl-3{margin:12px!important}.ur-mt-xxl-3,.ur-my-xxl-3{margin-top:12px!important}.ur-mr-xxl-3,.ur-mx-xxl-3{margin-left:12px!important}.ur-mb-xxl-3,.ur-my-xxl-3{margin-bottom:12px!important}.ur-ml-xxl-3,.ur-mx-xxl-3{margin-right:12px!important}.ur-m-xxl-4{margin:16px!important}.ur-mt-xxl-4,.ur-my-xxl-4{margin-top:16px!important}.ur-mr-xxl-4,.ur-mx-xxl-4{margin-left:16px!important}.ur-mb-xxl-4,.ur-my-xxl-4{margin-bottom:16px!important}.ur-ml-xxl-4,.ur-mx-xxl-4{margin-right:16px!important}.ur-m-xxl-5{margin:20px!important}.ur-mt-xxl-5,.ur-my-xxl-5{margin-top:20px!important}.ur-mr-xxl-5,.ur-mx-xxl-5{margin-left:20px!important}.ur-mb-xxl-5,.ur-my-xxl-5{margin-bottom:20px!important}.ur-ml-xxl-5,.ur-mx-xxl-5{margin-right:20px!important}.ur-m-xxl-6{margin:24px!important}.ur-mt-xxl-6,.ur-my-xxl-6{margin-top:24px!important}.ur-mr-xxl-6,.ur-mx-xxl-6{margin-left:24px!important}.ur-mb-xxl-6,.ur-my-xxl-6{margin-bottom:24px!important}.ur-ml-xxl-6,.ur-mx-xxl-6{margin-right:24px!important}.ur-m-xxl-7{margin:28px!important}.ur-mt-xxl-7,.ur-my-xxl-7{margin-top:28px!important}.ur-mr-xxl-7,.ur-mx-xxl-7{margin-left:28px!important}.ur-mb-xxl-7,.ur-my-xxl-7{margin-bottom:28px!important}.ur-ml-xxl-7,.ur-mx-xxl-7{margin-right:28px!important}.ur-m-xxl-8{margin:32px!important}.ur-mt-xxl-8,.ur-my-xxl-8{margin-top:32px!important}.ur-mr-xxl-8,.ur-mx-xxl-8{margin-left:32px!important}.ur-mb-xxl-8,.ur-my-xxl-8{margin-bottom:32px!important}.ur-ml-xxl-8,.ur-mx-xxl-8{margin-right:32px!important}.ur-p-xxl-0{padding:0!important}.ur-pt-xxl-0,.ur-py-xxl-0{padding-top:0!important}.ur-pr-xxl-0,.ur-px-xxl-0{padding-left:0!important}.ur-pb-xxl-0,.ur-py-xxl-0{padding-bottom:0!important}.ur-pl-xxl-0,.ur-px-xxl-0{padding-right:0!important}.ur-p-xxl-1{padding:4px!important}.ur-pt-xxl-1,.ur-py-xxl-1{padding-top:4px!important}.ur-pr-xxl-1,.ur-px-xxl-1{padding-left:4px!important}.ur-pb-xxl-1,.ur-py-xxl-1{padding-bottom:4px!important}.ur-pl-xxl-1,.ur-px-xxl-1{padding-right:4px!important}.ur-p-xxl-2{padding:8px!important}.ur-pt-xxl-2,.ur-py-xxl-2{padding-top:8px!important}.ur-pr-xxl-2,.ur-px-xxl-2{padding-left:8px!important}.ur-pb-xxl-2,.ur-py-xxl-2{padding-bottom:8px!important}.ur-pl-xxl-2,.ur-px-xxl-2{padding-right:8px!important}.ur-p-xxl-3{padding:12px!important}.ur-pt-xxl-3,.ur-py-xxl-3{padding-top:12px!important}.ur-pr-xxl-3,.ur-px-xxl-3{padding-left:12px!important}.ur-pb-xxl-3,.ur-py-xxl-3{padding-bottom:12px!important}.ur-pl-xxl-3,.ur-px-xxl-3{padding-right:12px!important}.ur-p-xxl-4{padding:16px!important}.ur-pt-xxl-4,.ur-py-xxl-4{padding-top:16px!important}.ur-pr-xxl-4,.ur-px-xxl-4{padding-left:16px!important}.ur-pb-xxl-4,.ur-py-xxl-4{padding-bottom:16px!important}.ur-pl-xxl-4,.ur-px-xxl-4{padding-right:16px!important}.ur-p-xxl-5{padding:20px!important}.ur-pt-xxl-5,.ur-py-xxl-5{padding-top:20px!important}.ur-pr-xxl-5,.ur-px-xxl-5{padding-left:20px!important}.ur-pb-xxl-5,.ur-py-xxl-5{padding-bottom:20px!important}.ur-pl-xxl-5,.ur-px-xxl-5{padding-right:20px!important}.ur-p-xxl-6{padding:24px!important}.ur-pt-xxl-6,.ur-py-xxl-6{padding-top:24px!important}.ur-pr-xxl-6,.ur-px-xxl-6{padding-left:24px!important}.ur-pb-xxl-6,.ur-py-xxl-6{padding-bottom:24px!important}.ur-pl-xxl-6,.ur-px-xxl-6{padding-right:24px!important}.ur-p-xxl-7{padding:28px!important}.ur-pt-xxl-7,.ur-py-xxl-7{padding-top:28px!important}.ur-pr-xxl-7,.ur-px-xxl-7{padding-left:28px!important}.ur-pb-xxl-7,.ur-py-xxl-7{padding-bottom:28px!important}.ur-pl-xxl-7,.ur-px-xxl-7{padding-right:28px!important}.ur-p-xxl-8{padding:32px!important}.ur-pt-xxl-8,.ur-py-xxl-8{padding-top:32px!important}.ur-pr-xxl-8,.ur-px-xxl-8{padding-left:32px!important}.ur-pb-xxl-8,.ur-py-xxl-8{padding-bottom:32px!important}.ur-pl-xxl-8,.ur-px-xxl-8{padding-right:32px!important}.ur-m-xxl-n1{margin:-4px!important}.ur-mt-xxl-n1,.ur-my-xxl-n1{margin-top:-4px!important}.ur-mr-xxl-n1,.ur-mx-xxl-n1{margin-left:-4px!important}.ur-mb-xxl-n1,.ur-my-xxl-n1{margin-bottom:-4px!important}.ur-ml-xxl-n1,.ur-mx-xxl-n1{margin-right:-4px!important}.ur-m-xxl-n2{margin:-8px!important}.ur-mt-xxl-n2,.ur-my-xxl-n2{margin-top:-8px!important}.ur-mr-xxl-n2,.ur-mx-xxl-n2{margin-left:-8px!important}.ur-mb-xxl-n2,.ur-my-xxl-n2{margin-bottom:-8px!important}.ur-ml-xxl-n2,.ur-mx-xxl-n2{margin-right:-8px!important}.ur-m-xxl-n3{margin:-12px!important}.ur-mt-xxl-n3,.ur-my-xxl-n3{margin-top:-12px!important}.ur-mr-xxl-n3,.ur-mx-xxl-n3{margin-left:-12px!important}.ur-mb-xxl-n3,.ur-my-xxl-n3{margin-bottom:-12px!important}.ur-ml-xxl-n3,.ur-mx-xxl-n3{margin-right:-12px!important}.ur-m-xxl-n4{margin:-16px!important}.ur-mt-xxl-n4,.ur-my-xxl-n4{margin-top:-16px!important}.ur-mr-xxl-n4,.ur-mx-xxl-n4{margin-left:-16px!important}.ur-mb-xxl-n4,.ur-my-xxl-n4{margin-bottom:-16px!important}.ur-ml-xxl-n4,.ur-mx-xxl-n4{margin-right:-16px!important}.ur-m-xxl-n5{margin:-20px!important}.ur-mt-xxl-n5,.ur-my-xxl-n5{margin-top:-20px!important}.ur-mr-xxl-n5,.ur-mx-xxl-n5{margin-left:-20px!important}.ur-mb-xxl-n5,.ur-my-xxl-n5{margin-bottom:-20px!important}.ur-ml-xxl-n5,.ur-mx-xxl-n5{margin-right:-20px!important}.ur-m-xxl-n6{margin:-24px!important}.ur-mt-xxl-n6,.ur-my-xxl-n6{margin-top:-24px!important}.ur-mr-xxl-n6,.ur-mx-xxl-n6{margin-left:-24px!important}.ur-mb-xxl-n6,.ur-my-xxl-n6{margin-bottom:-24px!important}.ur-ml-xxl-n6,.ur-mx-xxl-n6{margin-right:-24px!important}.ur-m-xxl-n7{margin:-28px!important}.ur-mt-xxl-n7,.ur-my-xxl-n7{margin-top:-28px!important}.ur-mr-xxl-n7,.ur-mx-xxl-n7{margin-left:-28px!important}.ur-mb-xxl-n7,.ur-my-xxl-n7{margin-bottom:-28px!important}.ur-ml-xxl-n7,.ur-mx-xxl-n7{margin-right:-28px!important}.ur-m-xxl-n8{margin:-32px!important}.ur-mt-xxl-n8,.ur-my-xxl-n8{margin-top:-32px!important}.ur-mr-xxl-n8,.ur-mx-xxl-n8{margin-left:-32px!important}.ur-mb-xxl-n8,.ur-my-xxl-n8{margin-bottom:-32px!important}.ur-ml-xxl-n8,.ur-mx-xxl-n8{margin-right:-32px!important}.ur-m-xxl-auto{margin:auto!important}.ur-mt-xxl-auto,.ur-my-xxl-auto{margin-top:auto!important}.ur-mr-xxl-auto,.ur-mx-xxl-auto{margin-left:auto!important}.ur-mb-xxl-auto,.ur-my-xxl-auto{margin-bottom:auto!important}.ur-ml-xxl-auto,.ur-mx-xxl-auto{margin-right:auto!important}}.pt-0{padding-top:0}.pb-0{padding-bottom:0}.ur-container,.ur-container-full,.ur-container-lg,.ur-container-md,.ur-container-sm,.ur-container-xl,.ur-container-xxl{width:100%;padding-left:12px;padding-right:12px;margin-left:auto;margin-right:auto}.ur-container *,.ur-container ::after,.ur-container ::before,.ur-container-full *,.ur-container-full ::after,.ur-container-full ::before,.ur-container-lg *,.ur-container-lg ::after,.ur-container-lg ::before,.ur-container-md *,.ur-container-md ::after,.ur-container-md ::before,.ur-container-sm *,.ur-container-sm ::after,.ur-container-sm ::before,.ur-container-xl *,.ur-container-xl ::after,.ur-container-xl ::before,.ur-container-xxl *,.ur-container-xxl ::after,.ur-container-xxl ::before{box-sizing:border-box}@media (min-width:576px){.ur-container,.ur-container-sm{max-width:540px}}@media (min-width:768px){.ur-container,.ur-container-md,.ur-container-sm{max-width:720px}}@media (min-width:992px){.ur-container,.ur-container-lg,.ur-container-md,.ur-container-sm{max-width:960px}}@media (min-width:1200px){.ur-container,.ur-container-lg,.ur-container-md,.ur-container-sm,.ur-container-xl{max-width:1140px}}@media (min-width:1400px){.ur-container,.ur-container-lg,.ur-container-md,.ur-container-sm,.ur-container-xl,.ur-container-xxl{max-width:1320px}}.ur-row{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-left:-12px;margin-right:-12px}.ur-col,.ur-col-1,.ur-col-10,.ur-col-11,.ur-col-12,.ur-col-2,.ur-col-3,.ur-col-4,.ur-col-5,.ur-col-6,.ur-col-7,.ur-col-8,.ur-col-9,.ur-col-auto,.ur-col-lg,.ur-col-lg-1,.ur-col-lg-10,.ur-col-lg-11,.ur-col-lg-12,.ur-col-lg-2,.ur-col-lg-3,.ur-col-lg-4,.ur-col-lg-5,.ur-col-lg-6,.ur-col-lg-7,.ur-col-lg-8,.ur-col-lg-9,.ur-col-lg-auto,.ur-col-md,.ur-col-md-1,.ur-col-md-10,.ur-col-md-11,.ur-col-md-12,.ur-col-md-2,.ur-col-md-3,.ur-col-md-4,.ur-col-md-5,.ur-col-md-6,.ur-col-md-7,.ur-col-md-8,.ur-col-md-9,.ur-col-md-auto,.ur-col-sm,.ur-col-sm-1,.ur-col-sm-10,.ur-col-sm-11,.ur-col-sm-12,.ur-col-sm-2,.ur-col-sm-3,.ur-col-sm-4,.ur-col-sm-5,.ur-col-sm-6,.ur-col-sm-7,.ur-col-sm-8,.ur-col-sm-9,.ur-col-sm-auto,.ur-col-xl,.ur-col-xl-1,.ur-col-xl-10,.ur-col-xl-11,.ur-col-xl-12,.ur-col-xl-2,.ur-col-xl-3,.ur-col-xl-4,.ur-col-xl-5,.ur-col-xl-6,.ur-col-xl-7,.ur-col-xl-8,.ur-col-xl-9,.ur-col-xl-auto,.ur-col-xxl,.ur-col-xxl-1,.ur-col-xxl-10,.ur-col-xxl-11,.ur-col-xxl-12,.ur-col-xxl-2,.ur-col-xxl-3,.ur-col-xxl-4,.ur-col-xxl-5,.ur-col-xxl-6,.ur-col-xxl-7,.ur-col-xxl-8,.ur-col-xxl-9,.ur-col-xxl-auto{position:relative;width:100%;padding-left:12px;padding-right:12px}.ur-col{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-1{margin-right:8.3333333333%}.ur-offset-2{margin-right:16.6666666667%}.ur-offset-3{margin-right:25%}.ur-offset-4{margin-right:33.3333333333%}.ur-offset-5{margin-right:41.6666666667%}.ur-offset-6{margin-right:50%}.ur-offset-7{margin-right:58.3333333333%}.ur-offset-8{margin-right:66.6666666667%}.ur-offset-9{margin-right:75%}.ur-offset-10{margin-right:83.3333333333%}.ur-offset-11{margin-right:91.6666666667%}.ur-g-0,.ur-gx-0{--bs-gutter-x:0}.ur-g-0,.ur-gy-0{--bs-gutter-y:0}.ur-g-1,.ur-gx-1{--bs-gutter-x:4px}.ur-g-1,.ur-gy-1{--bs-gutter-y:4px}.ur-g-2,.ur-gx-2{--bs-gutter-x:8px}.ur-g-2,.ur-gy-2{--bs-gutter-y:8px}.ur-g-3,.ur-gx-3{--bs-gutter-x:12px}.ur-g-3,.ur-gy-3{--bs-gutter-y:12px}.ur-g-4,.ur-gx-4{--bs-gutter-x:16px}.ur-g-4,.ur-gy-4{--bs-gutter-y:16px}.ur-g-5,.ur-gx-5{--bs-gutter-x:20px}.ur-g-5,.ur-gy-5{--bs-gutter-y:20px}.ur-g-6,.ur-gx-6{--bs-gutter-x:24px}.ur-g-6,.ur-gy-6{--bs-gutter-y:24px}.ur-g-7,.ur-gx-7{--bs-gutter-x:28px}.ur-g-7,.ur-gy-7{--bs-gutter-y:28px}.ur-g-8,.ur-gx-8{--bs-gutter-x:32px}.ur-g-8,.ur-gy-8{--bs-gutter-y:32px}@media (min-width:576px){.ur-col-sm{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-sm-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-sm-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-sm-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-sm-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-sm-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-sm-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-sm-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-sm-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-sm-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-sm-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-sm-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-sm-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-sm-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-sm-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-sm-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-sm-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-sm-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-sm-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-sm-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-sm-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-sm-0{margin-right:0}.ur-offset-sm-1{margin-right:8.3333333333%}.ur-offset-sm-2{margin-right:16.6666666667%}.ur-offset-sm-3{margin-right:25%}.ur-offset-sm-4{margin-right:33.3333333333%}.ur-offset-sm-5{margin-right:41.6666666667%}.ur-offset-sm-6{margin-right:50%}.ur-offset-sm-7{margin-right:58.3333333333%}.ur-offset-sm-8{margin-right:66.6666666667%}.ur-offset-sm-9{margin-right:75%}.ur-offset-sm-10{margin-right:83.3333333333%}.ur-offset-sm-11{margin-right:91.6666666667%}.ur-g-sm-0,.ur-gx-sm-0{--bs-gutter-x:0}.ur-g-sm-0,.ur-gy-sm-0{--bs-gutter-y:0}.ur-g-sm-1,.ur-gx-sm-1{--bs-gutter-x:4px}.ur-g-sm-1,.ur-gy-sm-1{--bs-gutter-y:4px}.ur-g-sm-2,.ur-gx-sm-2{--bs-gutter-x:8px}.ur-g-sm-2,.ur-gy-sm-2{--bs-gutter-y:8px}.ur-g-sm-3,.ur-gx-sm-3{--bs-gutter-x:12px}.ur-g-sm-3,.ur-gy-sm-3{--bs-gutter-y:12px}.ur-g-sm-4,.ur-gx-sm-4{--bs-gutter-x:16px}.ur-g-sm-4,.ur-gy-sm-4{--bs-gutter-y:16px}.ur-g-sm-5,.ur-gx-sm-5{--bs-gutter-x:20px}.ur-g-sm-5,.ur-gy-sm-5{--bs-gutter-y:20px}.ur-g-sm-6,.ur-gx-sm-6{--bs-gutter-x:24px}.ur-g-sm-6,.ur-gy-sm-6{--bs-gutter-y:24px}.ur-g-sm-7,.ur-gx-sm-7{--bs-gutter-x:28px}.ur-g-sm-7,.ur-gy-sm-7{--bs-gutter-y:28px}.ur-g-sm-8,.ur-gx-sm-8{--bs-gutter-x:32px}.ur-g-sm-8,.ur-gy-sm-8{--bs-gutter-y:32px}}@media (min-width:768px){.ur-col-md{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-md-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-md-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-md-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-md-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-md-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-md-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-md-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-md-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-md-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-md-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-md-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-md-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-md-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-md-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-md-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-md-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-md-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-md-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-md-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-md-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-md-0{margin-right:0}.ur-offset-md-1{margin-right:8.3333333333%}.ur-offset-md-2{margin-right:16.6666666667%}.ur-offset-md-3{margin-right:25%}.ur-offset-md-4{margin-right:33.3333333333%}.ur-offset-md-5{margin-right:41.6666666667%}.ur-offset-md-6{margin-right:50%}.ur-offset-md-7{margin-right:58.3333333333%}.ur-offset-md-8{margin-right:66.6666666667%}.ur-offset-md-9{margin-right:75%}.ur-offset-md-10{margin-right:83.3333333333%}.ur-offset-md-11{margin-right:91.6666666667%}.ur-g-md-0,.ur-gx-md-0{--bs-gutter-x:0}.ur-g-md-0,.ur-gy-md-0{--bs-gutter-y:0}.ur-g-md-1,.ur-gx-md-1{--bs-gutter-x:4px}.ur-g-md-1,.ur-gy-md-1{--bs-gutter-y:4px}.ur-g-md-2,.ur-gx-md-2{--bs-gutter-x:8px}.ur-g-md-2,.ur-gy-md-2{--bs-gutter-y:8px}.ur-g-md-3,.ur-gx-md-3{--bs-gutter-x:12px}.ur-g-md-3,.ur-gy-md-3{--bs-gutter-y:12px}.ur-g-md-4,.ur-gx-md-4{--bs-gutter-x:16px}.ur-g-md-4,.ur-gy-md-4{--bs-gutter-y:16px}.ur-g-md-5,.ur-gx-md-5{--bs-gutter-x:20px}.ur-g-md-5,.ur-gy-md-5{--bs-gutter-y:20px}.ur-g-md-6,.ur-gx-md-6{--bs-gutter-x:24px}.ur-g-md-6,.ur-gy-md-6{--bs-gutter-y:24px}.ur-g-md-7,.ur-gx-md-7{--bs-gutter-x:28px}.ur-g-md-7,.ur-gy-md-7{--bs-gutter-y:28px}.ur-g-md-8,.ur-gx-md-8{--bs-gutter-x:32px}.ur-g-md-8,.ur-gy-md-8{--bs-gutter-y:32px}}@media (min-width:992px){.ur-col-lg{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-lg-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-lg-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-lg-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-lg-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-lg-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-lg-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-lg-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-lg-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-lg-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-lg-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-lg-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-lg-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-lg-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-lg-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-lg-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-lg-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-lg-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-lg-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-lg-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-lg-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-lg-0{margin-right:0}.ur-offset-lg-1{margin-right:8.3333333333%}.ur-offset-lg-2{margin-right:16.6666666667%}.ur-offset-lg-3{margin-right:25%}.ur-offset-lg-4{margin-right:33.3333333333%}.ur-offset-lg-5{margin-right:41.6666666667%}.ur-offset-lg-6{margin-right:50%}.ur-offset-lg-7{margin-right:58.3333333333%}.ur-offset-lg-8{margin-right:66.6666666667%}.ur-offset-lg-9{margin-right:75%}.ur-offset-lg-10{margin-right:83.3333333333%}.ur-offset-lg-11{margin-right:91.6666666667%}.ur-g-lg-0,.ur-gx-lg-0{--bs-gutter-x:0}.ur-g-lg-0,.ur-gy-lg-0{--bs-gutter-y:0}.ur-g-lg-1,.ur-gx-lg-1{--bs-gutter-x:4px}.ur-g-lg-1,.ur-gy-lg-1{--bs-gutter-y:4px}.ur-g-lg-2,.ur-gx-lg-2{--bs-gutter-x:8px}.ur-g-lg-2,.ur-gy-lg-2{--bs-gutter-y:8px}.ur-g-lg-3,.ur-gx-lg-3{--bs-gutter-x:12px}.ur-g-lg-3,.ur-gy-lg-3{--bs-gutter-y:12px}.ur-g-lg-4,.ur-gx-lg-4{--bs-gutter-x:16px}.ur-g-lg-4,.ur-gy-lg-4{--bs-gutter-y:16px}.ur-g-lg-5,.ur-gx-lg-5{--bs-gutter-x:20px}.ur-g-lg-5,.ur-gy-lg-5{--bs-gutter-y:20px}.ur-g-lg-6,.ur-gx-lg-6{--bs-gutter-x:24px}.ur-g-lg-6,.ur-gy-lg-6{--bs-gutter-y:24px}.ur-g-lg-7,.ur-gx-lg-7{--bs-gutter-x:28px}.ur-g-lg-7,.ur-gy-lg-7{--bs-gutter-y:28px}.ur-g-lg-8,.ur-gx-lg-8{--bs-gutter-x:32px}.ur-g-lg-8,.ur-gy-lg-8{--bs-gutter-y:32px}}@media (min-width:1200px){.ur-col-xl{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-xl-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-xl-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-xl-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-xl-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-xl-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-xl-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-xl-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-xl-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-xl-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-xl-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-xl-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-xl-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-xl-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-xl-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-xl-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-xl-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-xl-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-xl-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-xl-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-xl-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-xl-0{margin-right:0}.ur-offset-xl-1{margin-right:8.3333333333%}.ur-offset-xl-2{margin-right:16.6666666667%}.ur-offset-xl-3{margin-right:25%}.ur-offset-xl-4{margin-right:33.3333333333%}.ur-offset-xl-5{margin-right:41.6666666667%}.ur-offset-xl-6{margin-right:50%}.ur-offset-xl-7{margin-right:58.3333333333%}.ur-offset-xl-8{margin-right:66.6666666667%}.ur-offset-xl-9{margin-right:75%}.ur-offset-xl-10{margin-right:83.3333333333%}.ur-offset-xl-11{margin-right:91.6666666667%}.ur-g-xl-0,.ur-gx-xl-0{--bs-gutter-x:0}.ur-g-xl-0,.ur-gy-xl-0{--bs-gutter-y:0}.ur-g-xl-1,.ur-gx-xl-1{--bs-gutter-x:4px}.ur-g-xl-1,.ur-gy-xl-1{--bs-gutter-y:4px}.ur-g-xl-2,.ur-gx-xl-2{--bs-gutter-x:8px}.ur-g-xl-2,.ur-gy-xl-2{--bs-gutter-y:8px}.ur-g-xl-3,.ur-gx-xl-3{--bs-gutter-x:12px}.ur-g-xl-3,.ur-gy-xl-3{--bs-gutter-y:12px}.ur-g-xl-4,.ur-gx-xl-4{--bs-gutter-x:16px}.ur-g-xl-4,.ur-gy-xl-4{--bs-gutter-y:16px}.ur-g-xl-5,.ur-gx-xl-5{--bs-gutter-x:20px}.ur-g-xl-5,.ur-gy-xl-5{--bs-gutter-y:20px}.ur-g-xl-6,.ur-gx-xl-6{--bs-gutter-x:24px}.ur-g-xl-6,.ur-gy-xl-6{--bs-gutter-y:24px}.ur-g-xl-7,.ur-gx-xl-7{--bs-gutter-x:28px}.ur-g-xl-7,.ur-gy-xl-7{--bs-gutter-y:28px}.ur-g-xl-8,.ur-gx-xl-8{--bs-gutter-x:32px}.ur-g-xl-8,.ur-gy-xl-8{--bs-gutter-y:32px}}@media (min-width:1400px){.ur-col-xxl{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-xxl-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-xxl-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-xxl-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-xxl-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-xxl-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-xxl-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-xxl-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-xxl-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-xxl-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-xxl-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-xxl-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-xxl-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-xxl-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-xxl-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-xxl-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-xxl-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-xxl-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-xxl-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-xxl-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-xxl-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-xxl-0{margin-right:0}.ur-offset-xxl-1{margin-right:8.3333333333%}.ur-offset-xxl-2{margin-right:16.6666666667%}.ur-offset-xxl-3{margin-right:25%}.ur-offset-xxl-4{margin-right:33.3333333333%}.ur-offset-xxl-5{margin-right:41.6666666667%}.ur-offset-xxl-6{margin-right:50%}.ur-offset-xxl-7{margin-right:58.3333333333%}.ur-offset-xxl-8{margin-right:66.6666666667%}.ur-offset-xxl-9{margin-right:75%}.ur-offset-xxl-10{margin-right:83.3333333333%}.ur-offset-xxl-11{margin-right:91.6666666667%}.ur-g-xxl-0,.ur-gx-xxl-0{--bs-gutter-x:0}.ur-g-xxl-0,.ur-gy-xxl-0{--bs-gutter-y:0}.ur-g-xxl-1,.ur-gx-xxl-1{--bs-gutter-x:4px}.ur-g-xxl-1,.ur-gy-xxl-1{--bs-gutter-y:4px}.ur-g-xxl-2,.ur-gx-xxl-2{--bs-gutter-x:8px}.ur-g-xxl-2,.ur-gy-xxl-2{--bs-gutter-y:8px}.ur-g-xxl-3,.ur-gx-xxl-3{--bs-gutter-x:12px}.ur-g-xxl-3,.ur-gy-xxl-3{--bs-gutter-y:12px}.ur-g-xxl-4,.ur-gx-xxl-4{--bs-gutter-x:16px}.ur-g-xxl-4,.ur-gy-xxl-4{--bs-gutter-y:16px}.ur-g-xxl-5,.ur-gx-xxl-5{--bs-gutter-x:20px}.ur-g-xxl-5,.ur-gy-xxl-5{--bs-gutter-y:20px}.ur-g-xxl-6,.ur-gx-xxl-6{--bs-gutter-x:24px}.ur-g-xxl-6,.ur-gy-xxl-6{--bs-gutter-y:24px}.ur-g-xxl-7,.ur-gx-xxl-7{--bs-gutter-x:28px}.ur-g-xxl-7,.ur-gy-xxl-7{--bs-gutter-y:28px}.ur-g-xxl-8,.ur-gx-xxl-8{--bs-gutter-x:32px}.ur-g-xxl-8,.ur-gy-xxl-8{--bs-gutter-y:32px}}.user-registration-overlay{background-color:rgba(45,53,89,.3);position:absolute;right:0;left:0;top:0;bottom:0;z-index:1}.user-registration-overlay.is-fixed{position:fixed}#wpcontent .user-registration-overlay{margin-right:-20px}.user-registration-overlay .ur-spinner{position:absolute;right:0;left:0;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0 auto}.user-registration-overlay .ur-spinner::before{width:20px;height:20px}#wpcontent .wrap .user-registration-header{margin:-10px -22px 0 -20px}.user-registration-header{background:#fff;padding:12px 16px}.user-registration_page_user-registration-settings .user-registration-header{background-color:#475bb2;padding:20px 0 0}.user-registration_page_user-registration-settings .user-registration-header .ur-scroll-ui__scroll-nav__icon{color:#fff}.user-registration_page_user-registration-settings .user-registration-header .ur-scroll-ui__scroll-nav--backward{background:-webkit-gradient(linear,left top,right top,from(rgba(71,91,178,.3)),color-stop(rgba(71,91,178,.85)),to(#475bb2));background:-webkit-linear-gradient(left,rgba(71,91,178,.3),rgba(71,91,178,.85),#475bb2);background:linear-gradient(to right,rgba(71,91,178,.3),rgba(71,91,178,.85),#475bb2)}.user-registration_page_user-registration-settings .user-registration-header .ur-scroll-ui__scroll-nav--forward{background:-webkit-gradient(linear,right top,left top,from(rgba(71,91,178,.3)),color-stop(rgba(71,91,178,.85)),to(#475bb2));background:-webkit-linear-gradient(right,rgba(71,91,178,.3),rgba(71,91,178,.85),#475bb2);background:linear-gradient(to left,rgba(71,91,178,.3),rgba(71,91,178,.85),#475bb2)}.user-registration_page_user-registration-settings .user-registration-header .subsubsub{background:#fff;font-size:14px;padding:0 16px;margin-top:0;float:none;text-align:right}.user-registration_page_user-registration-settings .user-registration-header .subsubsub a{color:#2d3559;display:block;font-weight:600;padding:8px 12px}.user-registration_page_user-registration-settings .user-registration-header .subsubsub a.current{color:#475bb2}.user-registration-template-setup{max-width:1074px;margin:40px auto 0}.user-registration-template-setup *,.user-registration-template-setup ::after,.user-registration-template-setup ::before{box-sizing:border-box}.user-registration-template-wrap{cursor:pointer;margin-bottom:24px}.user-registration-template-wrap#user-registration-email-template-blank .user-registration-template-wrap__figure::before{content:'';display:block;background-color:rgba(45,53,89,.2);position:absolute;top:0;bottom:0;width:100%;-webkit-transition:all .3s ease 0s;transition:all .3s ease 0s;opacity:0;visibility:none}.user-registration-template-wrap#user-registration-email-template-blank:hover .user-registration-template-wrap__figure::before{opacity:1;visibility:visible}.user-registration-template-wrap__figure{background-color:#f0f1f5;margin:0;min-height:260px;position:relative;border-radius:4px;overflow:hidden}.user-registration-template-wrap__figure img{max-width:100%;display:block}.user-registration-template-wrap__overlay{background:rgba(45,53,89,.6);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;position:absolute;right:0;left:0;top:0;bottom:0;-webkit-transition:all .3s ease 0s;transition:all .3s ease 0s;visibility:hidden;opacity:0}.user-registration-template-wrap__overlay .button{border-color:#fff}.user-registration-template-wrap__title{color:#4c5477;font-size:16px;font-weight:500}.user-registration-template-wrap__title:hover{color:#475bb2}.user-registration-template-wrap:hover .user-registration-template-wrap__overlay{visibility:visible;opacity:1}@-webkit-keyframes spin{100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}@keyframes spin{100%{-webkit-transform:rotate(-360deg);transform:rotate(-360deg)}}@-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)}}.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}.toplevel_page_user-registration .shortcode .widefat,.user-registration_page_user-registration-frontend-list .shortcode .widefat{width:calc(100% - 40px)}.toplevel_page_user-registration .shortcode .ur-copy-shortcode,.user-registration_page_user-registration-frontend-list .shortcode .ur-copy-shortcode{padding:4px;line-height:1}.user-registration_page_user-registration-settings .notice{display:none}.ur-spinner{width:16px;height:16px;margin-right:6px;margin-bottom:2px;display:inline-block;vertical-align:middle}.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}.user-registration__wrap *,.user-registration__wrap ::after,.user-registration__wrap ::before{box-sizing:border-box}.ur-export-users-page{margin-top:24px}.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 .nav-tab-inside .postbox .hndle{border-bottom:1px solid #ccd0d4}.swal2-container .user-registration-swal2-modal .ur-export-users-page .nav-tab-content .nav-tab-inside .postbox .swal2-input,.ur-export-users-page .nav-tab-content .nav-tab-inside .postbox .swal2-container .user-registration-swal2-modal .swal2-input,.ur-export-users-page .nav-tab-content .nav-tab-inside .postbox .ur-input{max-width:inherit}.ur-export-users-page .nav-tab-content .hndle,.ur-export-users-page .nav-tab-content .stuffbox .hndle{margin:10px;padding-bottom:10px}.ur-export-users-page .nav-tab-content .stuffbox{padding:10px}.ur-label .user-registration-help-tip{margin-right:2px}.ur_addons_wrap *,.ur_addons_wrap ::after,.ur_addons_wrap ::before{box-sizing:border-box}.ur_addons_wrap .products{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-right:-12px;margin-left:-12px}.ur_addons_wrap .products li{width:20%;padding:0 12px;-webkit-box-flex:0;-webkit-flex:0 0 20%;flex:0 0 20%;margin-bottom:24px}@media only screen and (max-width:1599px){.ur_addons_wrap .products li{width:33.333%;-webkit-box-flex:0;-webkit-flex:0 0 33.333%;flex:0 0 33.333%}}@media only screen and (max-width:768px){.ur_addons_wrap .products li{width:50%;-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%}}@media only screen and (max-width:480px){.ur_addons_wrap .products li{width:100%;-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;margin-bottom:12px}}.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;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 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 label{display:inline-block}.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,.ur-registered-from h4{color:#2d3559;font-weight:500}.ur-registered-from h4{font-size:16px}.ur-registered-from .ur-field label{font-weight:400;word-break:break-all}.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 .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-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;margin:0;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}.ur-portal-tooltip,.user-registration-help-tip{color:#676d8a;display:inline-block;font-size:22px;font-style:normal;height:16px;line-height:16px;position:relative;vertical-align:middle;width:16px}.ur-portal-tooltip::after,.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}#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)}.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:#37b24d}.ur-builder-message-container .ur-message .ur-success p::before{content:"\f12a";color:#37b24d}.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}.main_header{font-weight:600;font-size:20px;line-height:27px}.ur-p-tag{padding:0 20px 18px 20px;margin:0;font-style:italic}@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 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 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}}
 
assets/css/admin.css CHANGED
@@ -1,2 +1 @@
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-d-none{display:none!important}.ur-d-inline{display:inline!important}.ur-d-inline-block{display:inline-block!important}.ur-d-block{display:block!important}.ur-d-table{display:table!important}.ur-d-table-row{display:table-row!important}.ur-d-table-cell{display:table-cell!important}.ur-d-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}@media (min-width:576px){.ur-d-sm-none{display:none!important}.ur-d-sm-inline{display:inline!important}.ur-d-sm-inline-block{display:inline-block!important}.ur-d-sm-block{display:block!important}.ur-d-sm-table{display:table!important}.ur-d-sm-table-row{display:table-row!important}.ur-d-sm-table-cell{display:table-cell!important}.ur-d-sm-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-sm-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}}@media (min-width:768px){.ur-d-md-none{display:none!important}.ur-d-md-inline{display:inline!important}.ur-d-md-inline-block{display:inline-block!important}.ur-d-md-block{display:block!important}.ur-d-md-table{display:table!important}.ur-d-md-table-row{display:table-row!important}.ur-d-md-table-cell{display:table-cell!important}.ur-d-md-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-md-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}}@media (min-width:992px){.ur-d-lg-none{display:none!important}.ur-d-lg-inline{display:inline!important}.ur-d-lg-inline-block{display:inline-block!important}.ur-d-lg-block{display:block!important}.ur-d-lg-table{display:table!important}.ur-d-lg-table-row{display:table-row!important}.ur-d-lg-table-cell{display:table-cell!important}.ur-d-lg-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-lg-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}}@media (min-width:1200px){.ur-d-xl-none{display:none!important}.ur-d-xl-inline{display:inline!important}.ur-d-xl-inline-block{display:inline-block!important}.ur-d-xl-block{display:block!important}.ur-d-xl-table{display:table!important}.ur-d-xl-table-row{display:table-row!important}.ur-d-xl-table-cell{display:table-cell!important}.ur-d-xl-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-xl-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}}@media (min-width:1400px){.ur-d-xxl-none{display:none!important}.ur-d-xxl-inline{display:inline!important}.ur-d-xxl-inline-block{display:inline-block!important}.ur-d-xxl-block{display:block!important}.ur-d-xxl-table{display:table!important}.ur-d-xxl-table-row{display:table-row!important}.ur-d-xxl-table-cell{display:table-cell!important}.ur-d-xxl-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-xxl-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}}.ur-flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}@media (min-width:576px){.ur-flex-sm-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-sm-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-sm-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-sm-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-sm-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-sm-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-sm-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-sm-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-sm-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-sm-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-sm-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-sm-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-sm-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-sm-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-sm-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-sm-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-sm-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-sm-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-sm-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-sm-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-sm-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-sm-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-sm-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-sm-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-sm-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-sm-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-sm-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-sm-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-sm-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-sm-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-sm-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}@media (min-width:768px){.ur-flex-md-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-md-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-md-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-md-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-md-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-md-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-md-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-md-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-md-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-md-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-md-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-md-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-md-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-md-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-md-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-md-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-md-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-md-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-md-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-md-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-md-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-md-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-md-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-md-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-md-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-md-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-md-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-md-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-md-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-md-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-md-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}@media (min-width:992px){.ur-flex-lg-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-lg-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-lg-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-lg-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-lg-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-lg-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-lg-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-lg-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-lg-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-lg-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-lg-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-lg-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-lg-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-lg-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-lg-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-lg-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-lg-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-lg-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-lg-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-lg-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-lg-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-lg-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-lg-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-lg-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-lg-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-lg-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-lg-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-lg-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-lg-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-lg-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-lg-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.ur-flex-xl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-xl-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-xl-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-xl-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-xl-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-xl-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-xl-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-xl-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-xl-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-xl-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-xl-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-xl-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-xl-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-xl-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-xl-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-xl-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-xl-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-xl-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-xl-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-xl-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-xl-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-xl-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-xl-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-xl-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-xl-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-xl-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-xl-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-xl-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-xl-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-xl-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-xl-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}@media (min-width:1400px){.ur-flex-xxl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-xxl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-xxl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-xxl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-xxl-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-xxl-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-xxl-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-xxl-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-xxl-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-xxl-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-xxl-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-xxl-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-xxl-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-xxl-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-xxl-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-xxl-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-xxl-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-xxl-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-xxl-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-xxl-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-xxl-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-xxl-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-xxl-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-xxl-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-xxl-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-xxl-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-xxl-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-xxl-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-xxl-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-xxl-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-xxl-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-xxl-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-xxl-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-xxl-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}.ur-ml-auto{margin-left:auto}.ur-mr-auto{margin-left:auto}.ur-h2,.ur-h3,.ur-h4{font-weight:600!important}.ur-h2{font-size:28px!important}.ur-h3{font-size:20px!important}.ur-h4{font-size:16px!important}.ur-text-center{text-align:center}.ur-text-right{text-align:right}.ur-text-muted{color:#b6bbcf}@font-face{font-family:UserRegistration;src:url(../fonts/UserRegistration.eot?nk6vrg);src:url(../fonts/UserRegistration.eot?nk6vrg#iefix) format("embedded-opentype"),url(../fonts/UserRegistration.ttf?nk6vrg) format("truetype"),url(../fonts/UserRegistration.woff?nk6vrg) format("woff"),url(../fonts/UserRegistration.svg?nk6vrg#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-icon-credit-card::before{content:""}.ur-icon-range::before{content:""}.ur-icon-course::before{content:""}.ur-icon-mailerlite::before{content:""}.user-registration-table{width:100%;background:#fff;border-collapse:collapse}.user-registration-table__column-md{width:40%}.user-registration-table__column-sm{width:20%}.user-registration-table__column-auto{width:1%;white-space:nowrap}.user-registration-table__img{height:40px;width:40px;border-radius:4px;overflow:hidden}.user-registration-table caption,.user-registration-table td,.user-registration-table th{padding:1rem .5rem;text-align:left;border-bottom:1px solid #dee0e9}.user-registration-table caption:first-child,.user-registration-table td:first-child,.user-registration-table th:first-child{padding-left:1rem}.user-registration-table caption:last-child,.user-registration-table td:last-child,.user-registration-table th:last-child{padding-right:1rem}.user-registration-table td{vertical-align:top}.user-registration-table caption,.user-registration-table th{font-size:14px;font-weight:500}.user-registration-table thead th{background:#fafafc}.user-registration-table input,.user-registration-table select,.user-registration-table textarea{width:100%;box-shadow:none;border-radius:4px}.ur-form-group{margin-bottom:16px}.ur-label{display:block;width:100%;margin-bottom:8px;color:#4c5477;font-size:13px;font-weight:500;line-height:1.25}.swal2-container .user-registration-swal2-modal .swal2-input,.ur-input{display:block;width:100%;border:1px solid #dee0e9;border-radius:4px}.user-registration-custom-file{color:#676d8a;font-size:14px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;position:relative}.user-registration-custom-file input{position:absolute;z-index:2;width:100%;margin:0;opacity:0}.user-registration-custom-file__label{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;width:100%;padding:2px 2px 2px 8px;background-color:#fff;border:1px solid #dee0e9;border-radius:4px;z-index:1}.user-registration-custom-file__button{margin-left:auto;display:inline-block;background:#676d8a;color:#fff;padding:6px 15px;border-radius:4px}.user-registration-custom-file+.help{margin-top:4px}.ur-form-field--sm{width:80px;-webkit-box-flex:0;-webkit-flex:0 0 80px;flex:0 0 80px}.user-registration-editable-title{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;position:relative}.user-registration-editable-title .user-registration-editable-title__icon{background:#dee0e9;color:#4c5477;width:32px;height:32px;-webkit-box-flex:0;-webkit-flex:0 0 32px;flex:0 0 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}.user-registration-editable-title .user-registration-editable-title__icon::after{content:'';border-radius:3px;position:absolute;left:32px;right:calc(100% - 32px);height:32px;border-radius:0 3px 3px 0;-webkit-transition:all .3s ease 0s;transition:all .3s ease 0s}.user-registration-editable-title .user-registration-editable-title__input{color:#2d3559;background:0 0;font-size:16px;font-weight:500;width:auto;height:32px;padding:4px 8px;pointer-events:none;border:1px solid transparent!important;border-radius:0 4px 4px 0;z-index:1}.user-registration-editable-title .user-registration-editable-title__input.is-editing{border-color:transparent;pointer-events:all}.user-registration-editable-title .user-registration-editable-title__input.is-editing+.user-registration-editable-title__icon{color:#fff;background:#475bb2;border-radius:3px 0 0 3px}.user-registration-editable-title .user-registration-editable-title__input.is-editing+.user-registration-editable-title__icon::after{top:0;right:0;border:1px solid #475bb2}.user-registration-editable-title .user-registration-editable-title__input:focus{box-shadow:none}.user-registration-switch{display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.user-registration-switch input[type=checkbox]{display:none}.user-registration-switch input[type=checkbox].user-registration-switch__control{background:#676d8a;width:28px;height:18px;border-radius:10px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-flex:0;-webkit-flex:0 0 28px;flex:0 0 28px;margin:0;position:relative;border:2px solid #676d8a;-webkit-transition:.1s -webkit-transform ease;transition:.1s -webkit-transform ease;transition:.1s transform ease;transition:.1s transform ease,.1s -webkit-transform ease;box-sizing:border-box}.user-registration-switch input[type=checkbox].user-registration-switch__control::before{content:none}.user-registration-switch input[type=checkbox].user-registration-switch__control::after{display:inline-block;content:'';height:14px;width:14px;background:#fff;border-radius:50%;position:absolute;-webkit-transition:.1s -webkit-transform ease;transition:.1s -webkit-transform ease;transition:.1s transform ease;transition:.1s transform ease,.1s -webkit-transform ease}.user-registration-switch input[type=checkbox]:checked{background:#37b24d;border-color:#37b24d}.user-registration-switch input[type=checkbox]:checked::after{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}.user-registration-switch label{margin:0 0 0 8px!important}.user-registration input{border-color:#dee0e9}.user-registration .select2.select2-container{width:100%!important}.user-registration .select2-results__option .wrap:before{content:"\2610";width:25px;height:25px;padding-right:10px}.user-registration .select2-results__option[data-selected=true] .wrap:before{content:"\2714"}.user-registration .select2-drop,.user-registration .select2-dropdown{z-index:999999!important}.user-registration .select2-results{line-height:1.5em}.user-registration .select2-results .select2-results__group,.user-registration .select2-results .select2-results__option{margin:0;padding:8px}.user-registration .select2-dropdown{border-color:#dee0e9}.user-registration .select2-dropdown--below{box-shadow:0 1px 1px rgba(0,0,0,.1)}.user-registration .select2-dropdown--above{box-shadow:0 -1px 1px rgba(0,0,0,.1)}.user-registration .select2-container .select2-selection__rendered.ui-sortable li{cursor:move}.user-registration .select2-container .select2-selection{border-color:#dee0e9}.user-registration .select2-container .select2-search__field{min-width:20px}.user-registration .select2-container .select2-selection--single{height:32px}.user-registration .select2-container .select2-selection--single .select2-selection__rendered{display:block;line-height:32px;padding-right:24px}.user-registration .select2-container .select2-selection--single .select2-selection__arrow{right:3px;height:30px}.user-registration .select2-container .select2-selection--multiple{min-height:28px;border-radius:4px;line-height:1.5;border:1px solid #ddd!important}.user-registration .select2-container .select2-selection--multiple li{margin:0}.user-registration .select2-container .select2-selection--multiple .select2-selection__choice{padding:2px 6px}.user-registration .select2-container .select2-selection--multiple .select2-selection__rendered{display:block}.user-registration .select2-container .select2-selection--multiple .select2-selection__rendered .select2-selection__choice{margin-top:4px;margin-right:4px;line-height:1.4}.user-registration .select2-container .select2-selection__clear{color:#999;margin-top:-1px}.user-registration .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;height:32px}.user-registration-badge{display:inline-block;font-size:1em;line-height:1;padding:4px 8px;border-radius:10px}.user-registration-badge.user-registration-badge--primary{background:#475bb2;color:#fff}.user-registration-badge.user-registration-badge--primary-subtle{background:#c4cbe7;color:#475bb2}.user-registration-badge.user-registration-badge--secondary{background:#676d8a;color:#fff}.user-registration-badge.user-registration-badge--secondary-subtle{background:#cbced9;color:#676d8a}.user-registration-badge.user-registration-badge--success{background:#37b24d;color:#fff}.user-registration-badge.user-registration-badge--success-subtle{background:#b4e8bd;color:#2b8b3c}.user-registration-badge.user-registration-badge--danger{background:#ff4149;color:#fff}.user-registration-badge.user-registration-badge--danger-subtle{background:#ffdadc;color:#ff4149}.user-registration-badge.user-registration-badge--warning{background:#ffba00;color:#fff}.user-registration-badge.user-registration-badge--warning-subtle{background:#ffeab3;color:#b38200}.user-registration-badge.user-registration-badge--info{background:#2ea2cc;color:#fff}.user-registration-badge.user-registration-badge--info-subtle{background:#bce2f0;color:#2991b7}.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;box-shadow:0 1px 3px rgba(182,187,207,.15)}.ur-form-container .button+.button,.ur-form-container .button+button,.ur-form-container button+.button,.ur-form-container button+button,.user-registration .button+.button,.user-registration .button+button,.user-registration button+.button,.user-registration button+button{margin-left:6px}.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;text-align:center}.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:.9;vertical-align:middle}.ur-form-container .button.button-icon svg,.ur-form-container button.button-icon svg,.user-registration .button.button-icon svg,.user-registration button.button-icon svg{display:block;margin:0 auto}.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.is-active,.ur-form-container button.is-active,.user-registration .button.is-active,.user-registration button.is-active{background:#475bb2;color:#fff;border-color:#475bb2}.ur-form-container .button.is-active:active,.ur-form-container .button.is-active:focus,.ur-form-container .button.is-active:hover,.ur-form-container button.is-active:active,.ur-form-container button.is-active:focus,.ur-form-container button.is-active:hover,.user-registration .button.is-active:active,.user-registration .button.is-active:focus,.user-registration .button.is-active:hover,.user-registration button.is-active:active,.user-registration button.is-active:focus,.user-registration button.is-active:hover{background:#475bb2;color:#fff;border-color:#475bb2}.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}.ur-form-container .button-tertiary,.user-registration .button-tertiary{background:#fff;color:#2d3559;border:1px solid #dee0e9}.ur-form-container .button-tertiary:active,.ur-form-container .button-tertiary:focus,.ur-form-container .button-tertiary:hover,.user-registration .button-tertiary:active,.user-registration .button-tertiary:focus,.user-registration .button-tertiary:hover{background:#f0f1f5;border-color:#dee0e9}.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}.user-registration-button-group{position:relative;display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;vertical-align:middle}.user-registration-button-group .button:not(:first-child),.user-registration-button-group>button:not(:first-child){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.user-registration-button-group .button:not(:last-child),.user-registration-button-group>button:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.user-registration-button-group .button,.user-registration-button-group button{margin-right:0!important}.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}.user-registration-card{background:#fff;border-radius:4px;display:block;border:1px solid #dee0e9}.user-registration-card a{text-decoration:none}.user-registration-card__header{padding:16px 20px;border-bottom:1px solid #dee0e9}.user-registration-card__title{font-size:1.25em;line-height:1.3;margin:0}.user-registration-card__body{padding:20px}.user-registration-list-group{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.user-registration-list-group--flush>.user-registration-list-group__item{border-width:0 0 1px}.user-registration-list-group--flush>.user-registration-list-group__item:last-child{border-bottom-width:0}.user-registration-list-group--no-gutter .user-registration-list-group__item{padding-right:0;padding-left:0}.user-registration-list-group__item{position:relative;display:block;padding:1rem 1.25rem;background-color:transparent;border:1px solid #dee0e9}.user-registration-list-group__item:first-child{border-top-left-radius:8px;border-top-right-radius:8px}.user-registration-page.user-registration-modal-open{overflow:hidden}.user-registration-page.user-registration-modal-open .user-registration-modal{max-width:100%}.user-registration-modal{position:fixed;top:0;left:0;right:0;height:100%;width:100%;margin:0 auto!important;overflow-x:hidden;overflow-y:auto;z-index:999}.user-registration-modal .user-registration-modal__backdrop{position:fixed;left:0;top:0;background-color:rgba(45,53,89,.5);min-width:100%;min-height:100%;z-index:1}.user-registration-modal .user-registration-modal__content{background:#fff;position:relative;width:auto;margin:16px;border-radius:8px;z-index:99999;box-shadow:0 3px 25px 0 rgba(45,53,89,.4)}@media (min-width:576px){.user-registration-modal .user-registration-modal__content{max-width:500px;margin:24px auto}}@media (min-width:992px){.user-registration-modal .user-registration-modal__content.user-registration-modal__content--lg,.user-registration-modal .user-registration-modal__content.user-registration-modal__content--xl{max-width:800px}}@media (min-width:1200px){.user-registration-modal .user-registration-modal__content.user-registration-modal__content--xl{max-width:1140px}}.user-registration-modal .user-registration-modal__header{display:-webkit-box;display:-webkit-flex;display:flex;padding:16px;border-bottom:1px solid #dee0e9}.user-registration-modal .user-registration-modal__header .user-registration-modal__title{font-size:20px;line-height:1.4;margin:0;padding:0}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon{position:relative;display:block;width:32px;height:32px;-webkit-box-flex:0;-webkit-flex:0 0 32px;flex:0 0 32px;cursor:pointer;margin-left:auto}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::after,.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::before{content:'';height:2px;width:16px;display:block;position:absolute;top:50%;left:0;right:0;margin:0 auto;background:#b6bbcf}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::before{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::after{-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.user-registration-modal .user-registration-modal__body{position:relative;padding:16px}.user-registration-modal .user-registration-modal__body #user-registration,.user-registration-modal .user-registration-modal__body .login,.user-registration-modal .user-registration-modal__body .user-registration{margin:0;padding:0;border:none}.user-registration-modal .user-registration-modal__footer{padding:16px;border-top:1px solid #dee0e9}.user-registration-modal .user-registration-modal__footer *{margin:4px}.swal2-container .user-registration-swal2-modal{padding:40px}.swal2-container .user-registration-swal2-modal .swal2-input{font-size:16px}.swal2-container .user-registration-swal2-modal .swal2-animate-success-icon [class^=swal2-success-circular-line],.swal2-container .user-registration-swal2-modal .swal2-animate-success-icon [class^=swal2-success-line]{-webkit-animation:none;animation:none}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon{font-size:28px;width:56px;height:56px;line-height:56px;margin:0 auto 16px;border-width:2px;border-radius:50%}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line]{height:3px;width:28px;top:50%;left:0;right:0;margin:0 auto}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line][class$=left]{-webkit-transform:translateY(-50%) rotate(45deg);-ms-transform:translateY(-50%) rotate(45deg);transform:translateY(-50%) rotate(45deg)}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line][class$=right]{-webkit-transform:translateY(-50%) rotate(-45deg);-ms-transform:translateY(-50%) rotate(-45deg);transform:translateY(-50%) rotate(-45deg)}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line]{height:3px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{width:16px;top:56%;left:10px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:47%;width:32px;right:6px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line]{height:64px;width:32px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-75px;left:27px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-26px;left:82px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success .swal2-success-ring{top:-3px;left:-2px;border-width:2px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success .swal2-success-fix{height:64px;left:2px;right:0;margin:0 auto;top:-2px;bottom:0;width:6px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon::before{font-size:40px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-title{color:#2d3559;font-size:24px;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:16px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-title .dashicons{color:#ff4149;font-size:28px;width:56px;height:56px;line-height:56px;margin:0 auto 16px;border:2px solid #ff4149;border-radius:50%}.swal2-container .user-registration-swal2-modal__title{line-height:1.35;display:block}.swal2-container .user-registration-swal2-modal .swal2-content{color:#4c5477;font-size:1em;line-height:1.5}.swal2-container .user-registration-swal2-modal .swal2-actions button{margin-top:0;margin-bottom:0}.swal2-container .user-registration-swal2-modal--centered .swal2-title{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.ur-nav{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.ur-nav--tab{display:-webkit-box;display:-webkit-flex;display:flex;border-bottom:1px solid #dee0e9}.user-registration_page_user-registration-settings .ur-nav--tab{padding:0;margin:0 16px;border-bottom:0}.ur-nav__link{display:block;font-weight:500;color:#2d3559;padding:8px 12px;text-decoration:none;border:1px solid transparent}.ur-nav__link:focus,.ur-nav__link:hover{color:#475bb2}.ur-nav__link.is-active{background-color:#475bb2;border-color:#dee0e9 #dee0e9 #fff;border-radius:4px 4px 0 0}.user-registration_page_user-registration-settings .ur-nav__link{background-color:transparent;color:#fff;margin:0}.user-registration_page_user-registration-settings .ur-nav__link.is-active{background-color:#fff;color:#2d3559;border-color:#fff}.ur-scroll-ui{position:relative;overflow-x:auto;overflow-y:hidden}.ur-scroll-ui__items{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto;overflow-y:hidden;white-space:nowrap;scroll-behavior:smooth}.ur-scroll-ui__items::-webkit-scrollbar{display:none}.ur-scroll-ui__item{display:inline-block;height:100%}.ur-scroll-ui__scroll-nav{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;position:absolute;top:0;bottom:0;padding:8px}.ur-scroll-ui__scroll-nav--backward{left:0}.ur-scroll-ui__scroll-nav--forward{right:0}.ur-scroll-ui__scroll-nav__icon{color:#333;cursor:pointer}.ur-scroll-ui .is-disabled{display:none}.ur-bg-light{background-color:#f0f1f5}.ur-border{border:1px solid #dee0e9!important}.ur-border-top{border-top:1px solid #dee0e9!important}.ur-border-right{border-right:1px solid #dee0e9!important}.ur-border-bottom{border-bottom:1px solid #dee0e9!important}.ur-border-left{border-left:1px solid #dee0e9!important}.ur-border-0{border:0!important}.ur-border-top-0{border-top:0!important}.ur-border-right-0{border-right:0!important}.ur-border-bottom-0{border-bottom:0!important}.ur-border-left-0{border-left:0!important}.ur-m-0{margin:0!important}.ur-mt-0,.ur-my-0{margin-top:0!important}.ur-mr-0,.ur-mx-0{margin-right:0!important}.ur-mb-0,.ur-my-0{margin-bottom:0!important}.ur-ml-0,.ur-mx-0{margin-left:0!important}.ur-m-1{margin:4px!important}.ur-mt-1,.ur-my-1{margin-top:4px!important}.ur-mr-1,.ur-mx-1{margin-right:4px!important}.ur-mb-1,.ur-my-1{margin-bottom:4px!important}.ur-ml-1,.ur-mx-1{margin-left:4px!important}.ur-m-2{margin:8px!important}.ur-mt-2,.ur-my-2{margin-top:8px!important}.ur-mr-2,.ur-mx-2{margin-right:8px!important}.ur-mb-2,.ur-my-2{margin-bottom:8px!important}.ur-ml-2,.ur-mx-2{margin-left:8px!important}.ur-m-3{margin:12px!important}.ur-mt-3,.ur-my-3{margin-top:12px!important}.ur-mr-3,.ur-mx-3{margin-right:12px!important}.ur-mb-3,.ur-my-3{margin-bottom:12px!important}.ur-ml-3,.ur-mx-3{margin-left:12px!important}.ur-m-4{margin:16px!important}.ur-mt-4,.ur-my-4{margin-top:16px!important}.ur-mr-4,.ur-mx-4{margin-right:16px!important}.ur-mb-4,.ur-my-4{margin-bottom:16px!important}.ur-ml-4,.ur-mx-4{margin-left:16px!important}.ur-m-5{margin:20px!important}.ur-mt-5,.ur-my-5{margin-top:20px!important}.ur-mr-5,.ur-mx-5{margin-right:20px!important}.ur-mb-5,.ur-my-5{margin-bottom:20px!important}.ur-ml-5,.ur-mx-5{margin-left:20px!important}.ur-m-6{margin:24px!important}.ur-mt-6,.ur-my-6{margin-top:24px!important}.ur-mr-6,.ur-mx-6{margin-right:24px!important}.ur-mb-6,.ur-my-6{margin-bottom:24px!important}.ur-ml-6,.ur-mx-6{margin-left:24px!important}.ur-m-7{margin:28px!important}.ur-mt-7,.ur-my-7{margin-top:28px!important}.ur-mr-7,.ur-mx-7{margin-right:28px!important}.ur-mb-7,.ur-my-7{margin-bottom:28px!important}.ur-ml-7,.ur-mx-7{margin-left:28px!important}.ur-m-8{margin:32px!important}.ur-mt-8,.ur-my-8{margin-top:32px!important}.ur-mr-8,.ur-mx-8{margin-right:32px!important}.ur-mb-8,.ur-my-8{margin-bottom:32px!important}.ur-ml-8,.ur-mx-8{margin-left:32px!important}.ur-p-0{padding:0!important}.ur-pt-0,.ur-py-0{padding-top:0!important}.ur-pr-0,.ur-px-0{padding-right:0!important}.ur-pb-0,.ur-py-0{padding-bottom:0!important}.ur-pl-0,.ur-px-0{padding-left:0!important}.ur-p-1{padding:4px!important}.ur-pt-1,.ur-py-1{padding-top:4px!important}.ur-pr-1,.ur-px-1{padding-right:4px!important}.ur-pb-1,.ur-py-1{padding-bottom:4px!important}.ur-pl-1,.ur-px-1{padding-left:4px!important}.ur-p-2{padding:8px!important}.ur-pt-2,.ur-py-2{padding-top:8px!important}.ur-pr-2,.ur-px-2{padding-right:8px!important}.ur-pb-2,.ur-py-2{padding-bottom:8px!important}.ur-pl-2,.ur-px-2{padding-left:8px!important}.ur-p-3{padding:12px!important}.ur-pt-3,.ur-py-3{padding-top:12px!important}.ur-pr-3,.ur-px-3{padding-right:12px!important}.ur-pb-3,.ur-py-3{padding-bottom:12px!important}.ur-pl-3,.ur-px-3{padding-left:12px!important}.ur-p-4{padding:16px!important}.ur-pt-4,.ur-py-4{padding-top:16px!important}.ur-pr-4,.ur-px-4{padding-right:16px!important}.ur-pb-4,.ur-py-4{padding-bottom:16px!important}.ur-pl-4,.ur-px-4{padding-left:16px!important}.ur-p-5{padding:20px!important}.ur-pt-5,.ur-py-5{padding-top:20px!important}.ur-pr-5,.ur-px-5{padding-right:20px!important}.ur-pb-5,.ur-py-5{padding-bottom:20px!important}.ur-pl-5,.ur-px-5{padding-left:20px!important}.ur-p-6{padding:24px!important}.ur-pt-6,.ur-py-6{padding-top:24px!important}.ur-pr-6,.ur-px-6{padding-right:24px!important}.ur-pb-6,.ur-py-6{padding-bottom:24px!important}.ur-pl-6,.ur-px-6{padding-left:24px!important}.ur-p-7{padding:28px!important}.ur-pt-7,.ur-py-7{padding-top:28px!important}.ur-pr-7,.ur-px-7{padding-right:28px!important}.ur-pb-7,.ur-py-7{padding-bottom:28px!important}.ur-pl-7,.ur-px-7{padding-left:28px!important}.ur-p-8{padding:32px!important}.ur-pt-8,.ur-py-8{padding-top:32px!important}.ur-pr-8,.ur-px-8{padding-right:32px!important}.ur-pb-8,.ur-py-8{padding-bottom:32px!important}.ur-pl-8,.ur-px-8{padding-left:32px!important}.ur-m-n1{margin:-4px!important}.ur-mt-n1,.ur-my-n1{margin-top:-4px!important}.ur-mr-n1,.ur-mx-n1{margin-right:-4px!important}.ur-mb-n1,.ur-my-n1{margin-bottom:-4px!important}.ur-ml-n1,.ur-mx-n1{margin-left:-4px!important}.ur-m-n2{margin:-8px!important}.ur-mt-n2,.ur-my-n2{margin-top:-8px!important}.ur-mr-n2,.ur-mx-n2{margin-right:-8px!important}.ur-mb-n2,.ur-my-n2{margin-bottom:-8px!important}.ur-ml-n2,.ur-mx-n2{margin-left:-8px!important}.ur-m-n3{margin:-12px!important}.ur-mt-n3,.ur-my-n3{margin-top:-12px!important}.ur-mr-n3,.ur-mx-n3{margin-right:-12px!important}.ur-mb-n3,.ur-my-n3{margin-bottom:-12px!important}.ur-ml-n3,.ur-mx-n3{margin-left:-12px!important}.ur-m-n4{margin:-16px!important}.ur-mt-n4,.ur-my-n4{margin-top:-16px!important}.ur-mr-n4,.ur-mx-n4{margin-right:-16px!important}.ur-mb-n4,.ur-my-n4{margin-bottom:-16px!important}.ur-ml-n4,.ur-mx-n4{margin-left:-16px!important}.ur-m-n5{margin:-20px!important}.ur-mt-n5,.ur-my-n5{margin-top:-20px!important}.ur-mr-n5,.ur-mx-n5{margin-right:-20px!important}.ur-mb-n5,.ur-my-n5{margin-bottom:-20px!important}.ur-ml-n5,.ur-mx-n5{margin-left:-20px!important}.ur-m-n6{margin:-24px!important}.ur-mt-n6,.ur-my-n6{margin-top:-24px!important}.ur-mr-n6,.ur-mx-n6{margin-right:-24px!important}.ur-mb-n6,.ur-my-n6{margin-bottom:-24px!important}.ur-ml-n6,.ur-mx-n6{margin-left:-24px!important}.ur-m-n7{margin:-28px!important}.ur-mt-n7,.ur-my-n7{margin-top:-28px!important}.ur-mr-n7,.ur-mx-n7{margin-right:-28px!important}.ur-mb-n7,.ur-my-n7{margin-bottom:-28px!important}.ur-ml-n7,.ur-mx-n7{margin-left:-28px!important}.ur-m-n8{margin:-32px!important}.ur-mt-n8,.ur-my-n8{margin-top:-32px!important}.ur-mr-n8,.ur-mx-n8{margin-right:-32px!important}.ur-mb-n8,.ur-my-n8{margin-bottom:-32px!important}.ur-ml-n8,.ur-mx-n8{margin-left:-32px!important}.ur-m-auto{margin:auto!important}.ur-mt-auto,.ur-my-auto{margin-top:auto!important}.ur-mr-auto,.ur-mx-auto{margin-right:auto!important}.ur-mb-auto,.ur-my-auto{margin-bottom:auto!important}.ur-ml-auto,.ur-mx-auto{margin-left:auto!important}@media (min-width:576px){.ur-m-sm-0{margin:0!important}.ur-mt-sm-0,.ur-my-sm-0{margin-top:0!important}.ur-mr-sm-0,.ur-mx-sm-0{margin-right:0!important}.ur-mb-sm-0,.ur-my-sm-0{margin-bottom:0!important}.ur-ml-sm-0,.ur-mx-sm-0{margin-left:0!important}.ur-m-sm-1{margin:4px!important}.ur-mt-sm-1,.ur-my-sm-1{margin-top:4px!important}.ur-mr-sm-1,.ur-mx-sm-1{margin-right:4px!important}.ur-mb-sm-1,.ur-my-sm-1{margin-bottom:4px!important}.ur-ml-sm-1,.ur-mx-sm-1{margin-left:4px!important}.ur-m-sm-2{margin:8px!important}.ur-mt-sm-2,.ur-my-sm-2{margin-top:8px!important}.ur-mr-sm-2,.ur-mx-sm-2{margin-right:8px!important}.ur-mb-sm-2,.ur-my-sm-2{margin-bottom:8px!important}.ur-ml-sm-2,.ur-mx-sm-2{margin-left:8px!important}.ur-m-sm-3{margin:12px!important}.ur-mt-sm-3,.ur-my-sm-3{margin-top:12px!important}.ur-mr-sm-3,.ur-mx-sm-3{margin-right:12px!important}.ur-mb-sm-3,.ur-my-sm-3{margin-bottom:12px!important}.ur-ml-sm-3,.ur-mx-sm-3{margin-left:12px!important}.ur-m-sm-4{margin:16px!important}.ur-mt-sm-4,.ur-my-sm-4{margin-top:16px!important}.ur-mr-sm-4,.ur-mx-sm-4{margin-right:16px!important}.ur-mb-sm-4,.ur-my-sm-4{margin-bottom:16px!important}.ur-ml-sm-4,.ur-mx-sm-4{margin-left:16px!important}.ur-m-sm-5{margin:20px!important}.ur-mt-sm-5,.ur-my-sm-5{margin-top:20px!important}.ur-mr-sm-5,.ur-mx-sm-5{margin-right:20px!important}.ur-mb-sm-5,.ur-my-sm-5{margin-bottom:20px!important}.ur-ml-sm-5,.ur-mx-sm-5{margin-left:20px!important}.ur-m-sm-6{margin:24px!important}.ur-mt-sm-6,.ur-my-sm-6{margin-top:24px!important}.ur-mr-sm-6,.ur-mx-sm-6{margin-right:24px!important}.ur-mb-sm-6,.ur-my-sm-6{margin-bottom:24px!important}.ur-ml-sm-6,.ur-mx-sm-6{margin-left:24px!important}.ur-m-sm-7{margin:28px!important}.ur-mt-sm-7,.ur-my-sm-7{margin-top:28px!important}.ur-mr-sm-7,.ur-mx-sm-7{margin-right:28px!important}.ur-mb-sm-7,.ur-my-sm-7{margin-bottom:28px!important}.ur-ml-sm-7,.ur-mx-sm-7{margin-left:28px!important}.ur-m-sm-8{margin:32px!important}.ur-mt-sm-8,.ur-my-sm-8{margin-top:32px!important}.ur-mr-sm-8,.ur-mx-sm-8{margin-right:32px!important}.ur-mb-sm-8,.ur-my-sm-8{margin-bottom:32px!important}.ur-ml-sm-8,.ur-mx-sm-8{margin-left:32px!important}.ur-p-sm-0{padding:0!important}.ur-pt-sm-0,.ur-py-sm-0{padding-top:0!important}.ur-pr-sm-0,.ur-px-sm-0{padding-right:0!important}.ur-pb-sm-0,.ur-py-sm-0{padding-bottom:0!important}.ur-pl-sm-0,.ur-px-sm-0{padding-left:0!important}.ur-p-sm-1{padding:4px!important}.ur-pt-sm-1,.ur-py-sm-1{padding-top:4px!important}.ur-pr-sm-1,.ur-px-sm-1{padding-right:4px!important}.ur-pb-sm-1,.ur-py-sm-1{padding-bottom:4px!important}.ur-pl-sm-1,.ur-px-sm-1{padding-left:4px!important}.ur-p-sm-2{padding:8px!important}.ur-pt-sm-2,.ur-py-sm-2{padding-top:8px!important}.ur-pr-sm-2,.ur-px-sm-2{padding-right:8px!important}.ur-pb-sm-2,.ur-py-sm-2{padding-bottom:8px!important}.ur-pl-sm-2,.ur-px-sm-2{padding-left:8px!important}.ur-p-sm-3{padding:12px!important}.ur-pt-sm-3,.ur-py-sm-3{padding-top:12px!important}.ur-pr-sm-3,.ur-px-sm-3{padding-right:12px!important}.ur-pb-sm-3,.ur-py-sm-3{padding-bottom:12px!important}.ur-pl-sm-3,.ur-px-sm-3{padding-left:12px!important}.ur-p-sm-4{padding:16px!important}.ur-pt-sm-4,.ur-py-sm-4{padding-top:16px!important}.ur-pr-sm-4,.ur-px-sm-4{padding-right:16px!important}.ur-pb-sm-4,.ur-py-sm-4{padding-bottom:16px!important}.ur-pl-sm-4,.ur-px-sm-4{padding-left:16px!important}.ur-p-sm-5{padding:20px!important}.ur-pt-sm-5,.ur-py-sm-5{padding-top:20px!important}.ur-pr-sm-5,.ur-px-sm-5{padding-right:20px!important}.ur-pb-sm-5,.ur-py-sm-5{padding-bottom:20px!important}.ur-pl-sm-5,.ur-px-sm-5{padding-left:20px!important}.ur-p-sm-6{padding:24px!important}.ur-pt-sm-6,.ur-py-sm-6{padding-top:24px!important}.ur-pr-sm-6,.ur-px-sm-6{padding-right:24px!important}.ur-pb-sm-6,.ur-py-sm-6{padding-bottom:24px!important}.ur-pl-sm-6,.ur-px-sm-6{padding-left:24px!important}.ur-p-sm-7{padding:28px!important}.ur-pt-sm-7,.ur-py-sm-7{padding-top:28px!important}.ur-pr-sm-7,.ur-px-sm-7{padding-right:28px!important}.ur-pb-sm-7,.ur-py-sm-7{padding-bottom:28px!important}.ur-pl-sm-7,.ur-px-sm-7{padding-left:28px!important}.ur-p-sm-8{padding:32px!important}.ur-pt-sm-8,.ur-py-sm-8{padding-top:32px!important}.ur-pr-sm-8,.ur-px-sm-8{padding-right:32px!important}.ur-pb-sm-8,.ur-py-sm-8{padding-bottom:32px!important}.ur-pl-sm-8,.ur-px-sm-8{padding-left:32px!important}.ur-m-sm-n1{margin:-4px!important}.ur-mt-sm-n1,.ur-my-sm-n1{margin-top:-4px!important}.ur-mr-sm-n1,.ur-mx-sm-n1{margin-right:-4px!important}.ur-mb-sm-n1,.ur-my-sm-n1{margin-bottom:-4px!important}.ur-ml-sm-n1,.ur-mx-sm-n1{margin-left:-4px!important}.ur-m-sm-n2{margin:-8px!important}.ur-mt-sm-n2,.ur-my-sm-n2{margin-top:-8px!important}.ur-mr-sm-n2,.ur-mx-sm-n2{margin-right:-8px!important}.ur-mb-sm-n2,.ur-my-sm-n2{margin-bottom:-8px!important}.ur-ml-sm-n2,.ur-mx-sm-n2{margin-left:-8px!important}.ur-m-sm-n3{margin:-12px!important}.ur-mt-sm-n3,.ur-my-sm-n3{margin-top:-12px!important}.ur-mr-sm-n3,.ur-mx-sm-n3{margin-right:-12px!important}.ur-mb-sm-n3,.ur-my-sm-n3{margin-bottom:-12px!important}.ur-ml-sm-n3,.ur-mx-sm-n3{margin-left:-12px!important}.ur-m-sm-n4{margin:-16px!important}.ur-mt-sm-n4,.ur-my-sm-n4{margin-top:-16px!important}.ur-mr-sm-n4,.ur-mx-sm-n4{margin-right:-16px!important}.ur-mb-sm-n4,.ur-my-sm-n4{margin-bottom:-16px!important}.ur-ml-sm-n4,.ur-mx-sm-n4{margin-left:-16px!important}.ur-m-sm-n5{margin:-20px!important}.ur-mt-sm-n5,.ur-my-sm-n5{margin-top:-20px!important}.ur-mr-sm-n5,.ur-mx-sm-n5{margin-right:-20px!important}.ur-mb-sm-n5,.ur-my-sm-n5{margin-bottom:-20px!important}.ur-ml-sm-n5,.ur-mx-sm-n5{margin-left:-20px!important}.ur-m-sm-n6{margin:-24px!important}.ur-mt-sm-n6,.ur-my-sm-n6{margin-top:-24px!important}.ur-mr-sm-n6,.ur-mx-sm-n6{margin-right:-24px!important}.ur-mb-sm-n6,.ur-my-sm-n6{margin-bottom:-24px!important}.ur-ml-sm-n6,.ur-mx-sm-n6{margin-left:-24px!important}.ur-m-sm-n7{margin:-28px!important}.ur-mt-sm-n7,.ur-my-sm-n7{margin-top:-28px!important}.ur-mr-sm-n7,.ur-mx-sm-n7{margin-right:-28px!important}.ur-mb-sm-n7,.ur-my-sm-n7{margin-bottom:-28px!important}.ur-ml-sm-n7,.ur-mx-sm-n7{margin-left:-28px!important}.ur-m-sm-n8{margin:-32px!important}.ur-mt-sm-n8,.ur-my-sm-n8{margin-top:-32px!important}.ur-mr-sm-n8,.ur-mx-sm-n8{margin-right:-32px!important}.ur-mb-sm-n8,.ur-my-sm-n8{margin-bottom:-32px!important}.ur-ml-sm-n8,.ur-mx-sm-n8{margin-left:-32px!important}.ur-m-sm-auto{margin:auto!important}.ur-mt-sm-auto,.ur-my-sm-auto{margin-top:auto!important}.ur-mr-sm-auto,.ur-mx-sm-auto{margin-right:auto!important}.ur-mb-sm-auto,.ur-my-sm-auto{margin-bottom:auto!important}.ur-ml-sm-auto,.ur-mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.ur-m-md-0{margin:0!important}.ur-mt-md-0,.ur-my-md-0{margin-top:0!important}.ur-mr-md-0,.ur-mx-md-0{margin-right:0!important}.ur-mb-md-0,.ur-my-md-0{margin-bottom:0!important}.ur-ml-md-0,.ur-mx-md-0{margin-left:0!important}.ur-m-md-1{margin:4px!important}.ur-mt-md-1,.ur-my-md-1{margin-top:4px!important}.ur-mr-md-1,.ur-mx-md-1{margin-right:4px!important}.ur-mb-md-1,.ur-my-md-1{margin-bottom:4px!important}.ur-ml-md-1,.ur-mx-md-1{margin-left:4px!important}.ur-m-md-2{margin:8px!important}.ur-mt-md-2,.ur-my-md-2{margin-top:8px!important}.ur-mr-md-2,.ur-mx-md-2{margin-right:8px!important}.ur-mb-md-2,.ur-my-md-2{margin-bottom:8px!important}.ur-ml-md-2,.ur-mx-md-2{margin-left:8px!important}.ur-m-md-3{margin:12px!important}.ur-mt-md-3,.ur-my-md-3{margin-top:12px!important}.ur-mr-md-3,.ur-mx-md-3{margin-right:12px!important}.ur-mb-md-3,.ur-my-md-3{margin-bottom:12px!important}.ur-ml-md-3,.ur-mx-md-3{margin-left:12px!important}.ur-m-md-4{margin:16px!important}.ur-mt-md-4,.ur-my-md-4{margin-top:16px!important}.ur-mr-md-4,.ur-mx-md-4{margin-right:16px!important}.ur-mb-md-4,.ur-my-md-4{margin-bottom:16px!important}.ur-ml-md-4,.ur-mx-md-4{margin-left:16px!important}.ur-m-md-5{margin:20px!important}.ur-mt-md-5,.ur-my-md-5{margin-top:20px!important}.ur-mr-md-5,.ur-mx-md-5{margin-right:20px!important}.ur-mb-md-5,.ur-my-md-5{margin-bottom:20px!important}.ur-ml-md-5,.ur-mx-md-5{margin-left:20px!important}.ur-m-md-6{margin:24px!important}.ur-mt-md-6,.ur-my-md-6{margin-top:24px!important}.ur-mr-md-6,.ur-mx-md-6{margin-right:24px!important}.ur-mb-md-6,.ur-my-md-6{margin-bottom:24px!important}.ur-ml-md-6,.ur-mx-md-6{margin-left:24px!important}.ur-m-md-7{margin:28px!important}.ur-mt-md-7,.ur-my-md-7{margin-top:28px!important}.ur-mr-md-7,.ur-mx-md-7{margin-right:28px!important}.ur-mb-md-7,.ur-my-md-7{margin-bottom:28px!important}.ur-ml-md-7,.ur-mx-md-7{margin-left:28px!important}.ur-m-md-8{margin:32px!important}.ur-mt-md-8,.ur-my-md-8{margin-top:32px!important}.ur-mr-md-8,.ur-mx-md-8{margin-right:32px!important}.ur-mb-md-8,.ur-my-md-8{margin-bottom:32px!important}.ur-ml-md-8,.ur-mx-md-8{margin-left:32px!important}.ur-p-md-0{padding:0!important}.ur-pt-md-0,.ur-py-md-0{padding-top:0!important}.ur-pr-md-0,.ur-px-md-0{padding-right:0!important}.ur-pb-md-0,.ur-py-md-0{padding-bottom:0!important}.ur-pl-md-0,.ur-px-md-0{padding-left:0!important}.ur-p-md-1{padding:4px!important}.ur-pt-md-1,.ur-py-md-1{padding-top:4px!important}.ur-pr-md-1,.ur-px-md-1{padding-right:4px!important}.ur-pb-md-1,.ur-py-md-1{padding-bottom:4px!important}.ur-pl-md-1,.ur-px-md-1{padding-left:4px!important}.ur-p-md-2{padding:8px!important}.ur-pt-md-2,.ur-py-md-2{padding-top:8px!important}.ur-pr-md-2,.ur-px-md-2{padding-right:8px!important}.ur-pb-md-2,.ur-py-md-2{padding-bottom:8px!important}.ur-pl-md-2,.ur-px-md-2{padding-left:8px!important}.ur-p-md-3{padding:12px!important}.ur-pt-md-3,.ur-py-md-3{padding-top:12px!important}.ur-pr-md-3,.ur-px-md-3{padding-right:12px!important}.ur-pb-md-3,.ur-py-md-3{padding-bottom:12px!important}.ur-pl-md-3,.ur-px-md-3{padding-left:12px!important}.ur-p-md-4{padding:16px!important}.ur-pt-md-4,.ur-py-md-4{padding-top:16px!important}.ur-pr-md-4,.ur-px-md-4{padding-right:16px!important}.ur-pb-md-4,.ur-py-md-4{padding-bottom:16px!important}.ur-pl-md-4,.ur-px-md-4{padding-left:16px!important}.ur-p-md-5{padding:20px!important}.ur-pt-md-5,.ur-py-md-5{padding-top:20px!important}.ur-pr-md-5,.ur-px-md-5{padding-right:20px!important}.ur-pb-md-5,.ur-py-md-5{padding-bottom:20px!important}.ur-pl-md-5,.ur-px-md-5{padding-left:20px!important}.ur-p-md-6{padding:24px!important}.ur-pt-md-6,.ur-py-md-6{padding-top:24px!important}.ur-pr-md-6,.ur-px-md-6{padding-right:24px!important}.ur-pb-md-6,.ur-py-md-6{padding-bottom:24px!important}.ur-pl-md-6,.ur-px-md-6{padding-left:24px!important}.ur-p-md-7{padding:28px!important}.ur-pt-md-7,.ur-py-md-7{padding-top:28px!important}.ur-pr-md-7,.ur-px-md-7{padding-right:28px!important}.ur-pb-md-7,.ur-py-md-7{padding-bottom:28px!important}.ur-pl-md-7,.ur-px-md-7{padding-left:28px!important}.ur-p-md-8{padding:32px!important}.ur-pt-md-8,.ur-py-md-8{padding-top:32px!important}.ur-pr-md-8,.ur-px-md-8{padding-right:32px!important}.ur-pb-md-8,.ur-py-md-8{padding-bottom:32px!important}.ur-pl-md-8,.ur-px-md-8{padding-left:32px!important}.ur-m-md-n1{margin:-4px!important}.ur-mt-md-n1,.ur-my-md-n1{margin-top:-4px!important}.ur-mr-md-n1,.ur-mx-md-n1{margin-right:-4px!important}.ur-mb-md-n1,.ur-my-md-n1{margin-bottom:-4px!important}.ur-ml-md-n1,.ur-mx-md-n1{margin-left:-4px!important}.ur-m-md-n2{margin:-8px!important}.ur-mt-md-n2,.ur-my-md-n2{margin-top:-8px!important}.ur-mr-md-n2,.ur-mx-md-n2{margin-right:-8px!important}.ur-mb-md-n2,.ur-my-md-n2{margin-bottom:-8px!important}.ur-ml-md-n2,.ur-mx-md-n2{margin-left:-8px!important}.ur-m-md-n3{margin:-12px!important}.ur-mt-md-n3,.ur-my-md-n3{margin-top:-12px!important}.ur-mr-md-n3,.ur-mx-md-n3{margin-right:-12px!important}.ur-mb-md-n3,.ur-my-md-n3{margin-bottom:-12px!important}.ur-ml-md-n3,.ur-mx-md-n3{margin-left:-12px!important}.ur-m-md-n4{margin:-16px!important}.ur-mt-md-n4,.ur-my-md-n4{margin-top:-16px!important}.ur-mr-md-n4,.ur-mx-md-n4{margin-right:-16px!important}.ur-mb-md-n4,.ur-my-md-n4{margin-bottom:-16px!important}.ur-ml-md-n4,.ur-mx-md-n4{margin-left:-16px!important}.ur-m-md-n5{margin:-20px!important}.ur-mt-md-n5,.ur-my-md-n5{margin-top:-20px!important}.ur-mr-md-n5,.ur-mx-md-n5{margin-right:-20px!important}.ur-mb-md-n5,.ur-my-md-n5{margin-bottom:-20px!important}.ur-ml-md-n5,.ur-mx-md-n5{margin-left:-20px!important}.ur-m-md-n6{margin:-24px!important}.ur-mt-md-n6,.ur-my-md-n6{margin-top:-24px!important}.ur-mr-md-n6,.ur-mx-md-n6{margin-right:-24px!important}.ur-mb-md-n6,.ur-my-md-n6{margin-bottom:-24px!important}.ur-ml-md-n6,.ur-mx-md-n6{margin-left:-24px!important}.ur-m-md-n7{margin:-28px!important}.ur-mt-md-n7,.ur-my-md-n7{margin-top:-28px!important}.ur-mr-md-n7,.ur-mx-md-n7{margin-right:-28px!important}.ur-mb-md-n7,.ur-my-md-n7{margin-bottom:-28px!important}.ur-ml-md-n7,.ur-mx-md-n7{margin-left:-28px!important}.ur-m-md-n8{margin:-32px!important}.ur-mt-md-n8,.ur-my-md-n8{margin-top:-32px!important}.ur-mr-md-n8,.ur-mx-md-n8{margin-right:-32px!important}.ur-mb-md-n8,.ur-my-md-n8{margin-bottom:-32px!important}.ur-ml-md-n8,.ur-mx-md-n8{margin-left:-32px!important}.ur-m-md-auto{margin:auto!important}.ur-mt-md-auto,.ur-my-md-auto{margin-top:auto!important}.ur-mr-md-auto,.ur-mx-md-auto{margin-right:auto!important}.ur-mb-md-auto,.ur-my-md-auto{margin-bottom:auto!important}.ur-ml-md-auto,.ur-mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.ur-m-lg-0{margin:0!important}.ur-mt-lg-0,.ur-my-lg-0{margin-top:0!important}.ur-mr-lg-0,.ur-mx-lg-0{margin-right:0!important}.ur-mb-lg-0,.ur-my-lg-0{margin-bottom:0!important}.ur-ml-lg-0,.ur-mx-lg-0{margin-left:0!important}.ur-m-lg-1{margin:4px!important}.ur-mt-lg-1,.ur-my-lg-1{margin-top:4px!important}.ur-mr-lg-1,.ur-mx-lg-1{margin-right:4px!important}.ur-mb-lg-1,.ur-my-lg-1{margin-bottom:4px!important}.ur-ml-lg-1,.ur-mx-lg-1{margin-left:4px!important}.ur-m-lg-2{margin:8px!important}.ur-mt-lg-2,.ur-my-lg-2{margin-top:8px!important}.ur-mr-lg-2,.ur-mx-lg-2{margin-right:8px!important}.ur-mb-lg-2,.ur-my-lg-2{margin-bottom:8px!important}.ur-ml-lg-2,.ur-mx-lg-2{margin-left:8px!important}.ur-m-lg-3{margin:12px!important}.ur-mt-lg-3,.ur-my-lg-3{margin-top:12px!important}.ur-mr-lg-3,.ur-mx-lg-3{margin-right:12px!important}.ur-mb-lg-3,.ur-my-lg-3{margin-bottom:12px!important}.ur-ml-lg-3,.ur-mx-lg-3{margin-left:12px!important}.ur-m-lg-4{margin:16px!important}.ur-mt-lg-4,.ur-my-lg-4{margin-top:16px!important}.ur-mr-lg-4,.ur-mx-lg-4{margin-right:16px!important}.ur-mb-lg-4,.ur-my-lg-4{margin-bottom:16px!important}.ur-ml-lg-4,.ur-mx-lg-4{margin-left:16px!important}.ur-m-lg-5{margin:20px!important}.ur-mt-lg-5,.ur-my-lg-5{margin-top:20px!important}.ur-mr-lg-5,.ur-mx-lg-5{margin-right:20px!important}.ur-mb-lg-5,.ur-my-lg-5{margin-bottom:20px!important}.ur-ml-lg-5,.ur-mx-lg-5{margin-left:20px!important}.ur-m-lg-6{margin:24px!important}.ur-mt-lg-6,.ur-my-lg-6{margin-top:24px!important}.ur-mr-lg-6,.ur-mx-lg-6{margin-right:24px!important}.ur-mb-lg-6,.ur-my-lg-6{margin-bottom:24px!important}.ur-ml-lg-6,.ur-mx-lg-6{margin-left:24px!important}.ur-m-lg-7{margin:28px!important}.ur-mt-lg-7,.ur-my-lg-7{margin-top:28px!important}.ur-mr-lg-7,.ur-mx-lg-7{margin-right:28px!important}.ur-mb-lg-7,.ur-my-lg-7{margin-bottom:28px!important}.ur-ml-lg-7,.ur-mx-lg-7{margin-left:28px!important}.ur-m-lg-8{margin:32px!important}.ur-mt-lg-8,.ur-my-lg-8{margin-top:32px!important}.ur-mr-lg-8,.ur-mx-lg-8{margin-right:32px!important}.ur-mb-lg-8,.ur-my-lg-8{margin-bottom:32px!important}.ur-ml-lg-8,.ur-mx-lg-8{margin-left:32px!important}.ur-p-lg-0{padding:0!important}.ur-pt-lg-0,.ur-py-lg-0{padding-top:0!important}.ur-pr-lg-0,.ur-px-lg-0{padding-right:0!important}.ur-pb-lg-0,.ur-py-lg-0{padding-bottom:0!important}.ur-pl-lg-0,.ur-px-lg-0{padding-left:0!important}.ur-p-lg-1{padding:4px!important}.ur-pt-lg-1,.ur-py-lg-1{padding-top:4px!important}.ur-pr-lg-1,.ur-px-lg-1{padding-right:4px!important}.ur-pb-lg-1,.ur-py-lg-1{padding-bottom:4px!important}.ur-pl-lg-1,.ur-px-lg-1{padding-left:4px!important}.ur-p-lg-2{padding:8px!important}.ur-pt-lg-2,.ur-py-lg-2{padding-top:8px!important}.ur-pr-lg-2,.ur-px-lg-2{padding-right:8px!important}.ur-pb-lg-2,.ur-py-lg-2{padding-bottom:8px!important}.ur-pl-lg-2,.ur-px-lg-2{padding-left:8px!important}.ur-p-lg-3{padding:12px!important}.ur-pt-lg-3,.ur-py-lg-3{padding-top:12px!important}.ur-pr-lg-3,.ur-px-lg-3{padding-right:12px!important}.ur-pb-lg-3,.ur-py-lg-3{padding-bottom:12px!important}.ur-pl-lg-3,.ur-px-lg-3{padding-left:12px!important}.ur-p-lg-4{padding:16px!important}.ur-pt-lg-4,.ur-py-lg-4{padding-top:16px!important}.ur-pr-lg-4,.ur-px-lg-4{padding-right:16px!important}.ur-pb-lg-4,.ur-py-lg-4{padding-bottom:16px!important}.ur-pl-lg-4,.ur-px-lg-4{padding-left:16px!important}.ur-p-lg-5{padding:20px!important}.ur-pt-lg-5,.ur-py-lg-5{padding-top:20px!important}.ur-pr-lg-5,.ur-px-lg-5{padding-right:20px!important}.ur-pb-lg-5,.ur-py-lg-5{padding-bottom:20px!important}.ur-pl-lg-5,.ur-px-lg-5{padding-left:20px!important}.ur-p-lg-6{padding:24px!important}.ur-pt-lg-6,.ur-py-lg-6{padding-top:24px!important}.ur-pr-lg-6,.ur-px-lg-6{padding-right:24px!important}.ur-pb-lg-6,.ur-py-lg-6{padding-bottom:24px!important}.ur-pl-lg-6,.ur-px-lg-6{padding-left:24px!important}.ur-p-lg-7{padding:28px!important}.ur-pt-lg-7,.ur-py-lg-7{padding-top:28px!important}.ur-pr-lg-7,.ur-px-lg-7{padding-right:28px!important}.ur-pb-lg-7,.ur-py-lg-7{padding-bottom:28px!important}.ur-pl-lg-7,.ur-px-lg-7{padding-left:28px!important}.ur-p-lg-8{padding:32px!important}.ur-pt-lg-8,.ur-py-lg-8{padding-top:32px!important}.ur-pr-lg-8,.ur-px-lg-8{padding-right:32px!important}.ur-pb-lg-8,.ur-py-lg-8{padding-bottom:32px!important}.ur-pl-lg-8,.ur-px-lg-8{padding-left:32px!important}.ur-m-lg-n1{margin:-4px!important}.ur-mt-lg-n1,.ur-my-lg-n1{margin-top:-4px!important}.ur-mr-lg-n1,.ur-mx-lg-n1{margin-right:-4px!important}.ur-mb-lg-n1,.ur-my-lg-n1{margin-bottom:-4px!important}.ur-ml-lg-n1,.ur-mx-lg-n1{margin-left:-4px!important}.ur-m-lg-n2{margin:-8px!important}.ur-mt-lg-n2,.ur-my-lg-n2{margin-top:-8px!important}.ur-mr-lg-n2,.ur-mx-lg-n2{margin-right:-8px!important}.ur-mb-lg-n2,.ur-my-lg-n2{margin-bottom:-8px!important}.ur-ml-lg-n2,.ur-mx-lg-n2{margin-left:-8px!important}.ur-m-lg-n3{margin:-12px!important}.ur-mt-lg-n3,.ur-my-lg-n3{margin-top:-12px!important}.ur-mr-lg-n3,.ur-mx-lg-n3{margin-right:-12px!important}.ur-mb-lg-n3,.ur-my-lg-n3{margin-bottom:-12px!important}.ur-ml-lg-n3,.ur-mx-lg-n3{margin-left:-12px!important}.ur-m-lg-n4{margin:-16px!important}.ur-mt-lg-n4,.ur-my-lg-n4{margin-top:-16px!important}.ur-mr-lg-n4,.ur-mx-lg-n4{margin-right:-16px!important}.ur-mb-lg-n4,.ur-my-lg-n4{margin-bottom:-16px!important}.ur-ml-lg-n4,.ur-mx-lg-n4{margin-left:-16px!important}.ur-m-lg-n5{margin:-20px!important}.ur-mt-lg-n5,.ur-my-lg-n5{margin-top:-20px!important}.ur-mr-lg-n5,.ur-mx-lg-n5{margin-right:-20px!important}.ur-mb-lg-n5,.ur-my-lg-n5{margin-bottom:-20px!important}.ur-ml-lg-n5,.ur-mx-lg-n5{margin-left:-20px!important}.ur-m-lg-n6{margin:-24px!important}.ur-mt-lg-n6,.ur-my-lg-n6{margin-top:-24px!important}.ur-mr-lg-n6,.ur-mx-lg-n6{margin-right:-24px!important}.ur-mb-lg-n6,.ur-my-lg-n6{margin-bottom:-24px!important}.ur-ml-lg-n6,.ur-mx-lg-n6{margin-left:-24px!important}.ur-m-lg-n7{margin:-28px!important}.ur-mt-lg-n7,.ur-my-lg-n7{margin-top:-28px!important}.ur-mr-lg-n7,.ur-mx-lg-n7{margin-right:-28px!important}.ur-mb-lg-n7,.ur-my-lg-n7{margin-bottom:-28px!important}.ur-ml-lg-n7,.ur-mx-lg-n7{margin-left:-28px!important}.ur-m-lg-n8{margin:-32px!important}.ur-mt-lg-n8,.ur-my-lg-n8{margin-top:-32px!important}.ur-mr-lg-n8,.ur-mx-lg-n8{margin-right:-32px!important}.ur-mb-lg-n8,.ur-my-lg-n8{margin-bottom:-32px!important}.ur-ml-lg-n8,.ur-mx-lg-n8{margin-left:-32px!important}.ur-m-lg-auto{margin:auto!important}.ur-mt-lg-auto,.ur-my-lg-auto{margin-top:auto!important}.ur-mr-lg-auto,.ur-mx-lg-auto{margin-right:auto!important}.ur-mb-lg-auto,.ur-my-lg-auto{margin-bottom:auto!important}.ur-ml-lg-auto,.ur-mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.ur-m-xl-0{margin:0!important}.ur-mt-xl-0,.ur-my-xl-0{margin-top:0!important}.ur-mr-xl-0,.ur-mx-xl-0{margin-right:0!important}.ur-mb-xl-0,.ur-my-xl-0{margin-bottom:0!important}.ur-ml-xl-0,.ur-mx-xl-0{margin-left:0!important}.ur-m-xl-1{margin:4px!important}.ur-mt-xl-1,.ur-my-xl-1{margin-top:4px!important}.ur-mr-xl-1,.ur-mx-xl-1{margin-right:4px!important}.ur-mb-xl-1,.ur-my-xl-1{margin-bottom:4px!important}.ur-ml-xl-1,.ur-mx-xl-1{margin-left:4px!important}.ur-m-xl-2{margin:8px!important}.ur-mt-xl-2,.ur-my-xl-2{margin-top:8px!important}.ur-mr-xl-2,.ur-mx-xl-2{margin-right:8px!important}.ur-mb-xl-2,.ur-my-xl-2{margin-bottom:8px!important}.ur-ml-xl-2,.ur-mx-xl-2{margin-left:8px!important}.ur-m-xl-3{margin:12px!important}.ur-mt-xl-3,.ur-my-xl-3{margin-top:12px!important}.ur-mr-xl-3,.ur-mx-xl-3{margin-right:12px!important}.ur-mb-xl-3,.ur-my-xl-3{margin-bottom:12px!important}.ur-ml-xl-3,.ur-mx-xl-3{margin-left:12px!important}.ur-m-xl-4{margin:16px!important}.ur-mt-xl-4,.ur-my-xl-4{margin-top:16px!important}.ur-mr-xl-4,.ur-mx-xl-4{margin-right:16px!important}.ur-mb-xl-4,.ur-my-xl-4{margin-bottom:16px!important}.ur-ml-xl-4,.ur-mx-xl-4{margin-left:16px!important}.ur-m-xl-5{margin:20px!important}.ur-mt-xl-5,.ur-my-xl-5{margin-top:20px!important}.ur-mr-xl-5,.ur-mx-xl-5{margin-right:20px!important}.ur-mb-xl-5,.ur-my-xl-5{margin-bottom:20px!important}.ur-ml-xl-5,.ur-mx-xl-5{margin-left:20px!important}.ur-m-xl-6{margin:24px!important}.ur-mt-xl-6,.ur-my-xl-6{margin-top:24px!important}.ur-mr-xl-6,.ur-mx-xl-6{margin-right:24px!important}.ur-mb-xl-6,.ur-my-xl-6{margin-bottom:24px!important}.ur-ml-xl-6,.ur-mx-xl-6{margin-left:24px!important}.ur-m-xl-7{margin:28px!important}.ur-mt-xl-7,.ur-my-xl-7{margin-top:28px!important}.ur-mr-xl-7,.ur-mx-xl-7{margin-right:28px!important}.ur-mb-xl-7,.ur-my-xl-7{margin-bottom:28px!important}.ur-ml-xl-7,.ur-mx-xl-7{margin-left:28px!important}.ur-m-xl-8{margin:32px!important}.ur-mt-xl-8,.ur-my-xl-8{margin-top:32px!important}.ur-mr-xl-8,.ur-mx-xl-8{margin-right:32px!important}.ur-mb-xl-8,.ur-my-xl-8{margin-bottom:32px!important}.ur-ml-xl-8,.ur-mx-xl-8{margin-left:32px!important}.ur-p-xl-0{padding:0!important}.ur-pt-xl-0,.ur-py-xl-0{padding-top:0!important}.ur-pr-xl-0,.ur-px-xl-0{padding-right:0!important}.ur-pb-xl-0,.ur-py-xl-0{padding-bottom:0!important}.ur-pl-xl-0,.ur-px-xl-0{padding-left:0!important}.ur-p-xl-1{padding:4px!important}.ur-pt-xl-1,.ur-py-xl-1{padding-top:4px!important}.ur-pr-xl-1,.ur-px-xl-1{padding-right:4px!important}.ur-pb-xl-1,.ur-py-xl-1{padding-bottom:4px!important}.ur-pl-xl-1,.ur-px-xl-1{padding-left:4px!important}.ur-p-xl-2{padding:8px!important}.ur-pt-xl-2,.ur-py-xl-2{padding-top:8px!important}.ur-pr-xl-2,.ur-px-xl-2{padding-right:8px!important}.ur-pb-xl-2,.ur-py-xl-2{padding-bottom:8px!important}.ur-pl-xl-2,.ur-px-xl-2{padding-left:8px!important}.ur-p-xl-3{padding:12px!important}.ur-pt-xl-3,.ur-py-xl-3{padding-top:12px!important}.ur-pr-xl-3,.ur-px-xl-3{padding-right:12px!important}.ur-pb-xl-3,.ur-py-xl-3{padding-bottom:12px!important}.ur-pl-xl-3,.ur-px-xl-3{padding-left:12px!important}.ur-p-xl-4{padding:16px!important}.ur-pt-xl-4,.ur-py-xl-4{padding-top:16px!important}.ur-pr-xl-4,.ur-px-xl-4{padding-right:16px!important}.ur-pb-xl-4,.ur-py-xl-4{padding-bottom:16px!important}.ur-pl-xl-4,.ur-px-xl-4{padding-left:16px!important}.ur-p-xl-5{padding:20px!important}.ur-pt-xl-5,.ur-py-xl-5{padding-top:20px!important}.ur-pr-xl-5,.ur-px-xl-5{padding-right:20px!important}.ur-pb-xl-5,.ur-py-xl-5{padding-bottom:20px!important}.ur-pl-xl-5,.ur-px-xl-5{padding-left:20px!important}.ur-p-xl-6{padding:24px!important}.ur-pt-xl-6,.ur-py-xl-6{padding-top:24px!important}.ur-pr-xl-6,.ur-px-xl-6{padding-right:24px!important}.ur-pb-xl-6,.ur-py-xl-6{padding-bottom:24px!important}.ur-pl-xl-6,.ur-px-xl-6{padding-left:24px!important}.ur-p-xl-7{padding:28px!important}.ur-pt-xl-7,.ur-py-xl-7{padding-top:28px!important}.ur-pr-xl-7,.ur-px-xl-7{padding-right:28px!important}.ur-pb-xl-7,.ur-py-xl-7{padding-bottom:28px!important}.ur-pl-xl-7,.ur-px-xl-7{padding-left:28px!important}.ur-p-xl-8{padding:32px!important}.ur-pt-xl-8,.ur-py-xl-8{padding-top:32px!important}.ur-pr-xl-8,.ur-px-xl-8{padding-right:32px!important}.ur-pb-xl-8,.ur-py-xl-8{padding-bottom:32px!important}.ur-pl-xl-8,.ur-px-xl-8{padding-left:32px!important}.ur-m-xl-n1{margin:-4px!important}.ur-mt-xl-n1,.ur-my-xl-n1{margin-top:-4px!important}.ur-mr-xl-n1,.ur-mx-xl-n1{margin-right:-4px!important}.ur-mb-xl-n1,.ur-my-xl-n1{margin-bottom:-4px!important}.ur-ml-xl-n1,.ur-mx-xl-n1{margin-left:-4px!important}.ur-m-xl-n2{margin:-8px!important}.ur-mt-xl-n2,.ur-my-xl-n2{margin-top:-8px!important}.ur-mr-xl-n2,.ur-mx-xl-n2{margin-right:-8px!important}.ur-mb-xl-n2,.ur-my-xl-n2{margin-bottom:-8px!important}.ur-ml-xl-n2,.ur-mx-xl-n2{margin-left:-8px!important}.ur-m-xl-n3{margin:-12px!important}.ur-mt-xl-n3,.ur-my-xl-n3{margin-top:-12px!important}.ur-mr-xl-n3,.ur-mx-xl-n3{margin-right:-12px!important}.ur-mb-xl-n3,.ur-my-xl-n3{margin-bottom:-12px!important}.ur-ml-xl-n3,.ur-mx-xl-n3{margin-left:-12px!important}.ur-m-xl-n4{margin:-16px!important}.ur-mt-xl-n4,.ur-my-xl-n4{margin-top:-16px!important}.ur-mr-xl-n4,.ur-mx-xl-n4{margin-right:-16px!important}.ur-mb-xl-n4,.ur-my-xl-n4{margin-bottom:-16px!important}.ur-ml-xl-n4,.ur-mx-xl-n4{margin-left:-16px!important}.ur-m-xl-n5{margin:-20px!important}.ur-mt-xl-n5,.ur-my-xl-n5{margin-top:-20px!important}.ur-mr-xl-n5,.ur-mx-xl-n5{margin-right:-20px!important}.ur-mb-xl-n5,.ur-my-xl-n5{margin-bottom:-20px!important}.ur-ml-xl-n5,.ur-mx-xl-n5{margin-left:-20px!important}.ur-m-xl-n6{margin:-24px!important}.ur-mt-xl-n6,.ur-my-xl-n6{margin-top:-24px!important}.ur-mr-xl-n6,.ur-mx-xl-n6{margin-right:-24px!important}.ur-mb-xl-n6,.ur-my-xl-n6{margin-bottom:-24px!important}.ur-ml-xl-n6,.ur-mx-xl-n6{margin-left:-24px!important}.ur-m-xl-n7{margin:-28px!important}.ur-mt-xl-n7,.ur-my-xl-n7{margin-top:-28px!important}.ur-mr-xl-n7,.ur-mx-xl-n7{margin-right:-28px!important}.ur-mb-xl-n7,.ur-my-xl-n7{margin-bottom:-28px!important}.ur-ml-xl-n7,.ur-mx-xl-n7{margin-left:-28px!important}.ur-m-xl-n8{margin:-32px!important}.ur-mt-xl-n8,.ur-my-xl-n8{margin-top:-32px!important}.ur-mr-xl-n8,.ur-mx-xl-n8{margin-right:-32px!important}.ur-mb-xl-n8,.ur-my-xl-n8{margin-bottom:-32px!important}.ur-ml-xl-n8,.ur-mx-xl-n8{margin-left:-32px!important}.ur-m-xl-auto{margin:auto!important}.ur-mt-xl-auto,.ur-my-xl-auto{margin-top:auto!important}.ur-mr-xl-auto,.ur-mx-xl-auto{margin-right:auto!important}.ur-mb-xl-auto,.ur-my-xl-auto{margin-bottom:auto!important}.ur-ml-xl-auto,.ur-mx-xl-auto{margin-left:auto!important}}@media (min-width:1400px){.ur-m-xxl-0{margin:0!important}.ur-mt-xxl-0,.ur-my-xxl-0{margin-top:0!important}.ur-mr-xxl-0,.ur-mx-xxl-0{margin-right:0!important}.ur-mb-xxl-0,.ur-my-xxl-0{margin-bottom:0!important}.ur-ml-xxl-0,.ur-mx-xxl-0{margin-left:0!important}.ur-m-xxl-1{margin:4px!important}.ur-mt-xxl-1,.ur-my-xxl-1{margin-top:4px!important}.ur-mr-xxl-1,.ur-mx-xxl-1{margin-right:4px!important}.ur-mb-xxl-1,.ur-my-xxl-1{margin-bottom:4px!important}.ur-ml-xxl-1,.ur-mx-xxl-1{margin-left:4px!important}.ur-m-xxl-2{margin:8px!important}.ur-mt-xxl-2,.ur-my-xxl-2{margin-top:8px!important}.ur-mr-xxl-2,.ur-mx-xxl-2{margin-right:8px!important}.ur-mb-xxl-2,.ur-my-xxl-2{margin-bottom:8px!important}.ur-ml-xxl-2,.ur-mx-xxl-2{margin-left:8px!important}.ur-m-xxl-3{margin:12px!important}.ur-mt-xxl-3,.ur-my-xxl-3{margin-top:12px!important}.ur-mr-xxl-3,.ur-mx-xxl-3{margin-right:12px!important}.ur-mb-xxl-3,.ur-my-xxl-3{margin-bottom:12px!important}.ur-ml-xxl-3,.ur-mx-xxl-3{margin-left:12px!important}.ur-m-xxl-4{margin:16px!important}.ur-mt-xxl-4,.ur-my-xxl-4{margin-top:16px!important}.ur-mr-xxl-4,.ur-mx-xxl-4{margin-right:16px!important}.ur-mb-xxl-4,.ur-my-xxl-4{margin-bottom:16px!important}.ur-ml-xxl-4,.ur-mx-xxl-4{margin-left:16px!important}.ur-m-xxl-5{margin:20px!important}.ur-mt-xxl-5,.ur-my-xxl-5{margin-top:20px!important}.ur-mr-xxl-5,.ur-mx-xxl-5{margin-right:20px!important}.ur-mb-xxl-5,.ur-my-xxl-5{margin-bottom:20px!important}.ur-ml-xxl-5,.ur-mx-xxl-5{margin-left:20px!important}.ur-m-xxl-6{margin:24px!important}.ur-mt-xxl-6,.ur-my-xxl-6{margin-top:24px!important}.ur-mr-xxl-6,.ur-mx-xxl-6{margin-right:24px!important}.ur-mb-xxl-6,.ur-my-xxl-6{margin-bottom:24px!important}.ur-ml-xxl-6,.ur-mx-xxl-6{margin-left:24px!important}.ur-m-xxl-7{margin:28px!important}.ur-mt-xxl-7,.ur-my-xxl-7{margin-top:28px!important}.ur-mr-xxl-7,.ur-mx-xxl-7{margin-right:28px!important}.ur-mb-xxl-7,.ur-my-xxl-7{margin-bottom:28px!important}.ur-ml-xxl-7,.ur-mx-xxl-7{margin-left:28px!important}.ur-m-xxl-8{margin:32px!important}.ur-mt-xxl-8,.ur-my-xxl-8{margin-top:32px!important}.ur-mr-xxl-8,.ur-mx-xxl-8{margin-right:32px!important}.ur-mb-xxl-8,.ur-my-xxl-8{margin-bottom:32px!important}.ur-ml-xxl-8,.ur-mx-xxl-8{margin-left:32px!important}.ur-p-xxl-0{padding:0!important}.ur-pt-xxl-0,.ur-py-xxl-0{padding-top:0!important}.ur-pr-xxl-0,.ur-px-xxl-0{padding-right:0!important}.ur-pb-xxl-0,.ur-py-xxl-0{padding-bottom:0!important}.ur-pl-xxl-0,.ur-px-xxl-0{padding-left:0!important}.ur-p-xxl-1{padding:4px!important}.ur-pt-xxl-1,.ur-py-xxl-1{padding-top:4px!important}.ur-pr-xxl-1,.ur-px-xxl-1{padding-right:4px!important}.ur-pb-xxl-1,.ur-py-xxl-1{padding-bottom:4px!important}.ur-pl-xxl-1,.ur-px-xxl-1{padding-left:4px!important}.ur-p-xxl-2{padding:8px!important}.ur-pt-xxl-2,.ur-py-xxl-2{padding-top:8px!important}.ur-pr-xxl-2,.ur-px-xxl-2{padding-right:8px!important}.ur-pb-xxl-2,.ur-py-xxl-2{padding-bottom:8px!important}.ur-pl-xxl-2,.ur-px-xxl-2{padding-left:8px!important}.ur-p-xxl-3{padding:12px!important}.ur-pt-xxl-3,.ur-py-xxl-3{padding-top:12px!important}.ur-pr-xxl-3,.ur-px-xxl-3{padding-right:12px!important}.ur-pb-xxl-3,.ur-py-xxl-3{padding-bottom:12px!important}.ur-pl-xxl-3,.ur-px-xxl-3{padding-left:12px!important}.ur-p-xxl-4{padding:16px!important}.ur-pt-xxl-4,.ur-py-xxl-4{padding-top:16px!important}.ur-pr-xxl-4,.ur-px-xxl-4{padding-right:16px!important}.ur-pb-xxl-4,.ur-py-xxl-4{padding-bottom:16px!important}.ur-pl-xxl-4,.ur-px-xxl-4{padding-left:16px!important}.ur-p-xxl-5{padding:20px!important}.ur-pt-xxl-5,.ur-py-xxl-5{padding-top:20px!important}.ur-pr-xxl-5,.ur-px-xxl-5{padding-right:20px!important}.ur-pb-xxl-5,.ur-py-xxl-5{padding-bottom:20px!important}.ur-pl-xxl-5,.ur-px-xxl-5{padding-left:20px!important}.ur-p-xxl-6{padding:24px!important}.ur-pt-xxl-6,.ur-py-xxl-6{padding-top:24px!important}.ur-pr-xxl-6,.ur-px-xxl-6{padding-right:24px!important}.ur-pb-xxl-6,.ur-py-xxl-6{padding-bottom:24px!important}.ur-pl-xxl-6,.ur-px-xxl-6{padding-left:24px!important}.ur-p-xxl-7{padding:28px!important}.ur-pt-xxl-7,.ur-py-xxl-7{padding-top:28px!important}.ur-pr-xxl-7,.ur-px-xxl-7{padding-right:28px!important}.ur-pb-xxl-7,.ur-py-xxl-7{padding-bottom:28px!important}.ur-pl-xxl-7,.ur-px-xxl-7{padding-left:28px!important}.ur-p-xxl-8{padding:32px!important}.ur-pt-xxl-8,.ur-py-xxl-8{padding-top:32px!important}.ur-pr-xxl-8,.ur-px-xxl-8{padding-right:32px!important}.ur-pb-xxl-8,.ur-py-xxl-8{padding-bottom:32px!important}.ur-pl-xxl-8,.ur-px-xxl-8{padding-left:32px!important}.ur-m-xxl-n1{margin:-4px!important}.ur-mt-xxl-n1,.ur-my-xxl-n1{margin-top:-4px!important}.ur-mr-xxl-n1,.ur-mx-xxl-n1{margin-right:-4px!important}.ur-mb-xxl-n1,.ur-my-xxl-n1{margin-bottom:-4px!important}.ur-ml-xxl-n1,.ur-mx-xxl-n1{margin-left:-4px!important}.ur-m-xxl-n2{margin:-8px!important}.ur-mt-xxl-n2,.ur-my-xxl-n2{margin-top:-8px!important}.ur-mr-xxl-n2,.ur-mx-xxl-n2{margin-right:-8px!important}.ur-mb-xxl-n2,.ur-my-xxl-n2{margin-bottom:-8px!important}.ur-ml-xxl-n2,.ur-mx-xxl-n2{margin-left:-8px!important}.ur-m-xxl-n3{margin:-12px!important}.ur-mt-xxl-n3,.ur-my-xxl-n3{margin-top:-12px!important}.ur-mr-xxl-n3,.ur-mx-xxl-n3{margin-right:-12px!important}.ur-mb-xxl-n3,.ur-my-xxl-n3{margin-bottom:-12px!important}.ur-ml-xxl-n3,.ur-mx-xxl-n3{margin-left:-12px!important}.ur-m-xxl-n4{margin:-16px!important}.ur-mt-xxl-n4,.ur-my-xxl-n4{margin-top:-16px!important}.ur-mr-xxl-n4,.ur-mx-xxl-n4{margin-right:-16px!important}.ur-mb-xxl-n4,.ur-my-xxl-n4{margin-bottom:-16px!important}.ur-ml-xxl-n4,.ur-mx-xxl-n4{margin-left:-16px!important}.ur-m-xxl-n5{margin:-20px!important}.ur-mt-xxl-n5,.ur-my-xxl-n5{margin-top:-20px!important}.ur-mr-xxl-n5,.ur-mx-xxl-n5{margin-right:-20px!important}.ur-mb-xxl-n5,.ur-my-xxl-n5{margin-bottom:-20px!important}.ur-ml-xxl-n5,.ur-mx-xxl-n5{margin-left:-20px!important}.ur-m-xxl-n6{margin:-24px!important}.ur-mt-xxl-n6,.ur-my-xxl-n6{margin-top:-24px!important}.ur-mr-xxl-n6,.ur-mx-xxl-n6{margin-right:-24px!important}.ur-mb-xxl-n6,.ur-my-xxl-n6{margin-bottom:-24px!important}.ur-ml-xxl-n6,.ur-mx-xxl-n6{margin-left:-24px!important}.ur-m-xxl-n7{margin:-28px!important}.ur-mt-xxl-n7,.ur-my-xxl-n7{margin-top:-28px!important}.ur-mr-xxl-n7,.ur-mx-xxl-n7{margin-right:-28px!important}.ur-mb-xxl-n7,.ur-my-xxl-n7{margin-bottom:-28px!important}.ur-ml-xxl-n7,.ur-mx-xxl-n7{margin-left:-28px!important}.ur-m-xxl-n8{margin:-32px!important}.ur-mt-xxl-n8,.ur-my-xxl-n8{margin-top:-32px!important}.ur-mr-xxl-n8,.ur-mx-xxl-n8{margin-right:-32px!important}.ur-mb-xxl-n8,.ur-my-xxl-n8{margin-bottom:-32px!important}.ur-ml-xxl-n8,.ur-mx-xxl-n8{margin-left:-32px!important}.ur-m-xxl-auto{margin:auto!important}.ur-mt-xxl-auto,.ur-my-xxl-auto{margin-top:auto!important}.ur-mr-xxl-auto,.ur-mx-xxl-auto{margin-right:auto!important}.ur-mb-xxl-auto,.ur-my-xxl-auto{margin-bottom:auto!important}.ur-ml-xxl-auto,.ur-mx-xxl-auto{margin-left:auto!important}}.ur-container,.ur-container-full,.ur-container-lg,.ur-container-md,.ur-container-sm,.ur-container-xl,.ur-container-xxl{width:100%;padding-right:12px;padding-left:12px;margin-right:auto;margin-left:auto}.ur-container *,.ur-container ::after,.ur-container ::before,.ur-container-full *,.ur-container-full ::after,.ur-container-full ::before,.ur-container-lg *,.ur-container-lg ::after,.ur-container-lg ::before,.ur-container-md *,.ur-container-md ::after,.ur-container-md ::before,.ur-container-sm *,.ur-container-sm ::after,.ur-container-sm ::before,.ur-container-xl *,.ur-container-xl ::after,.ur-container-xl ::before,.ur-container-xxl *,.ur-container-xxl ::after,.ur-container-xxl ::before{box-sizing:border-box}@media (min-width:576px){.ur-container,.ur-container-sm{max-width:540px}}@media (min-width:768px){.ur-container,.ur-container-md,.ur-container-sm{max-width:720px}}@media (min-width:992px){.ur-container,.ur-container-lg,.ur-container-md,.ur-container-sm{max-width:960px}}@media (min-width:1200px){.ur-container,.ur-container-lg,.ur-container-md,.ur-container-sm,.ur-container-xl{max-width:1140px}}@media (min-width:1400px){.ur-container,.ur-container-lg,.ur-container-md,.ur-container-sm,.ur-container-xl,.ur-container-xxl{max-width:1320px}}.ur-row{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-right:-12px;margin-left:-12px}.ur-col,.ur-col-1,.ur-col-10,.ur-col-11,.ur-col-12,.ur-col-2,.ur-col-3,.ur-col-4,.ur-col-5,.ur-col-6,.ur-col-7,.ur-col-8,.ur-col-9,.ur-col-auto,.ur-col-lg,.ur-col-lg-1,.ur-col-lg-10,.ur-col-lg-11,.ur-col-lg-12,.ur-col-lg-2,.ur-col-lg-3,.ur-col-lg-4,.ur-col-lg-5,.ur-col-lg-6,.ur-col-lg-7,.ur-col-lg-8,.ur-col-lg-9,.ur-col-lg-auto,.ur-col-md,.ur-col-md-1,.ur-col-md-10,.ur-col-md-11,.ur-col-md-12,.ur-col-md-2,.ur-col-md-3,.ur-col-md-4,.ur-col-md-5,.ur-col-md-6,.ur-col-md-7,.ur-col-md-8,.ur-col-md-9,.ur-col-md-auto,.ur-col-sm,.ur-col-sm-1,.ur-col-sm-10,.ur-col-sm-11,.ur-col-sm-12,.ur-col-sm-2,.ur-col-sm-3,.ur-col-sm-4,.ur-col-sm-5,.ur-col-sm-6,.ur-col-sm-7,.ur-col-sm-8,.ur-col-sm-9,.ur-col-sm-auto,.ur-col-xl,.ur-col-xl-1,.ur-col-xl-10,.ur-col-xl-11,.ur-col-xl-12,.ur-col-xl-2,.ur-col-xl-3,.ur-col-xl-4,.ur-col-xl-5,.ur-col-xl-6,.ur-col-xl-7,.ur-col-xl-8,.ur-col-xl-9,.ur-col-xl-auto,.ur-col-xxl,.ur-col-xxl-1,.ur-col-xxl-10,.ur-col-xxl-11,.ur-col-xxl-12,.ur-col-xxl-2,.ur-col-xxl-3,.ur-col-xxl-4,.ur-col-xxl-5,.ur-col-xxl-6,.ur-col-xxl-7,.ur-col-xxl-8,.ur-col-xxl-9,.ur-col-xxl-auto{position:relative;width:100%;padding-right:12px;padding-left:12px}.ur-col{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-1{margin-left:8.3333333333%}.ur-offset-2{margin-left:16.6666666667%}.ur-offset-3{margin-left:25%}.ur-offset-4{margin-left:33.3333333333%}.ur-offset-5{margin-left:41.6666666667%}.ur-offset-6{margin-left:50%}.ur-offset-7{margin-left:58.3333333333%}.ur-offset-8{margin-left:66.6666666667%}.ur-offset-9{margin-left:75%}.ur-offset-10{margin-left:83.3333333333%}.ur-offset-11{margin-left:91.6666666667%}.ur-g-0,.ur-gx-0{--bs-gutter-x:0}.ur-g-0,.ur-gy-0{--bs-gutter-y:0}.ur-g-1,.ur-gx-1{--bs-gutter-x:4px}.ur-g-1,.ur-gy-1{--bs-gutter-y:4px}.ur-g-2,.ur-gx-2{--bs-gutter-x:8px}.ur-g-2,.ur-gy-2{--bs-gutter-y:8px}.ur-g-3,.ur-gx-3{--bs-gutter-x:12px}.ur-g-3,.ur-gy-3{--bs-gutter-y:12px}.ur-g-4,.ur-gx-4{--bs-gutter-x:16px}.ur-g-4,.ur-gy-4{--bs-gutter-y:16px}.ur-g-5,.ur-gx-5{--bs-gutter-x:20px}.ur-g-5,.ur-gy-5{--bs-gutter-y:20px}.ur-g-6,.ur-gx-6{--bs-gutter-x:24px}.ur-g-6,.ur-gy-6{--bs-gutter-y:24px}.ur-g-7,.ur-gx-7{--bs-gutter-x:28px}.ur-g-7,.ur-gy-7{--bs-gutter-y:28px}.ur-g-8,.ur-gx-8{--bs-gutter-x:32px}.ur-g-8,.ur-gy-8{--bs-gutter-y:32px}@media (min-width:576px){.ur-col-sm{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-sm-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-sm-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-sm-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-sm-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-sm-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-sm-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-sm-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-sm-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-sm-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-sm-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-sm-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-sm-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-sm-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-sm-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-sm-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-sm-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-sm-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-sm-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-sm-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-sm-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-sm-0{margin-left:0}.ur-offset-sm-1{margin-left:8.3333333333%}.ur-offset-sm-2{margin-left:16.6666666667%}.ur-offset-sm-3{margin-left:25%}.ur-offset-sm-4{margin-left:33.3333333333%}.ur-offset-sm-5{margin-left:41.6666666667%}.ur-offset-sm-6{margin-left:50%}.ur-offset-sm-7{margin-left:58.3333333333%}.ur-offset-sm-8{margin-left:66.6666666667%}.ur-offset-sm-9{margin-left:75%}.ur-offset-sm-10{margin-left:83.3333333333%}.ur-offset-sm-11{margin-left:91.6666666667%}.ur-g-sm-0,.ur-gx-sm-0{--bs-gutter-x:0}.ur-g-sm-0,.ur-gy-sm-0{--bs-gutter-y:0}.ur-g-sm-1,.ur-gx-sm-1{--bs-gutter-x:4px}.ur-g-sm-1,.ur-gy-sm-1{--bs-gutter-y:4px}.ur-g-sm-2,.ur-gx-sm-2{--bs-gutter-x:8px}.ur-g-sm-2,.ur-gy-sm-2{--bs-gutter-y:8px}.ur-g-sm-3,.ur-gx-sm-3{--bs-gutter-x:12px}.ur-g-sm-3,.ur-gy-sm-3{--bs-gutter-y:12px}.ur-g-sm-4,.ur-gx-sm-4{--bs-gutter-x:16px}.ur-g-sm-4,.ur-gy-sm-4{--bs-gutter-y:16px}.ur-g-sm-5,.ur-gx-sm-5{--bs-gutter-x:20px}.ur-g-sm-5,.ur-gy-sm-5{--bs-gutter-y:20px}.ur-g-sm-6,.ur-gx-sm-6{--bs-gutter-x:24px}.ur-g-sm-6,.ur-gy-sm-6{--bs-gutter-y:24px}.ur-g-sm-7,.ur-gx-sm-7{--bs-gutter-x:28px}.ur-g-sm-7,.ur-gy-sm-7{--bs-gutter-y:28px}.ur-g-sm-8,.ur-gx-sm-8{--bs-gutter-x:32px}.ur-g-sm-8,.ur-gy-sm-8{--bs-gutter-y:32px}}@media (min-width:768px){.ur-col-md{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-md-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-md-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-md-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-md-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-md-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-md-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-md-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-md-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-md-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-md-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-md-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-md-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-md-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-md-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-md-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-md-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-md-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-md-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-md-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-md-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-md-0{margin-left:0}.ur-offset-md-1{margin-left:8.3333333333%}.ur-offset-md-2{margin-left:16.6666666667%}.ur-offset-md-3{margin-left:25%}.ur-offset-md-4{margin-left:33.3333333333%}.ur-offset-md-5{margin-left:41.6666666667%}.ur-offset-md-6{margin-left:50%}.ur-offset-md-7{margin-left:58.3333333333%}.ur-offset-md-8{margin-left:66.6666666667%}.ur-offset-md-9{margin-left:75%}.ur-offset-md-10{margin-left:83.3333333333%}.ur-offset-md-11{margin-left:91.6666666667%}.ur-g-md-0,.ur-gx-md-0{--bs-gutter-x:0}.ur-g-md-0,.ur-gy-md-0{--bs-gutter-y:0}.ur-g-md-1,.ur-gx-md-1{--bs-gutter-x:4px}.ur-g-md-1,.ur-gy-md-1{--bs-gutter-y:4px}.ur-g-md-2,.ur-gx-md-2{--bs-gutter-x:8px}.ur-g-md-2,.ur-gy-md-2{--bs-gutter-y:8px}.ur-g-md-3,.ur-gx-md-3{--bs-gutter-x:12px}.ur-g-md-3,.ur-gy-md-3{--bs-gutter-y:12px}.ur-g-md-4,.ur-gx-md-4{--bs-gutter-x:16px}.ur-g-md-4,.ur-gy-md-4{--bs-gutter-y:16px}.ur-g-md-5,.ur-gx-md-5{--bs-gutter-x:20px}.ur-g-md-5,.ur-gy-md-5{--bs-gutter-y:20px}.ur-g-md-6,.ur-gx-md-6{--bs-gutter-x:24px}.ur-g-md-6,.ur-gy-md-6{--bs-gutter-y:24px}.ur-g-md-7,.ur-gx-md-7{--bs-gutter-x:28px}.ur-g-md-7,.ur-gy-md-7{--bs-gutter-y:28px}.ur-g-md-8,.ur-gx-md-8{--bs-gutter-x:32px}.ur-g-md-8,.ur-gy-md-8{--bs-gutter-y:32px}}@media (min-width:992px){.ur-col-lg{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-lg-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-lg-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-lg-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-lg-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-lg-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-lg-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-lg-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-lg-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-lg-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-lg-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-lg-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-lg-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-lg-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-lg-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-lg-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-lg-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-lg-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-lg-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-lg-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-lg-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-lg-0{margin-left:0}.ur-offset-lg-1{margin-left:8.3333333333%}.ur-offset-lg-2{margin-left:16.6666666667%}.ur-offset-lg-3{margin-left:25%}.ur-offset-lg-4{margin-left:33.3333333333%}.ur-offset-lg-5{margin-left:41.6666666667%}.ur-offset-lg-6{margin-left:50%}.ur-offset-lg-7{margin-left:58.3333333333%}.ur-offset-lg-8{margin-left:66.6666666667%}.ur-offset-lg-9{margin-left:75%}.ur-offset-lg-10{margin-left:83.3333333333%}.ur-offset-lg-11{margin-left:91.6666666667%}.ur-g-lg-0,.ur-gx-lg-0{--bs-gutter-x:0}.ur-g-lg-0,.ur-gy-lg-0{--bs-gutter-y:0}.ur-g-lg-1,.ur-gx-lg-1{--bs-gutter-x:4px}.ur-g-lg-1,.ur-gy-lg-1{--bs-gutter-y:4px}.ur-g-lg-2,.ur-gx-lg-2{--bs-gutter-x:8px}.ur-g-lg-2,.ur-gy-lg-2{--bs-gutter-y:8px}.ur-g-lg-3,.ur-gx-lg-3{--bs-gutter-x:12px}.ur-g-lg-3,.ur-gy-lg-3{--bs-gutter-y:12px}.ur-g-lg-4,.ur-gx-lg-4{--bs-gutter-x:16px}.ur-g-lg-4,.ur-gy-lg-4{--bs-gutter-y:16px}.ur-g-lg-5,.ur-gx-lg-5{--bs-gutter-x:20px}.ur-g-lg-5,.ur-gy-lg-5{--bs-gutter-y:20px}.ur-g-lg-6,.ur-gx-lg-6{--bs-gutter-x:24px}.ur-g-lg-6,.ur-gy-lg-6{--bs-gutter-y:24px}.ur-g-lg-7,.ur-gx-lg-7{--bs-gutter-x:28px}.ur-g-lg-7,.ur-gy-lg-7{--bs-gutter-y:28px}.ur-g-lg-8,.ur-gx-lg-8{--bs-gutter-x:32px}.ur-g-lg-8,.ur-gy-lg-8{--bs-gutter-y:32px}}@media (min-width:1200px){.ur-col-xl{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-xl-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-xl-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-xl-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-xl-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-xl-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-xl-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-xl-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-xl-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-xl-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-xl-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-xl-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-xl-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-xl-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-xl-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-xl-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-xl-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-xl-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-xl-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-xl-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-xl-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-xl-0{margin-left:0}.ur-offset-xl-1{margin-left:8.3333333333%}.ur-offset-xl-2{margin-left:16.6666666667%}.ur-offset-xl-3{margin-left:25%}.ur-offset-xl-4{margin-left:33.3333333333%}.ur-offset-xl-5{margin-left:41.6666666667%}.ur-offset-xl-6{margin-left:50%}.ur-offset-xl-7{margin-left:58.3333333333%}.ur-offset-xl-8{margin-left:66.6666666667%}.ur-offset-xl-9{margin-left:75%}.ur-offset-xl-10{margin-left:83.3333333333%}.ur-offset-xl-11{margin-left:91.6666666667%}.ur-g-xl-0,.ur-gx-xl-0{--bs-gutter-x:0}.ur-g-xl-0,.ur-gy-xl-0{--bs-gutter-y:0}.ur-g-xl-1,.ur-gx-xl-1{--bs-gutter-x:4px}.ur-g-xl-1,.ur-gy-xl-1{--bs-gutter-y:4px}.ur-g-xl-2,.ur-gx-xl-2{--bs-gutter-x:8px}.ur-g-xl-2,.ur-gy-xl-2{--bs-gutter-y:8px}.ur-g-xl-3,.ur-gx-xl-3{--bs-gutter-x:12px}.ur-g-xl-3,.ur-gy-xl-3{--bs-gutter-y:12px}.ur-g-xl-4,.ur-gx-xl-4{--bs-gutter-x:16px}.ur-g-xl-4,.ur-gy-xl-4{--bs-gutter-y:16px}.ur-g-xl-5,.ur-gx-xl-5{--bs-gutter-x:20px}.ur-g-xl-5,.ur-gy-xl-5{--bs-gutter-y:20px}.ur-g-xl-6,.ur-gx-xl-6{--bs-gutter-x:24px}.ur-g-xl-6,.ur-gy-xl-6{--bs-gutter-y:24px}.ur-g-xl-7,.ur-gx-xl-7{--bs-gutter-x:28px}.ur-g-xl-7,.ur-gy-xl-7{--bs-gutter-y:28px}.ur-g-xl-8,.ur-gx-xl-8{--bs-gutter-x:32px}.ur-g-xl-8,.ur-gy-xl-8{--bs-gutter-y:32px}}@media (min-width:1400px){.ur-col-xxl{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-xxl-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-xxl-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-xxl-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-xxl-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-xxl-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-xxl-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-xxl-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-xxl-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-xxl-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-xxl-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-xxl-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-xxl-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-xxl-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-xxl-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-xxl-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-xxl-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-xxl-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-xxl-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-xxl-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-xxl-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-xxl-0{margin-left:0}.ur-offset-xxl-1{margin-left:8.3333333333%}.ur-offset-xxl-2{margin-left:16.6666666667%}.ur-offset-xxl-3{margin-left:25%}.ur-offset-xxl-4{margin-left:33.3333333333%}.ur-offset-xxl-5{margin-left:41.6666666667%}.ur-offset-xxl-6{margin-left:50%}.ur-offset-xxl-7{margin-left:58.3333333333%}.ur-offset-xxl-8{margin-left:66.6666666667%}.ur-offset-xxl-9{margin-left:75%}.ur-offset-xxl-10{margin-left:83.3333333333%}.ur-offset-xxl-11{margin-left:91.6666666667%}.ur-g-xxl-0,.ur-gx-xxl-0{--bs-gutter-x:0}.ur-g-xxl-0,.ur-gy-xxl-0{--bs-gutter-y:0}.ur-g-xxl-1,.ur-gx-xxl-1{--bs-gutter-x:4px}.ur-g-xxl-1,.ur-gy-xxl-1{--bs-gutter-y:4px}.ur-g-xxl-2,.ur-gx-xxl-2{--bs-gutter-x:8px}.ur-g-xxl-2,.ur-gy-xxl-2{--bs-gutter-y:8px}.ur-g-xxl-3,.ur-gx-xxl-3{--bs-gutter-x:12px}.ur-g-xxl-3,.ur-gy-xxl-3{--bs-gutter-y:12px}.ur-g-xxl-4,.ur-gx-xxl-4{--bs-gutter-x:16px}.ur-g-xxl-4,.ur-gy-xxl-4{--bs-gutter-y:16px}.ur-g-xxl-5,.ur-gx-xxl-5{--bs-gutter-x:20px}.ur-g-xxl-5,.ur-gy-xxl-5{--bs-gutter-y:20px}.ur-g-xxl-6,.ur-gx-xxl-6{--bs-gutter-x:24px}.ur-g-xxl-6,.ur-gy-xxl-6{--bs-gutter-y:24px}.ur-g-xxl-7,.ur-gx-xxl-7{--bs-gutter-x:28px}.ur-g-xxl-7,.ur-gy-xxl-7{--bs-gutter-y:28px}.ur-g-xxl-8,.ur-gx-xxl-8{--bs-gutter-x:32px}.ur-g-xxl-8,.ur-gy-xxl-8{--bs-gutter-y:32px}}.user-registration-overlay{background-color:rgba(45,53,89,.3);position:absolute;left:0;right:0;top:0;bottom:0;z-index:1}.user-registration-overlay.is-fixed{position:fixed}#wpcontent .user-registration-overlay{margin-left:-20px}.user-registration-overlay .ur-spinner{position:absolute;left:0;right:0;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0 auto}.user-registration-overlay .ur-spinner::before{width:20px;height:20px}#wpcontent .wrap .user-registration-header{margin:-10px -20px 0 -22px}.user-registration-header{background:#fff;padding:12px 16px}.user-registration_page_user-registration-settings .user-registration-header{background-color:#475bb2;padding:20px 0 0}.user-registration_page_user-registration-settings .user-registration-header .ur-scroll-ui__scroll-nav__icon{color:#fff}.user-registration_page_user-registration-settings .user-registration-header .ur-scroll-ui__scroll-nav--backward{background:-webkit-gradient(linear,right top,left top,from(rgba(71,91,178,.3)),color-stop(rgba(71,91,178,.85)),to(#475bb2));background:-webkit-linear-gradient(right,rgba(71,91,178,.3),rgba(71,91,178,.85),#475bb2);background:linear-gradient(to left,rgba(71,91,178,.3),rgba(71,91,178,.85),#475bb2)}.user-registration_page_user-registration-settings .user-registration-header .ur-scroll-ui__scroll-nav--forward{background:-webkit-gradient(linear,left top,right top,from(rgba(71,91,178,.3)),color-stop(rgba(71,91,178,.85)),to(#475bb2));background:-webkit-linear-gradient(left,rgba(71,91,178,.3),rgba(71,91,178,.85),#475bb2);background:linear-gradient(to right,rgba(71,91,178,.3),rgba(71,91,178,.85),#475bb2)}.user-registration_page_user-registration-settings .user-registration-header .subsubsub{background:#fff;font-size:13px;padding:0 16px;margin-top:0;float:none;text-align:left}.user-registration_page_user-registration-settings .user-registration-header .subsubsub a{color:#2d3559;display:block;font-weight:500;padding:8px 12px}.user-registration_page_user-registration-settings .user-registration-header .subsubsub a.current{color:#475bb2}.user-registration-template-setup{max-width:1074px;margin:40px auto 0}.user-registration-template-setup *,.user-registration-template-setup ::after,.user-registration-template-setup ::before{box-sizing:border-box}.user-registration-template-wrap{cursor:pointer;margin-bottom:24px}.user-registration-template-wrap#user-registration-email-template-blank .user-registration-template-wrap__figure::before{content:'';display:block;background-color:rgba(45,53,89,.2);position:absolute;top:0;bottom:0;width:100%;-webkit-transition:all .3s ease 0s;transition:all .3s ease 0s;opacity:0;visibility:none}.user-registration-template-wrap#user-registration-email-template-blank:hover .user-registration-template-wrap__figure::before{opacity:1;visibility:visible}.user-registration-template-wrap__figure{background-color:#f0f1f5;margin:0;min-height:260px;position:relative;border-radius:4px;overflow:hidden}.user-registration-template-wrap__figure img{max-width:100%;display:block}.user-registration-template-wrap__overlay{background:rgba(45,53,89,.6);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;position:absolute;left:0;right:0;top:0;bottom:0;-webkit-transition:all .3s ease 0s;transition:all .3s ease 0s;visibility:hidden;opacity:0}.user-registration-template-wrap__overlay .button{border-color:#fff}.user-registration-template-wrap__title{color:#4c5477;font-size:16px;font-weight:500}.user-registration-template-wrap__title:hover{color:#475bb2}.user-registration-template-wrap:hover .user-registration-template-wrap__overlay{visibility:visible;opacity:1}@-webkit-keyframes spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-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)}}.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}.toplevel_page_user-registration .shortcode .widefat,.user-registration_page_user-registration-frontend-list .shortcode .widefat{width:calc(100% - 40px)}.toplevel_page_user-registration .shortcode .ur-copy-shortcode,.user-registration_page_user-registration-frontend-list .shortcode .ur-copy-shortcode{padding:4px;line-height:1}.user-registration_page_user-registration-settings .notice{display:none}.ur-spinner{width:16px;height:16px;margin-left:6px;margin-bottom:2px;display:inline-block;vertical-align:middle}.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}.user-registration__wrap *,.user-registration__wrap ::after,.user-registration__wrap ::before{box-sizing:border-box}.ur-export-users-page{margin-top:24px}.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 .nav-tab-inside .postbox .hndle{border-bottom:1px solid #ccd0d4}.swal2-container .user-registration-swal2-modal .ur-export-users-page .nav-tab-content .nav-tab-inside .postbox .swal2-input,.ur-export-users-page .nav-tab-content .nav-tab-inside .postbox .swal2-container .user-registration-swal2-modal .swal2-input,.ur-export-users-page .nav-tab-content .nav-tab-inside .postbox .ur-input{max-width:inherit}.ur-export-users-page .nav-tab-content .hndle,.ur-export-users-page .nav-tab-content .stuffbox .hndle{margin:10px;padding-bottom:10px}.ur-export-users-page .nav-tab-content .stuffbox{padding:10px}.ur-label .user-registration-help-tip{margin-left:2px}.ur_addons_wrap *,.ur_addons_wrap ::after,.ur_addons_wrap ::before{box-sizing:border-box}.ur_addons_wrap .products{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-left:-12px;margin-right:-12px}.ur_addons_wrap .products li{width:20%;padding:0 12px;-webkit-box-flex:0;-webkit-flex:0 0 20%;flex:0 0 20%;margin-bottom:24px}@media only screen and (max-width:1599px){.ur_addons_wrap .products li{width:33.333%;-webkit-box-flex:0;-webkit-flex:0 0 33.333%;flex:0 0 33.333%}}@media only screen and (max-width:768px){.ur_addons_wrap .products li{width:50%;-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%}}@media only screen and (max-width:480px){.ur_addons_wrap .products li{width:100%;-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;margin-bottom:12px}}.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;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 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 label{display:inline-block}.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,.ur-registered-from h4{color:#2d3559;font-weight:500}.ur-registered-from h4{font-size:16px}.ur-registered-from .ur-field label{font-weight:400;word-break:break-all}.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 .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-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;margin:0;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}.ur-portal-tooltip,.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}.ur-portal-tooltip::after,.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}#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)}.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:#37b24d}.ur-builder-message-container .ur-message .ur-success p::before{content:"\f12a";color:#37b24d}.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 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 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 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}}
1
+ @charset "UTF-8";.ur-d-none{display:none!important}.ur-d-inline{display:inline!important}.ur-d-inline-block{display:inline-block!important}.ur-d-block{display:block!important}.ur-d-table{display:table!important}.ur-d-table-row{display:table-row!important}.ur-d-table-cell{display:table-cell!important}.ur-d-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}@media (min-width:576px){.ur-d-sm-none{display:none!important}.ur-d-sm-inline{display:inline!important}.ur-d-sm-inline-block{display:inline-block!important}.ur-d-sm-block{display:block!important}.ur-d-sm-table{display:table!important}.ur-d-sm-table-row{display:table-row!important}.ur-d-sm-table-cell{display:table-cell!important}.ur-d-sm-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-sm-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}}@media (min-width:768px){.ur-d-md-none{display:none!important}.ur-d-md-inline{display:inline!important}.ur-d-md-inline-block{display:inline-block!important}.ur-d-md-block{display:block!important}.ur-d-md-table{display:table!important}.ur-d-md-table-row{display:table-row!important}.ur-d-md-table-cell{display:table-cell!important}.ur-d-md-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-md-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}}@media (min-width:992px){.ur-d-lg-none{display:none!important}.ur-d-lg-inline{display:inline!important}.ur-d-lg-inline-block{display:inline-block!important}.ur-d-lg-block{display:block!important}.ur-d-lg-table{display:table!important}.ur-d-lg-table-row{display:table-row!important}.ur-d-lg-table-cell{display:table-cell!important}.ur-d-lg-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-lg-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}}@media (min-width:1200px){.ur-d-xl-none{display:none!important}.ur-d-xl-inline{display:inline!important}.ur-d-xl-inline-block{display:inline-block!important}.ur-d-xl-block{display:block!important}.ur-d-xl-table{display:table!important}.ur-d-xl-table-row{display:table-row!important}.ur-d-xl-table-cell{display:table-cell!important}.ur-d-xl-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-xl-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}}@media (min-width:1400px){.ur-d-xxl-none{display:none!important}.ur-d-xxl-inline{display:inline!important}.ur-d-xxl-inline-block{display:inline-block!important}.ur-d-xxl-block{display:block!important}.ur-d-xxl-table{display:table!important}.ur-d-xxl-table-row{display:table-row!important}.ur-d-xxl-table-cell{display:table-cell!important}.ur-d-xxl-flex{display:-webkit-box!important;display:-webkit-flex!important;display:flex!important}.ur-d-xxl-inline-flex{display:-webkit-inline-box!important;display:-webkit-inline-flex!important;display:inline-flex!important}}.ur-flex-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}@media (min-width:576px){.ur-flex-sm-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-sm-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-sm-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-sm-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-sm-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-sm-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-sm-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-sm-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-sm-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-sm-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-sm-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-sm-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-sm-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-sm-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-sm-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-sm-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-sm-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-sm-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-sm-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-sm-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-sm-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-sm-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-sm-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-sm-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-sm-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-sm-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-sm-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-sm-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-sm-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-sm-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-sm-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-sm-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-sm-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-sm-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}@media (min-width:768px){.ur-flex-md-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-md-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-md-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-md-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-md-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-md-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-md-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-md-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-md-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-md-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-md-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-md-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-md-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-md-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-md-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-md-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-md-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-md-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-md-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-md-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-md-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-md-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-md-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-md-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-md-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-md-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-md-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-md-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-md-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-md-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-md-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-md-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-md-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-md-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}@media (min-width:992px){.ur-flex-lg-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-lg-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-lg-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-lg-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-lg-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-lg-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-lg-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-lg-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-lg-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-lg-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-lg-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-lg-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-lg-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-lg-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-lg-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-lg-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-lg-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-lg-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-lg-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-lg-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-lg-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-lg-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-lg-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-lg-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-lg-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-lg-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-lg-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-lg-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-lg-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-lg-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-lg-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-lg-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-lg-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-lg-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}@media (min-width:1200px){.ur-flex-xl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-xl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-xl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-xl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-xl-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-xl-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-xl-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-xl-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-xl-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-xl-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-xl-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-xl-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-xl-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-xl-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-xl-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-xl-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-xl-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-xl-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-xl-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-xl-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-xl-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-xl-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-xl-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-xl-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-xl-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-xl-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-xl-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-xl-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-xl-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-xl-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-xl-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-xl-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-xl-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-xl-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}@media (min-width:1400px){.ur-flex-xxl-row{-webkit-box-orient:horizontal!important;-webkit-box-direction:normal!important;-webkit-flex-direction:row!important;flex-direction:row!important}.ur-flex-xxl-column{-webkit-box-orient:vertical!important;-webkit-box-direction:normal!important;-webkit-flex-direction:column!important;flex-direction:column!important}.ur-flex-xxl-row-reverse{-webkit-box-orient:horizontal!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:row-reverse!important;flex-direction:row-reverse!important}.ur-flex-xxl-column-reverse{-webkit-box-orient:vertical!important;-webkit-box-direction:reverse!important;-webkit-flex-direction:column-reverse!important;flex-direction:column-reverse!important}.ur-flex-xxl-wrap{-webkit-flex-wrap:wrap!important;flex-wrap:wrap!important}.ur-flex-xxl-nowrap{-webkit-flex-wrap:nowrap!important;flex-wrap:nowrap!important}.ur-flex-xxl-wrap-reverse{-webkit-flex-wrap:wrap-reverse!important;flex-wrap:wrap-reverse!important}.ur-flex-xxl-fill{-webkit-box-flex:1!important;-webkit-flex:1 1 auto!important;flex:1 1 auto!important}.ur-flex-xxl-grow-0{-webkit-box-flex:0!important;-webkit-flex-grow:0!important;flex-grow:0!important}.ur-flex-xxl-grow-1{-webkit-box-flex:1!important;-webkit-flex-grow:1!important;flex-grow:1!important}.ur-flex-xxl-shrink-0{-webkit-flex-shrink:0!important;flex-shrink:0!important}.ur-flex-xxl-shrink-1{-webkit-flex-shrink:1!important;flex-shrink:1!important}.ur-justify-content-xxl-start{-webkit-box-pack:start!important;-webkit-justify-content:flex-start!important;justify-content:flex-start!important}.ur-justify-content-xxl-end{-webkit-box-pack:end!important;-webkit-justify-content:flex-end!important;justify-content:flex-end!important}.ur-justify-content-xxl-center{-webkit-box-pack:center!important;-webkit-justify-content:center!important;justify-content:center!important}.ur-justify-content-xxl-between{-webkit-box-pack:justify!important;-webkit-justify-content:space-between!important;justify-content:space-between!important}.ur-justify-content-xxl-around{-webkit-justify-content:space-around!important;justify-content:space-around!important}.ur-align-items-xxl-start{-webkit-box-align:start!important;-webkit-align-items:flex-start!important;align-items:flex-start!important}.ur-align-items-xxl-end{-webkit-box-align:end!important;-webkit-align-items:flex-end!important;align-items:flex-end!important}.ur-align-items-xxl-center{-webkit-box-align:center!important;-webkit-align-items:center!important;align-items:center!important}.ur-align-items-xxl-baseline{-webkit-box-align:baseline!important;-webkit-align-items:baseline!important;align-items:baseline!important}.ur-align-items-xxl-stretch{-webkit-box-align:stretch!important;-webkit-align-items:stretch!important;align-items:stretch!important}.ur-align-content-xxl-start{-webkit-align-content:flex-start!important;align-content:flex-start!important}.ur-align-content-xxl-end{-webkit-align-content:flex-end!important;align-content:flex-end!important}.ur-align-content-xxl-center{-webkit-align-content:center!important;align-content:center!important}.ur-align-content-xxl-between{-webkit-align-content:space-between!important;align-content:space-between!important}.ur-align-content-xxl-around{-webkit-align-content:space-around!important;align-content:space-around!important}.ur-align-content-xxl-stretch{-webkit-align-content:stretch!important;align-content:stretch!important}.ur-align-self-xxl-auto{-webkit-align-self:auto!important;align-self:auto!important}.ur-align-self-xxl-start{-webkit-align-self:flex-start!important;align-self:flex-start!important}.ur-align-self-xxl-end{-webkit-align-self:flex-end!important;align-self:flex-end!important}.ur-align-self-xxl-center{-webkit-align-self:center!important;align-self:center!important}.ur-align-self-xxl-baseline{-webkit-align-self:baseline!important;align-self:baseline!important}.ur-align-self-xxl-stretch{-webkit-align-self:stretch!important;align-self:stretch!important}}.ur-ml-auto{margin-left:auto}.ur-mr-auto{margin-left:auto}.ur-h2,.ur-h3,.ur-h4{font-weight:600!important}.ur-h2{font-size:28px!important}.ur-h3{font-size:20px!important}.ur-h4{font-size:16px!important}.ur-text-center{text-align:center}.ur-text-right{text-align:right}.ur-text-muted{color:#b6bbcf}@font-face{font-family:UserRegistration;src:url(../fonts/UserRegistration.eot?nk6vrg);src:url(../fonts/UserRegistration.eot?nk6vrg#iefix) format("embedded-opentype"),url(../fonts/UserRegistration.ttf?nk6vrg) format("truetype"),url(../fonts/UserRegistration.woff?nk6vrg) format("woff"),url(../fonts/UserRegistration.svg?nk6vrg#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-icon-credit-card::before{content:""}.ur-icon-range::before{content:""}.ur-icon-course::before{content:""}.ur-icon-mailerlite::before{content:""}.user-registration-table{width:100%;background:#fff;border-collapse:collapse}.user-registration-table__column-md{width:40%}.user-registration-table__column-sm{width:20%}.user-registration-table__column-auto{width:1%;white-space:nowrap}.user-registration-table__img{height:40px;width:40px;border-radius:4px;overflow:hidden}.user-registration-table caption,.user-registration-table td,.user-registration-table th{padding:1rem .5rem;text-align:left;border-bottom:1px solid #dee0e9}.user-registration-table caption:first-child,.user-registration-table td:first-child,.user-registration-table th:first-child{padding-left:1rem}.user-registration-table caption:last-child,.user-registration-table td:last-child,.user-registration-table th:last-child{padding-right:1rem}.user-registration-table td{vertical-align:top}.user-registration-table caption,.user-registration-table th{font-size:14px;font-weight:500}.user-registration-table thead th{background:#fafafc}.user-registration-table input,.user-registration-table select,.user-registration-table textarea{width:100%;box-shadow:none;border-radius:4px}.ur-form-group{margin-bottom:16px}.ur-label{display:block;width:100%;margin-bottom:8px;color:#4c5477;font-size:13px;font-weight:500;line-height:1.25}.swal2-container .user-registration-swal2-modal .swal2-input,.ur-input{display:block;width:100%;border:1px solid #dee0e9;border-radius:4px}.user-registration-custom-file{color:#676d8a;font-size:14px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;position:relative}.user-registration-custom-file input{position:absolute;z-index:2;width:100%;margin:0;opacity:0}.user-registration-custom-file__label{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;width:100%;padding:2px 2px 2px 8px;background-color:#fff;border:1px solid #dee0e9;border-radius:4px;z-index:1}.user-registration-custom-file__button{margin-left:auto;display:inline-block;background:#676d8a;color:#fff;padding:6px 15px;border-radius:4px}.user-registration-custom-file+.help{margin-top:4px}.ur-form-field--sm{width:80px;-webkit-box-flex:0;-webkit-flex:0 0 80px;flex:0 0 80px}.user-registration-editable-title{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;position:relative}.user-registration-editable-title .user-registration-editable-title__icon{background:#dee0e9;color:#4c5477;width:32px;height:32px;-webkit-box-flex:0;-webkit-flex:0 0 32px;flex:0 0 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}.user-registration-editable-title .user-registration-editable-title__icon::after{content:"";border-radius:3px;position:absolute;left:32px;right:calc(100% - 32px);height:32px;border-radius:0 3px 3px 0;-webkit-transition:all .3s ease 0s;transition:all .3s ease 0s}.user-registration-editable-title .user-registration-editable-title__input{color:#2d3559;background:0 0;font-size:16px;font-weight:500;width:auto;height:32px;padding:4px 8px;pointer-events:none;border:1px solid transparent!important;border-radius:0 4px 4px 0;z-index:1}.user-registration-editable-title .user-registration-editable-title__input.is-editing{border-color:transparent;pointer-events:all}.user-registration-editable-title .user-registration-editable-title__input.is-editing+.user-registration-editable-title__icon{color:#fff;background:#475bb2;border-radius:3px 0 0 3px}.user-registration-editable-title .user-registration-editable-title__input.is-editing+.user-registration-editable-title__icon::after{top:0;right:0;border:1px solid #475bb2}.user-registration-editable-title .user-registration-editable-title__input:focus{box-shadow:none}.user-registration-switch{display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center}.user-registration-switch input[type=checkbox]{display:none}.user-registration-switch input[type=checkbox].user-registration-switch__control{background:#676d8a;width:28px;height:18px;border-radius:10px;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-align:center;-webkit-align-items:center;align-items:center;-webkit-box-flex:0;-webkit-flex:0 0 28px;flex:0 0 28px;margin:0;position:relative;border:2px solid #676d8a;-webkit-transition:.1s -webkit-transform ease;transition:.1s -webkit-transform ease;transition:.1s transform ease;transition:.1s transform ease,.1s -webkit-transform ease;box-sizing:border-box}.user-registration-switch input[type=checkbox].user-registration-switch__control::before{content:none}.user-registration-switch input[type=checkbox].user-registration-switch__control::after{display:inline-block;content:"";height:14px;width:14px;background:#fff;border-radius:50%;position:absolute;-webkit-transition:.1s -webkit-transform ease;transition:.1s -webkit-transform ease;transition:.1s transform ease;transition:.1s transform ease,.1s -webkit-transform ease}.user-registration-switch input[type=checkbox]:checked{background:#37b24d;border-color:#37b24d}.user-registration-switch input[type=checkbox]:checked::after{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}.user-registration-switch label{margin:0 0 0 8px!important}.user-registration input{border-color:#dee0e9}.user-registration .select2.select2-container{width:100%!important}.user-registration .select2-results__option .wrap:before{content:"\2610";width:25px;height:25px;padding-right:10px}.user-registration .select2-results__option[data-selected=true] .wrap:before{content:"\2714"}.user-registration .select2-drop,.user-registration .select2-dropdown{z-index:999999!important}.user-registration .select2-results{line-height:1.5em}.user-registration .select2-results .select2-results__group,.user-registration .select2-results .select2-results__option{margin:0;padding:8px}.user-registration .select2-dropdown{border-color:#dee0e9}.user-registration .select2-dropdown--below{box-shadow:0 1px 1px rgba(0,0,0,.1)}.user-registration .select2-dropdown--above{box-shadow:0 -1px 1px rgba(0,0,0,.1)}.user-registration .select2-container .select2-selection__rendered.ui-sortable li{cursor:move}.user-registration .select2-container .select2-selection{border-color:#dee0e9}.user-registration .select2-container .select2-search__field{min-width:20px}.user-registration .select2-container .select2-selection--single{height:32px}.user-registration .select2-container .select2-selection--single .select2-selection__rendered{display:block;line-height:32px;padding-right:24px}.user-registration .select2-container .select2-selection--single .select2-selection__arrow{right:3px;height:30px}.user-registration .select2-container .select2-selection--multiple{min-height:28px;border-radius:4px;line-height:1.5;border:1px solid #ddd!important;padding-left:4px}.user-registration .select2-container .select2-selection--multiple li{margin:0}.user-registration .select2-container .select2-selection--multiple .select2-selection__choice{padding:2px 6px}.user-registration .select2-container .select2-selection--multiple .select2-selection__rendered{display:-webkit-box;display:-webkit-flex;display:flex;margin:0}.user-registration .select2-container .select2-selection--multiple .select2-selection__rendered .select2-selection__choice{margin:4px;line-height:1.4;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}.user-registration .select2-container .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove{bottom:0}.user-registration .select2-container .select2-selection__clear{color:#999;margin-top:-1px}.user-registration .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;height:32px}.user-registration-badge{display:inline-block;font-size:1em;line-height:1;padding:4px 8px;border-radius:10px}.user-registration-badge.user-registration-badge--primary{background:#475bb2;color:#fff}.user-registration-badge.user-registration-badge--primary-subtle{background:#c4cbe7;color:#475bb2}.user-registration-badge.user-registration-badge--secondary{background:#676d8a;color:#fff}.user-registration-badge.user-registration-badge--secondary-subtle{background:#cbced9;color:#676d8a}.user-registration-badge.user-registration-badge--success{background:#37b24d;color:#fff}.user-registration-badge.user-registration-badge--success-subtle{background:#b4e8bd;color:#2b8b3c}.user-registration-badge.user-registration-badge--danger{background:#ff4149;color:#fff}.user-registration-badge.user-registration-badge--danger-subtle{background:#ffdadc;color:#ff4149}.user-registration-badge.user-registration-badge--warning{background:#ffba00;color:#fff}.user-registration-badge.user-registration-badge--warning-subtle{background:#ffeab3;color:#b38200}.user-registration-badge.user-registration-badge--info{background:#2ea2cc;color:#fff}.user-registration-badge.user-registration-badge--info-subtle{background:#bce2f0;color:#2991b7}.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;box-shadow:0 1px 3px rgba(182,187,207,.15)}.ur-form-container .button+.button,.ur-form-container .button+button,.ur-form-container button+.button,.ur-form-container button+button,.user-registration .button+.button,.user-registration .button+button,.user-registration button+.button,.user-registration button+button{margin-left:6px}.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;text-align:center}.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:.9;vertical-align:middle}.ur-form-container .button.button-icon svg,.ur-form-container button.button-icon svg,.user-registration .button.button-icon svg,.user-registration button.button-icon svg{display:block;margin:0 auto}.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.is-active,.ur-form-container button.is-active,.user-registration .button.is-active,.user-registration button.is-active{background:#475bb2;color:#fff;border-color:#475bb2}.ur-form-container .button.is-active:active,.ur-form-container .button.is-active:focus,.ur-form-container .button.is-active:hover,.ur-form-container button.is-active:active,.ur-form-container button.is-active:focus,.ur-form-container button.is-active:hover,.user-registration .button.is-active:active,.user-registration .button.is-active:focus,.user-registration .button.is-active:hover,.user-registration button.is-active:active,.user-registration button.is-active:focus,.user-registration button.is-active:hover{background:#475bb2;color:#fff;border-color:#475bb2}.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}.ur-form-container .button-tertiary,.user-registration .button-tertiary{background:#fff;color:#2d3559;border:1px solid #dee0e9}.ur-form-container .button-tertiary:active,.ur-form-container .button-tertiary:focus,.ur-form-container .button-tertiary:hover,.user-registration .button-tertiary:active,.user-registration .button-tertiary:focus,.user-registration .button-tertiary:hover{background:#f0f1f5;border-color:#dee0e9}.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}.user-registration-button-group{position:relative;display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;vertical-align:middle}.user-registration-button-group .button:not(:first-child),.user-registration-button-group>button:not(:first-child){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.user-registration-button-group .button:not(:last-child),.user-registration-button-group>button:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.user-registration-button-group .button,.user-registration-button-group button{margin-right:0!important}.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}.user-registration-card{background:#fff;border-radius:4px;display:block;border:1px solid #dee0e9}.user-registration-card a{text-decoration:none}.user-registration-card__header{padding:16px 20px;border-bottom:1px solid #dee0e9}.user-registration-card__title{font-size:1.25em;line-height:1.3;margin:0;font-weight:600}.user-registration-card__body{padding:20px}.user-registration-list-group{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column;padding-left:0;margin-bottom:0}.user-registration-list-group--flush>.user-registration-list-group__item{border-width:0 0 1px}.user-registration-list-group--flush>.user-registration-list-group__item:last-child{border-bottom-width:0}.user-registration-list-group--no-gutter .user-registration-list-group__item{padding-right:0;padding-left:0}.user-registration-list-group__item{position:relative;display:block;padding:1rem 1.25rem;background-color:transparent;border:1px solid #dee0e9}.user-registration-list-group__item:first-child{border-top-left-radius:8px;border-top-right-radius:8px}.user-registration-page.user-registration-modal-open{overflow:hidden}.user-registration-page.user-registration-modal-open .user-registration-modal{max-width:100%}.user-registration-modal{position:fixed;top:0;left:0;right:0;height:100%;width:100%;margin:0 auto!important;overflow-x:hidden;overflow-y:auto;z-index:999}.user-registration-modal .user-registration-modal__backdrop{position:fixed;left:0;top:0;background-color:rgba(45,53,89,.5);min-width:100%;min-height:100%;z-index:1}.user-registration-modal .user-registration-modal__content{background:#fff;position:relative;width:auto;margin:16px;border-radius:8px;z-index:99999;box-shadow:0 3px 25px 0 rgba(45,53,89,.4)}@media (min-width:576px){.user-registration-modal .user-registration-modal__content{max-width:500px;margin:24px auto}}@media (min-width:992px){.user-registration-modal .user-registration-modal__content.user-registration-modal__content--lg,.user-registration-modal .user-registration-modal__content.user-registration-modal__content--xl{max-width:800px}}@media (min-width:1200px){.user-registration-modal .user-registration-modal__content.user-registration-modal__content--xl{max-width:1140px}}.user-registration-modal .user-registration-modal__header{display:-webkit-box;display:-webkit-flex;display:flex;padding:16px;border-bottom:1px solid #dee0e9}.user-registration-modal .user-registration-modal__header .user-registration-modal__title{font-size:20px;line-height:1.4;margin:0;padding:0}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon{position:relative;display:block;width:32px;height:32px;-webkit-box-flex:0;-webkit-flex:0 0 32px;flex:0 0 32px;cursor:pointer;margin-left:auto}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::after,.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::before{content:"";height:2px;width:16px;display:block;position:absolute;top:50%;left:0;right:0;margin:0 auto;background:#b6bbcf}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::before{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::after{-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.user-registration-modal .user-registration-modal__body{position:relative;padding:16px}.user-registration-modal .user-registration-modal__body #user-registration,.user-registration-modal .user-registration-modal__body .login,.user-registration-modal .user-registration-modal__body .user-registration{margin:0;padding:0;border:none}.user-registration-modal .user-registration-modal__footer{padding:16px;border-top:1px solid #dee0e9}.user-registration-modal .user-registration-modal__footer *{margin:4px}.swal2-container .user-registration-swal2-modal{padding:40px}.swal2-container .user-registration-swal2-modal .swal2-input{font-size:16px}.swal2-container .user-registration-swal2-modal .swal2-animate-success-icon [class^=swal2-success-circular-line],.swal2-container .user-registration-swal2-modal .swal2-animate-success-icon [class^=swal2-success-line]{-webkit-animation:none;animation:none}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon{width:56px;height:56px;line-height:56px;margin:0 auto 16px;border-width:2px;border-radius:50%}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line]{height:3px;width:28px;top:50%;left:0;right:0;margin:0 auto}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line][class$=left]{-webkit-transform:translateY(-50%) rotate(45deg);-ms-transform:translateY(-50%) rotate(45deg);transform:translateY(-50%) rotate(45deg)}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line][class$=right]{-webkit-transform:translateY(-50%) rotate(-45deg);-ms-transform:translateY(-50%) rotate(-45deg);transform:translateY(-50%) rotate(-45deg)}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line]{height:3px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{width:16px;top:56%;left:10px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:47%;width:32px;right:6px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line]{height:64px;width:32px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-75px;left:27px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-26px;left:82px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success .swal2-success-ring{top:-3px;left:-2px;border-width:2px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success .swal2-success-fix{height:64px;left:2px;right:0;margin:0 auto;top:-2px;bottom:0;width:6px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon::before{font-size:40px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-title{color:#2d3559;font-size:24px;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:16px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-title .dashicons{color:#ff4149;font-size:28px;width:56px;height:56px;line-height:56px;margin:0 auto 16px;border:2px solid #ff4149;border-radius:50%}.swal2-container .user-registration-swal2-modal__title{line-height:1.35;display:block}.swal2-container .user-registration-swal2-modal .swal2-content{color:#4c5477;font-size:1em;line-height:1.5}.swal2-container .user-registration-swal2-modal .swal2-actions button{margin-top:0;margin-bottom:0}.swal2-container .user-registration-swal2-modal--centered .swal2-title{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.ur-nav{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.ur-nav--tab{display:-webkit-box;display:-webkit-flex;display:flex;border-bottom:1px solid #dee0e9}.user-registration_page_user-registration-settings .ur-nav--tab{padding:0;margin:0 16px;border-bottom:0}.ur-nav__link{display:block;font-weight:500;color:#2d3559;padding:8px 12px;text-decoration:none;border:1px solid transparent}.ur-nav__link:focus,.ur-nav__link:hover{color:#475bb2}.ur-nav__link.is-active{background-color:#475bb2;border-color:#dee0e9 #dee0e9 #fff;border-radius:4px 4px 0 0}.user-registration_page_user-registration-settings .ur-nav__link{background-color:transparent;color:#fff;margin:0}.user-registration_page_user-registration-settings .ur-nav__link.is-active{background-color:#fff;color:#2d3559;border-color:#fff}.ur-scroll-ui{position:relative;overflow-x:auto;overflow-y:hidden}.ur-scroll-ui__items{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:nowrap;flex-wrap:nowrap;overflow-x:auto;overflow-y:hidden;white-space:nowrap;scroll-behavior:smooth}.ur-scroll-ui__items::-webkit-scrollbar{display:none}.ur-scroll-ui__item{display:inline-block;height:100%}.ur-scroll-ui__scroll-nav{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;position:absolute;top:0;bottom:0;padding:8px}.ur-scroll-ui__scroll-nav--backward{left:0}.ur-scroll-ui__scroll-nav--forward{right:0}.ur-scroll-ui__scroll-nav__icon{color:#333;cursor:pointer}.ur-scroll-ui .is-disabled{display:none}.ur-bg-light{background-color:#f0f1f5}.ur-border{border:1px solid #dee0e9!important}.ur-border-top{border-top:1px solid #dee0e9!important}.ur-border-right{border-right:1px solid #dee0e9!important}.ur-border-bottom{border-bottom:1px solid #dee0e9!important}.ur-border-left{border-left:1px solid #dee0e9!important}.ur-border-0{border:0!important}.ur-border-top-0{border-top:0!important}.ur-border-right-0{border-right:0!important}.ur-border-bottom-0{border-bottom:0!important}.ur-border-left-0{border-left:0!important}.ur-m-0{margin:0!important}.ur-mt-0,.ur-my-0{margin-top:0!important}.ur-mr-0,.ur-mx-0{margin-right:0!important}.ur-mb-0,.ur-my-0{margin-bottom:0!important}.ur-ml-0,.ur-mx-0{margin-left:0!important}.ur-m-1{margin:4px!important}.ur-mt-1,.ur-my-1{margin-top:4px!important}.ur-mr-1,.ur-mx-1{margin-right:4px!important}.ur-mb-1,.ur-my-1{margin-bottom:4px!important}.ur-ml-1,.ur-mx-1{margin-left:4px!important}.ur-m-2{margin:8px!important}.ur-mt-2,.ur-my-2{margin-top:8px!important}.ur-mr-2,.ur-mx-2{margin-right:8px!important}.ur-mb-2,.ur-my-2{margin-bottom:8px!important}.ur-ml-2,.ur-mx-2{margin-left:8px!important}.ur-m-3{margin:12px!important}.ur-mt-3,.ur-my-3{margin-top:12px!important}.ur-mr-3,.ur-mx-3{margin-right:12px!important}.ur-mb-3,.ur-my-3{margin-bottom:12px!important}.ur-ml-3,.ur-mx-3{margin-left:12px!important}.ur-m-4{margin:16px!important}.ur-mt-4,.ur-my-4{margin-top:16px!important}.ur-mr-4,.ur-mx-4{margin-right:16px!important}.ur-mb-4,.ur-my-4{margin-bottom:16px!important}.ur-ml-4,.ur-mx-4{margin-left:16px!important}.ur-m-5{margin:20px!important}.ur-mt-5,.ur-my-5{margin-top:20px!important}.ur-mr-5,.ur-mx-5{margin-right:20px!important}.ur-mb-5,.ur-my-5{margin-bottom:20px!important}.ur-ml-5,.ur-mx-5{margin-left:20px!important}.ur-m-6{margin:24px!important}.ur-mt-6,.ur-my-6{margin-top:24px!important}.ur-mr-6,.ur-mx-6{margin-right:24px!important}.ur-mb-6,.ur-my-6{margin-bottom:24px!important}.ur-ml-6,.ur-mx-6{margin-left:24px!important}.ur-m-7{margin:28px!important}.ur-mt-7,.ur-my-7{margin-top:28px!important}.ur-mr-7,.ur-mx-7{margin-right:28px!important}.ur-mb-7,.ur-my-7{margin-bottom:28px!important}.ur-ml-7,.ur-mx-7{margin-left:28px!important}.ur-m-8{margin:32px!important}.ur-mt-8,.ur-my-8{margin-top:32px!important}.ur-mr-8,.ur-mx-8{margin-right:32px!important}.ur-mb-8,.ur-my-8{margin-bottom:32px!important}.ur-ml-8,.ur-mx-8{margin-left:32px!important}.ur-p-0{padding:0!important}.ur-pt-0,.ur-py-0{padding-top:0!important}.ur-pr-0,.ur-px-0{padding-right:0!important}.ur-pb-0,.ur-py-0{padding-bottom:0!important}.ur-pl-0,.ur-px-0{padding-left:0!important}.ur-p-1{padding:4px!important}.ur-pt-1,.ur-py-1{padding-top:4px!important}.ur-pr-1,.ur-px-1{padding-right:4px!important}.ur-pb-1,.ur-py-1{padding-bottom:4px!important}.ur-pl-1,.ur-px-1{padding-left:4px!important}.ur-p-2{padding:8px!important}.ur-pt-2,.ur-py-2{padding-top:8px!important}.ur-pr-2,.ur-px-2{padding-right:8px!important}.ur-pb-2,.ur-py-2{padding-bottom:8px!important}.ur-pl-2,.ur-px-2{padding-left:8px!important}.ur-p-3{padding:12px!important}.ur-pt-3,.ur-py-3{padding-top:12px!important}.ur-pr-3,.ur-px-3{padding-right:12px!important}.ur-pb-3,.ur-py-3{padding-bottom:12px!important}.ur-pl-3,.ur-px-3{padding-left:12px!important}.ur-p-4{padding:16px!important}.ur-pt-4,.ur-py-4{padding-top:16px!important}.ur-pr-4,.ur-px-4{padding-right:16px!important}.ur-pb-4,.ur-py-4{padding-bottom:16px!important}.ur-pl-4,.ur-px-4{padding-left:16px!important}.ur-p-5{padding:20px!important}.ur-pt-5,.ur-py-5{padding-top:20px!important}.ur-pr-5,.ur-px-5{padding-right:20px!important}.ur-pb-5,.ur-py-5{padding-bottom:20px!important}.ur-pl-5,.ur-px-5{padding-left:20px!important}.ur-p-6{padding:24px!important}.ur-pt-6,.ur-py-6{padding-top:24px!important}.ur-pr-6,.ur-px-6{padding-right:24px!important}.ur-pb-6,.ur-py-6{padding-bottom:24px!important}.ur-pl-6,.ur-px-6{padding-left:24px!important}.ur-p-7{padding:28px!important}.ur-pt-7,.ur-py-7{padding-top:28px!important}.ur-pr-7,.ur-px-7{padding-right:28px!important}.ur-pb-7,.ur-py-7{padding-bottom:28px!important}.ur-pl-7,.ur-px-7{padding-left:28px!important}.ur-p-8{padding:32px!important}.ur-pt-8,.ur-py-8{padding-top:32px!important}.ur-pr-8,.ur-px-8{padding-right:32px!important}.ur-pb-8,.ur-py-8{padding-bottom:32px!important}.ur-pl-8,.ur-px-8{padding-left:32px!important}.ur-m-n1{margin:-4px!important}.ur-mt-n1,.ur-my-n1{margin-top:-4px!important}.ur-mr-n1,.ur-mx-n1{margin-right:-4px!important}.ur-mb-n1,.ur-my-n1{margin-bottom:-4px!important}.ur-ml-n1,.ur-mx-n1{margin-left:-4px!important}.ur-m-n2{margin:-8px!important}.ur-mt-n2,.ur-my-n2{margin-top:-8px!important}.ur-mr-n2,.ur-mx-n2{margin-right:-8px!important}.ur-mb-n2,.ur-my-n2{margin-bottom:-8px!important}.ur-ml-n2,.ur-mx-n2{margin-left:-8px!important}.ur-m-n3{margin:-12px!important}.ur-mt-n3,.ur-my-n3{margin-top:-12px!important}.ur-mr-n3,.ur-mx-n3{margin-right:-12px!important}.ur-mb-n3,.ur-my-n3{margin-bottom:-12px!important}.ur-ml-n3,.ur-mx-n3{margin-left:-12px!important}.ur-m-n4{margin:-16px!important}.ur-mt-n4,.ur-my-n4{margin-top:-16px!important}.ur-mr-n4,.ur-mx-n4{margin-right:-16px!important}.ur-mb-n4,.ur-my-n4{margin-bottom:-16px!important}.ur-ml-n4,.ur-mx-n4{margin-left:-16px!important}.ur-m-n5{margin:-20px!important}.ur-mt-n5,.ur-my-n5{margin-top:-20px!important}.ur-mr-n5,.ur-mx-n5{margin-right:-20px!important}.ur-mb-n5,.ur-my-n5{margin-bottom:-20px!important}.ur-ml-n5,.ur-mx-n5{margin-left:-20px!important}.ur-m-n6{margin:-24px!important}.ur-mt-n6,.ur-my-n6{margin-top:-24px!important}.ur-mr-n6,.ur-mx-n6{margin-right:-24px!important}.ur-mb-n6,.ur-my-n6{margin-bottom:-24px!important}.ur-ml-n6,.ur-mx-n6{margin-left:-24px!important}.ur-m-n7{margin:-28px!important}.ur-mt-n7,.ur-my-n7{margin-top:-28px!important}.ur-mr-n7,.ur-mx-n7{margin-right:-28px!important}.ur-mb-n7,.ur-my-n7{margin-bottom:-28px!important}.ur-ml-n7,.ur-mx-n7{margin-left:-28px!important}.ur-m-n8{margin:-32px!important}.ur-mt-n8,.ur-my-n8{margin-top:-32px!important}.ur-mr-n8,.ur-mx-n8{margin-right:-32px!important}.ur-mb-n8,.ur-my-n8{margin-bottom:-32px!important}.ur-ml-n8,.ur-mx-n8{margin-left:-32px!important}.ur-m-auto{margin:auto!important}.ur-mt-auto,.ur-my-auto{margin-top:auto!important}.ur-mr-auto,.ur-mx-auto{margin-right:auto!important}.ur-mb-auto,.ur-my-auto{margin-bottom:auto!important}.ur-ml-auto,.ur-mx-auto{margin-left:auto!important}@media (min-width:576px){.ur-m-sm-0{margin:0!important}.ur-mt-sm-0,.ur-my-sm-0{margin-top:0!important}.ur-mr-sm-0,.ur-mx-sm-0{margin-right:0!important}.ur-mb-sm-0,.ur-my-sm-0{margin-bottom:0!important}.ur-ml-sm-0,.ur-mx-sm-0{margin-left:0!important}.ur-m-sm-1{margin:4px!important}.ur-mt-sm-1,.ur-my-sm-1{margin-top:4px!important}.ur-mr-sm-1,.ur-mx-sm-1{margin-right:4px!important}.ur-mb-sm-1,.ur-my-sm-1{margin-bottom:4px!important}.ur-ml-sm-1,.ur-mx-sm-1{margin-left:4px!important}.ur-m-sm-2{margin:8px!important}.ur-mt-sm-2,.ur-my-sm-2{margin-top:8px!important}.ur-mr-sm-2,.ur-mx-sm-2{margin-right:8px!important}.ur-mb-sm-2,.ur-my-sm-2{margin-bottom:8px!important}.ur-ml-sm-2,.ur-mx-sm-2{margin-left:8px!important}.ur-m-sm-3{margin:12px!important}.ur-mt-sm-3,.ur-my-sm-3{margin-top:12px!important}.ur-mr-sm-3,.ur-mx-sm-3{margin-right:12px!important}.ur-mb-sm-3,.ur-my-sm-3{margin-bottom:12px!important}.ur-ml-sm-3,.ur-mx-sm-3{margin-left:12px!important}.ur-m-sm-4{margin:16px!important}.ur-mt-sm-4,.ur-my-sm-4{margin-top:16px!important}.ur-mr-sm-4,.ur-mx-sm-4{margin-right:16px!important}.ur-mb-sm-4,.ur-my-sm-4{margin-bottom:16px!important}.ur-ml-sm-4,.ur-mx-sm-4{margin-left:16px!important}.ur-m-sm-5{margin:20px!important}.ur-mt-sm-5,.ur-my-sm-5{margin-top:20px!important}.ur-mr-sm-5,.ur-mx-sm-5{margin-right:20px!important}.ur-mb-sm-5,.ur-my-sm-5{margin-bottom:20px!important}.ur-ml-sm-5,.ur-mx-sm-5{margin-left:20px!important}.ur-m-sm-6{margin:24px!important}.ur-mt-sm-6,.ur-my-sm-6{margin-top:24px!important}.ur-mr-sm-6,.ur-mx-sm-6{margin-right:24px!important}.ur-mb-sm-6,.ur-my-sm-6{margin-bottom:24px!important}.ur-ml-sm-6,.ur-mx-sm-6{margin-left:24px!important}.ur-m-sm-7{margin:28px!important}.ur-mt-sm-7,.ur-my-sm-7{margin-top:28px!important}.ur-mr-sm-7,.ur-mx-sm-7{margin-right:28px!important}.ur-mb-sm-7,.ur-my-sm-7{margin-bottom:28px!important}.ur-ml-sm-7,.ur-mx-sm-7{margin-left:28px!important}.ur-m-sm-8{margin:32px!important}.ur-mt-sm-8,.ur-my-sm-8{margin-top:32px!important}.ur-mr-sm-8,.ur-mx-sm-8{margin-right:32px!important}.ur-mb-sm-8,.ur-my-sm-8{margin-bottom:32px!important}.ur-ml-sm-8,.ur-mx-sm-8{margin-left:32px!important}.ur-p-sm-0{padding:0!important}.ur-pt-sm-0,.ur-py-sm-0{padding-top:0!important}.ur-pr-sm-0,.ur-px-sm-0{padding-right:0!important}.ur-pb-sm-0,.ur-py-sm-0{padding-bottom:0!important}.ur-pl-sm-0,.ur-px-sm-0{padding-left:0!important}.ur-p-sm-1{padding:4px!important}.ur-pt-sm-1,.ur-py-sm-1{padding-top:4px!important}.ur-pr-sm-1,.ur-px-sm-1{padding-right:4px!important}.ur-pb-sm-1,.ur-py-sm-1{padding-bottom:4px!important}.ur-pl-sm-1,.ur-px-sm-1{padding-left:4px!important}.ur-p-sm-2{padding:8px!important}.ur-pt-sm-2,.ur-py-sm-2{padding-top:8px!important}.ur-pr-sm-2,.ur-px-sm-2{padding-right:8px!important}.ur-pb-sm-2,.ur-py-sm-2{padding-bottom:8px!important}.ur-pl-sm-2,.ur-px-sm-2{padding-left:8px!important}.ur-p-sm-3{padding:12px!important}.ur-pt-sm-3,.ur-py-sm-3{padding-top:12px!important}.ur-pr-sm-3,.ur-px-sm-3{padding-right:12px!important}.ur-pb-sm-3,.ur-py-sm-3{padding-bottom:12px!important}.ur-pl-sm-3,.ur-px-sm-3{padding-left:12px!important}.ur-p-sm-4{padding:16px!important}.ur-pt-sm-4,.ur-py-sm-4{padding-top:16px!important}.ur-pr-sm-4,.ur-px-sm-4{padding-right:16px!important}.ur-pb-sm-4,.ur-py-sm-4{padding-bottom:16px!important}.ur-pl-sm-4,.ur-px-sm-4{padding-left:16px!important}.ur-p-sm-5{padding:20px!important}.ur-pt-sm-5,.ur-py-sm-5{padding-top:20px!important}.ur-pr-sm-5,.ur-px-sm-5{padding-right:20px!important}.ur-pb-sm-5,.ur-py-sm-5{padding-bottom:20px!important}.ur-pl-sm-5,.ur-px-sm-5{padding-left:20px!important}.ur-p-sm-6{padding:24px!important}.ur-pt-sm-6,.ur-py-sm-6{padding-top:24px!important}.ur-pr-sm-6,.ur-px-sm-6{padding-right:24px!important}.ur-pb-sm-6,.ur-py-sm-6{padding-bottom:24px!important}.ur-pl-sm-6,.ur-px-sm-6{padding-left:24px!important}.ur-p-sm-7{padding:28px!important}.ur-pt-sm-7,.ur-py-sm-7{padding-top:28px!important}.ur-pr-sm-7,.ur-px-sm-7{padding-right:28px!important}.ur-pb-sm-7,.ur-py-sm-7{padding-bottom:28px!important}.ur-pl-sm-7,.ur-px-sm-7{padding-left:28px!important}.ur-p-sm-8{padding:32px!important}.ur-pt-sm-8,.ur-py-sm-8{padding-top:32px!important}.ur-pr-sm-8,.ur-px-sm-8{padding-right:32px!important}.ur-pb-sm-8,.ur-py-sm-8{padding-bottom:32px!important}.ur-pl-sm-8,.ur-px-sm-8{padding-left:32px!important}.ur-m-sm-n1{margin:-4px!important}.ur-mt-sm-n1,.ur-my-sm-n1{margin-top:-4px!important}.ur-mr-sm-n1,.ur-mx-sm-n1{margin-right:-4px!important}.ur-mb-sm-n1,.ur-my-sm-n1{margin-bottom:-4px!important}.ur-ml-sm-n1,.ur-mx-sm-n1{margin-left:-4px!important}.ur-m-sm-n2{margin:-8px!important}.ur-mt-sm-n2,.ur-my-sm-n2{margin-top:-8px!important}.ur-mr-sm-n2,.ur-mx-sm-n2{margin-right:-8px!important}.ur-mb-sm-n2,.ur-my-sm-n2{margin-bottom:-8px!important}.ur-ml-sm-n2,.ur-mx-sm-n2{margin-left:-8px!important}.ur-m-sm-n3{margin:-12px!important}.ur-mt-sm-n3,.ur-my-sm-n3{margin-top:-12px!important}.ur-mr-sm-n3,.ur-mx-sm-n3{margin-right:-12px!important}.ur-mb-sm-n3,.ur-my-sm-n3{margin-bottom:-12px!important}.ur-ml-sm-n3,.ur-mx-sm-n3{margin-left:-12px!important}.ur-m-sm-n4{margin:-16px!important}.ur-mt-sm-n4,.ur-my-sm-n4{margin-top:-16px!important}.ur-mr-sm-n4,.ur-mx-sm-n4{margin-right:-16px!important}.ur-mb-sm-n4,.ur-my-sm-n4{margin-bottom:-16px!important}.ur-ml-sm-n4,.ur-mx-sm-n4{margin-left:-16px!important}.ur-m-sm-n5{margin:-20px!important}.ur-mt-sm-n5,.ur-my-sm-n5{margin-top:-20px!important}.ur-mr-sm-n5,.ur-mx-sm-n5{margin-right:-20px!important}.ur-mb-sm-n5,.ur-my-sm-n5{margin-bottom:-20px!important}.ur-ml-sm-n5,.ur-mx-sm-n5{margin-left:-20px!important}.ur-m-sm-n6{margin:-24px!important}.ur-mt-sm-n6,.ur-my-sm-n6{margin-top:-24px!important}.ur-mr-sm-n6,.ur-mx-sm-n6{margin-right:-24px!important}.ur-mb-sm-n6,.ur-my-sm-n6{margin-bottom:-24px!important}.ur-ml-sm-n6,.ur-mx-sm-n6{margin-left:-24px!important}.ur-m-sm-n7{margin:-28px!important}.ur-mt-sm-n7,.ur-my-sm-n7{margin-top:-28px!important}.ur-mr-sm-n7,.ur-mx-sm-n7{margin-right:-28px!important}.ur-mb-sm-n7,.ur-my-sm-n7{margin-bottom:-28px!important}.ur-ml-sm-n7,.ur-mx-sm-n7{margin-left:-28px!important}.ur-m-sm-n8{margin:-32px!important}.ur-mt-sm-n8,.ur-my-sm-n8{margin-top:-32px!important}.ur-mr-sm-n8,.ur-mx-sm-n8{margin-right:-32px!important}.ur-mb-sm-n8,.ur-my-sm-n8{margin-bottom:-32px!important}.ur-ml-sm-n8,.ur-mx-sm-n8{margin-left:-32px!important}.ur-m-sm-auto{margin:auto!important}.ur-mt-sm-auto,.ur-my-sm-auto{margin-top:auto!important}.ur-mr-sm-auto,.ur-mx-sm-auto{margin-right:auto!important}.ur-mb-sm-auto,.ur-my-sm-auto{margin-bottom:auto!important}.ur-ml-sm-auto,.ur-mx-sm-auto{margin-left:auto!important}}@media (min-width:768px){.ur-m-md-0{margin:0!important}.ur-mt-md-0,.ur-my-md-0{margin-top:0!important}.ur-mr-md-0,.ur-mx-md-0{margin-right:0!important}.ur-mb-md-0,.ur-my-md-0{margin-bottom:0!important}.ur-ml-md-0,.ur-mx-md-0{margin-left:0!important}.ur-m-md-1{margin:4px!important}.ur-mt-md-1,.ur-my-md-1{margin-top:4px!important}.ur-mr-md-1,.ur-mx-md-1{margin-right:4px!important}.ur-mb-md-1,.ur-my-md-1{margin-bottom:4px!important}.ur-ml-md-1,.ur-mx-md-1{margin-left:4px!important}.ur-m-md-2{margin:8px!important}.ur-mt-md-2,.ur-my-md-2{margin-top:8px!important}.ur-mr-md-2,.ur-mx-md-2{margin-right:8px!important}.ur-mb-md-2,.ur-my-md-2{margin-bottom:8px!important}.ur-ml-md-2,.ur-mx-md-2{margin-left:8px!important}.ur-m-md-3{margin:12px!important}.ur-mt-md-3,.ur-my-md-3{margin-top:12px!important}.ur-mr-md-3,.ur-mx-md-3{margin-right:12px!important}.ur-mb-md-3,.ur-my-md-3{margin-bottom:12px!important}.ur-ml-md-3,.ur-mx-md-3{margin-left:12px!important}.ur-m-md-4{margin:16px!important}.ur-mt-md-4,.ur-my-md-4{margin-top:16px!important}.ur-mr-md-4,.ur-mx-md-4{margin-right:16px!important}.ur-mb-md-4,.ur-my-md-4{margin-bottom:16px!important}.ur-ml-md-4,.ur-mx-md-4{margin-left:16px!important}.ur-m-md-5{margin:20px!important}.ur-mt-md-5,.ur-my-md-5{margin-top:20px!important}.ur-mr-md-5,.ur-mx-md-5{margin-right:20px!important}.ur-mb-md-5,.ur-my-md-5{margin-bottom:20px!important}.ur-ml-md-5,.ur-mx-md-5{margin-left:20px!important}.ur-m-md-6{margin:24px!important}.ur-mt-md-6,.ur-my-md-6{margin-top:24px!important}.ur-mr-md-6,.ur-mx-md-6{margin-right:24px!important}.ur-mb-md-6,.ur-my-md-6{margin-bottom:24px!important}.ur-ml-md-6,.ur-mx-md-6{margin-left:24px!important}.ur-m-md-7{margin:28px!important}.ur-mt-md-7,.ur-my-md-7{margin-top:28px!important}.ur-mr-md-7,.ur-mx-md-7{margin-right:28px!important}.ur-mb-md-7,.ur-my-md-7{margin-bottom:28px!important}.ur-ml-md-7,.ur-mx-md-7{margin-left:28px!important}.ur-m-md-8{margin:32px!important}.ur-mt-md-8,.ur-my-md-8{margin-top:32px!important}.ur-mr-md-8,.ur-mx-md-8{margin-right:32px!important}.ur-mb-md-8,.ur-my-md-8{margin-bottom:32px!important}.ur-ml-md-8,.ur-mx-md-8{margin-left:32px!important}.ur-p-md-0{padding:0!important}.ur-pt-md-0,.ur-py-md-0{padding-top:0!important}.ur-pr-md-0,.ur-px-md-0{padding-right:0!important}.ur-pb-md-0,.ur-py-md-0{padding-bottom:0!important}.ur-pl-md-0,.ur-px-md-0{padding-left:0!important}.ur-p-md-1{padding:4px!important}.ur-pt-md-1,.ur-py-md-1{padding-top:4px!important}.ur-pr-md-1,.ur-px-md-1{padding-right:4px!important}.ur-pb-md-1,.ur-py-md-1{padding-bottom:4px!important}.ur-pl-md-1,.ur-px-md-1{padding-left:4px!important}.ur-p-md-2{padding:8px!important}.ur-pt-md-2,.ur-py-md-2{padding-top:8px!important}.ur-pr-md-2,.ur-px-md-2{padding-right:8px!important}.ur-pb-md-2,.ur-py-md-2{padding-bottom:8px!important}.ur-pl-md-2,.ur-px-md-2{padding-left:8px!important}.ur-p-md-3{padding:12px!important}.ur-pt-md-3,.ur-py-md-3{padding-top:12px!important}.ur-pr-md-3,.ur-px-md-3{padding-right:12px!important}.ur-pb-md-3,.ur-py-md-3{padding-bottom:12px!important}.ur-pl-md-3,.ur-px-md-3{padding-left:12px!important}.ur-p-md-4{padding:16px!important}.ur-pt-md-4,.ur-py-md-4{padding-top:16px!important}.ur-pr-md-4,.ur-px-md-4{padding-right:16px!important}.ur-pb-md-4,.ur-py-md-4{padding-bottom:16px!important}.ur-pl-md-4,.ur-px-md-4{padding-left:16px!important}.ur-p-md-5{padding:20px!important}.ur-pt-md-5,.ur-py-md-5{padding-top:20px!important}.ur-pr-md-5,.ur-px-md-5{padding-right:20px!important}.ur-pb-md-5,.ur-py-md-5{padding-bottom:20px!important}.ur-pl-md-5,.ur-px-md-5{padding-left:20px!important}.ur-p-md-6{padding:24px!important}.ur-pt-md-6,.ur-py-md-6{padding-top:24px!important}.ur-pr-md-6,.ur-px-md-6{padding-right:24px!important}.ur-pb-md-6,.ur-py-md-6{padding-bottom:24px!important}.ur-pl-md-6,.ur-px-md-6{padding-left:24px!important}.ur-p-md-7{padding:28px!important}.ur-pt-md-7,.ur-py-md-7{padding-top:28px!important}.ur-pr-md-7,.ur-px-md-7{padding-right:28px!important}.ur-pb-md-7,.ur-py-md-7{padding-bottom:28px!important}.ur-pl-md-7,.ur-px-md-7{padding-left:28px!important}.ur-p-md-8{padding:32px!important}.ur-pt-md-8,.ur-py-md-8{padding-top:32px!important}.ur-pr-md-8,.ur-px-md-8{padding-right:32px!important}.ur-pb-md-8,.ur-py-md-8{padding-bottom:32px!important}.ur-pl-md-8,.ur-px-md-8{padding-left:32px!important}.ur-m-md-n1{margin:-4px!important}.ur-mt-md-n1,.ur-my-md-n1{margin-top:-4px!important}.ur-mr-md-n1,.ur-mx-md-n1{margin-right:-4px!important}.ur-mb-md-n1,.ur-my-md-n1{margin-bottom:-4px!important}.ur-ml-md-n1,.ur-mx-md-n1{margin-left:-4px!important}.ur-m-md-n2{margin:-8px!important}.ur-mt-md-n2,.ur-my-md-n2{margin-top:-8px!important}.ur-mr-md-n2,.ur-mx-md-n2{margin-right:-8px!important}.ur-mb-md-n2,.ur-my-md-n2{margin-bottom:-8px!important}.ur-ml-md-n2,.ur-mx-md-n2{margin-left:-8px!important}.ur-m-md-n3{margin:-12px!important}.ur-mt-md-n3,.ur-my-md-n3{margin-top:-12px!important}.ur-mr-md-n3,.ur-mx-md-n3{margin-right:-12px!important}.ur-mb-md-n3,.ur-my-md-n3{margin-bottom:-12px!important}.ur-ml-md-n3,.ur-mx-md-n3{margin-left:-12px!important}.ur-m-md-n4{margin:-16px!important}.ur-mt-md-n4,.ur-my-md-n4{margin-top:-16px!important}.ur-mr-md-n4,.ur-mx-md-n4{margin-right:-16px!important}.ur-mb-md-n4,.ur-my-md-n4{margin-bottom:-16px!important}.ur-ml-md-n4,.ur-mx-md-n4{margin-left:-16px!important}.ur-m-md-n5{margin:-20px!important}.ur-mt-md-n5,.ur-my-md-n5{margin-top:-20px!important}.ur-mr-md-n5,.ur-mx-md-n5{margin-right:-20px!important}.ur-mb-md-n5,.ur-my-md-n5{margin-bottom:-20px!important}.ur-ml-md-n5,.ur-mx-md-n5{margin-left:-20px!important}.ur-m-md-n6{margin:-24px!important}.ur-mt-md-n6,.ur-my-md-n6{margin-top:-24px!important}.ur-mr-md-n6,.ur-mx-md-n6{margin-right:-24px!important}.ur-mb-md-n6,.ur-my-md-n6{margin-bottom:-24px!important}.ur-ml-md-n6,.ur-mx-md-n6{margin-left:-24px!important}.ur-m-md-n7{margin:-28px!important}.ur-mt-md-n7,.ur-my-md-n7{margin-top:-28px!important}.ur-mr-md-n7,.ur-mx-md-n7{margin-right:-28px!important}.ur-mb-md-n7,.ur-my-md-n7{margin-bottom:-28px!important}.ur-ml-md-n7,.ur-mx-md-n7{margin-left:-28px!important}.ur-m-md-n8{margin:-32px!important}.ur-mt-md-n8,.ur-my-md-n8{margin-top:-32px!important}.ur-mr-md-n8,.ur-mx-md-n8{margin-right:-32px!important}.ur-mb-md-n8,.ur-my-md-n8{margin-bottom:-32px!important}.ur-ml-md-n8,.ur-mx-md-n8{margin-left:-32px!important}.ur-m-md-auto{margin:auto!important}.ur-mt-md-auto,.ur-my-md-auto{margin-top:auto!important}.ur-mr-md-auto,.ur-mx-md-auto{margin-right:auto!important}.ur-mb-md-auto,.ur-my-md-auto{margin-bottom:auto!important}.ur-ml-md-auto,.ur-mx-md-auto{margin-left:auto!important}}@media (min-width:992px){.ur-m-lg-0{margin:0!important}.ur-mt-lg-0,.ur-my-lg-0{margin-top:0!important}.ur-mr-lg-0,.ur-mx-lg-0{margin-right:0!important}.ur-mb-lg-0,.ur-my-lg-0{margin-bottom:0!important}.ur-ml-lg-0,.ur-mx-lg-0{margin-left:0!important}.ur-m-lg-1{margin:4px!important}.ur-mt-lg-1,.ur-my-lg-1{margin-top:4px!important}.ur-mr-lg-1,.ur-mx-lg-1{margin-right:4px!important}.ur-mb-lg-1,.ur-my-lg-1{margin-bottom:4px!important}.ur-ml-lg-1,.ur-mx-lg-1{margin-left:4px!important}.ur-m-lg-2{margin:8px!important}.ur-mt-lg-2,.ur-my-lg-2{margin-top:8px!important}.ur-mr-lg-2,.ur-mx-lg-2{margin-right:8px!important}.ur-mb-lg-2,.ur-my-lg-2{margin-bottom:8px!important}.ur-ml-lg-2,.ur-mx-lg-2{margin-left:8px!important}.ur-m-lg-3{margin:12px!important}.ur-mt-lg-3,.ur-my-lg-3{margin-top:12px!important}.ur-mr-lg-3,.ur-mx-lg-3{margin-right:12px!important}.ur-mb-lg-3,.ur-my-lg-3{margin-bottom:12px!important}.ur-ml-lg-3,.ur-mx-lg-3{margin-left:12px!important}.ur-m-lg-4{margin:16px!important}.ur-mt-lg-4,.ur-my-lg-4{margin-top:16px!important}.ur-mr-lg-4,.ur-mx-lg-4{margin-right:16px!important}.ur-mb-lg-4,.ur-my-lg-4{margin-bottom:16px!important}.ur-ml-lg-4,.ur-mx-lg-4{margin-left:16px!important}.ur-m-lg-5{margin:20px!important}.ur-mt-lg-5,.ur-my-lg-5{margin-top:20px!important}.ur-mr-lg-5,.ur-mx-lg-5{margin-right:20px!important}.ur-mb-lg-5,.ur-my-lg-5{margin-bottom:20px!important}.ur-ml-lg-5,.ur-mx-lg-5{margin-left:20px!important}.ur-m-lg-6{margin:24px!important}.ur-mt-lg-6,.ur-my-lg-6{margin-top:24px!important}.ur-mr-lg-6,.ur-mx-lg-6{margin-right:24px!important}.ur-mb-lg-6,.ur-my-lg-6{margin-bottom:24px!important}.ur-ml-lg-6,.ur-mx-lg-6{margin-left:24px!important}.ur-m-lg-7{margin:28px!important}.ur-mt-lg-7,.ur-my-lg-7{margin-top:28px!important}.ur-mr-lg-7,.ur-mx-lg-7{margin-right:28px!important}.ur-mb-lg-7,.ur-my-lg-7{margin-bottom:28px!important}.ur-ml-lg-7,.ur-mx-lg-7{margin-left:28px!important}.ur-m-lg-8{margin:32px!important}.ur-mt-lg-8,.ur-my-lg-8{margin-top:32px!important}.ur-mr-lg-8,.ur-mx-lg-8{margin-right:32px!important}.ur-mb-lg-8,.ur-my-lg-8{margin-bottom:32px!important}.ur-ml-lg-8,.ur-mx-lg-8{margin-left:32px!important}.ur-p-lg-0{padding:0!important}.ur-pt-lg-0,.ur-py-lg-0{padding-top:0!important}.ur-pr-lg-0,.ur-px-lg-0{padding-right:0!important}.ur-pb-lg-0,.ur-py-lg-0{padding-bottom:0!important}.ur-pl-lg-0,.ur-px-lg-0{padding-left:0!important}.ur-p-lg-1{padding:4px!important}.ur-pt-lg-1,.ur-py-lg-1{padding-top:4px!important}.ur-pr-lg-1,.ur-px-lg-1{padding-right:4px!important}.ur-pb-lg-1,.ur-py-lg-1{padding-bottom:4px!important}.ur-pl-lg-1,.ur-px-lg-1{padding-left:4px!important}.ur-p-lg-2{padding:8px!important}.ur-pt-lg-2,.ur-py-lg-2{padding-top:8px!important}.ur-pr-lg-2,.ur-px-lg-2{padding-right:8px!important}.ur-pb-lg-2,.ur-py-lg-2{padding-bottom:8px!important}.ur-pl-lg-2,.ur-px-lg-2{padding-left:8px!important}.ur-p-lg-3{padding:12px!important}.ur-pt-lg-3,.ur-py-lg-3{padding-top:12px!important}.ur-pr-lg-3,.ur-px-lg-3{padding-right:12px!important}.ur-pb-lg-3,.ur-py-lg-3{padding-bottom:12px!important}.ur-pl-lg-3,.ur-px-lg-3{padding-left:12px!important}.ur-p-lg-4{padding:16px!important}.ur-pt-lg-4,.ur-py-lg-4{padding-top:16px!important}.ur-pr-lg-4,.ur-px-lg-4{padding-right:16px!important}.ur-pb-lg-4,.ur-py-lg-4{padding-bottom:16px!important}.ur-pl-lg-4,.ur-px-lg-4{padding-left:16px!important}.ur-p-lg-5{padding:20px!important}.ur-pt-lg-5,.ur-py-lg-5{padding-top:20px!important}.ur-pr-lg-5,.ur-px-lg-5{padding-right:20px!important}.ur-pb-lg-5,.ur-py-lg-5{padding-bottom:20px!important}.ur-pl-lg-5,.ur-px-lg-5{padding-left:20px!important}.ur-p-lg-6{padding:24px!important}.ur-pt-lg-6,.ur-py-lg-6{padding-top:24px!important}.ur-pr-lg-6,.ur-px-lg-6{padding-right:24px!important}.ur-pb-lg-6,.ur-py-lg-6{padding-bottom:24px!important}.ur-pl-lg-6,.ur-px-lg-6{padding-left:24px!important}.ur-p-lg-7{padding:28px!important}.ur-pt-lg-7,.ur-py-lg-7{padding-top:28px!important}.ur-pr-lg-7,.ur-px-lg-7{padding-right:28px!important}.ur-pb-lg-7,.ur-py-lg-7{padding-bottom:28px!important}.ur-pl-lg-7,.ur-px-lg-7{padding-left:28px!important}.ur-p-lg-8{padding:32px!important}.ur-pt-lg-8,.ur-py-lg-8{padding-top:32px!important}.ur-pr-lg-8,.ur-px-lg-8{padding-right:32px!important}.ur-pb-lg-8,.ur-py-lg-8{padding-bottom:32px!important}.ur-pl-lg-8,.ur-px-lg-8{padding-left:32px!important}.ur-m-lg-n1{margin:-4px!important}.ur-mt-lg-n1,.ur-my-lg-n1{margin-top:-4px!important}.ur-mr-lg-n1,.ur-mx-lg-n1{margin-right:-4px!important}.ur-mb-lg-n1,.ur-my-lg-n1{margin-bottom:-4px!important}.ur-ml-lg-n1,.ur-mx-lg-n1{margin-left:-4px!important}.ur-m-lg-n2{margin:-8px!important}.ur-mt-lg-n2,.ur-my-lg-n2{margin-top:-8px!important}.ur-mr-lg-n2,.ur-mx-lg-n2{margin-right:-8px!important}.ur-mb-lg-n2,.ur-my-lg-n2{margin-bottom:-8px!important}.ur-ml-lg-n2,.ur-mx-lg-n2{margin-left:-8px!important}.ur-m-lg-n3{margin:-12px!important}.ur-mt-lg-n3,.ur-my-lg-n3{margin-top:-12px!important}.ur-mr-lg-n3,.ur-mx-lg-n3{margin-right:-12px!important}.ur-mb-lg-n3,.ur-my-lg-n3{margin-bottom:-12px!important}.ur-ml-lg-n3,.ur-mx-lg-n3{margin-left:-12px!important}.ur-m-lg-n4{margin:-16px!important}.ur-mt-lg-n4,.ur-my-lg-n4{margin-top:-16px!important}.ur-mr-lg-n4,.ur-mx-lg-n4{margin-right:-16px!important}.ur-mb-lg-n4,.ur-my-lg-n4{margin-bottom:-16px!important}.ur-ml-lg-n4,.ur-mx-lg-n4{margin-left:-16px!important}.ur-m-lg-n5{margin:-20px!important}.ur-mt-lg-n5,.ur-my-lg-n5{margin-top:-20px!important}.ur-mr-lg-n5,.ur-mx-lg-n5{margin-right:-20px!important}.ur-mb-lg-n5,.ur-my-lg-n5{margin-bottom:-20px!important}.ur-ml-lg-n5,.ur-mx-lg-n5{margin-left:-20px!important}.ur-m-lg-n6{margin:-24px!important}.ur-mt-lg-n6,.ur-my-lg-n6{margin-top:-24px!important}.ur-mr-lg-n6,.ur-mx-lg-n6{margin-right:-24px!important}.ur-mb-lg-n6,.ur-my-lg-n6{margin-bottom:-24px!important}.ur-ml-lg-n6,.ur-mx-lg-n6{margin-left:-24px!important}.ur-m-lg-n7{margin:-28px!important}.ur-mt-lg-n7,.ur-my-lg-n7{margin-top:-28px!important}.ur-mr-lg-n7,.ur-mx-lg-n7{margin-right:-28px!important}.ur-mb-lg-n7,.ur-my-lg-n7{margin-bottom:-28px!important}.ur-ml-lg-n7,.ur-mx-lg-n7{margin-left:-28px!important}.ur-m-lg-n8{margin:-32px!important}.ur-mt-lg-n8,.ur-my-lg-n8{margin-top:-32px!important}.ur-mr-lg-n8,.ur-mx-lg-n8{margin-right:-32px!important}.ur-mb-lg-n8,.ur-my-lg-n8{margin-bottom:-32px!important}.ur-ml-lg-n8,.ur-mx-lg-n8{margin-left:-32px!important}.ur-m-lg-auto{margin:auto!important}.ur-mt-lg-auto,.ur-my-lg-auto{margin-top:auto!important}.ur-mr-lg-auto,.ur-mx-lg-auto{margin-right:auto!important}.ur-mb-lg-auto,.ur-my-lg-auto{margin-bottom:auto!important}.ur-ml-lg-auto,.ur-mx-lg-auto{margin-left:auto!important}}@media (min-width:1200px){.ur-m-xl-0{margin:0!important}.ur-mt-xl-0,.ur-my-xl-0{margin-top:0!important}.ur-mr-xl-0,.ur-mx-xl-0{margin-right:0!important}.ur-mb-xl-0,.ur-my-xl-0{margin-bottom:0!important}.ur-ml-xl-0,.ur-mx-xl-0{margin-left:0!important}.ur-m-xl-1{margin:4px!important}.ur-mt-xl-1,.ur-my-xl-1{margin-top:4px!important}.ur-mr-xl-1,.ur-mx-xl-1{margin-right:4px!important}.ur-mb-xl-1,.ur-my-xl-1{margin-bottom:4px!important}.ur-ml-xl-1,.ur-mx-xl-1{margin-left:4px!important}.ur-m-xl-2{margin:8px!important}.ur-mt-xl-2,.ur-my-xl-2{margin-top:8px!important}.ur-mr-xl-2,.ur-mx-xl-2{margin-right:8px!important}.ur-mb-xl-2,.ur-my-xl-2{margin-bottom:8px!important}.ur-ml-xl-2,.ur-mx-xl-2{margin-left:8px!important}.ur-m-xl-3{margin:12px!important}.ur-mt-xl-3,.ur-my-xl-3{margin-top:12px!important}.ur-mr-xl-3,.ur-mx-xl-3{margin-right:12px!important}.ur-mb-xl-3,.ur-my-xl-3{margin-bottom:12px!important}.ur-ml-xl-3,.ur-mx-xl-3{margin-left:12px!important}.ur-m-xl-4{margin:16px!important}.ur-mt-xl-4,.ur-my-xl-4{margin-top:16px!important}.ur-mr-xl-4,.ur-mx-xl-4{margin-right:16px!important}.ur-mb-xl-4,.ur-my-xl-4{margin-bottom:16px!important}.ur-ml-xl-4,.ur-mx-xl-4{margin-left:16px!important}.ur-m-xl-5{margin:20px!important}.ur-mt-xl-5,.ur-my-xl-5{margin-top:20px!important}.ur-mr-xl-5,.ur-mx-xl-5{margin-right:20px!important}.ur-mb-xl-5,.ur-my-xl-5{margin-bottom:20px!important}.ur-ml-xl-5,.ur-mx-xl-5{margin-left:20px!important}.ur-m-xl-6{margin:24px!important}.ur-mt-xl-6,.ur-my-xl-6{margin-top:24px!important}.ur-mr-xl-6,.ur-mx-xl-6{margin-right:24px!important}.ur-mb-xl-6,.ur-my-xl-6{margin-bottom:24px!important}.ur-ml-xl-6,.ur-mx-xl-6{margin-left:24px!important}.ur-m-xl-7{margin:28px!important}.ur-mt-xl-7,.ur-my-xl-7{margin-top:28px!important}.ur-mr-xl-7,.ur-mx-xl-7{margin-right:28px!important}.ur-mb-xl-7,.ur-my-xl-7{margin-bottom:28px!important}.ur-ml-xl-7,.ur-mx-xl-7{margin-left:28px!important}.ur-m-xl-8{margin:32px!important}.ur-mt-xl-8,.ur-my-xl-8{margin-top:32px!important}.ur-mr-xl-8,.ur-mx-xl-8{margin-right:32px!important}.ur-mb-xl-8,.ur-my-xl-8{margin-bottom:32px!important}.ur-ml-xl-8,.ur-mx-xl-8{margin-left:32px!important}.ur-p-xl-0{padding:0!important}.ur-pt-xl-0,.ur-py-xl-0{padding-top:0!important}.ur-pr-xl-0,.ur-px-xl-0{padding-right:0!important}.ur-pb-xl-0,.ur-py-xl-0{padding-bottom:0!important}.ur-pl-xl-0,.ur-px-xl-0{padding-left:0!important}.ur-p-xl-1{padding:4px!important}.ur-pt-xl-1,.ur-py-xl-1{padding-top:4px!important}.ur-pr-xl-1,.ur-px-xl-1{padding-right:4px!important}.ur-pb-xl-1,.ur-py-xl-1{padding-bottom:4px!important}.ur-pl-xl-1,.ur-px-xl-1{padding-left:4px!important}.ur-p-xl-2{padding:8px!important}.ur-pt-xl-2,.ur-py-xl-2{padding-top:8px!important}.ur-pr-xl-2,.ur-px-xl-2{padding-right:8px!important}.ur-pb-xl-2,.ur-py-xl-2{padding-bottom:8px!important}.ur-pl-xl-2,.ur-px-xl-2{padding-left:8px!important}.ur-p-xl-3{padding:12px!important}.ur-pt-xl-3,.ur-py-xl-3{padding-top:12px!important}.ur-pr-xl-3,.ur-px-xl-3{padding-right:12px!important}.ur-pb-xl-3,.ur-py-xl-3{padding-bottom:12px!important}.ur-pl-xl-3,.ur-px-xl-3{padding-left:12px!important}.ur-p-xl-4{padding:16px!important}.ur-pt-xl-4,.ur-py-xl-4{padding-top:16px!important}.ur-pr-xl-4,.ur-px-xl-4{padding-right:16px!important}.ur-pb-xl-4,.ur-py-xl-4{padding-bottom:16px!important}.ur-pl-xl-4,.ur-px-xl-4{padding-left:16px!important}.ur-p-xl-5{padding:20px!important}.ur-pt-xl-5,.ur-py-xl-5{padding-top:20px!important}.ur-pr-xl-5,.ur-px-xl-5{padding-right:20px!important}.ur-pb-xl-5,.ur-py-xl-5{padding-bottom:20px!important}.ur-pl-xl-5,.ur-px-xl-5{padding-left:20px!important}.ur-p-xl-6{padding:24px!important}.ur-pt-xl-6,.ur-py-xl-6{padding-top:24px!important}.ur-pr-xl-6,.ur-px-xl-6{padding-right:24px!important}.ur-pb-xl-6,.ur-py-xl-6{padding-bottom:24px!important}.ur-pl-xl-6,.ur-px-xl-6{padding-left:24px!important}.ur-p-xl-7{padding:28px!important}.ur-pt-xl-7,.ur-py-xl-7{padding-top:28px!important}.ur-pr-xl-7,.ur-px-xl-7{padding-right:28px!important}.ur-pb-xl-7,.ur-py-xl-7{padding-bottom:28px!important}.ur-pl-xl-7,.ur-px-xl-7{padding-left:28px!important}.ur-p-xl-8{padding:32px!important}.ur-pt-xl-8,.ur-py-xl-8{padding-top:32px!important}.ur-pr-xl-8,.ur-px-xl-8{padding-right:32px!important}.ur-pb-xl-8,.ur-py-xl-8{padding-bottom:32px!important}.ur-pl-xl-8,.ur-px-xl-8{padding-left:32px!important}.ur-m-xl-n1{margin:-4px!important}.ur-mt-xl-n1,.ur-my-xl-n1{margin-top:-4px!important}.ur-mr-xl-n1,.ur-mx-xl-n1{margin-right:-4px!important}.ur-mb-xl-n1,.ur-my-xl-n1{margin-bottom:-4px!important}.ur-ml-xl-n1,.ur-mx-xl-n1{margin-left:-4px!important}.ur-m-xl-n2{margin:-8px!important}.ur-mt-xl-n2,.ur-my-xl-n2{margin-top:-8px!important}.ur-mr-xl-n2,.ur-mx-xl-n2{margin-right:-8px!important}.ur-mb-xl-n2,.ur-my-xl-n2{margin-bottom:-8px!important}.ur-ml-xl-n2,.ur-mx-xl-n2{margin-left:-8px!important}.ur-m-xl-n3{margin:-12px!important}.ur-mt-xl-n3,.ur-my-xl-n3{margin-top:-12px!important}.ur-mr-xl-n3,.ur-mx-xl-n3{margin-right:-12px!important}.ur-mb-xl-n3,.ur-my-xl-n3{margin-bottom:-12px!important}.ur-ml-xl-n3,.ur-mx-xl-n3{margin-left:-12px!important}.ur-m-xl-n4{margin:-16px!important}.ur-mt-xl-n4,.ur-my-xl-n4{margin-top:-16px!important}.ur-mr-xl-n4,.ur-mx-xl-n4{margin-right:-16px!important}.ur-mb-xl-n4,.ur-my-xl-n4{margin-bottom:-16px!important}.ur-ml-xl-n4,.ur-mx-xl-n4{margin-left:-16px!important}.ur-m-xl-n5{margin:-20px!important}.ur-mt-xl-n5,.ur-my-xl-n5{margin-top:-20px!important}.ur-mr-xl-n5,.ur-mx-xl-n5{margin-right:-20px!important}.ur-mb-xl-n5,.ur-my-xl-n5{margin-bottom:-20px!important}.ur-ml-xl-n5,.ur-mx-xl-n5{margin-left:-20px!important}.ur-m-xl-n6{margin:-24px!important}.ur-mt-xl-n6,.ur-my-xl-n6{margin-top:-24px!important}.ur-mr-xl-n6,.ur-mx-xl-n6{margin-right:-24px!important}.ur-mb-xl-n6,.ur-my-xl-n6{margin-bottom:-24px!important}.ur-ml-xl-n6,.ur-mx-xl-n6{margin-left:-24px!important}.ur-m-xl-n7{margin:-28px!important}.ur-mt-xl-n7,.ur-my-xl-n7{margin-top:-28px!important}.ur-mr-xl-n7,.ur-mx-xl-n7{margin-right:-28px!important}.ur-mb-xl-n7,.ur-my-xl-n7{margin-bottom:-28px!important}.ur-ml-xl-n7,.ur-mx-xl-n7{margin-left:-28px!important}.ur-m-xl-n8{margin:-32px!important}.ur-mt-xl-n8,.ur-my-xl-n8{margin-top:-32px!important}.ur-mr-xl-n8,.ur-mx-xl-n8{margin-right:-32px!important}.ur-mb-xl-n8,.ur-my-xl-n8{margin-bottom:-32px!important}.ur-ml-xl-n8,.ur-mx-xl-n8{margin-left:-32px!important}.ur-m-xl-auto{margin:auto!important}.ur-mt-xl-auto,.ur-my-xl-auto{margin-top:auto!important}.ur-mr-xl-auto,.ur-mx-xl-auto{margin-right:auto!important}.ur-mb-xl-auto,.ur-my-xl-auto{margin-bottom:auto!important}.ur-ml-xl-auto,.ur-mx-xl-auto{margin-left:auto!important}}@media (min-width:1400px){.ur-m-xxl-0{margin:0!important}.ur-mt-xxl-0,.ur-my-xxl-0{margin-top:0!important}.ur-mr-xxl-0,.ur-mx-xxl-0{margin-right:0!important}.ur-mb-xxl-0,.ur-my-xxl-0{margin-bottom:0!important}.ur-ml-xxl-0,.ur-mx-xxl-0{margin-left:0!important}.ur-m-xxl-1{margin:4px!important}.ur-mt-xxl-1,.ur-my-xxl-1{margin-top:4px!important}.ur-mr-xxl-1,.ur-mx-xxl-1{margin-right:4px!important}.ur-mb-xxl-1,.ur-my-xxl-1{margin-bottom:4px!important}.ur-ml-xxl-1,.ur-mx-xxl-1{margin-left:4px!important}.ur-m-xxl-2{margin:8px!important}.ur-mt-xxl-2,.ur-my-xxl-2{margin-top:8px!important}.ur-mr-xxl-2,.ur-mx-xxl-2{margin-right:8px!important}.ur-mb-xxl-2,.ur-my-xxl-2{margin-bottom:8px!important}.ur-ml-xxl-2,.ur-mx-xxl-2{margin-left:8px!important}.ur-m-xxl-3{margin:12px!important}.ur-mt-xxl-3,.ur-my-xxl-3{margin-top:12px!important}.ur-mr-xxl-3,.ur-mx-xxl-3{margin-right:12px!important}.ur-mb-xxl-3,.ur-my-xxl-3{margin-bottom:12px!important}.ur-ml-xxl-3,.ur-mx-xxl-3{margin-left:12px!important}.ur-m-xxl-4{margin:16px!important}.ur-mt-xxl-4,.ur-my-xxl-4{margin-top:16px!important}.ur-mr-xxl-4,.ur-mx-xxl-4{margin-right:16px!important}.ur-mb-xxl-4,.ur-my-xxl-4{margin-bottom:16px!important}.ur-ml-xxl-4,.ur-mx-xxl-4{margin-left:16px!important}.ur-m-xxl-5{margin:20px!important}.ur-mt-xxl-5,.ur-my-xxl-5{margin-top:20px!important}.ur-mr-xxl-5,.ur-mx-xxl-5{margin-right:20px!important}.ur-mb-xxl-5,.ur-my-xxl-5{margin-bottom:20px!important}.ur-ml-xxl-5,.ur-mx-xxl-5{margin-left:20px!important}.ur-m-xxl-6{margin:24px!important}.ur-mt-xxl-6,.ur-my-xxl-6{margin-top:24px!important}.ur-mr-xxl-6,.ur-mx-xxl-6{margin-right:24px!important}.ur-mb-xxl-6,.ur-my-xxl-6{margin-bottom:24px!important}.ur-ml-xxl-6,.ur-mx-xxl-6{margin-left:24px!important}.ur-m-xxl-7{margin:28px!important}.ur-mt-xxl-7,.ur-my-xxl-7{margin-top:28px!important}.ur-mr-xxl-7,.ur-mx-xxl-7{margin-right:28px!important}.ur-mb-xxl-7,.ur-my-xxl-7{margin-bottom:28px!important}.ur-ml-xxl-7,.ur-mx-xxl-7{margin-left:28px!important}.ur-m-xxl-8{margin:32px!important}.ur-mt-xxl-8,.ur-my-xxl-8{margin-top:32px!important}.ur-mr-xxl-8,.ur-mx-xxl-8{margin-right:32px!important}.ur-mb-xxl-8,.ur-my-xxl-8{margin-bottom:32px!important}.ur-ml-xxl-8,.ur-mx-xxl-8{margin-left:32px!important}.ur-p-xxl-0{padding:0!important}.ur-pt-xxl-0,.ur-py-xxl-0{padding-top:0!important}.ur-pr-xxl-0,.ur-px-xxl-0{padding-right:0!important}.ur-pb-xxl-0,.ur-py-xxl-0{padding-bottom:0!important}.ur-pl-xxl-0,.ur-px-xxl-0{padding-left:0!important}.ur-p-xxl-1{padding:4px!important}.ur-pt-xxl-1,.ur-py-xxl-1{padding-top:4px!important}.ur-pr-xxl-1,.ur-px-xxl-1{padding-right:4px!important}.ur-pb-xxl-1,.ur-py-xxl-1{padding-bottom:4px!important}.ur-pl-xxl-1,.ur-px-xxl-1{padding-left:4px!important}.ur-p-xxl-2{padding:8px!important}.ur-pt-xxl-2,.ur-py-xxl-2{padding-top:8px!important}.ur-pr-xxl-2,.ur-px-xxl-2{padding-right:8px!important}.ur-pb-xxl-2,.ur-py-xxl-2{padding-bottom:8px!important}.ur-pl-xxl-2,.ur-px-xxl-2{padding-left:8px!important}.ur-p-xxl-3{padding:12px!important}.ur-pt-xxl-3,.ur-py-xxl-3{padding-top:12px!important}.ur-pr-xxl-3,.ur-px-xxl-3{padding-right:12px!important}.ur-pb-xxl-3,.ur-py-xxl-3{padding-bottom:12px!important}.ur-pl-xxl-3,.ur-px-xxl-3{padding-left:12px!important}.ur-p-xxl-4{padding:16px!important}.ur-pt-xxl-4,.ur-py-xxl-4{padding-top:16px!important}.ur-pr-xxl-4,.ur-px-xxl-4{padding-right:16px!important}.ur-pb-xxl-4,.ur-py-xxl-4{padding-bottom:16px!important}.ur-pl-xxl-4,.ur-px-xxl-4{padding-left:16px!important}.ur-p-xxl-5{padding:20px!important}.ur-pt-xxl-5,.ur-py-xxl-5{padding-top:20px!important}.ur-pr-xxl-5,.ur-px-xxl-5{padding-right:20px!important}.ur-pb-xxl-5,.ur-py-xxl-5{padding-bottom:20px!important}.ur-pl-xxl-5,.ur-px-xxl-5{padding-left:20px!important}.ur-p-xxl-6{padding:24px!important}.ur-pt-xxl-6,.ur-py-xxl-6{padding-top:24px!important}.ur-pr-xxl-6,.ur-px-xxl-6{padding-right:24px!important}.ur-pb-xxl-6,.ur-py-xxl-6{padding-bottom:24px!important}.ur-pl-xxl-6,.ur-px-xxl-6{padding-left:24px!important}.ur-p-xxl-7{padding:28px!important}.ur-pt-xxl-7,.ur-py-xxl-7{padding-top:28px!important}.ur-pr-xxl-7,.ur-px-xxl-7{padding-right:28px!important}.ur-pb-xxl-7,.ur-py-xxl-7{padding-bottom:28px!important}.ur-pl-xxl-7,.ur-px-xxl-7{padding-left:28px!important}.ur-p-xxl-8{padding:32px!important}.ur-pt-xxl-8,.ur-py-xxl-8{padding-top:32px!important}.ur-pr-xxl-8,.ur-px-xxl-8{padding-right:32px!important}.ur-pb-xxl-8,.ur-py-xxl-8{padding-bottom:32px!important}.ur-pl-xxl-8,.ur-px-xxl-8{padding-left:32px!important}.ur-m-xxl-n1{margin:-4px!important}.ur-mt-xxl-n1,.ur-my-xxl-n1{margin-top:-4px!important}.ur-mr-xxl-n1,.ur-mx-xxl-n1{margin-right:-4px!important}.ur-mb-xxl-n1,.ur-my-xxl-n1{margin-bottom:-4px!important}.ur-ml-xxl-n1,.ur-mx-xxl-n1{margin-left:-4px!important}.ur-m-xxl-n2{margin:-8px!important}.ur-mt-xxl-n2,.ur-my-xxl-n2{margin-top:-8px!important}.ur-mr-xxl-n2,.ur-mx-xxl-n2{margin-right:-8px!important}.ur-mb-xxl-n2,.ur-my-xxl-n2{margin-bottom:-8px!important}.ur-ml-xxl-n2,.ur-mx-xxl-n2{margin-left:-8px!important}.ur-m-xxl-n3{margin:-12px!important}.ur-mt-xxl-n3,.ur-my-xxl-n3{margin-top:-12px!important}.ur-mr-xxl-n3,.ur-mx-xxl-n3{margin-right:-12px!important}.ur-mb-xxl-n3,.ur-my-xxl-n3{margin-bottom:-12px!important}.ur-ml-xxl-n3,.ur-mx-xxl-n3{margin-left:-12px!important}.ur-m-xxl-n4{margin:-16px!important}.ur-mt-xxl-n4,.ur-my-xxl-n4{margin-top:-16px!important}.ur-mr-xxl-n4,.ur-mx-xxl-n4{margin-right:-16px!important}.ur-mb-xxl-n4,.ur-my-xxl-n4{margin-bottom:-16px!important}.ur-ml-xxl-n4,.ur-mx-xxl-n4{margin-left:-16px!important}.ur-m-xxl-n5{margin:-20px!important}.ur-mt-xxl-n5,.ur-my-xxl-n5{margin-top:-20px!important}.ur-mr-xxl-n5,.ur-mx-xxl-n5{margin-right:-20px!important}.ur-mb-xxl-n5,.ur-my-xxl-n5{margin-bottom:-20px!important}.ur-ml-xxl-n5,.ur-mx-xxl-n5{margin-left:-20px!important}.ur-m-xxl-n6{margin:-24px!important}.ur-mt-xxl-n6,.ur-my-xxl-n6{margin-top:-24px!important}.ur-mr-xxl-n6,.ur-mx-xxl-n6{margin-right:-24px!important}.ur-mb-xxl-n6,.ur-my-xxl-n6{margin-bottom:-24px!important}.ur-ml-xxl-n6,.ur-mx-xxl-n6{margin-left:-24px!important}.ur-m-xxl-n7{margin:-28px!important}.ur-mt-xxl-n7,.ur-my-xxl-n7{margin-top:-28px!important}.ur-mr-xxl-n7,.ur-mx-xxl-n7{margin-right:-28px!important}.ur-mb-xxl-n7,.ur-my-xxl-n7{margin-bottom:-28px!important}.ur-ml-xxl-n7,.ur-mx-xxl-n7{margin-left:-28px!important}.ur-m-xxl-n8{margin:-32px!important}.ur-mt-xxl-n8,.ur-my-xxl-n8{margin-top:-32px!important}.ur-mr-xxl-n8,.ur-mx-xxl-n8{margin-right:-32px!important}.ur-mb-xxl-n8,.ur-my-xxl-n8{margin-bottom:-32px!important}.ur-ml-xxl-n8,.ur-mx-xxl-n8{margin-left:-32px!important}.ur-m-xxl-auto{margin:auto!important}.ur-mt-xxl-auto,.ur-my-xxl-auto{margin-top:auto!important}.ur-mr-xxl-auto,.ur-mx-xxl-auto{margin-right:auto!important}.ur-mb-xxl-auto,.ur-my-xxl-auto{margin-bottom:auto!important}.ur-ml-xxl-auto,.ur-mx-xxl-auto{margin-left:auto!important}}.pt-0{padding-top:0}.pb-0{padding-bottom:0}.ur-container,.ur-container-full,.ur-container-lg,.ur-container-md,.ur-container-sm,.ur-container-xl,.ur-container-xxl{width:100%;padding-right:12px;padding-left:12px;margin-right:auto;margin-left:auto}.ur-container *,.ur-container ::after,.ur-container ::before,.ur-container-full *,.ur-container-full ::after,.ur-container-full ::before,.ur-container-lg *,.ur-container-lg ::after,.ur-container-lg ::before,.ur-container-md *,.ur-container-md ::after,.ur-container-md ::before,.ur-container-sm *,.ur-container-sm ::after,.ur-container-sm ::before,.ur-container-xl *,.ur-container-xl ::after,.ur-container-xl ::before,.ur-container-xxl *,.ur-container-xxl ::after,.ur-container-xxl ::before{box-sizing:border-box}@media (min-width:576px){.ur-container,.ur-container-sm{max-width:540px}}@media (min-width:768px){.ur-container,.ur-container-md,.ur-container-sm{max-width:720px}}@media (min-width:992px){.ur-container,.ur-container-lg,.ur-container-md,.ur-container-sm{max-width:960px}}@media (min-width:1200px){.ur-container,.ur-container-lg,.ur-container-md,.ur-container-sm,.ur-container-xl{max-width:1140px}}@media (min-width:1400px){.ur-container,.ur-container-lg,.ur-container-md,.ur-container-sm,.ur-container-xl,.ur-container-xxl{max-width:1320px}}.ur-row{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-right:-12px;margin-left:-12px}.ur-col,.ur-col-1,.ur-col-10,.ur-col-11,.ur-col-12,.ur-col-2,.ur-col-3,.ur-col-4,.ur-col-5,.ur-col-6,.ur-col-7,.ur-col-8,.ur-col-9,.ur-col-auto,.ur-col-lg,.ur-col-lg-1,.ur-col-lg-10,.ur-col-lg-11,.ur-col-lg-12,.ur-col-lg-2,.ur-col-lg-3,.ur-col-lg-4,.ur-col-lg-5,.ur-col-lg-6,.ur-col-lg-7,.ur-col-lg-8,.ur-col-lg-9,.ur-col-lg-auto,.ur-col-md,.ur-col-md-1,.ur-col-md-10,.ur-col-md-11,.ur-col-md-12,.ur-col-md-2,.ur-col-md-3,.ur-col-md-4,.ur-col-md-5,.ur-col-md-6,.ur-col-md-7,.ur-col-md-8,.ur-col-md-9,.ur-col-md-auto,.ur-col-sm,.ur-col-sm-1,.ur-col-sm-10,.ur-col-sm-11,.ur-col-sm-12,.ur-col-sm-2,.ur-col-sm-3,.ur-col-sm-4,.ur-col-sm-5,.ur-col-sm-6,.ur-col-sm-7,.ur-col-sm-8,.ur-col-sm-9,.ur-col-sm-auto,.ur-col-xl,.ur-col-xl-1,.ur-col-xl-10,.ur-col-xl-11,.ur-col-xl-12,.ur-col-xl-2,.ur-col-xl-3,.ur-col-xl-4,.ur-col-xl-5,.ur-col-xl-6,.ur-col-xl-7,.ur-col-xl-8,.ur-col-xl-9,.ur-col-xl-auto,.ur-col-xxl,.ur-col-xxl-1,.ur-col-xxl-10,.ur-col-xxl-11,.ur-col-xxl-12,.ur-col-xxl-2,.ur-col-xxl-3,.ur-col-xxl-4,.ur-col-xxl-5,.ur-col-xxl-6,.ur-col-xxl-7,.ur-col-xxl-8,.ur-col-xxl-9,.ur-col-xxl-auto{position:relative;width:100%;padding-right:12px;padding-left:12px}.ur-col{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-1{margin-left:8.3333333333%}.ur-offset-2{margin-left:16.6666666667%}.ur-offset-3{margin-left:25%}.ur-offset-4{margin-left:33.3333333333%}.ur-offset-5{margin-left:41.6666666667%}.ur-offset-6{margin-left:50%}.ur-offset-7{margin-left:58.3333333333%}.ur-offset-8{margin-left:66.6666666667%}.ur-offset-9{margin-left:75%}.ur-offset-10{margin-left:83.3333333333%}.ur-offset-11{margin-left:91.6666666667%}.ur-g-0,.ur-gx-0{--bs-gutter-x:0}.ur-g-0,.ur-gy-0{--bs-gutter-y:0}.ur-g-1,.ur-gx-1{--bs-gutter-x:4px}.ur-g-1,.ur-gy-1{--bs-gutter-y:4px}.ur-g-2,.ur-gx-2{--bs-gutter-x:8px}.ur-g-2,.ur-gy-2{--bs-gutter-y:8px}.ur-g-3,.ur-gx-3{--bs-gutter-x:12px}.ur-g-3,.ur-gy-3{--bs-gutter-y:12px}.ur-g-4,.ur-gx-4{--bs-gutter-x:16px}.ur-g-4,.ur-gy-4{--bs-gutter-y:16px}.ur-g-5,.ur-gx-5{--bs-gutter-x:20px}.ur-g-5,.ur-gy-5{--bs-gutter-y:20px}.ur-g-6,.ur-gx-6{--bs-gutter-x:24px}.ur-g-6,.ur-gy-6{--bs-gutter-y:24px}.ur-g-7,.ur-gx-7{--bs-gutter-x:28px}.ur-g-7,.ur-gy-7{--bs-gutter-y:28px}.ur-g-8,.ur-gx-8{--bs-gutter-x:32px}.ur-g-8,.ur-gy-8{--bs-gutter-y:32px}@media (min-width:576px){.ur-col-sm{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-sm-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-sm-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-sm-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-sm-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-sm-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-sm-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-sm-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-sm-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-sm-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-sm-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-sm-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-sm-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-sm-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-sm-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-sm-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-sm-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-sm-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-sm-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-sm-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-sm-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-sm-0{margin-left:0}.ur-offset-sm-1{margin-left:8.3333333333%}.ur-offset-sm-2{margin-left:16.6666666667%}.ur-offset-sm-3{margin-left:25%}.ur-offset-sm-4{margin-left:33.3333333333%}.ur-offset-sm-5{margin-left:41.6666666667%}.ur-offset-sm-6{margin-left:50%}.ur-offset-sm-7{margin-left:58.3333333333%}.ur-offset-sm-8{margin-left:66.6666666667%}.ur-offset-sm-9{margin-left:75%}.ur-offset-sm-10{margin-left:83.3333333333%}.ur-offset-sm-11{margin-left:91.6666666667%}.ur-g-sm-0,.ur-gx-sm-0{--bs-gutter-x:0}.ur-g-sm-0,.ur-gy-sm-0{--bs-gutter-y:0}.ur-g-sm-1,.ur-gx-sm-1{--bs-gutter-x:4px}.ur-g-sm-1,.ur-gy-sm-1{--bs-gutter-y:4px}.ur-g-sm-2,.ur-gx-sm-2{--bs-gutter-x:8px}.ur-g-sm-2,.ur-gy-sm-2{--bs-gutter-y:8px}.ur-g-sm-3,.ur-gx-sm-3{--bs-gutter-x:12px}.ur-g-sm-3,.ur-gy-sm-3{--bs-gutter-y:12px}.ur-g-sm-4,.ur-gx-sm-4{--bs-gutter-x:16px}.ur-g-sm-4,.ur-gy-sm-4{--bs-gutter-y:16px}.ur-g-sm-5,.ur-gx-sm-5{--bs-gutter-x:20px}.ur-g-sm-5,.ur-gy-sm-5{--bs-gutter-y:20px}.ur-g-sm-6,.ur-gx-sm-6{--bs-gutter-x:24px}.ur-g-sm-6,.ur-gy-sm-6{--bs-gutter-y:24px}.ur-g-sm-7,.ur-gx-sm-7{--bs-gutter-x:28px}.ur-g-sm-7,.ur-gy-sm-7{--bs-gutter-y:28px}.ur-g-sm-8,.ur-gx-sm-8{--bs-gutter-x:32px}.ur-g-sm-8,.ur-gy-sm-8{--bs-gutter-y:32px}}@media (min-width:768px){.ur-col-md{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-md-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-md-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-md-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-md-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-md-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-md-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-md-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-md-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-md-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-md-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-md-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-md-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-md-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-md-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-md-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-md-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-md-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-md-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-md-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-md-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-md-0{margin-left:0}.ur-offset-md-1{margin-left:8.3333333333%}.ur-offset-md-2{margin-left:16.6666666667%}.ur-offset-md-3{margin-left:25%}.ur-offset-md-4{margin-left:33.3333333333%}.ur-offset-md-5{margin-left:41.6666666667%}.ur-offset-md-6{margin-left:50%}.ur-offset-md-7{margin-left:58.3333333333%}.ur-offset-md-8{margin-left:66.6666666667%}.ur-offset-md-9{margin-left:75%}.ur-offset-md-10{margin-left:83.3333333333%}.ur-offset-md-11{margin-left:91.6666666667%}.ur-g-md-0,.ur-gx-md-0{--bs-gutter-x:0}.ur-g-md-0,.ur-gy-md-0{--bs-gutter-y:0}.ur-g-md-1,.ur-gx-md-1{--bs-gutter-x:4px}.ur-g-md-1,.ur-gy-md-1{--bs-gutter-y:4px}.ur-g-md-2,.ur-gx-md-2{--bs-gutter-x:8px}.ur-g-md-2,.ur-gy-md-2{--bs-gutter-y:8px}.ur-g-md-3,.ur-gx-md-3{--bs-gutter-x:12px}.ur-g-md-3,.ur-gy-md-3{--bs-gutter-y:12px}.ur-g-md-4,.ur-gx-md-4{--bs-gutter-x:16px}.ur-g-md-4,.ur-gy-md-4{--bs-gutter-y:16px}.ur-g-md-5,.ur-gx-md-5{--bs-gutter-x:20px}.ur-g-md-5,.ur-gy-md-5{--bs-gutter-y:20px}.ur-g-md-6,.ur-gx-md-6{--bs-gutter-x:24px}.ur-g-md-6,.ur-gy-md-6{--bs-gutter-y:24px}.ur-g-md-7,.ur-gx-md-7{--bs-gutter-x:28px}.ur-g-md-7,.ur-gy-md-7{--bs-gutter-y:28px}.ur-g-md-8,.ur-gx-md-8{--bs-gutter-x:32px}.ur-g-md-8,.ur-gy-md-8{--bs-gutter-y:32px}}@media (min-width:992px){.ur-col-lg{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-lg-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-lg-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-lg-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-lg-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-lg-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-lg-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-lg-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-lg-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-lg-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-lg-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-lg-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-lg-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-lg-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-lg-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-lg-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-lg-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-lg-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-lg-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-lg-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-lg-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-lg-0{margin-left:0}.ur-offset-lg-1{margin-left:8.3333333333%}.ur-offset-lg-2{margin-left:16.6666666667%}.ur-offset-lg-3{margin-left:25%}.ur-offset-lg-4{margin-left:33.3333333333%}.ur-offset-lg-5{margin-left:41.6666666667%}.ur-offset-lg-6{margin-left:50%}.ur-offset-lg-7{margin-left:58.3333333333%}.ur-offset-lg-8{margin-left:66.6666666667%}.ur-offset-lg-9{margin-left:75%}.ur-offset-lg-10{margin-left:83.3333333333%}.ur-offset-lg-11{margin-left:91.6666666667%}.ur-g-lg-0,.ur-gx-lg-0{--bs-gutter-x:0}.ur-g-lg-0,.ur-gy-lg-0{--bs-gutter-y:0}.ur-g-lg-1,.ur-gx-lg-1{--bs-gutter-x:4px}.ur-g-lg-1,.ur-gy-lg-1{--bs-gutter-y:4px}.ur-g-lg-2,.ur-gx-lg-2{--bs-gutter-x:8px}.ur-g-lg-2,.ur-gy-lg-2{--bs-gutter-y:8px}.ur-g-lg-3,.ur-gx-lg-3{--bs-gutter-x:12px}.ur-g-lg-3,.ur-gy-lg-3{--bs-gutter-y:12px}.ur-g-lg-4,.ur-gx-lg-4{--bs-gutter-x:16px}.ur-g-lg-4,.ur-gy-lg-4{--bs-gutter-y:16px}.ur-g-lg-5,.ur-gx-lg-5{--bs-gutter-x:20px}.ur-g-lg-5,.ur-gy-lg-5{--bs-gutter-y:20px}.ur-g-lg-6,.ur-gx-lg-6{--bs-gutter-x:24px}.ur-g-lg-6,.ur-gy-lg-6{--bs-gutter-y:24px}.ur-g-lg-7,.ur-gx-lg-7{--bs-gutter-x:28px}.ur-g-lg-7,.ur-gy-lg-7{--bs-gutter-y:28px}.ur-g-lg-8,.ur-gx-lg-8{--bs-gutter-x:32px}.ur-g-lg-8,.ur-gy-lg-8{--bs-gutter-y:32px}}@media (min-width:1200px){.ur-col-xl{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-xl-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-xl-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-xl-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-xl-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-xl-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-xl-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-xl-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-xl-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-xl-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-xl-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-xl-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-xl-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-xl-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-xl-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-xl-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-xl-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-xl-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-xl-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-xl-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-xl-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-xl-0{margin-left:0}.ur-offset-xl-1{margin-left:8.3333333333%}.ur-offset-xl-2{margin-left:16.6666666667%}.ur-offset-xl-3{margin-left:25%}.ur-offset-xl-4{margin-left:33.3333333333%}.ur-offset-xl-5{margin-left:41.6666666667%}.ur-offset-xl-6{margin-left:50%}.ur-offset-xl-7{margin-left:58.3333333333%}.ur-offset-xl-8{margin-left:66.6666666667%}.ur-offset-xl-9{margin-left:75%}.ur-offset-xl-10{margin-left:83.3333333333%}.ur-offset-xl-11{margin-left:91.6666666667%}.ur-g-xl-0,.ur-gx-xl-0{--bs-gutter-x:0}.ur-g-xl-0,.ur-gy-xl-0{--bs-gutter-y:0}.ur-g-xl-1,.ur-gx-xl-1{--bs-gutter-x:4px}.ur-g-xl-1,.ur-gy-xl-1{--bs-gutter-y:4px}.ur-g-xl-2,.ur-gx-xl-2{--bs-gutter-x:8px}.ur-g-xl-2,.ur-gy-xl-2{--bs-gutter-y:8px}.ur-g-xl-3,.ur-gx-xl-3{--bs-gutter-x:12px}.ur-g-xl-3,.ur-gy-xl-3{--bs-gutter-y:12px}.ur-g-xl-4,.ur-gx-xl-4{--bs-gutter-x:16px}.ur-g-xl-4,.ur-gy-xl-4{--bs-gutter-y:16px}.ur-g-xl-5,.ur-gx-xl-5{--bs-gutter-x:20px}.ur-g-xl-5,.ur-gy-xl-5{--bs-gutter-y:20px}.ur-g-xl-6,.ur-gx-xl-6{--bs-gutter-x:24px}.ur-g-xl-6,.ur-gy-xl-6{--bs-gutter-y:24px}.ur-g-xl-7,.ur-gx-xl-7{--bs-gutter-x:28px}.ur-g-xl-7,.ur-gy-xl-7{--bs-gutter-y:28px}.ur-g-xl-8,.ur-gx-xl-8{--bs-gutter-x:32px}.ur-g-xl-8,.ur-gy-xl-8{--bs-gutter-y:32px}}@media (min-width:1400px){.ur-col-xxl{-webkit-box-flex:1;-webkit-flex:1 0 0%;flex:1 0 0%}.ur-row-cols-xxl-auto>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-row-cols-xxl-1>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:100%}.ur-row-cols-xxl-2>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:50%}.ur-row-cols-xxl-3>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:33.3333333333%}.ur-row-cols-xxl-4>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:25%}.ur-row-cols-xxl-5>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:20%}.ur-row-cols-xxl-6>*{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:16.6666666667%}.ur-col-xxl-auto{-webkit-box-flex:0;-webkit-flex:0 0 auto;flex:0 0 auto;width:auto}.ur-col-xxl-1{-webkit-box-flex:0;-webkit-flex:0 0 8.3333333333%;flex:0 0 8.3333333333%;max-width:8.3333333333%}.ur-col-xxl-2{-webkit-box-flex:0;-webkit-flex:0 0 16.6666666667%;flex:0 0 16.6666666667%;max-width:16.6666666667%}.ur-col-xxl-3{-webkit-box-flex:0;-webkit-flex:0 0 25%;flex:0 0 25%;max-width:25%}.ur-col-xxl-4{-webkit-box-flex:0;-webkit-flex:0 0 33.3333333333%;flex:0 0 33.3333333333%;max-width:33.3333333333%}.ur-col-xxl-5{-webkit-box-flex:0;-webkit-flex:0 0 41.6666666667%;flex:0 0 41.6666666667%;max-width:41.6666666667%}.ur-col-xxl-6{-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%;max-width:50%}.ur-col-xxl-7{-webkit-box-flex:0;-webkit-flex:0 0 58.3333333333%;flex:0 0 58.3333333333%;max-width:58.3333333333%}.ur-col-xxl-8{-webkit-box-flex:0;-webkit-flex:0 0 66.6666666667%;flex:0 0 66.6666666667%;max-width:66.6666666667%}.ur-col-xxl-9{-webkit-box-flex:0;-webkit-flex:0 0 75%;flex:0 0 75%;max-width:75%}.ur-col-xxl-10{-webkit-box-flex:0;-webkit-flex:0 0 83.3333333333%;flex:0 0 83.3333333333%;max-width:83.3333333333%}.ur-col-xxl-11{-webkit-box-flex:0;-webkit-flex:0 0 91.6666666667%;flex:0 0 91.6666666667%;max-width:91.6666666667%}.ur-col-xxl-12{-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;max-width:100%}.ur-offset-xxl-0{margin-left:0}.ur-offset-xxl-1{margin-left:8.3333333333%}.ur-offset-xxl-2{margin-left:16.6666666667%}.ur-offset-xxl-3{margin-left:25%}.ur-offset-xxl-4{margin-left:33.3333333333%}.ur-offset-xxl-5{margin-left:41.6666666667%}.ur-offset-xxl-6{margin-left:50%}.ur-offset-xxl-7{margin-left:58.3333333333%}.ur-offset-xxl-8{margin-left:66.6666666667%}.ur-offset-xxl-9{margin-left:75%}.ur-offset-xxl-10{margin-left:83.3333333333%}.ur-offset-xxl-11{margin-left:91.6666666667%}.ur-g-xxl-0,.ur-gx-xxl-0{--bs-gutter-x:0}.ur-g-xxl-0,.ur-gy-xxl-0{--bs-gutter-y:0}.ur-g-xxl-1,.ur-gx-xxl-1{--bs-gutter-x:4px}.ur-g-xxl-1,.ur-gy-xxl-1{--bs-gutter-y:4px}.ur-g-xxl-2,.ur-gx-xxl-2{--bs-gutter-x:8px}.ur-g-xxl-2,.ur-gy-xxl-2{--bs-gutter-y:8px}.ur-g-xxl-3,.ur-gx-xxl-3{--bs-gutter-x:12px}.ur-g-xxl-3,.ur-gy-xxl-3{--bs-gutter-y:12px}.ur-g-xxl-4,.ur-gx-xxl-4{--bs-gutter-x:16px}.ur-g-xxl-4,.ur-gy-xxl-4{--bs-gutter-y:16px}.ur-g-xxl-5,.ur-gx-xxl-5{--bs-gutter-x:20px}.ur-g-xxl-5,.ur-gy-xxl-5{--bs-gutter-y:20px}.ur-g-xxl-6,.ur-gx-xxl-6{--bs-gutter-x:24px}.ur-g-xxl-6,.ur-gy-xxl-6{--bs-gutter-y:24px}.ur-g-xxl-7,.ur-gx-xxl-7{--bs-gutter-x:28px}.ur-g-xxl-7,.ur-gy-xxl-7{--bs-gutter-y:28px}.ur-g-xxl-8,.ur-gx-xxl-8{--bs-gutter-x:32px}.ur-g-xxl-8,.ur-gy-xxl-8{--bs-gutter-y:32px}}.user-registration-overlay{background-color:rgba(45,53,89,.3);position:absolute;left:0;right:0;top:0;bottom:0;z-index:1}.user-registration-overlay.is-fixed{position:fixed}#wpcontent .user-registration-overlay{margin-left:-20px}.user-registration-overlay .ur-spinner{position:absolute;left:0;right:0;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);margin:0 auto}.user-registration-overlay .ur-spinner::before{width:20px;height:20px}#wpcontent .wrap .user-registration-header{margin:-10px -20px 0 -22px}.user-registration-header{background:#fff;padding:12px 16px}.user-registration_page_user-registration-settings .user-registration-header{background-color:#475bb2;padding:20px 0 0}.user-registration_page_user-registration-settings .user-registration-header .ur-scroll-ui__scroll-nav__icon{color:#fff}.user-registration_page_user-registration-settings .user-registration-header .ur-scroll-ui__scroll-nav--backward{background:-webkit-gradient(linear,right top,left top,from(rgba(71,91,178,.3)),color-stop(rgba(71,91,178,.85)),to(#475bb2));background:-webkit-linear-gradient(right,rgba(71,91,178,.3),rgba(71,91,178,.85),#475bb2);background:linear-gradient(to left,rgba(71,91,178,.3),rgba(71,91,178,.85),#475bb2)}.user-registration_page_user-registration-settings .user-registration-header .ur-scroll-ui__scroll-nav--forward{background:-webkit-gradient(linear,left top,right top,from(rgba(71,91,178,.3)),color-stop(rgba(71,91,178,.85)),to(#475bb2));background:-webkit-linear-gradient(left,rgba(71,91,178,.3),rgba(71,91,178,.85),#475bb2);background:linear-gradient(to right,rgba(71,91,178,.3),rgba(71,91,178,.85),#475bb2)}.user-registration_page_user-registration-settings .user-registration-header .subsubsub{background:#fff;font-size:14px;padding:0 16px;margin-top:0;float:none;text-align:left}.user-registration_page_user-registration-settings .user-registration-header .subsubsub a{color:#2d3559;display:block;font-weight:600;padding:8px 12px}.user-registration_page_user-registration-settings .user-registration-header .subsubsub a.current{color:#475bb2}.user-registration-template-setup{max-width:1074px;margin:40px auto 0}.user-registration-template-setup *,.user-registration-template-setup ::after,.user-registration-template-setup ::before{box-sizing:border-box}.user-registration-template-wrap{cursor:pointer;margin-bottom:24px}.user-registration-template-wrap#user-registration-email-template-blank .user-registration-template-wrap__figure::before{content:'';display:block;background-color:rgba(45,53,89,.2);position:absolute;top:0;bottom:0;width:100%;-webkit-transition:all .3s ease 0s;transition:all .3s ease 0s;opacity:0;visibility:none}.user-registration-template-wrap#user-registration-email-template-blank:hover .user-registration-template-wrap__figure::before{opacity:1;visibility:visible}.user-registration-template-wrap__figure{background-color:#f0f1f5;margin:0;min-height:260px;position:relative;border-radius:4px;overflow:hidden}.user-registration-template-wrap__figure img{max-width:100%;display:block}.user-registration-template-wrap__overlay{background:rgba(45,53,89,.6);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;position:absolute;left:0;right:0;top:0;bottom:0;-webkit-transition:all .3s ease 0s;transition:all .3s ease 0s;visibility:hidden;opacity:0}.user-registration-template-wrap__overlay .button{border-color:#fff}.user-registration-template-wrap__title{color:#4c5477;font-size:16px;font-weight:500}.user-registration-template-wrap__title:hover{color:#475bb2}.user-registration-template-wrap:hover .user-registration-template-wrap__overlay{visibility:visible;opacity:1}@-webkit-keyframes spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-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)}}.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}.toplevel_page_user-registration .shortcode .widefat,.user-registration_page_user-registration-frontend-list .shortcode .widefat{width:calc(100% - 40px)}.toplevel_page_user-registration .shortcode .ur-copy-shortcode,.user-registration_page_user-registration-frontend-list .shortcode .ur-copy-shortcode{padding:4px;line-height:1}.user-registration_page_user-registration-settings .notice{display:none}.ur-spinner{width:16px;height:16px;margin-left:6px;margin-bottom:2px;display:inline-block;vertical-align:middle}.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}.user-registration__wrap *,.user-registration__wrap ::after,.user-registration__wrap ::before{box-sizing:border-box}.ur-export-users-page{margin-top:24px}.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 .nav-tab-inside .postbox .hndle{border-bottom:1px solid #ccd0d4}.swal2-container .user-registration-swal2-modal .ur-export-users-page .nav-tab-content .nav-tab-inside .postbox .swal2-input,.ur-export-users-page .nav-tab-content .nav-tab-inside .postbox .swal2-container .user-registration-swal2-modal .swal2-input,.ur-export-users-page .nav-tab-content .nav-tab-inside .postbox .ur-input{max-width:inherit}.ur-export-users-page .nav-tab-content .hndle,.ur-export-users-page .nav-tab-content .stuffbox .hndle{margin:10px;padding-bottom:10px}.ur-export-users-page .nav-tab-content .stuffbox{padding:10px}.ur-label .user-registration-help-tip{margin-left:2px}.ur_addons_wrap *,.ur_addons_wrap ::after,.ur_addons_wrap ::before{box-sizing:border-box}.ur_addons_wrap .products{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-left:-12px;margin-right:-12px}.ur_addons_wrap .products li{width:20%;padding:0 12px;-webkit-box-flex:0;-webkit-flex:0 0 20%;flex:0 0 20%;margin-bottom:24px}@media only screen and (max-width:1599px){.ur_addons_wrap .products li{width:33.333%;-webkit-box-flex:0;-webkit-flex:0 0 33.333%;flex:0 0 33.333%}}@media only screen and (max-width:768px){.ur_addons_wrap .products li{width:50%;-webkit-box-flex:0;-webkit-flex:0 0 50%;flex:0 0 50%}}@media only screen and (max-width:480px){.ur_addons_wrap .products li{width:100%;-webkit-box-flex:0;-webkit-flex:0 0 100%;flex:0 0 100%;margin-bottom:12px}}.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;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 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 label{display:inline-block}.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,.ur-registered-from h4{color:#2d3559;font-weight:500}.ur-registered-from h4{font-size:16px}.ur-registered-from .ur-field label{font-weight:400;word-break:break-all}.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 .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-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;margin:0;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}.ur-portal-tooltip,.user-registration-help-tip{color:#676d8a;display:inline-block;font-size:22px;font-style:normal;height:16px;line-height:16px;position:relative;vertical-align:middle;width:16px}.ur-portal-tooltip::after,.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}#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)}.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:#37b24d}.ur-builder-message-container .ur-message .ur-success p::before{content:"\f12a";color:#37b24d}.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}.main_header{font-weight:600;font-size:20px;line-height:27px}.ur-p-tag{padding:0 20px 18px 20px;margin:0;font-style:italic}@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 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 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}}
 
assets/css/admin.scss CHANGED
@@ -15,8 +15,8 @@
15
 
16
  // Components
17
  @import "components/badge", "components/button", "components/card",
18
- "components/list-group", "components/modal", "components/nav",
19
- "components/scroll-ui";
20
 
21
  @import "border";
22
  @import "spacing";
@@ -40,6 +40,7 @@
40
 
41
  .toplevel_page_user-registration,
42
  .user-registration_page_user-registration-frontend-list {
 
43
  // Design customize for shortcode in list table
44
  .shortcode {
45
  .widefat {
@@ -58,6 +59,7 @@
58
  display: none;
59
  }
60
  }
 
61
  .ur-spinner {
62
  width: 16px;
63
  height: 16px;
@@ -70,6 +72,7 @@
70
 
71
  .user-registration {
72
  &__wrap {
 
73
  *,
74
  ::before,
75
  ::after {
@@ -114,10 +117,12 @@
114
  margin-left: 2px;
115
  }
116
  }
 
117
  /**
118
  * Addons page
119
  **/
120
  .ur_addons_wrap {
 
121
  *,
122
  ::before,
123
  ::after {
@@ -174,7 +179,7 @@
174
  }
175
  }
176
 
177
- img.extension-thumb + h3 {
178
  display: none;
179
  }
180
 
@@ -369,6 +374,7 @@
369
  top: 50%;
370
  transform: translate(-50%, -50%);
371
  width: 500px;
 
372
  article {
373
  overflow: auto;
374
  }
@@ -460,6 +466,7 @@
460
  p {
461
  margin: 1.5em 0;
462
  }
 
463
  p:first-child {
464
  margin-top: 0;
465
  }
@@ -467,6 +474,7 @@
467
  p:last-child {
468
  margin-bottom: 0;
469
  }
 
470
  .pagination {
471
  padding: 10px 0 0;
472
  text-align: center;
@@ -661,6 +669,7 @@
661
  }
662
 
663
  input {
 
664
  &[type="radio"],
665
  &[type="checkbox"] {
666
  opacity: 1;
@@ -853,7 +862,7 @@
853
  font-weight: 500;
854
  color: $gray_base;
855
 
856
- ~ hr {
857
  border-top: 1px solid $border_color;
858
  }
859
  }
@@ -1183,8 +1192,7 @@
1183
  }
1184
 
1185
  &.ui-sortable-helper {
1186
- box-shadow: 0 0 10px 5px
1187
- transparentize($gray_base, 0.9);
1188
  }
1189
 
1190
  &.ui-sortable-placeholder {
@@ -1250,7 +1258,7 @@
1250
  }
1251
  }
1252
 
1253
- > li.ur-item-dragged {
1254
  list-style: none;
1255
  width: 100%;
1256
  text-align: center;
@@ -1314,6 +1322,7 @@
1314
  .ur-registered-item {
1315
  margin-bottom: 0;
1316
  }
 
1317
  .user-registration-dragged-me {
1318
  display: none;
1319
  }
@@ -1554,7 +1563,7 @@
1554
  flex-wrap: wrap;
1555
  margin-bottom: 8px;
1556
 
1557
- > div {
1558
  margin-right: 8px;
1559
  }
1560
 
@@ -1696,7 +1705,7 @@ img.tips {
1696
  .ur-portal-tooltip {
1697
  color: $color_gray_two;
1698
  display: inline-block;
1699
- font-size: 16px;
1700
  font-style: normal;
1701
  height: 16px;
1702
  line-height: 16px;
@@ -1847,6 +1856,7 @@ body {
1847
 
1848
  p {
1849
  margin: 8px 0;
 
1850
  &::before,
1851
  &::after {
1852
  font-family: dashicons;
@@ -1896,14 +1906,12 @@ body {
1896
  &.entered {
1897
  display: block;
1898
  height: 50px;
1899
- animation: 240ms cubic-bezier(0.175, 0.885, 0.32, 1.175) 0s 1 normal
1900
- both open-message;
1901
  }
1902
 
1903
  &.exiting {
1904
  display: block;
1905
- animation: 120ms cubic-bezier(0.4, 0, 1, 1) 0s 1 normal both
1906
- close-message;
1907
  }
1908
 
1909
  &:first-child {
@@ -1912,6 +1920,18 @@ body {
1912
  }
1913
  }
1914
 
 
 
 
 
 
 
 
 
 
 
 
 
1915
  @media screen and (max-width: 1400px) {
1916
  .ur-registered-from {
1917
  .urcl-rules {
@@ -1946,6 +1966,7 @@ body {
1946
  float: none;
1947
  width: 100%;
1948
  }
 
1949
  .ur-single-row .ur-grid-lists,
1950
  .ur-single-row .ur-grid-lists .ur-grid-list-item,
1951
  .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item {
15
 
16
  // Components
17
  @import "components/badge", "components/button", "components/card",
18
+ "components/list-group", "components/modal", "components/nav",
19
+ "components/scroll-ui";
20
 
21
  @import "border";
22
  @import "spacing";
40
 
41
  .toplevel_page_user-registration,
42
  .user-registration_page_user-registration-frontend-list {
43
+
44
  // Design customize for shortcode in list table
45
  .shortcode {
46
  .widefat {
59
  display: none;
60
  }
61
  }
62
+
63
  .ur-spinner {
64
  width: 16px;
65
  height: 16px;
72
 
73
  .user-registration {
74
  &__wrap {
75
+
76
  *,
77
  ::before,
78
  ::after {
117
  margin-left: 2px;
118
  }
119
  }
120
+
121
  /**
122
  * Addons page
123
  **/
124
  .ur_addons_wrap {
125
+
126
  *,
127
  ::before,
128
  ::after {
179
  }
180
  }
181
 
182
+ img.extension-thumb+h3 {
183
  display: none;
184
  }
185
 
374
  top: 50%;
375
  transform: translate(-50%, -50%);
376
  width: 500px;
377
+
378
  article {
379
  overflow: auto;
380
  }
466
  p {
467
  margin: 1.5em 0;
468
  }
469
+
470
  p:first-child {
471
  margin-top: 0;
472
  }
474
  p:last-child {
475
  margin-bottom: 0;
476
  }
477
+
478
  .pagination {
479
  padding: 10px 0 0;
480
  text-align: center;
669
  }
670
 
671
  input {
672
+
673
  &[type="radio"],
674
  &[type="checkbox"] {
675
  opacity: 1;
862
  font-weight: 500;
863
  color: $gray_base;
864
 
865
+ ~hr {
866
  border-top: 1px solid $border_color;
867
  }
868
  }
1192
  }
1193
 
1194
  &.ui-sortable-helper {
1195
+ box-shadow: 0 0 10px 5px transparentize($gray_base, 0.9);
 
1196
  }
1197
 
1198
  &.ui-sortable-placeholder {
1258
  }
1259
  }
1260
 
1261
+ >li.ur-item-dragged {
1262
  list-style: none;
1263
  width: 100%;
1264
  text-align: center;
1322
  .ur-registered-item {
1323
  margin-bottom: 0;
1324
  }
1325
+
1326
  .user-registration-dragged-me {
1327
  display: none;
1328
  }
1563
  flex-wrap: wrap;
1564
  margin-bottom: 8px;
1565
 
1566
+ >div {
1567
  margin-right: 8px;
1568
  }
1569
 
1705
  .ur-portal-tooltip {
1706
  color: $color_gray_two;
1707
  display: inline-block;
1708
+ font-size: 22px;
1709
  font-style: normal;
1710
  height: 16px;
1711
  line-height: 16px;
1856
 
1857
  p {
1858
  margin: 8px 0;
1859
+
1860
  &::before,
1861
  &::after {
1862
  font-family: dashicons;
1906
  &.entered {
1907
  display: block;
1908
  height: 50px;
1909
+ animation: 240ms cubic-bezier(0.175, 0.885, 0.32, 1.175) 0s 1 normal both open-message;
 
1910
  }
1911
 
1912
  &.exiting {
1913
  display: block;
1914
+ animation: 120ms cubic-bezier(0.4, 0, 1, 1) 0s 1 normal both close-message;
 
1915
  }
1916
 
1917
  &:first-child {
1920
  }
1921
  }
1922
 
1923
+ .main_header {
1924
+ font-weight: 600;
1925
+ font-size: 20px;
1926
+ line-height: 27px;
1927
+ }
1928
+
1929
+ .ur-p-tag {
1930
+ padding: 0px 20px 18px 20px;
1931
+ margin: 0px;
1932
+ font-style: italic;
1933
+ }
1934
+
1935
  @media screen and (max-width: 1400px) {
1936
  .ur-registered-from {
1937
  .urcl-rules {
1966
  float: none;
1967
  width: 100%;
1968
  }
1969
+
1970
  .ur-single-row .ur-grid-lists,
1971
  .ur-single-row .ur-grid-lists .ur-grid-list-item,
1972
  .ur-single-row .ur-grid-lists .ur-grid-list-item .ur-selected-item {
assets/css/components/_card.scss CHANGED
@@ -17,6 +17,7 @@
17
  font-size: 1.25em;
18
  line-height: 1.3;
19
  margin: 0;
 
20
  }
21
 
22
  &__body {
17
  font-size: 1.25em;
18
  line-height: 1.3;
19
  margin: 0;
20
+ font-weight: 600;
21
  }
22
 
23
  &__body {
assets/css/components/_modal.scss CHANGED
@@ -1,4 +1,4 @@
1
- .user-registration-page{
2
  &.user-registration-modal-open {
3
  overflow: hidden; // Hide scrollbar on body when modal is open.
4
 
@@ -80,7 +80,7 @@
80
 
81
  &::before,
82
  &::after {
83
- content: '';
84
  height: 2px;
85
  width: 16px;
86
  display: block;
@@ -137,15 +137,14 @@
137
  }
138
 
139
  .swal2-animate-success-icon {
140
- & [class^=swal2-success-line],
141
- & [class^=swal2-success-circular-line] {
142
  animation: none;
143
  }
144
  }
145
 
146
  .swal2-header {
147
  .swal2-icon {
148
- font-size: 28px;
149
  width: 56px;
150
  height: 56px;
151
  line-height: 56px;
@@ -154,7 +153,7 @@
154
  border-radius: 50%;
155
 
156
  .swal2-x-mark {
157
- & [class^=swal2-x-mark-line] {
158
  height: 3px;
159
  width: 28px;
160
  top: 50%;
@@ -162,43 +161,43 @@
162
  right: 0;
163
  margin: 0 auto;
164
 
165
- &[class$=left] {
166
  transform: translateY(-50%) rotate(45deg);
167
  }
168
 
169
- &[class$=right] {
170
  transform: translateY(-50%) rotate(-45deg);
171
  }
172
  }
173
  }
174
 
175
  &.swal2-success {
176
- & [class^=swal2-success-line] {
177
  height: 3px;
178
 
179
- &[class$=tip] {
180
  width: 16px;
181
  top: 56%;
182
  left: 10px;
183
  }
184
 
185
- &[class$=long] {
186
  top: 47%;
187
  width: 32px;
188
  right: 6px;
189
  }
190
  }
191
 
192
- & [class^=swal2-success-circular-line] {
193
  height: 64px;
194
  width: 32px;
195
 
196
- &[class$=left] {
197
  top: -75px;
198
  left: 27px;
199
  }
200
 
201
- &[class$=right] {
202
  top: -26px;
203
  left: 82px;
204
  }
1
+ .user-registration-page {
2
  &.user-registration-modal-open {
3
  overflow: hidden; // Hide scrollbar on body when modal is open.
4
 
80
 
81
  &::before,
82
  &::after {
83
+ content: "";
84
  height: 2px;
85
  width: 16px;
86
  display: block;
137
  }
138
 
139
  .swal2-animate-success-icon {
140
+ & [class^="swal2-success-line"],
141
+ & [class^="swal2-success-circular-line"] {
142
  animation: none;
143
  }
144
  }
145
 
146
  .swal2-header {
147
  .swal2-icon {
 
148
  width: 56px;
149
  height: 56px;
150
  line-height: 56px;
153
  border-radius: 50%;
154
 
155
  .swal2-x-mark {
156
+ & [class^="swal2-x-mark-line"] {
157
  height: 3px;
158
  width: 28px;
159
  top: 50%;
161
  right: 0;
162
  margin: 0 auto;
163
 
164
+ &[class$="left"] {
165
  transform: translateY(-50%) rotate(45deg);
166
  }
167
 
168
+ &[class$="right"] {
169
  transform: translateY(-50%) rotate(-45deg);
170
  }
171
  }
172
  }
173
 
174
  &.swal2-success {
175
+ & [class^="swal2-success-line"] {
176
  height: 3px;
177
 
178
+ &[class$="tip"] {
179
  width: 16px;
180
  top: 56%;
181
  left: 10px;
182
  }
183
 
184
+ &[class$="long"] {
185
  top: 47%;
186
  width: 32px;
187
  right: 6px;
188
  }
189
  }
190
 
191
+ & [class^="swal2-success-circular-line"] {
192
  height: 64px;
193
  width: 32px;
194
 
195
+ &[class$="left"] {
196
  top: -75px;
197
  left: 27px;
198
  }
199
 
200
+ &[class$="right"] {
201
  top: -26px;
202
  left: 82px;
203
  }
assets/css/flatpickr/flatpickr.min.css CHANGED
@@ -1,13 +1,13 @@
1
- .flatpickr-calendar{background:transparent;opacity:0;display:none;text-align:center;visibility:hidden;padding:0;-webkit-animation:none;animation:none;direction:ltr;border:0;font-size:14px;line-height:24px;border-radius:5px;position:absolute;width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-touch-action:manipulation;touch-action:manipulation;background:#fff;-webkit-box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,0.08);box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,0.08);}.flatpickr-calendar.open,.flatpickr-calendar.inline{opacity:1;max-height:640px;visibility:visible}.flatpickr-calendar.open{display:inline-block;z-index:99999}.flatpickr-calendar.animate.open{-webkit-animation:fpFadeInDown 300ms cubic-bezier(.23,1,.32,1);animation:fpFadeInDown 300ms cubic-bezier(.23,1,.32,1)}.flatpickr-calendar.inline{display:block;position:relative;top:2px}.flatpickr-calendar.static{position:absolute;top:calc(100% + 2px);}.flatpickr-calendar.static.open{z-index:999;display:block}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7){-webkit-box-shadow:none !important;box-shadow:none !important}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1){-webkit-box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6}.flatpickr-calendar .hasWeeks .dayContainer,.flatpickr-calendar .hasTime .dayContainer{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.flatpickr-calendar .hasWeeks .dayContainer{border-left:0}.flatpickr-calendar.showTimeInput.hasTime .flatpickr-time{height:40px;border-top:1px solid #e6e6e6}.flatpickr-calendar.noCalendar.hasTime .flatpickr-time{height:auto}.flatpickr-calendar:before,.flatpickr-calendar:after{position:absolute;display:block;pointer-events:none;border:solid transparent;content:'';height:0;width:0;left:22px}.flatpickr-calendar.rightMost:before,.flatpickr-calendar.rightMost:after{left:auto;right:22px}.flatpickr-calendar:before{border-width:5px;margin:0 -5px}.flatpickr-calendar:after{border-width:4px;margin:0 -4px}.flatpickr-calendar.arrowTop:before,.flatpickr-calendar.arrowTop:after{bottom:100%}.flatpickr-calendar.arrowTop:before{border-bottom-color:#e6e6e6}.flatpickr-calendar.arrowTop:after{border-bottom-color:#fff}.flatpickr-calendar.arrowBottom:before,.flatpickr-calendar.arrowBottom:after{top:100%}.flatpickr-calendar.arrowBottom:before{border-top-color:#e6e6e6}.flatpickr-calendar.arrowBottom:after{border-top-color:#fff}.flatpickr-calendar:focus{outline:0}.flatpickr-wrapper{position:relative;display:inline-block}.flatpickr-months{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}.flatpickr-months .flatpickr-month{background:transparent;color:rgba(0,0,0,0.9);fill:rgba(0,0,0,0.9);height:28px;line-height:1;text-align:center;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:hidden;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.flatpickr-months .flatpickr-prev-month,.flatpickr-months .flatpickr-next-month{text-decoration:none;cursor:pointer;position:absolute;top:0;line-height:16px;height:28px;padding:10px;z-index:3;color:rgba(0,0,0,0.9);fill:rgba(0,0,0,0.9);}.flatpickr-months .flatpickr-prev-month.disabled,.flatpickr-months .flatpickr-next-month.disabled{display:none}.flatpickr-months .flatpickr-prev-month i,.flatpickr-months .flatpickr-next-month i{position:relative}.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,.flatpickr-months .flatpickr-next-month.flatpickr-prev-month{/*
2
- /*rtl:begin:ignore*/left:0;/*
3
  /*rtl:end:ignore*/}/*
4
  /*rtl:begin:ignore*/
5
  /*
6
  /*rtl:end:ignore*/
7
  .flatpickr-months .flatpickr-prev-month.flatpickr-next-month,.flatpickr-months .flatpickr-next-month.flatpickr-next-month{/*
8
- /*rtl:begin:ignore*/right:0;/*
9
  /*rtl:end:ignore*/}/*
10
  /*rtl:begin:ignore*/
11
  /*
12
  /*rtl:end:ignore*/
13
- .flatpickr-months .flatpickr-prev-month:hover,.flatpickr-months .flatpickr-next-month:hover{color:#959ea9;}.flatpickr-months .flatpickr-prev-month:hover svg,.flatpickr-months .flatpickr-next-month:hover svg{fill:#f64747}.flatpickr-months .flatpickr-prev-month svg,.flatpickr-months .flatpickr-next-month svg{width:14px;height:14px;}.flatpickr-months .flatpickr-prev-month svg path,.flatpickr-months .flatpickr-next-month svg path{-webkit-transition:fill .1s;transition:fill .1s;fill:inherit}.numInputWrapper{position:relative;height:auto;}.numInputWrapper input,.numInputWrapper span{display:inline-block}.numInputWrapper input{width:100%;}.numInputWrapper input::-ms-clear{display:none}.numInputWrapper span{position:absolute;right:0;width:14px;padding:0 4px 0 2px;height:50%;line-height:50%;opacity:0;cursor:pointer;border:1px solid rgba(57,57,57,0.15);-webkit-box-sizing:border-box;box-sizing:border-box;}.numInputWrapper span:hover{background:rgba(0,0,0,0.1)}.numInputWrapper span:active{background:rgba(0,0,0,0.2)}.numInputWrapper span:after{display:block;content:"";position:absolute}.numInputWrapper span.arrowUp{top:0;border-bottom:0;}.numInputWrapper span.arrowUp:after{border-left:4px solid transparent;border-right:4px solid transparent;border-bottom:4px solid rgba(57,57,57,0.6);top:26%}.numInputWrapper span.arrowDown{top:50%;}.numInputWrapper span.arrowDown:after{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid rgba(57,57,57,0.6);top:40%}.numInputWrapper span svg{width:inherit;height:auto;}.numInputWrapper span svg path{fill:rgba(0,0,0,0.5)}.numInputWrapper:hover{background:rgba(0,0,0,0.05);}.numInputWrapper:hover span{opacity:1}.flatpickr-current-month{font-size:135%;line-height:inherit;font-weight:300;color:inherit;position:absolute;width:75%;left:12.5%;padding:6.16px 0 0 0;line-height:1;height:28px;display:inline-block;text-align:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);}.flatpickr-current-month span.cur-month{font-family:inherit;font-weight:700;color:inherit;display:inline-block;margin-left:.5ch;padding:0;}.flatpickr-current-month span.cur-month:hover{background:rgba(0,0,0,0.05)}.flatpickr-current-month .numInputWrapper{width:6ch;width:7ch\0;display:inline-block;}.flatpickr-current-month .numInputWrapper span.arrowUp:after{border-bottom-color:rgba(0,0,0,0.9)}.flatpickr-current-month .numInputWrapper span.arrowDown:after{border-top-color:rgba(0,0,0,0.9)}.flatpickr-current-month input.cur-year{background:transparent;-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;cursor:text;padding:0 0 0 .5ch;margin:0;display:inline-block;font-size:inherit;font-family:inherit;font-weight:300;line-height:inherit;height:auto;border:0;border-radius:0;vertical-align:initial;}.flatpickr-current-month input.cur-year:focus{outline:0}.flatpickr-current-month input.cur-year[disabled],.flatpickr-current-month input.cur-year[disabled]:hover{font-size:100%;color:rgba(0,0,0,0.5);background:transparent;pointer-events:none}.flatpickr-weekdays{background:transparent;text-align:center;overflow:hidden;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:28px;}.flatpickr-weekdays .flatpickr-weekdaycontainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}span.flatpickr-weekday{cursor:default;font-size:90%;background:transparent;color:rgba(0,0,0,0.54);line-height:1;margin:0;text-align:center;display:block;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;font-weight:bolder}.dayContainer,.flatpickr-weeks{padding:1px 0 0 0}.flatpickr-days{position:relative;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;width:307.875px;}.flatpickr-days:focus{outline:0}.dayContainer{padding:0;outline:0;text-align:left;width:307.875px;min-width:307.875px;max-width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;display:-ms-flexbox;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:wrap;-ms-flex-pack:justify;-webkit-justify-content:space-around;justify-content:space-around;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1;}.dayContainer + .dayContainer{-webkit-box-shadow:-1px 0 0 #e6e6e6;box-shadow:-1px 0 0 #e6e6e6}.flatpickr-day{background:none;border:1px solid transparent;border-radius:150px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#393939;cursor:pointer;font-weight:400;width:14.2857143%;-webkit-flex-basis:14.2857143%;-ms-flex-preferred-size:14.2857143%;flex-basis:14.2857143%;max-width:39px;height:39px;line-height:39px;margin:0;display:inline-block;position:relative;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center;}.flatpickr-day.inRange,.flatpickr-day.prevMonthDay.inRange,.flatpickr-day.nextMonthDay.inRange,.flatpickr-day.today.inRange,.flatpickr-day.prevMonthDay.today.inRange,.flatpickr-day.nextMonthDay.today.inRange,.flatpickr-day:hover,.flatpickr-day.prevMonthDay:hover,.flatpickr-day.nextMonthDay:hover,.flatpickr-day:focus,.flatpickr-day.prevMonthDay:focus,.flatpickr-day.nextMonthDay:focus{cursor:pointer;outline:0;background:#e6e6e6;border-color:#e6e6e6}.flatpickr-day.today{border-color:#959ea9;}.flatpickr-day.today:hover,.flatpickr-day.today:focus{border-color:#959ea9;background:#959ea9;color:#fff}.flatpickr-day.selected,.flatpickr-day.startRange,.flatpickr-day.endRange,.flatpickr-day.selected.inRange,.flatpickr-day.startRange.inRange,.flatpickr-day.endRange.inRange,.flatpickr-day.selected:focus,.flatpickr-day.startRange:focus,.flatpickr-day.endRange:focus,.flatpickr-day.selected:hover,.flatpickr-day.startRange:hover,.flatpickr-day.endRange:hover,.flatpickr-day.selected.prevMonthDay,.flatpickr-day.startRange.prevMonthDay,.flatpickr-day.endRange.prevMonthDay,.flatpickr-day.selected.nextMonthDay,.flatpickr-day.startRange.nextMonthDay,.flatpickr-day.endRange.nextMonthDay{background:#569ff7;-webkit-box-shadow:none;box-shadow:none;color:#fff;border-color:#569ff7}.flatpickr-day.selected.startRange,.flatpickr-day.startRange.startRange,.flatpickr-day.endRange.startRange{border-radius:50px 0 0 50px}.flatpickr-day.selected.endRange,.flatpickr-day.startRange.endRange,.flatpickr-day.endRange.endRange{border-radius:0 50px 50px 0}.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)){-webkit-box-shadow:-10px 0 0 #569ff7;box-shadow:-10px 0 0 #569ff7}.flatpickr-day.selected.startRange.endRange,.flatpickr-day.startRange.startRange.endRange,.flatpickr-day.endRange.startRange.endRange{border-radius:50px}.flatpickr-day.inRange{border-radius:0;-webkit-box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6}.flatpickr-day.disabled,.flatpickr-day.disabled:hover,.flatpickr-day.prevMonthDay,.flatpickr-day.nextMonthDay,.flatpickr-day.notAllowed,.flatpickr-day.notAllowed.prevMonthDay,.flatpickr-day.notAllowed.nextMonthDay{color:rgba(57,57,57,0.3);background:transparent;border-color:transparent;cursor:default}.flatpickr-day.disabled,.flatpickr-day.disabled:hover{cursor:not-allowed;color:rgba(57,57,57,0.1)}.flatpickr-day.week.selected{border-radius:0;-webkit-box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7;box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7}.flatpickr-day.hidden{visibility:hidden}.rangeMode .flatpickr-day{margin-top:1px}.flatpickr-weekwrapper{display:inline-block;float:left;}.flatpickr-weekwrapper .flatpickr-weeks{padding:0 12px;-webkit-box-shadow:1px 0 0 #e6e6e6;box-shadow:1px 0 0 #e6e6e6}.flatpickr-weekwrapper .flatpickr-weekday{float:none;width:100%;line-height:28px}.flatpickr-weekwrapper span.flatpickr-day,.flatpickr-weekwrapper span.flatpickr-day:hover{display:block;width:100%;max-width:none;color:rgba(57,57,57,0.3);background:transparent;cursor:default;border:none}.flatpickr-innerContainer{display:block;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;}.flatpickr-rContainer{display:inline-block;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box}.flatpickr-time{text-align:center;outline:0;display:block;height:0;line-height:40px;max-height:40px;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;}.flatpickr-time:after{content:"";display:table;clear:both}.flatpickr-time .numInputWrapper{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;width:40%;height:40px;float:left;}.flatpickr-time .numInputWrapper span.arrowUp:after{border-bottom-color:#393939}.flatpickr-time .numInputWrapper span.arrowDown:after{border-top-color:#393939}.flatpickr-time.hasSeconds .numInputWrapper{width:26%}.flatpickr-time.time24hr .numInputWrapper{width:49%}.flatpickr-time input{background:transparent;-webkit-box-shadow:none;box-shadow:none;border:0;border-radius:0;text-align:center;margin:0;padding:0;height:inherit;line-height:inherit;color:#393939;font-size:14px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;}.flatpickr-time input.flatpickr-hour{font-weight:bold}.flatpickr-time input.flatpickr-minute,.flatpickr-time input.flatpickr-second{font-weight:400}.flatpickr-time input:focus{outline:0;border:0}.flatpickr-time .flatpickr-time-separator,.flatpickr-time .flatpickr-am-pm{height:inherit;display:inline-block;float:left;line-height:inherit;color:#393939;font-weight:bold;width:2%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}.flatpickr-time .flatpickr-am-pm{outline:0;width:18%;cursor:pointer;text-align:center;font-weight:400}.flatpickr-time input:hover,.flatpickr-time .flatpickr-am-pm:hover,.flatpickr-time input:focus,.flatpickr-time .flatpickr-am-pm:focus{background:#f3f3f3}.flatpickr-input[readonly]{cursor:pointer}@-webkit-keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}
1
+ .flatpickr-calendar{background:transparent;opacity:0;display:none;text-align:center;visibility:hidden;padding:0;-webkit-animation:none;animation:none;direction:ltr;border:0;font-size:14px;line-height:24px;border-radius:5px;position:absolute;width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;-ms-touch-action:manipulation;touch-action:manipulation;background:#fff;-webkit-box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,0.08);box-shadow:1px 0 0 #e6e6e6,-1px 0 0 #e6e6e6,0 1px 0 #e6e6e6,0 -1px 0 #e6e6e6,0 3px 13px rgba(0,0,0,0.08)}.flatpickr-calendar.open,.flatpickr-calendar.inline{opacity:1;max-height:640px;visibility:visible}.flatpickr-calendar.open{display:inline-block;z-index:99999}.flatpickr-calendar.animate.open{-webkit-animation:fpFadeInDown 300ms cubic-bezier(.23,1,.32,1);animation:fpFadeInDown 300ms cubic-bezier(.23,1,.32,1)}.flatpickr-calendar.inline{display:block;position:relative;top:2px}.flatpickr-calendar.static{position:absolute;top:calc(100% + 2px)}.flatpickr-calendar.static.open{z-index:999;display:block}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+1) .flatpickr-day.inRange:nth-child(7n+7){-webkit-box-shadow:none !important;box-shadow:none !important}.flatpickr-calendar.multiMonth .flatpickr-days .dayContainer:nth-child(n+2) .flatpickr-day.inRange:nth-child(7n+1){-webkit-box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-2px 0 0 #e6e6e6,5px 0 0 #e6e6e6}.flatpickr-calendar .hasWeeks .dayContainer,.flatpickr-calendar .hasTime .dayContainer{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.flatpickr-calendar .hasWeeks .dayContainer{border-left:0}.flatpickr-calendar.hasTime .flatpickr-time{height:40px;border-top:1px solid #e6e6e6}.flatpickr-calendar.noCalendar.hasTime .flatpickr-time{height:auto}.flatpickr-calendar:before,.flatpickr-calendar:after{position:absolute;display:block;pointer-events:none;border:solid transparent;content:'';height:0;width:0;left:22px}.flatpickr-calendar.rightMost:before,.flatpickr-calendar.arrowRight:before,.flatpickr-calendar.rightMost:after,.flatpickr-calendar.arrowRight:after{left:auto;right:22px}.flatpickr-calendar.arrowCenter:before,.flatpickr-calendar.arrowCenter:after{left:50%;right:50%}.flatpickr-calendar:before{border-width:5px;margin:0 -5px}.flatpickr-calendar:after{border-width:4px;margin:0 -4px}.flatpickr-calendar.arrowTop:before,.flatpickr-calendar.arrowTop:after{bottom:100%}.flatpickr-calendar.arrowTop:before{border-bottom-color:#e6e6e6}.flatpickr-calendar.arrowTop:after{border-bottom-color:#fff}.flatpickr-calendar.arrowBottom:before,.flatpickr-calendar.arrowBottom:after{top:100%}.flatpickr-calendar.arrowBottom:before{border-top-color:#e6e6e6}.flatpickr-calendar.arrowBottom:after{border-top-color:#fff}.flatpickr-calendar:focus{outline:0}.flatpickr-wrapper{position:relative;display:inline-block}.flatpickr-months{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.flatpickr-months .flatpickr-month{background:transparent;color:rgba(0,0,0,0.9);fill:rgba(0,0,0,0.9);height:34px;line-height:1;text-align:center;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;overflow:hidden;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}.flatpickr-months .flatpickr-prev-month,.flatpickr-months .flatpickr-next-month{text-decoration:none;cursor:pointer;position:absolute;top:0;height:34px;padding:10px;z-index:3;color:rgba(0,0,0,0.9);fill:rgba(0,0,0,0.9)}.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,.flatpickr-months .flatpickr-next-month.flatpickr-disabled{display:none}.flatpickr-months .flatpickr-prev-month i,.flatpickr-months .flatpickr-next-month i{position:relative}.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,.flatpickr-months .flatpickr-next-month.flatpickr-prev-month{/*
2
+ /*rtl:begin:ignore*/left:0/*
3
  /*rtl:end:ignore*/}/*
4
  /*rtl:begin:ignore*/
5
  /*
6
  /*rtl:end:ignore*/
7
  .flatpickr-months .flatpickr-prev-month.flatpickr-next-month,.flatpickr-months .flatpickr-next-month.flatpickr-next-month{/*
8
+ /*rtl:begin:ignore*/right:0/*
9
  /*rtl:end:ignore*/}/*
10
  /*rtl:begin:ignore*/
11
  /*
12
  /*rtl:end:ignore*/
13
+ .flatpickr-months .flatpickr-prev-month:hover,.flatpickr-months .flatpickr-next-month:hover{color:#959ea9}.flatpickr-months .flatpickr-prev-month:hover svg,.flatpickr-months .flatpickr-next-month:hover svg{fill:#f64747}.flatpickr-months .flatpickr-prev-month svg,.flatpickr-months .flatpickr-next-month svg{width:14px;height:14px}.flatpickr-months .flatpickr-prev-month svg path,.flatpickr-months .flatpickr-next-month svg path{-webkit-transition:fill .1s;transition:fill .1s;fill:inherit}.numInputWrapper{position:relative;height:auto}.numInputWrapper input,.numInputWrapper span{display:inline-block}.numInputWrapper input{width:100%}.numInputWrapper input::-ms-clear{display:none}.numInputWrapper input::-webkit-outer-spin-button,.numInputWrapper input::-webkit-inner-spin-button{margin:0;-webkit-appearance:none}.numInputWrapper span{position:absolute;right:0;width:14px;padding:0 4px 0 2px;height:50%;line-height:50%;opacity:0;cursor:pointer;border:1px solid rgba(57,57,57,0.15);-webkit-box-sizing:border-box;box-sizing:border-box}.numInputWrapper span:hover{background:rgba(0,0,0,0.1)}.numInputWrapper span:active{background:rgba(0,0,0,0.2)}.numInputWrapper span:after{display:block;content:"";position:absolute}.numInputWrapper span.arrowUp{top:0;border-bottom:0}.numInputWrapper span.arrowUp:after{border-left:4px solid transparent;border-right:4px solid transparent;border-bottom:4px solid rgba(57,57,57,0.6);top:26%}.numInputWrapper span.arrowDown{top:50%}.numInputWrapper span.arrowDown:after{border-left:4px solid transparent;border-right:4px solid transparent;border-top:4px solid rgba(57,57,57,0.6);top:40%}.numInputWrapper span svg{width:inherit;height:auto}.numInputWrapper span svg path{fill:rgba(0,0,0,0.5)}.numInputWrapper:hover{background:rgba(0,0,0,0.05)}.numInputWrapper:hover span{opacity:1}.flatpickr-current-month{font-size:135%;line-height:inherit;font-weight:300;color:inherit;position:absolute;width:75%;left:12.5%;padding:7.48px 0 0 0;line-height:1;height:34px;display:inline-block;text-align:center;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.flatpickr-current-month span.cur-month{font-family:inherit;font-weight:700;color:inherit;display:inline-block;margin-left:.5ch;padding:0}.flatpickr-current-month span.cur-month:hover{background:rgba(0,0,0,0.05)}.flatpickr-current-month .numInputWrapper{width:6ch;width:7ch\0;display:inline-block}.flatpickr-current-month .numInputWrapper span.arrowUp:after{border-bottom-color:rgba(0,0,0,0.9)}.flatpickr-current-month .numInputWrapper span.arrowDown:after{border-top-color:rgba(0,0,0,0.9)}.flatpickr-current-month input.cur-year{background:transparent;-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;cursor:text;padding:0 0 0 .5ch;margin:0;display:inline-block;font-size:inherit;font-family:inherit;font-weight:300;line-height:inherit;height:auto;border:0;border-radius:0;vertical-align:initial;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}.flatpickr-current-month input.cur-year:focus{outline:0}.flatpickr-current-month input.cur-year[disabled],.flatpickr-current-month input.cur-year[disabled]:hover{font-size:100%;color:rgba(0,0,0,0.5);background:transparent;pointer-events:none}.flatpickr-current-month .flatpickr-monthDropdown-months{appearance:menulist;background:transparent;border:none;border-radius:0;box-sizing:border-box;color:inherit;cursor:pointer;font-size:inherit;font-family:inherit;font-weight:300;height:auto;line-height:inherit;margin:-1px 0 0 0;outline:none;padding:0 0 0 .5ch;position:relative;vertical-align:initial;-webkit-box-sizing:border-box;-webkit-appearance:menulist;-moz-appearance:menulist;width:auto}.flatpickr-current-month .flatpickr-monthDropdown-months:focus,.flatpickr-current-month .flatpickr-monthDropdown-months:active{outline:none}.flatpickr-current-month .flatpickr-monthDropdown-months:hover{background:rgba(0,0,0,0.05)}.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month{background-color:transparent;outline:none;padding:0}.flatpickr-weekdays{background:transparent;text-align:center;overflow:hidden;width:100%;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;height:28px}.flatpickr-weekdays .flatpickr-weekdaycontainer{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1}span.flatpickr-weekday{cursor:default;font-size:90%;background:transparent;color:rgba(0,0,0,0.54);line-height:1;margin:0;text-align:center;display:block;-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;font-weight:bolder}.dayContainer,.flatpickr-weeks{padding:1px 0 0 0}.flatpickr-days{position:relative;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:start;-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start;width:307.875px}.flatpickr-days:focus{outline:0}.dayContainer{padding:0;outline:0;text-align:left;width:307.875px;min-width:307.875px;max-width:307.875px;-webkit-box-sizing:border-box;box-sizing:border-box;display:inline-block;display:-ms-flexbox;display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;-ms-flex-wrap:wrap;-ms-flex-pack:justify;-webkit-justify-content:space-around;justify-content:space-around;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}.dayContainer + .dayContainer{-webkit-box-shadow:-1px 0 0 #e6e6e6;box-shadow:-1px 0 0 #e6e6e6}.flatpickr-day{background:none;border:1px solid transparent;border-radius:150px;-webkit-box-sizing:border-box;box-sizing:border-box;color:#393939;cursor:pointer;font-weight:400;width:14.2857143%;-webkit-flex-basis:14.2857143%;-ms-flex-preferred-size:14.2857143%;flex-basis:14.2857143%;max-width:39px;height:39px;line-height:39px;margin:0;display:inline-block;position:relative;-webkit-box-pack:center;-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center}.flatpickr-day.inRange,.flatpickr-day.prevMonthDay.inRange,.flatpickr-day.nextMonthDay.inRange,.flatpickr-day.today.inRange,.flatpickr-day.prevMonthDay.today.inRange,.flatpickr-day.nextMonthDay.today.inRange,.flatpickr-day:hover,.flatpickr-day.prevMonthDay:hover,.flatpickr-day.nextMonthDay:hover,.flatpickr-day:focus,.flatpickr-day.prevMonthDay:focus,.flatpickr-day.nextMonthDay:focus{cursor:pointer;outline:0;background:#e6e6e6;border-color:#e6e6e6}.flatpickr-day.today{border-color:#959ea9}.flatpickr-day.today:hover,.flatpickr-day.today:focus{border-color:#959ea9;background:#959ea9;color:#fff}.flatpickr-day.selected,.flatpickr-day.startRange,.flatpickr-day.endRange,.flatpickr-day.selected.inRange,.flatpickr-day.startRange.inRange,.flatpickr-day.endRange.inRange,.flatpickr-day.selected:focus,.flatpickr-day.startRange:focus,.flatpickr-day.endRange:focus,.flatpickr-day.selected:hover,.flatpickr-day.startRange:hover,.flatpickr-day.endRange:hover,.flatpickr-day.selected.prevMonthDay,.flatpickr-day.startRange.prevMonthDay,.flatpickr-day.endRange.prevMonthDay,.flatpickr-day.selected.nextMonthDay,.flatpickr-day.startRange.nextMonthDay,.flatpickr-day.endRange.nextMonthDay{background:#569ff7;-webkit-box-shadow:none;box-shadow:none;color:#fff;border-color:#569ff7}.flatpickr-day.selected.startRange,.flatpickr-day.startRange.startRange,.flatpickr-day.endRange.startRange{border-radius:50px 0 0 50px}.flatpickr-day.selected.endRange,.flatpickr-day.startRange.endRange,.flatpickr-day.endRange.endRange{border-radius:0 50px 50px 0}.flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)),.flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)),.flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)){-webkit-box-shadow:-10px 0 0 #569ff7;box-shadow:-10px 0 0 #569ff7}.flatpickr-day.selected.startRange.endRange,.flatpickr-day.startRange.startRange.endRange,.flatpickr-day.endRange.startRange.endRange{border-radius:50px}.flatpickr-day.inRange{border-radius:0;-webkit-box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6;box-shadow:-5px 0 0 #e6e6e6,5px 0 0 #e6e6e6}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover,.flatpickr-day.prevMonthDay,.flatpickr-day.nextMonthDay,.flatpickr-day.notAllowed,.flatpickr-day.notAllowed.prevMonthDay,.flatpickr-day.notAllowed.nextMonthDay{color:rgba(57,57,57,0.3);background:transparent;border-color:transparent;cursor:default}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover{cursor:not-allowed;color:rgba(57,57,57,0.1)}.flatpickr-day.week.selected{border-radius:0;-webkit-box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7;box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7}.flatpickr-day.hidden{visibility:hidden}.rangeMode .flatpickr-day{margin-top:1px}.flatpickr-weekwrapper{float:left}.flatpickr-weekwrapper .flatpickr-weeks{padding:0 12px;-webkit-box-shadow:1px 0 0 #e6e6e6;box-shadow:1px 0 0 #e6e6e6}.flatpickr-weekwrapper .flatpickr-weekday{float:none;width:100%;line-height:28px}.flatpickr-weekwrapper span.flatpickr-day,.flatpickr-weekwrapper span.flatpickr-day:hover{display:block;width:100%;max-width:none;color:rgba(57,57,57,0.3);background:transparent;cursor:default;border:none}.flatpickr-innerContainer{display:block;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden}.flatpickr-rContainer{display:inline-block;padding:0;-webkit-box-sizing:border-box;box-sizing:border-box}.flatpickr-time{text-align:center;outline:0;display:block;height:0;line-height:40px;max-height:40px;-webkit-box-sizing:border-box;box-sizing:border-box;overflow:hidden;display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex}.flatpickr-time:after{content:"";display:table;clear:both}.flatpickr-time .numInputWrapper{-webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;width:40%;height:40px;float:left}.flatpickr-time .numInputWrapper span.arrowUp:after{border-bottom-color:#393939}.flatpickr-time .numInputWrapper span.arrowDown:after{border-top-color:#393939}.flatpickr-time.hasSeconds .numInputWrapper{width:26%}.flatpickr-time.time24hr .numInputWrapper{width:49%}.flatpickr-time input{background:transparent;-webkit-box-shadow:none;box-shadow:none;border:0;border-radius:0;text-align:center;margin:0;padding:0;height:inherit;line-height:inherit;color:#393939;font-size:14px;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}.flatpickr-time input.flatpickr-hour{font-weight:bold}.flatpickr-time input.flatpickr-minute,.flatpickr-time input.flatpickr-second{font-weight:400}.flatpickr-time input:focus{outline:0;border:0}.flatpickr-time .flatpickr-time-separator,.flatpickr-time .flatpickr-am-pm{height:inherit;float:left;line-height:inherit;color:#393939;font-weight:bold;width:2%;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-align-self:center;-ms-flex-item-align:center;align-self:center}.flatpickr-time .flatpickr-am-pm{outline:0;width:18%;cursor:pointer;text-align:center;font-weight:400}.flatpickr-time input:hover,.flatpickr-time .flatpickr-am-pm:hover,.flatpickr-time input:focus,.flatpickr-time .flatpickr-am-pm:focus{background:#eee}.flatpickr-input[readonly]{cursor:pointer}@-webkit-keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fpFadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-20px,0);transform:translate3d(0,-20px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}
assets/css/layout/_header.scss CHANGED
@@ -33,7 +33,7 @@
33
 
34
  .subsubsub {
35
  background: $white;
36
- font-size: 13px;
37
  padding: 0 16px;
38
  margin-top: 0;
39
  float: none;
@@ -42,7 +42,7 @@
42
  a {
43
  color: $gray-base;
44
  display: block;
45
- font-weight: 500;
46
  padding: 8px 12px;
47
 
48
  &.current {
33
 
34
  .subsubsub {
35
  background: $white;
36
+ font-size: 14px;
37
  padding: 0 16px;
38
  margin-top: 0;
39
  float: none;
42
  a {
43
  color: $gray-base;
44
  display: block;
45
+ font-weight: 600;
46
  padding: 8px 12px;
47
 
48
  &.current {
assets/css/metabox-rtl.css ADDED
@@ -0,0 +1 @@
 
1
+ #normal-sortables .postbox .postbox-header{border:none}#normal-sortables .postbox .postbox-header h2,#normal-sortables .postbox .postbox-header h3{font-size:17px;font-weight:700}#advanced-sortables .postbox .postbox-header{border:none}#advanced-sortables .postbox .postbox-header h2,#advanced-sortables .postbox .postbox-header h3{font-size:17px;font-weight:700}.select2-container{width:100%!important}.select2-container .select2-selection--multiple{border-color:#dee0e9!important}.meta-box-sortables input[type=email],.meta-box-sortables input[type=text],.meta-box-sortables select{width:100%}.meta-box-sortables input,.meta-box-sortables select{border-color:#dee0e9}p.description{color:grey;font-style:italic;font-size:12px}.ur-metabox-field-row{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;padding-bottom:20px;color:#1d2327}.ur-metabox-field-row .ur-metabox-field-label{width:30%}.ur-metabox-field-row .ur-metabox-field-label label{font-weight:600}@media (max-width:767px){.ur-metabox-field-row .ur-metabox-field-label{width:100%;margin-bottom:10px}}.ur-metabox-field-row .ur-metabox-field-detail{width:70%}@media (max-width:767px){.ur-metabox-field-row .ur-metabox-field-detail{width:100%}}
assets/css/metabox.css ADDED
@@ -0,0 +1 @@
 
1
+ #normal-sortables .postbox .postbox-header{border:none}#normal-sortables .postbox .postbox-header h2,#normal-sortables .postbox .postbox-header h3{font-size:17px;font-weight:700}#advanced-sortables .postbox .postbox-header{border:none}#advanced-sortables .postbox .postbox-header h2,#advanced-sortables .postbox .postbox-header h3{font-size:17px;font-weight:700}.select2-container{width:100%!important}.select2-container .select2-selection--multiple{border-color:#dee0e9!important}.meta-box-sortables input[type=email],.meta-box-sortables input[type=text],.meta-box-sortables select{width:100%}.meta-box-sortables input,.meta-box-sortables select{border-color:#dee0e9}p.description{color:grey;font-style:italic;font-size:12px}.ur-metabox-field-row{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-flex-wrap:wrap;flex-wrap:wrap;padding-bottom:20px;color:#1d2327}.ur-metabox-field-row .ur-metabox-field-label{width:30%}.ur-metabox-field-row .ur-metabox-field-label label{font-weight:600}@media (max-width:767px){.ur-metabox-field-row .ur-metabox-field-label{width:100%;margin-bottom:10px}}.ur-metabox-field-row .ur-metabox-field-detail{width:70%}@media (max-width:767px){.ur-metabox-field-row .ur-metabox-field-detail{width:100%}}
assets/css/metabox.scss ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * MetaBox styling begins.
3
+ */
4
+ #normal-sortables {
5
+ .postbox {
6
+ .postbox-header {
7
+ border: none;
8
+ h2,
9
+ h3 {
10
+ font-size: 17px;
11
+ font-weight: bold;
12
+ }
13
+ }
14
+ }
15
+ }
16
+ #advanced-sortables {
17
+ .postbox {
18
+ .postbox-header {
19
+ border: none;
20
+ h2,
21
+ h3 {
22
+ font-size: 17px;
23
+ font-weight: bold;
24
+ }
25
+ }
26
+ }
27
+ }
28
+ .select2-container {
29
+ width: 100% !important;
30
+ .select2-selection--multiple {
31
+ border-color: #dee0e9 !important;
32
+ }
33
+ }
34
+ .meta-box-sortables {
35
+ select,
36
+ input[type="text"],
37
+ input[type="email"] {
38
+ width: 100%;
39
+ }
40
+ select,
41
+ input {
42
+ border-color: #dee0e9;
43
+ }
44
+ }
45
+ p.description {
46
+ color: grey;
47
+ font-style: italic;
48
+ font-size: 12px;
49
+ }
50
+ .ur-metabox-field-row {
51
+ display: flex;
52
+ flex-wrap: wrap;
53
+ padding-bottom: 20px;
54
+ color: #1d2327;
55
+ .ur-metabox-field-label {
56
+ width: 30%;
57
+ label {
58
+ font-weight: 600;
59
+ }
60
+ @media (max-width: 767px) {
61
+ width: 100%;
62
+ margin-bottom: 10px;
63
+ }
64
+ }
65
+ .ur-metabox-field-detail {
66
+ width: 70%;
67
+ @media (max-width: 767px) {
68
+ width: 100%;
69
+ }
70
+ }
71
+ }
72
+
73
+ /**
74
+ * MetaBox styling ends.
75
+ */
assets/css/select2.scss DELETED
@@ -1,480 +0,0 @@
1
- .select2-container {
2
- box-sizing: border-box;
3
- display: inline-block;
4
- margin: 0;
5
- position: relative;
6
- vertical-align: middle; }
7
- .select2-container .select2-selection--single {
8
- box-sizing: border-box;
9
- cursor: pointer;
10
- display: block;
11
- height: 28px;
12
- user-select: none;
13
- -webkit-user-select: none; }
14
- .select2-container .select2-selection--single .select2-selection__rendered {
15
- display: block;
16
- padding-left: 8px;
17
- padding-right: 20px;
18
- overflow: hidden;
19
- text-overflow: ellipsis;
20
- white-space: nowrap; }
21
- .select2-container .select2-selection--single .select2-selection__clear {
22
- position: relative; }
23
- .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
24
- padding-right: 8px;
25
- padding-left: 20px; }
26
- .select2-container .select2-selection--multiple {
27
- box-sizing: border-box;
28
- cursor: pointer;
29
- display: block;
30
- min-height: 32px;
31
- user-select: none;
32
- -webkit-user-select: none; }
33
- .select2-container .select2-selection--multiple .select2-selection__rendered {
34
- display: inline-block;
35
- overflow: hidden;
36
- padding-left: 8px;
37
- text-overflow: ellipsis;
38
- white-space: nowrap; }
39
- .select2-container .select2-search--inline {
40
- float: left; }
41
- .select2-container .select2-search--inline .select2-search__field {
42
- box-sizing: border-box;
43
- border: none;
44
- font-size: 100%;
45
- margin-top: 5px;
46
- padding: 0; }
47
- .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
48
- -webkit-appearance: none; }
49
-
50
- .select2-dropdown {
51
- background-color: white;
52
- border: 1px solid #aaa;
53
- border-radius: 4px;
54
- box-sizing: border-box;
55
- display: block;
56
- position: absolute;
57
- left: -100000px;
58
- width: 100%;
59
- z-index: 1051; }
60
-
61
- .select2-results {
62
- display: block; }
63
-
64
- .select2-results__options {
65
- list-style: none;
66
- margin: 0;
67
- padding: 0; }
68
-
69
- .select2-results__option {
70
- padding: 6px;
71
- user-select: none;
72
- -webkit-user-select: none; }
73
- .select2-results__option[data-selected],
74
- .select2-results__option[aria-selected] {
75
- cursor: pointer; }
76
-
77
- .select2-container--open .select2-dropdown {
78
- left: 0; }
79
-
80
- .select2-container--open .select2-dropdown--above {
81
- border-bottom: none;
82
- border-bottom-left-radius: 0;
83
- border-bottom-right-radius: 0; }
84
-
85
- .select2-container--open .select2-dropdown--below {
86
- border-top: none;
87
- border-top-left-radius: 0;
88
- border-top-right-radius: 0; }
89
-
90
- .select2-search--dropdown {
91
- display: block;
92
- padding: 4px; }
93
- .select2-search--dropdown .select2-search__field {
94
- padding: 4px;
95
- width: 100%;
96
- box-sizing: border-box; }
97
- .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
98
- -webkit-appearance: none; }
99
- .select2-search--dropdown.select2-search--hide {
100
- display: none; }
101
-
102
- .select2-close-mask {
103
- border: 0;
104
- margin: 0;
105
- padding: 0;
106
- display: block;
107
- position: fixed;
108
- left: 0;
109
- top: 0;
110
- min-height: 100%;
111
- min-width: 100%;
112
- height: auto;
113
- width: auto;
114
- opacity: 0;
115
- z-index: 99;
116
- background-color: #fff;
117
- filter: alpha(opacity=0); }
118
-
119
- .select2-hidden-accessible {
120
- border: 0 !important;
121
- clip: rect(0 0 0 0) !important;
122
- height: 1px !important;
123
- margin: -1px !important;
124
- overflow: hidden !important;
125
- padding: 0 !important;
126
- position: absolute !important;
127
- width: 1px !important; }
128
-
129
- .select2-container--default .select2-selection--single {
130
- background-color: #fff;
131
- border: 1px solid #aaa;
132
- border-radius: 4px; }
133
- .select2-container--default .select2-selection--single .select2-selection__rendered {
134
- color: #444;
135
- line-height: 28px; }
136
- .select2-container--default .select2-selection--single .select2-selection__clear {
137
- cursor: pointer;
138
- float: right;
139
- font-weight: bold; }
140
- .select2-container--default .select2-selection--single .select2-selection__placeholder {
141
- color: #999; }
142
- .select2-container--default .select2-selection--single .select2-selection__arrow {
143
- height: 26px;
144
- position: absolute;
145
- top: 1px;
146
- right: 1px;
147
- width: 20px; }
148
- .select2-container--default .select2-selection--single .select2-selection__arrow b {
149
- border-color: #888 transparent transparent transparent;
150
- border-style: solid;
151
- border-width: 5px 4px 0 4px;
152
- height: 0;
153
- left: 50%;
154
- margin-left: -4px;
155
- margin-top: -2px;
156
- position: absolute;
157
- top: 50%;
158
- width: 0; }
159
-
160
- .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
161
- float: left; }
162
-
163
- .select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
164
- left: 1px;
165
- right: auto; }
166
-
167
- .select2-container--default.select2-container--disabled .select2-selection--single {
168
- background-color: #eee;
169
- cursor: default; }
170
- .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
171
- display: none; }
172
-
173
- .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
174
- border-color: transparent transparent #888 transparent;
175
- border-width: 0 4px 5px 4px; }
176
-
177
- .select2-container--default .select2-selection--multiple {
178
- background-color: white;
179
- border: 1px solid #aaa;
180
- border-radius: 4px;
181
- cursor: text; }
182
- .select2-container--default .select2-selection--multiple .select2-selection__rendered {
183
- box-sizing: border-box;
184
- list-style: none;
185
- margin: 0;
186
- padding: 0 5px;
187
- width: 100%; }
188
- .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
189
- list-style: none; }
190
- .select2-container--default .select2-selection--multiple .select2-selection__placeholder {
191
- color: #999;
192
- margin-top: 5px;
193
- float: left; }
194
- .select2-container--default .select2-selection--multiple .select2-selection__clear {
195
- cursor: pointer;
196
- float: right;
197
- font-weight: bold;
198
- margin-top: 5px;
199
- margin-right: 10px; }
200
- .select2-container--default .select2-selection--multiple .select2-selection__choice {
201
- background-color: #e4e4e4;
202
- border: 1px solid #aaa;
203
- border-radius: 4px;
204
- cursor: default;
205
- float: left;
206
- margin-right: 5px;
207
- margin-top: 5px;
208
- padding: 0 5px; }
209
- .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
210
- color: #999;
211
- cursor: pointer;
212
- display: inline-block;
213
- font-weight: bold;
214
- margin-right: 2px; }
215
- .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
216
- color: #333; }
217
-
218
- .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
219
- float: right; }
220
-
221
- .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
222
- margin-left: 5px;
223
- margin-right: auto; }
224
-
225
- .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
226
- margin-left: 2px;
227
- margin-right: auto; }
228
-
229
- .select2-container--default.select2-container--focus .select2-selection--multiple {
230
- border: solid black 1px;
231
- outline: 0; }
232
-
233
- .select2-container--default.select2-container--disabled .select2-selection--multiple {
234
- background-color: #eee;
235
- cursor: default; }
236
-
237
- .select2-container--default.select2-container--disabled .select2-selection__choice__remove {
238
- display: none; }
239
-
240
- .select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
241
- border-top-left-radius: 0;
242
- border-top-right-radius: 0; }
243
-
244
- .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
245
- border-bottom-left-radius: 0;
246
- border-bottom-right-radius: 0; }
247
-
248
- .select2-container--default .select2-search--dropdown .select2-search__field {
249
- border: 1px solid #aaa; }
250
-
251
- .select2-container--default .select2-search--inline .select2-search__field {
252
- background: transparent;
253
- border: none;
254
- outline: 0;
255
- box-shadow: none;
256
- -webkit-appearance: textfield; }
257
-
258
- .select2-container--default .select2-results > .select2-results__options {
259
- max-height: 200px;
260
- overflow-y: auto; }
261
-
262
- .select2-container--default .select2-results__option[role=group] {
263
- padding: 0; }
264
-
265
- .select2-container--default .select2-results__option[aria-disabled=true] {
266
- color: #999; }
267
-
268
- .select2-container--default .select2-results__option[data-selected=true],
269
- .select2-container--default .select2-results__option[aria-selected=true] {
270
- background-color: #ddd; }
271
-
272
- .select2-container--default .select2-results__option .select2-results__option {
273
- padding-left: 1em; }
274
- .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
275
- padding-left: 0; }
276
- .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
277
- margin-left: -1em;
278
- padding-left: 2em; }
279
- .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
280
- margin-left: -2em;
281
- padding-left: 3em; }
282
- .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
283
- margin-left: -3em;
284
- padding-left: 4em; }
285
- .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
286
- margin-left: -4em;
287
- padding-left: 5em; }
288
- .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
289
- margin-left: -5em;
290
- padding-left: 6em; }
291
-
292
- .select2-container--default .select2-results__option--highlighted[data-selected],
293
- .select2-container--default .select2-results__option--highlighted[aria-selected] {
294
- background-color: #0073aa;
295
- color: white; }
296
-
297
- .select2-container--default .select2-results__group {
298
- cursor: default;
299
- display: block;
300
- padding: 6px; }
301
-
302
- .select2-container--classic .select2-selection--single {
303
- background-color: #f7f7f7;
304
- border: 1px solid #aaa;
305
- border-radius: 4px;
306
- outline: 0;
307
- background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
308
- background-repeat: repeat-x;
309
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
310
- .select2-container--classic .select2-selection--single:focus {
311
- border: 1px solid #0073aa; }
312
- .select2-container--classic .select2-selection--single .select2-selection__rendered {
313
- color: #444;
314
- line-height: 28px; }
315
- .select2-container--classic .select2-selection--single .select2-selection__clear {
316
- cursor: pointer;
317
- float: right;
318
- font-weight: bold;
319
- margin-right: 10px; }
320
- .select2-container--classic .select2-selection--single .select2-selection__placeholder {
321
- color: #999; }
322
- .select2-container--classic .select2-selection--single .select2-selection__arrow {
323
- background-color: #ddd;
324
- border: none;
325
- border-left: 1px solid #aaa;
326
- border-top-right-radius: 4px;
327
- border-bottom-right-radius: 4px;
328
- height: 26px;
329
- position: absolute;
330
- top: 1px;
331
- right: 1px;
332
- width: 20px;
333
- background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
334
- background-repeat: repeat-x;
335
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
336
- .select2-container--classic .select2-selection--single .select2-selection__arrow b {
337
- border-color: #888 transparent transparent transparent;
338
- border-style: solid;
339
- border-width: 5px 4px 0 4px;
340
- height: 0;
341
- left: 50%;
342
- margin-left: -4px;
343
- margin-top: -2px;
344
- position: absolute;
345
- top: 50%;
346
- width: 0; }
347
-
348
- .select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
349
- float: left; }
350
-
351
- .select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
352
- border: none;
353
- border-right: 1px solid #aaa;
354
- border-radius: 0;
355
- border-top-left-radius: 4px;
356
- border-bottom-left-radius: 4px;
357
- left: 1px;
358
- right: auto; }
359
-
360
- .select2-container--classic.select2-container--open .select2-selection--single {
361
- border: 1px solid #0073aa; }
362
- .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
363
- background: transparent;
364
- border: none; }
365
- .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
366
- border-color: transparent transparent #888 transparent;
367
- border-width: 0 4px 5px 4px; }
368
-
369
- .select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
370
- border-top: none;
371
- border-top-left-radius: 0;
372
- border-top-right-radius: 0;
373
- background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
374
- background-repeat: repeat-x;
375
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
376
-
377
- .select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
378
- border-bottom: none;
379
- border-bottom-left-radius: 0;
380
- border-bottom-right-radius: 0;
381
- background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
382
- background-repeat: repeat-x;
383
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }
384
-
385
- .select2-container--classic .select2-selection--multiple {
386
- background-color: white;
387
- border: 1px solid #aaa;
388
- border-radius: 4px;
389
- cursor: text;
390
- outline: 0; }
391
- .select2-container--classic .select2-selection--multiple:focus {
392
- border: 1px solid #0073aa; }
393
- .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
394
- list-style: none;
395
- margin: 0;
396
- padding: 0 5px; }
397
- .select2-container--classic .select2-selection--multiple .select2-selection__clear {
398
- display: none; }
399
- .select2-container--classic .select2-selection--multiple .select2-selection__choice {
400
- background-color: #e4e4e4;
401
- border: 1px solid #aaa;
402
- border-radius: 4px;
403
- cursor: default;
404
- float: left;
405
- margin-right: 5px;
406
- margin-top: 5px;
407
- padding: 0 5px; }
408
- .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
409
- color: #888;
410
- cursor: pointer;
411
- display: inline-block;
412
- font-weight: bold;
413
- margin-right: 2px; }
414
- .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
415
- color: #555; }
416
-
417
- .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
418
- float: right; }
419
-
420
- .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
421
- margin-left: 5px;
422
- margin-right: auto; }
423
-
424
- .select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
425
- margin-left: 2px;
426
- margin-right: auto; }
427
-
428
- .select2-container--classic.select2-container--open .select2-selection--multiple {
429
- border: 1px solid #0073aa; }
430
-
431
- .select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
432
- border-top: none;
433
- border-top-left-radius: 0;
434
- border-top-right-radius: 0; }
435
-
436
- .select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
437
- border-bottom: none;
438
- border-bottom-left-radius: 0;
439
- border-bottom-right-radius: 0; }
440
-
441
- .select2-container--classic .select2-search--dropdown .select2-search__field {
442
- border: 1px solid #aaa;
443
- outline: 0; }
444
-
445
- .select2-container--classic .select2-search--inline .select2-search__field {
446
- outline: 0;
447
- box-shadow: none; }
448
-
449
- .select2-container--classic .select2-dropdown {
450
- background-color: white;
451
- border: 1px solid transparent; }
452
-
453
- .select2-container--classic .select2-dropdown--above {
454
- border-bottom: none; }
455
-
456
- .select2-container--classic .select2-dropdown--below {
457
- border-top: none; }
458
-
459
- .select2-container--classic .select2-results > .select2-results__options {
460
- max-height: 200px;
461
- overflow-y: auto; }
462
-
463
- .select2-container--classic .select2-results__option[role=group] {
464
- padding: 0; }
465
-
466
- .select2-container--classic .select2-results__option[aria-disabled=true] {
467
- color: grey; }
468
-
469
- .select2-container--classic .select2-results__option--highlighted[data-selected],
470
- .select2-container--classic .select2-results__option--highlighted[aria-selected] {
471
- background-color: #3875d7;
472
- color: white; }
473
-
474
- .select2-container--classic .select2-results__group {
475
- cursor: default;
476
- display: block;
477
- padding: 6px; }
478
-
479
- .select2-container--classic.select2-container--open .select2-dropdown {
480
- border-color: #0073aa; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/css/{select2.css → select2/select2.css} RENAMED
File without changes
assets/css/sweetalert2/sweetalert2.css CHANGED
@@ -1,374 +1,72 @@
1
- @charset "UTF-8";
2
- @-webkit-keyframes swal2-show {
3
- 0% {
4
- transform: scale(0.7);
5
- }
6
- 45% {
7
- transform: scale(1.05);
8
- }
9
- 80% {
10
- transform: scale(0.95);
11
- }
12
- 100% {
13
- transform: scale(1);
14
- }
15
  }
16
- @keyframes swal2-show {
17
- 0% {
18
- transform: scale(0.7);
19
- }
20
- 45% {
21
- transform: scale(1.05);
22
- }
23
- 80% {
24
- transform: scale(0.95);
25
- }
26
- 100% {
27
- transform: scale(1);
28
- }
29
  }
30
- @-webkit-keyframes swal2-hide {
31
- 0% {
32
- transform: scale(1);
33
- opacity: 1;
34
- }
35
- 100% {
36
- transform: scale(0.5);
37
- opacity: 0;
38
- }
39
  }
40
- @keyframes swal2-hide {
41
- 0% {
42
- transform: scale(1);
43
- opacity: 1;
44
- }
45
- 100% {
46
- transform: scale(0.5);
47
- opacity: 0;
48
- }
49
  }
50
- @-webkit-keyframes swal2-animate-success-line-tip {
51
- 0% {
52
- top: 1.1875em;
53
- left: 0.0625em;
54
- width: 0;
55
- }
56
- 54% {
57
- top: 1.0625em;
58
- left: 0.125em;
59
- width: 0;
60
- }
61
- 70% {
62
- top: 2.1875em;
63
- left: -0.375em;
64
- width: 3.125em;
65
- }
66
- 84% {
67
- top: 3em;
68
- left: 1.3125em;
69
- width: 1.0625em;
70
- }
71
- 100% {
72
- top: 2.8125em;
73
- left: 0.875em;
74
- width: 1.5625em;
75
- }
76
  }
77
- @keyframes swal2-animate-success-line-tip {
78
- 0% {
79
- top: 1.1875em;
80
- left: 0.0625em;
81
- width: 0;
82
- }
83
- 54% {
84
- top: 1.0625em;
85
- left: 0.125em;
86
- width: 0;
87
- }
88
- 70% {
89
- top: 2.1875em;
90
- left: -0.375em;
91
- width: 3.125em;
92
- }
93
- 84% {
94
- top: 3em;
95
- left: 1.3125em;
96
- width: 1.0625em;
97
- }
98
- 100% {
99
- top: 2.8125em;
100
- left: 0.875em;
101
- width: 1.5625em;
102
- }
103
  }
104
- @-webkit-keyframes swal2-animate-success-line-long {
105
- 0% {
106
- top: 3.375em;
107
- right: 2.875em;
108
- width: 0;
109
- }
110
- 65% {
111
- top: 3.375em;
112
- right: 2.875em;
113
- width: 0;
114
- }
115
- 84% {
116
- top: 2.1875em;
117
- right: 0;
118
- width: 3.4375em;
119
- }
120
- 100% {
121
- top: 2.375em;
122
- right: 0.5em;
123
- width: 2.9375em;
124
- }
125
  }
126
- @keyframes swal2-animate-success-line-long {
127
- 0% {
128
- top: 3.375em;
129
- right: 2.875em;
130
- width: 0;
131
- }
132
- 65% {
133
- top: 3.375em;
134
- right: 2.875em;
135
- width: 0;
136
- }
137
- 84% {
138
- top: 2.1875em;
139
- right: 0;
140
- width: 3.4375em;
141
- }
142
- 100% {
143
- top: 2.375em;
144
- right: 0.5em;
145
- width: 2.9375em;
146
- }
147
  }
148
- @-webkit-keyframes swal2-rotate-success-circular-line {
149
- 0% {
150
- transform: rotate(-45deg);
151
- }
152
- 5% {
153
- transform: rotate(-45deg);
154
- }
155
- 12% {
156
- transform: rotate(-405deg);
157
- }
158
- 100% {
159
- transform: rotate(-405deg);
160
- }
161
  }
162
- @keyframes swal2-rotate-success-circular-line {
163
- 0% {
164
- transform: rotate(-45deg);
165
- }
166
- 5% {
167
- transform: rotate(-45deg);
168
- }
169
- 12% {
170
- transform: rotate(-405deg);
171
- }
172
- 100% {
173
- transform: rotate(-405deg);
174
- }
175
  }
176
- @-webkit-keyframes swal2-animate-error-x-mark {
177
- 0% {
178
- margin-top: 1.625em;
179
- transform: scale(0.4);
180
- opacity: 0;
181
- }
182
- 50% {
183
- margin-top: 1.625em;
184
- transform: scale(0.4);
185
- opacity: 0;
186
- }
187
- 80% {
188
- margin-top: -0.375em;
189
- transform: scale(1.15);
190
- }
191
- 100% {
192
- margin-top: 0;
193
- transform: scale(1);
194
- opacity: 1;
195
- }
196
  }
197
- @keyframes swal2-animate-error-x-mark {
198
- 0% {
199
- margin-top: 1.625em;
200
- transform: scale(0.4);
201
- opacity: 0;
202
- }
203
- 50% {
204
- margin-top: 1.625em;
205
- transform: scale(0.4);
206
- opacity: 0;
207
- }
208
- 80% {
209
- margin-top: -0.375em;
210
- transform: scale(1.15);
211
- }
212
- 100% {
213
- margin-top: 0;
214
- transform: scale(1);
215
- opacity: 1;
216
- }
217
  }
218
- @-webkit-keyframes swal2-animate-error-icon {
219
- 0% {
220
- transform: rotateX(100deg);
221
- opacity: 0;
222
- }
223
- 100% {
224
- transform: rotateX(0deg);
225
- opacity: 1;
226
- }
227
- }
228
- @keyframes swal2-animate-error-icon {
229
- 0% {
230
- transform: rotateX(100deg);
231
- opacity: 0;
232
- }
233
- 100% {
234
- transform: rotateX(0deg);
235
- opacity: 1;
236
- }
237
- }
238
- body.swal2-toast-shown .swal2-container {
239
- background-color: transparent;
240
- }
241
- body.swal2-toast-shown .swal2-container.swal2-shown {
242
- background-color: transparent;
243
- }
244
- body.swal2-toast-shown .swal2-container.swal2-top {
245
- top: 0;
246
- right: auto;
247
- bottom: auto;
248
- left: 50%;
249
- transform: translateX(-50%);
250
- }
251
- body.swal2-toast-shown .swal2-container.swal2-top-end, body.swal2-toast-shown .swal2-container.swal2-top-right {
252
- top: 0;
253
- right: 0;
254
- bottom: auto;
255
- left: auto;
256
- }
257
- body.swal2-toast-shown .swal2-container.swal2-top-start, body.swal2-toast-shown .swal2-container.swal2-top-left {
258
- top: 0;
259
- right: auto;
260
- bottom: auto;
261
- left: 0;
262
- }
263
- body.swal2-toast-shown .swal2-container.swal2-center-start, body.swal2-toast-shown .swal2-container.swal2-center-left {
264
- top: 50%;
265
- right: auto;
266
- bottom: auto;
267
- left: 0;
268
- transform: translateY(-50%);
269
- }
270
- body.swal2-toast-shown .swal2-container.swal2-center {
271
- top: 50%;
272
- right: auto;
273
- bottom: auto;
274
- left: 50%;
275
- transform: translate(-50%, -50%);
276
- }
277
- body.swal2-toast-shown .swal2-container.swal2-center-end, body.swal2-toast-shown .swal2-container.swal2-center-right {
278
- top: 50%;
279
- right: 0;
280
- bottom: auto;
281
- left: auto;
282
- transform: translateY(-50%);
283
- }
284
- body.swal2-toast-shown .swal2-container.swal2-bottom-start, body.swal2-toast-shown .swal2-container.swal2-bottom-left {
285
- top: auto;
286
- right: auto;
287
- bottom: 0;
288
- left: 0;
289
- }
290
- body.swal2-toast-shown .swal2-container.swal2-bottom {
291
- top: auto;
292
- right: auto;
293
- bottom: 0;
294
- left: 50%;
295
- transform: translateX(-50%);
296
- }
297
- body.swal2-toast-shown .swal2-container.swal2-bottom-end, body.swal2-toast-shown .swal2-container.swal2-bottom-right {
298
- top: auto;
299
- right: 0;
300
- bottom: 0;
301
- left: auto;
302
- }
303
- body.swal2-toast-column .swal2-toast {
304
- flex-direction: column;
305
- align-items: stretch;
306
- }
307
- body.swal2-toast-column .swal2-toast .swal2-actions {
308
- flex: 1;
309
- align-self: stretch;
310
- height: 2.2em;
311
- margin-top: 0.3125em;
312
- }
313
- body.swal2-toast-column .swal2-toast .swal2-loading {
314
- justify-content: center;
315
- }
316
- body.swal2-toast-column .swal2-toast .swal2-input {
317
- height: 2em;
318
- margin: 0.3125em auto;
319
- font-size: 1em;
320
- }
321
- body.swal2-toast-column .swal2-toast .swal2-validation-message {
322
- font-size: 1em;
323
- }
324
-
325
- .swal2-popup.swal2-toast {
326
- flex-direction: row;
327
- align-items: center;
328
- width: auto;
329
- padding: 0.625em;
330
- overflow-y: hidden;
331
- box-shadow: 0 0 0.625em #d9d9d9;
332
- }
333
- .swal2-popup.swal2-toast .swal2-header {
334
- flex-direction: row;
335
- }
336
- .swal2-popup.swal2-toast .swal2-title {
337
- flex-grow: 1;
338
- justify-content: flex-start;
339
- margin: 0 0.6em;
340
- font-size: 1em;
341
- }
342
- .swal2-popup.swal2-toast .swal2-footer {
343
- margin: 0.5em 0 0;
344
- padding: 0.5em 0 0;
345
- font-size: 0.8em;
346
- }
347
- .swal2-popup.swal2-toast .swal2-close {
348
- position: static;
349
- width: 0.8em;
350
- height: 0.8em;
351
- line-height: 0.8;
352
- }
353
- .swal2-popup.swal2-toast .swal2-content {
354
- justify-content: flex-start;
355
- font-size: 1em;
356
- }
357
- .swal2-popup.swal2-toast .swal2-icon {
358
- width: 2em;
359
- min-width: 2em;
360
- height: 2em;
361
- margin: 0;
362
- }
363
- .swal2-popup.swal2-toast .swal2-icon::before {
364
- display: flex;
365
- align-items: center;
366
- font-size: 2em;
367
- font-weight: bold;
368
- }
369
- @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
370
- .swal2-popup.swal2-toast .swal2-icon::before {
371
- font-size: 0.25em;
372
  }
373
  }
374
  .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
@@ -386,18 +84,23 @@ body.swal2-toast-column .swal2-toast .swal2-validation-message {
386
  right: 0.3125em;
387
  }
388
  .swal2-popup.swal2-toast .swal2-actions {
 
389
  flex-basis: auto !important;
 
390
  width: auto;
 
391
  height: auto;
392
  margin: 0 0.3125em;
 
 
393
  }
394
  .swal2-popup.swal2-toast .swal2-styled {
395
- margin: 0 0.3125em;
396
  padding: 0.3125em 0.625em;
397
  font-size: 1em;
398
  }
399
  .swal2-popup.swal2-toast .swal2-styled:focus {
400
- box-shadow: 0 0 0 0.0625em #fff, 0 0 0 0.125em rgba(50, 100, 150, 0.4);
401
  }
402
  .swal2-popup.swal2-toast .swal2-success {
403
  border-color: #a5dc86;
@@ -445,6 +148,14 @@ body.swal2-toast-column .swal2-toast .swal2-validation-message {
445
  right: 0.1875em;
446
  width: 1.375em;
447
  }
 
 
 
 
 
 
 
 
448
  .swal2-popup.swal2-toast.swal2-show {
449
  -webkit-animation: swal2-toast-show 0.5s;
450
  animation: swal2-toast-show 0.5s;
@@ -453,242 +164,42 @@ body.swal2-toast-column .swal2-toast .swal2-validation-message {
453
  -webkit-animation: swal2-toast-hide 0.1s forwards;
454
  animation: swal2-toast-hide 0.1s forwards;
455
  }
456
- .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip {
457
- -webkit-animation: swal2-toast-animate-success-line-tip 0.75s;
458
- animation: swal2-toast-animate-success-line-tip 0.75s;
 
 
 
 
 
 
 
 
 
 
 
 
 
459
  }
460
- .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long {
461
- -webkit-animation: swal2-toast-animate-success-line-long 0.75s;
462
- animation: swal2-toast-animate-success-line-long 0.75s;
463
  }
464
-
465
- @-webkit-keyframes swal2-toast-show {
466
- 0% {
467
- transform: translateY(-0.625em) rotateZ(2deg);
468
- }
469
- 33% {
470
- transform: translateY(0) rotateZ(-2deg);
471
- }
472
- 66% {
473
- transform: translateY(0.3125em) rotateZ(2deg);
474
- }
475
- 100% {
476
- transform: translateY(0) rotateZ(0deg);
477
- }
478
  }
479
-
480
- @keyframes swal2-toast-show {
481
- 0% {
482
- transform: translateY(-0.625em) rotateZ(2deg);
483
- }
484
- 33% {
485
- transform: translateY(0) rotateZ(-2deg);
486
- }
487
- 66% {
488
- transform: translateY(0.3125em) rotateZ(2deg);
489
- }
490
- 100% {
491
- transform: translateY(0) rotateZ(0deg);
492
- }
493
  }
494
- @-webkit-keyframes swal2-toast-hide {
495
- 100% {
496
- transform: rotateZ(1deg);
497
- opacity: 0;
498
- }
499
  }
500
- @keyframes swal2-toast-hide {
501
- 100% {
502
- transform: rotateZ(1deg);
503
- opacity: 0;
504
- }
505
  }
506
- @-webkit-keyframes swal2-toast-animate-success-line-tip {
507
- 0% {
508
- top: 0.5625em;
509
- left: 0.0625em;
510
- width: 0;
511
- }
512
- 54% {
513
- top: 0.125em;
514
- left: 0.125em;
515
- width: 0;
516
- }
517
- 70% {
518
- top: 0.625em;
519
- left: -0.25em;
520
- width: 1.625em;
521
- }
522
- 84% {
523
- top: 1.0625em;
524
- left: 0.75em;
525
- width: 0.5em;
526
- }
527
- 100% {
528
- top: 1.125em;
529
- left: 0.1875em;
530
- width: 0.75em;
531
- }
532
- }
533
- @keyframes swal2-toast-animate-success-line-tip {
534
- 0% {
535
- top: 0.5625em;
536
- left: 0.0625em;
537
- width: 0;
538
- }
539
- 54% {
540
- top: 0.125em;
541
- left: 0.125em;
542
- width: 0;
543
- }
544
- 70% {
545
- top: 0.625em;
546
- left: -0.25em;
547
- width: 1.625em;
548
- }
549
- 84% {
550
- top: 1.0625em;
551
- left: 0.75em;
552
- width: 0.5em;
553
- }
554
- 100% {
555
- top: 1.125em;
556
- left: 0.1875em;
557
- width: 0.75em;
558
- }
559
- }
560
- @-webkit-keyframes swal2-toast-animate-success-line-long {
561
- 0% {
562
- top: 1.625em;
563
- right: 1.375em;
564
- width: 0;
565
- }
566
- 65% {
567
- top: 1.25em;
568
- right: 0.9375em;
569
- width: 0;
570
- }
571
- 84% {
572
- top: 0.9375em;
573
- right: 0;
574
- width: 1.125em;
575
- }
576
- 100% {
577
- top: 0.9375em;
578
- right: 0.1875em;
579
- width: 1.375em;
580
- }
581
- }
582
- @keyframes swal2-toast-animate-success-line-long {
583
- 0% {
584
- top: 1.625em;
585
- right: 1.375em;
586
- width: 0;
587
- }
588
- 65% {
589
- top: 1.25em;
590
- right: 0.9375em;
591
- width: 0;
592
- }
593
- 84% {
594
- top: 0.9375em;
595
- right: 0;
596
- width: 1.125em;
597
- }
598
- 100% {
599
- top: 0.9375em;
600
- right: 0.1875em;
601
- width: 1.375em;
602
- }
603
- }
604
- body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
605
- overflow: hidden;
606
- }
607
- body.swal2-height-auto {
608
- height: auto !important;
609
- }
610
- body.swal2-no-backdrop .swal2-shown {
611
- top: auto;
612
- right: auto;
613
- bottom: auto;
614
- left: auto;
615
- max-width: calc(100% - 0.625em * 2);
616
- background-color: transparent;
617
- }
618
- body.swal2-no-backdrop .swal2-shown > .swal2-modal {
619
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
620
- }
621
- body.swal2-no-backdrop .swal2-shown.swal2-top {
622
- top: 0;
623
- left: 50%;
624
- transform: translateX(-50%);
625
- }
626
- body.swal2-no-backdrop .swal2-shown.swal2-top-start, body.swal2-no-backdrop .swal2-shown.swal2-top-left {
627
- top: 0;
628
- left: 0;
629
- }
630
- body.swal2-no-backdrop .swal2-shown.swal2-top-end, body.swal2-no-backdrop .swal2-shown.swal2-top-right {
631
- top: 0;
632
- right: 0;
633
- }
634
- body.swal2-no-backdrop .swal2-shown.swal2-center {
635
- top: 50%;
636
- left: 50%;
637
- transform: translate(-50%, -50%);
638
- }
639
- body.swal2-no-backdrop .swal2-shown.swal2-center-start, body.swal2-no-backdrop .swal2-shown.swal2-center-left {
640
- top: 50%;
641
- left: 0;
642
- transform: translateY(-50%);
643
- }
644
- body.swal2-no-backdrop .swal2-shown.swal2-center-end, body.swal2-no-backdrop .swal2-shown.swal2-center-right {
645
- top: 50%;
646
- right: 0;
647
- transform: translateY(-50%);
648
- }
649
- body.swal2-no-backdrop .swal2-shown.swal2-bottom {
650
- bottom: 0;
651
- left: 50%;
652
- transform: translateX(-50%);
653
- }
654
- body.swal2-no-backdrop .swal2-shown.swal2-bottom-start, body.swal2-no-backdrop .swal2-shown.swal2-bottom-left {
655
- bottom: 0;
656
- left: 0;
657
- }
658
- body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .swal2-shown.swal2-bottom-right {
659
- right: 0;
660
- bottom: 0;
661
- }
662
-
663
- .swal2-container {
664
- display: flex;
665
- position: fixed;
666
- z-index: 1060;
667
- top: 0;
668
- right: 0;
669
- bottom: 0;
670
- left: 0;
671
- flex-direction: row;
672
- align-items: center;
673
- justify-content: center;
674
- padding: 0.625em;
675
- overflow-x: hidden;
676
- background-color: transparent;
677
- -webkit-overflow-scrolling: touch;
678
- }
679
- .swal2-container.swal2-top {
680
- align-items: flex-start;
681
- }
682
- .swal2-container.swal2-top-start, .swal2-container.swal2-top-left {
683
- align-items: flex-start;
684
- justify-content: flex-start;
685
- }
686
- .swal2-container.swal2-top-end, .swal2-container.swal2-top-right {
687
- align-items: flex-start;
688
- justify-content: flex-end;
689
- }
690
- .swal2-container.swal2-center {
691
- align-items: center;
692
  }
693
  .swal2-container.swal2-center-start, .swal2-container.swal2-center-left {
694
  align-items: center;
@@ -743,6 +254,9 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
743
  align-content: center;
744
  justify-content: center;
745
  }
 
 
 
746
  .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen) > .swal2-modal {
747
  margin: auto;
748
  }
@@ -751,12 +265,6 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
751
  margin: 0 !important;
752
  }
753
  }
754
- .swal2-container.swal2-fade {
755
- transition: background-color 0.1s;
756
- }
757
- .swal2-container.swal2-shown {
758
- background-color: rgba(0, 0, 0, 0.4);
759
- }
760
 
761
  .swal2-popup {
762
  display: none;
@@ -768,7 +276,7 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
768
  max-width: 100%;
769
  padding: 1.25em;
770
  border: none;
771
- border-radius: 0.3125em;
772
  background: #fff;
773
  font-family: inherit;
774
  font-size: 1rem;
@@ -784,6 +292,7 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
784
  display: flex;
785
  flex-direction: column;
786
  align-items: center;
 
787
  }
788
 
789
  .swal2-title {
@@ -802,11 +311,13 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
802
  .swal2-actions {
803
  display: flex;
804
  z-index: 1;
 
805
  flex-wrap: wrap;
806
  align-items: center;
807
  justify-content: center;
808
  width: 100%;
809
  margin: 1.25em auto 0;
 
810
  }
811
  .swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
812
  opacity: 0.4;
@@ -817,46 +328,25 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
817
  .swal2-actions:not(.swal2-loading) .swal2-styled:active {
818
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
819
  }
820
- .swal2-actions.swal2-loading .swal2-styled.swal2-confirm {
821
- box-sizing: border-box;
822
- width: 2.5em;
823
- height: 2.5em;
824
- margin: 0.46875em;
825
- padding: 0;
 
 
826
  -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
827
  animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
828
- border: 0.25em solid transparent;
 
829
  border-radius: 100%;
830
- border-color: transparent;
831
- background-color: transparent !important;
832
- color: transparent;
833
- cursor: default;
834
- -webkit-user-select: none;
835
- -moz-user-select: none;
836
- -ms-user-select: none;
837
- user-select: none;
838
- }
839
- .swal2-actions.swal2-loading .swal2-styled.swal2-cancel {
840
- margin-right: 30px;
841
- margin-left: 30px;
842
- }
843
- .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm::after {
844
- content: "";
845
- display: inline-block;
846
- width: 15px;
847
- height: 15px;
848
- margin-left: 5px;
849
- -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
850
- animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
851
- border: 3px solid #999999;
852
- border-radius: 50%;
853
- border-right-color: transparent;
854
- box-shadow: 1px 1px 1px #fff;
855
  }
856
 
857
  .swal2-styled {
858
  margin: 0.3125em;
859
- padding: 0.625em 2em;
860
  box-shadow: none;
861
  font-weight: 500;
862
  }
@@ -867,21 +357,29 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
867
  border: 0;
868
  border-radius: 0.25em;
869
  background: initial;
870
- background-color: #3085d6;
 
 
 
 
 
 
 
 
871
  color: #fff;
872
- font-size: 1.0625em;
873
  }
874
  .swal2-styled.swal2-cancel {
875
  border: 0;
876
  border-radius: 0.25em;
877
  background: initial;
878
- background-color: #aaa;
879
  color: #fff;
880
- font-size: 1.0625em;
881
  }
882
  .swal2-styled:focus {
883
  outline: none;
884
- box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(50, 100, 150, 0.4);
885
  }
886
  .swal2-styled::-moz-focus-inner {
887
  border: 0;
@@ -896,6 +394,23 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
896
  font-size: 1em;
897
  }
898
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
899
  .swal2-image {
900
  max-width: 100%;
901
  margin: 1.25em auto;
@@ -904,9 +419,9 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
904
  .swal2-close {
905
  position: absolute;
906
  z-index: 2;
907
- /* 1617 */
908
  top: 0;
909
  right: 0;
 
910
  justify-content: center;
911
  width: 1.2em;
912
  height: 1.2em;
@@ -914,8 +429,7 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
914
  overflow: hidden;
915
  transition: color 0.1s ease-out;
916
  border: none;
917
- border-radius: 0;
918
- outline: initial;
919
  background: transparent;
920
  color: #cccccc;
921
  font-family: serif;
@@ -928,12 +442,19 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
928
  background: transparent;
929
  color: #f27474;
930
  }
 
 
 
 
 
 
 
931
 
932
  .swal2-content {
933
  z-index: 1;
934
  justify-content: center;
935
  margin: 0;
936
- padding: 0;
937
  color: #545454;
938
  font-size: 1.125em;
939
  font-weight: normal;
@@ -975,26 +496,12 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
975
  .swal2-textarea:focus {
976
  border: 1px solid #b4dbed;
977
  outline: none;
978
- box-shadow: 0 0 3px #c4e6f5;
979
- }
980
- .swal2-input::-webkit-input-placeholder,
981
- .swal2-file::-webkit-input-placeholder,
982
- .swal2-textarea::-webkit-input-placeholder {
983
- color: #cccccc;
984
- }
985
- .swal2-input::-moz-placeholder,
986
- .swal2-file::-moz-placeholder,
987
- .swal2-textarea::-moz-placeholder {
988
- color: #cccccc;
989
  }
990
- .swal2-input:-ms-input-placeholder,
991
- .swal2-file:-ms-input-placeholder,
992
- .swal2-textarea:-ms-input-placeholder {
993
  color: #cccccc;
994
  }
995
- .swal2-input::-ms-input-placeholder,
996
- .swal2-file::-ms-input-placeholder,
997
- .swal2-textarea::-ms-input-placeholder {
998
  color: #cccccc;
999
  }
1000
  .swal2-input::placeholder,
@@ -1005,7 +512,7 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
1005
 
1006
  .swal2-range {
1007
  margin: 1em auto;
1008
- background: inherit;
1009
  }
1010
  .swal2-range input {
1011
  width: 80%;
@@ -1055,7 +562,7 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
1055
  .swal2-checkbox {
1056
  align-items: center;
1057
  justify-content: center;
1058
- background: inherit;
1059
  color: inherit;
1060
  }
1061
  .swal2-radio label,
@@ -1065,13 +572,20 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
1065
  }
1066
  .swal2-radio input,
1067
  .swal2-checkbox input {
 
1068
  margin: 0 0.4em;
1069
  }
1070
 
 
 
 
 
 
 
1071
  .swal2-validation-message {
1072
- display: none;
1073
  align-items: center;
1074
  justify-content: center;
 
1075
  padding: 0.625em;
1076
  overflow: hidden;
1077
  background: #f0f0f0;
@@ -1086,7 +600,6 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
1086
  min-width: 1.5em;
1087
  height: 1.5em;
1088
  margin: 0 0.625em;
1089
- zoom: normal;
1090
  border-radius: 50%;
1091
  background-color: #f27474;
1092
  color: #fff;
@@ -1095,27 +608,6 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
1095
  text-align: center;
1096
  }
1097
 
1098
- @supports (-ms-accelerator: true) {
1099
- .swal2-range input {
1100
- width: 100% !important;
1101
- }
1102
- .swal2-range output {
1103
- display: none;
1104
- }
1105
- }
1106
- @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
1107
- .swal2-range input {
1108
- width: 100% !important;
1109
- }
1110
- .swal2-range output {
1111
- display: none;
1112
- }
1113
- }
1114
- @-moz-document url-prefix() {
1115
- .swal2-close:focus {
1116
- outline: 2px solid rgba(50, 100, 150, 0.4);
1117
- }
1118
- }
1119
  .swal2-icon {
1120
  position: relative;
1121
  box-sizing: content-box;
@@ -1123,9 +615,9 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
1123
  width: 5em;
1124
  height: 5em;
1125
  margin: 1.25em auto 1.875em;
1126
- zoom: normal;
1127
  border: 0.25em solid transparent;
1128
  border-radius: 50%;
 
1129
  font-family: inherit;
1130
  line-height: 5em;
1131
  cursor: default;
@@ -1134,14 +626,14 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
1134
  -ms-user-select: none;
1135
  user-select: none;
1136
  }
1137
- .swal2-icon::before {
1138
  display: flex;
1139
  align-items: center;
1140
- height: 92%;
1141
  font-size: 3.75em;
1142
  }
1143
  .swal2-icon.swal2-error {
1144
  border-color: #f27474;
 
1145
  }
1146
  .swal2-icon.swal2-error .swal2-x-mark {
1147
  position: relative;
@@ -1164,32 +656,29 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
1164
  right: 1em;
1165
  transform: rotate(-45deg);
1166
  }
 
 
 
 
 
 
 
 
1167
  .swal2-icon.swal2-warning {
1168
  border-color: #facea8;
1169
  color: #f8bb86;
1170
  }
1171
- .swal2-icon.swal2-warning::before {
1172
- content: "!";
1173
- }
1174
  .swal2-icon.swal2-info {
1175
  border-color: #9de0f6;
1176
  color: #3fc3ee;
1177
  }
1178
- .swal2-icon.swal2-info::before {
1179
- content: "i";
1180
- }
1181
  .swal2-icon.swal2-question {
1182
  border-color: #c9dae1;
1183
  color: #87adbd;
1184
  }
1185
- .swal2-icon.swal2-question::before {
1186
- content: "?";
1187
- }
1188
- .swal2-icon.swal2-question.swal2-arabic-question-mark::before {
1189
- content: "؟";
1190
- }
1191
  .swal2-icon.swal2-success {
1192
  border-color: #a5dc86;
 
1193
  }
1194
  .swal2-icon.swal2-success [class^=swal2-success-circular-line] {
1195
  position: absolute;
@@ -1242,7 +731,7 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
1242
  }
1243
  .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
1244
  top: 2.875em;
1245
- left: 0.875em;
1246
  width: 1.5625em;
1247
  transform: rotate(45deg);
1248
  }
@@ -1252,9 +741,23 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
1252
  width: 2.9375em;
1253
  transform: rotate(-45deg);
1254
  }
 
 
 
 
 
 
 
 
 
 
 
 
1255
 
1256
  .swal2-progress-steps {
 
1257
  align-items: center;
 
1258
  margin: 0 0 1.25em;
1259
  padding: 0;
1260
  background: inherit;
@@ -1266,16 +769,17 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
1266
  }
1267
  .swal2-progress-steps .swal2-progress-step {
1268
  z-index: 20;
 
1269
  width: 2em;
1270
  height: 2em;
1271
  border-radius: 2em;
1272
- background: #3085d6;
1273
  color: #fff;
1274
  line-height: 2em;
1275
  text-align: center;
1276
  }
1277
  .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
1278
- background: #3085d6;
1279
  }
1280
  .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step {
1281
  background: #add8e6;
@@ -1286,10 +790,11 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
1286
  }
1287
  .swal2-progress-steps .swal2-progress-step-line {
1288
  z-index: 10;
 
1289
  width: 2.5em;
1290
  height: 0.4em;
1291
  margin: 0 -1px;
1292
- background: #3085d6;
1293
  }
1294
 
1295
  [class^=swal2] {
@@ -1300,47 +805,423 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
1300
  -webkit-animation: swal2-show 0.3s;
1301
  animation: swal2-show 0.3s;
1302
  }
1303
- .swal2-show.swal2-noanimation {
1304
- -webkit-animation: none;
1305
- animation: none;
1306
- }
1307
 
1308
  .swal2-hide {
1309
  -webkit-animation: swal2-hide 0.15s forwards;
1310
  animation: swal2-hide 0.15s forwards;
1311
  }
1312
- .swal2-hide.swal2-noanimation {
1313
- -webkit-animation: none;
1314
- animation: none;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1315
  }
1316
-
1317
- .swal2-rtl .swal2-close {
1318
- right: auto;
1319
- left: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1320
  }
1321
-
1322
- .swal2-animate-success-icon .swal2-success-line-tip {
1323
- -webkit-animation: swal2-animate-success-line-tip 0.75s;
1324
- animation: swal2-animate-success-line-tip 0.75s;
 
 
 
 
 
 
 
 
 
1325
  }
1326
- .swal2-animate-success-icon .swal2-success-line-long {
1327
- -webkit-animation: swal2-animate-success-line-long 0.75s;
1328
- animation: swal2-animate-success-line-long 0.75s;
 
 
 
 
 
 
 
 
 
 
1329
  }
1330
- .swal2-animate-success-icon .swal2-success-circular-line-right {
1331
- -webkit-animation: swal2-rotate-success-circular-line 4.25s ease-in;
1332
- animation: swal2-rotate-success-circular-line 4.25s ease-in;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1333
  }
1334
-
1335
- .swal2-animate-error-icon {
1336
- -webkit-animation: swal2-animate-error-icon 0.5s;
1337
- animation: swal2-animate-error-icon 0.5s;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1338
  }
1339
- .swal2-animate-error-icon .swal2-x-mark {
1340
- -webkit-animation: swal2-animate-error-x-mark 0.5s;
1341
- animation: swal2-animate-error-x-mark 0.5s;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1342
  }
1343
-
1344
  @-webkit-keyframes swal2-rotate-loading {
1345
  0% {
1346
  transform: rotate(0deg);
@@ -1349,7 +1230,6 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
1349
  transform: rotate(360deg);
1350
  }
1351
  }
1352
-
1353
  @keyframes swal2-rotate-loading {
1354
  0% {
1355
  transform: rotate(0deg);
@@ -1358,6 +1238,64 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
1358
  transform: rotate(360deg);
1359
  }
1360
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1361
  @media print {
1362
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
1363
  overflow-y: scroll !important;
@@ -1368,4 +1306,66 @@ body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .sw
1368
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
1369
  position: static !important;
1370
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1371
  }
1
+ .swal2-popup.swal2-toast {
2
+ flex-direction: column;
3
+ align-items: stretch;
4
+ width: auto;
5
+ padding: 1.25em;
6
+ overflow-y: hidden;
7
+ background: #fff;
8
+ box-shadow: 0 0 0.625em #d9d9d9;
 
 
 
 
 
 
9
  }
10
+ .swal2-popup.swal2-toast .swal2-header {
11
+ flex-direction: row;
12
+ padding: 0;
 
 
 
 
 
 
 
 
 
 
13
  }
14
+ .swal2-popup.swal2-toast .swal2-title {
15
+ flex-grow: 1;
16
+ justify-content: flex-start;
17
+ margin: 0 0.625em;
18
+ font-size: 1em;
 
 
 
 
19
  }
20
+ .swal2-popup.swal2-toast .swal2-loading {
21
+ justify-content: center;
 
 
 
 
 
 
 
22
  }
23
+ .swal2-popup.swal2-toast .swal2-input {
24
+ height: 2em;
25
+ margin: 0.3125em auto;
26
+ font-size: 1em;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  }
28
+ .swal2-popup.swal2-toast .swal2-validation-message {
29
+ font-size: 1em;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
30
  }
31
+ .swal2-popup.swal2-toast .swal2-footer {
32
+ margin: 0.5em 0 0;
33
+ padding: 0.5em 0 0;
34
+ font-size: 0.8em;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  }
36
+ .swal2-popup.swal2-toast .swal2-close {
37
+ position: static;
38
+ width: 0.8em;
39
+ height: 0.8em;
40
+ line-height: 0.8;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  }
42
+ .swal2-popup.swal2-toast .swal2-content {
43
+ justify-content: flex-start;
44
+ margin: 0 0.625em;
45
+ padding: 0;
46
+ font-size: 1em;
47
+ text-align: initial;
 
 
 
 
 
 
 
48
  }
49
+ .swal2-popup.swal2-toast .swal2-html-container {
50
+ padding: 0.625em 0 0;
 
 
 
 
 
 
 
 
 
 
 
51
  }
52
+ .swal2-popup.swal2-toast .swal2-html-container:empty {
53
+ padding: 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
  }
55
+ .swal2-popup.swal2-toast .swal2-icon {
56
+ width: 2em;
57
+ min-width: 2em;
58
+ height: 2em;
59
+ margin: 0 0.5em 0 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  }
61
+ .swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
62
+ display: flex;
63
+ align-items: center;
64
+ font-size: 1.8em;
65
+ font-weight: bold;
66
+ }
67
+ @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
68
+ .swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
69
+ font-size: 0.25em;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
70
  }
71
  }
72
  .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
84
  right: 0.3125em;
85
  }
86
  .swal2-popup.swal2-toast .swal2-actions {
87
+ flex: 1;
88
  flex-basis: auto !important;
89
+ align-self: stretch;
90
  width: auto;
91
+ height: 2.2em;
92
  height: auto;
93
  margin: 0 0.3125em;
94
+ margin-top: 0.3125em;
95
+ padding: 0;
96
  }
97
  .swal2-popup.swal2-toast .swal2-styled {
98
+ margin: 0.125em 0.3125em;
99
  padding: 0.3125em 0.625em;
100
  font-size: 1em;
101
  }
102
  .swal2-popup.swal2-toast .swal2-styled:focus {
103
+ box-shadow: 0 0 0 1px #fff, 0 0 0 3px rgba(100, 150, 200, 0.5);
104
  }
105
  .swal2-popup.swal2-toast .swal2-success {
106
  border-color: #a5dc86;
148
  right: 0.1875em;
149
  width: 1.375em;
150
  }
151
+ .swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip {
152
+ -webkit-animation: swal2-toast-animate-success-line-tip 0.75s;
153
+ animation: swal2-toast-animate-success-line-tip 0.75s;
154
+ }
155
+ .swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long {
156
+ -webkit-animation: swal2-toast-animate-success-line-long 0.75s;
157
+ animation: swal2-toast-animate-success-line-long 0.75s;
158
+ }
159
  .swal2-popup.swal2-toast.swal2-show {
160
  -webkit-animation: swal2-toast-show 0.5s;
161
  animation: swal2-toast-show 0.5s;
164
  -webkit-animation: swal2-toast-hide 0.1s forwards;
165
  animation: swal2-toast-hide 0.1s forwards;
166
  }
167
+
168
+ .swal2-container {
169
+ display: flex;
170
+ position: fixed;
171
+ z-index: 1060;
172
+ top: 0;
173
+ right: 0;
174
+ bottom: 0;
175
+ left: 0;
176
+ flex-direction: row;
177
+ align-items: center;
178
+ justify-content: center;
179
+ padding: 0.625em;
180
+ overflow-x: hidden;
181
+ transition: background-color 0.1s;
182
+ -webkit-overflow-scrolling: touch;
183
  }
184
+ .swal2-container.swal2-backdrop-show, .swal2-container.swal2-noanimation {
185
+ background: rgba(0, 0, 0, 0.4);
 
186
  }
187
+ .swal2-container.swal2-backdrop-hide {
188
+ background: transparent !important;
 
 
 
 
 
 
 
 
 
 
 
 
189
  }
190
+ .swal2-container.swal2-top {
191
+ align-items: flex-start;
 
 
 
 
 
 
 
 
 
 
 
 
192
  }
193
+ .swal2-container.swal2-top-start, .swal2-container.swal2-top-left {
194
+ align-items: flex-start;
195
+ justify-content: flex-start;
 
 
196
  }
197
+ .swal2-container.swal2-top-end, .swal2-container.swal2-top-right {
198
+ align-items: flex-start;
199
+ justify-content: flex-end;
 
 
200
  }
201
+ .swal2-container.swal2-center {
202
+ align-items: center;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
  }
204
  .swal2-container.swal2-center-start, .swal2-container.swal2-center-left {
205
  align-items: center;
254
  align-content: center;
255
  justify-content: center;
256
  }
257
+ .swal2-container.swal2-no-transition {
258
+ transition: none !important;
259
+ }
260
  .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen) > .swal2-modal {
261
  margin: auto;
262
  }
265
  margin: 0 !important;
266
  }
267
  }
 
 
 
 
 
 
268
 
269
  .swal2-popup {
270
  display: none;
276
  max-width: 100%;
277
  padding: 1.25em;
278
  border: none;
279
+ border-radius: 5px;
280
  background: #fff;
281
  font-family: inherit;
282
  font-size: 1rem;
292
  display: flex;
293
  flex-direction: column;
294
  align-items: center;
295
+ padding: 0 1.8em;
296
  }
297
 
298
  .swal2-title {
311
  .swal2-actions {
312
  display: flex;
313
  z-index: 1;
314
+ box-sizing: border-box;
315
  flex-wrap: wrap;
316
  align-items: center;
317
  justify-content: center;
318
  width: 100%;
319
  margin: 1.25em auto 0;
320
+ padding: 0;
321
  }
322
  .swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
323
  opacity: 0.4;
328
  .swal2-actions:not(.swal2-loading) .swal2-styled:active {
329
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
330
  }
331
+
332
+ .swal2-loader {
333
+ display: none;
334
+ align-items: center;
335
+ justify-content: center;
336
+ width: 2.2em;
337
+ height: 2.2em;
338
+ margin: 0 1.875em;
339
  -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
340
  animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
341
+ border-width: 0.25em;
342
+ border-style: solid;
343
  border-radius: 100%;
344
+ border-color: #2778c4 transparent #2778c4 transparent;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
345
  }
346
 
347
  .swal2-styled {
348
  margin: 0.3125em;
349
+ padding: 0.625em 1.1em;
350
  box-shadow: none;
351
  font-weight: 500;
352
  }
357
  border: 0;
358
  border-radius: 0.25em;
359
  background: initial;
360
+ background-color: #2778c4;
361
+ color: #fff;
362
+ font-size: 1em;
363
+ }
364
+ .swal2-styled.swal2-deny {
365
+ border: 0;
366
+ border-radius: 0.25em;
367
+ background: initial;
368
+ background-color: #d14529;
369
  color: #fff;
370
+ font-size: 1em;
371
  }
372
  .swal2-styled.swal2-cancel {
373
  border: 0;
374
  border-radius: 0.25em;
375
  background: initial;
376
+ background-color: #757575;
377
  color: #fff;
378
+ font-size: 1em;
379
  }
380
  .swal2-styled:focus {
381
  outline: none;
382
+ box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5);
383
  }
384
  .swal2-styled::-moz-focus-inner {
385
  border: 0;
394
  font-size: 1em;
395
  }
396
 
397
+ .swal2-timer-progress-bar-container {
398
+ position: absolute;
399
+ right: 0;
400
+ bottom: 0;
401
+ left: 0;
402
+ height: 0.25em;
403
+ overflow: hidden;
404
+ border-bottom-right-radius: 5px;
405
+ border-bottom-left-radius: 5px;
406
+ }
407
+
408
+ .swal2-timer-progress-bar {
409
+ width: 100%;
410
+ height: 0.25em;
411
+ background: rgba(0, 0, 0, 0.2);
412
+ }
413
+
414
  .swal2-image {
415
  max-width: 100%;
416
  margin: 1.25em auto;
419
  .swal2-close {
420
  position: absolute;
421
  z-index: 2;
 
422
  top: 0;
423
  right: 0;
424
+ align-items: center;
425
  justify-content: center;
426
  width: 1.2em;
427
  height: 1.2em;
429
  overflow: hidden;
430
  transition: color 0.1s ease-out;
431
  border: none;
432
+ border-radius: 5px;
 
433
  background: transparent;
434
  color: #cccccc;
435
  font-family: serif;
442
  background: transparent;
443
  color: #f27474;
444
  }
445
+ .swal2-close:focus {
446
+ outline: none;
447
+ box-shadow: inset 0 0 0 3px rgba(100, 150, 200, 0.5);
448
+ }
449
+ .swal2-close::-moz-focus-inner {
450
+ border: 0;
451
+ }
452
 
453
  .swal2-content {
454
  z-index: 1;
455
  justify-content: center;
456
  margin: 0;
457
+ padding: 0 1.6em;
458
  color: #545454;
459
  font-size: 1.125em;
460
  font-weight: normal;
496
  .swal2-textarea:focus {
497
  border: 1px solid #b4dbed;
498
  outline: none;
499
+ box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5);
 
 
 
 
 
 
 
 
 
 
500
  }
501
+ .swal2-input::-moz-placeholder, .swal2-file::-moz-placeholder, .swal2-textarea::-moz-placeholder {
 
 
502
  color: #cccccc;
503
  }
504
+ .swal2-input:-ms-input-placeholder, .swal2-file:-ms-input-placeholder, .swal2-textarea:-ms-input-placeholder {
 
 
505
  color: #cccccc;
506
  }
507
  .swal2-input::placeholder,
512
 
513
  .swal2-range {
514
  margin: 1em auto;
515
+ background: #fff;
516
  }
517
  .swal2-range input {
518
  width: 80%;
562
  .swal2-checkbox {
563
  align-items: center;
564
  justify-content: center;
565
+ background: #fff;
566
  color: inherit;
567
  }
568
  .swal2-radio label,
572
  }
573
  .swal2-radio input,
574
  .swal2-checkbox input {
575
+ flex-shrink: 0;
576
  margin: 0 0.4em;
577
  }
578
 
579
+ .swal2-input-label {
580
+ display: flex;
581
+ justify-content: center;
582
+ margin: 1em auto;
583
+ }
584
+
585
  .swal2-validation-message {
 
586
  align-items: center;
587
  justify-content: center;
588
+ margin: 0 -2.7em;
589
  padding: 0.625em;
590
  overflow: hidden;
591
  background: #f0f0f0;
600
  min-width: 1.5em;
601
  height: 1.5em;
602
  margin: 0 0.625em;
 
603
  border-radius: 50%;
604
  background-color: #f27474;
605
  color: #fff;
608
  text-align: center;
609
  }
610
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
611
  .swal2-icon {
612
  position: relative;
613
  box-sizing: content-box;
615
  width: 5em;
616
  height: 5em;
617
  margin: 1.25em auto 1.875em;
 
618
  border: 0.25em solid transparent;
619
  border-radius: 50%;
620
+ border-color: #000;
621
  font-family: inherit;
622
  line-height: 5em;
623
  cursor: default;
626
  -ms-user-select: none;
627
  user-select: none;
628
  }
629
+ .swal2-icon .swal2-icon-content {
630
  display: flex;
631
  align-items: center;
 
632
  font-size: 3.75em;
633
  }
634
  .swal2-icon.swal2-error {
635
  border-color: #f27474;
636
+ color: #f27474;
637
  }
638
  .swal2-icon.swal2-error .swal2-x-mark {
639
  position: relative;
656
  right: 1em;
657
  transform: rotate(-45deg);
658
  }
659
+ .swal2-icon.swal2-error.swal2-icon-show {
660
+ -webkit-animation: swal2-animate-error-icon 0.5s;
661
+ animation: swal2-animate-error-icon 0.5s;
662
+ }
663
+ .swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark {
664
+ -webkit-animation: swal2-animate-error-x-mark 0.5s;
665
+ animation: swal2-animate-error-x-mark 0.5s;
666
+ }
667
  .swal2-icon.swal2-warning {
668
  border-color: #facea8;
669
  color: #f8bb86;
670
  }
 
 
 
671
  .swal2-icon.swal2-info {
672
  border-color: #9de0f6;
673
  color: #3fc3ee;
674
  }
 
 
 
675
  .swal2-icon.swal2-question {
676
  border-color: #c9dae1;
677
  color: #87adbd;
678
  }
 
 
 
 
 
 
679
  .swal2-icon.swal2-success {
680
  border-color: #a5dc86;
681
+ color: #a5dc86;
682
  }
683
  .swal2-icon.swal2-success [class^=swal2-success-circular-line] {
684
  position: absolute;
731
  }
732
  .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
733
  top: 2.875em;
734
+ left: 0.8125em;
735
  width: 1.5625em;
736
  transform: rotate(45deg);
737
  }
741
  width: 2.9375em;
742
  transform: rotate(-45deg);
743
  }
744
+ .swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip {
745
+ -webkit-animation: swal2-animate-success-line-tip 0.75s;
746
+ animation: swal2-animate-success-line-tip 0.75s;
747
+ }
748
+ .swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long {
749
+ -webkit-animation: swal2-animate-success-line-long 0.75s;
750
+ animation: swal2-animate-success-line-long 0.75s;
751
+ }
752
+ .swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right {
753
+ -webkit-animation: swal2-rotate-success-circular-line 4.25s ease-in;
754
+ animation: swal2-rotate-success-circular-line 4.25s ease-in;
755
+ }
756
 
757
  .swal2-progress-steps {
758
+ flex-wrap: wrap;
759
  align-items: center;
760
+ max-width: 100%;
761
  margin: 0 0 1.25em;
762
  padding: 0;
763
  background: inherit;
769
  }
770
  .swal2-progress-steps .swal2-progress-step {
771
  z-index: 20;
772
+ flex-shrink: 0;
773
  width: 2em;
774
  height: 2em;
775
  border-radius: 2em;
776
+ background: #2778c4;
777
  color: #fff;
778
  line-height: 2em;
779
  text-align: center;
780
  }
781
  .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
782
+ background: #2778c4;
783
  }
784
  .swal2-progress-steps .swal2-progress-step.swal2-active-progress-step ~ .swal2-progress-step {
785
  background: #add8e6;
790
  }
791
  .swal2-progress-steps .swal2-progress-step-line {
792
  z-index: 10;
793
+ flex-shrink: 0;
794
  width: 2.5em;
795
  height: 0.4em;
796
  margin: 0 -1px;
797
+ background: #2778c4;
798
  }
799
 
800
  [class^=swal2] {
805
  -webkit-animation: swal2-show 0.3s;
806
  animation: swal2-show 0.3s;
807
  }
 
 
 
 
808
 
809
  .swal2-hide {
810
  -webkit-animation: swal2-hide 0.15s forwards;
811
  animation: swal2-hide 0.15s forwards;
812
  }
813
+
814
+ .swal2-noanimation {
815
+ transition: none;
816
+ }
817
+
818
+ .swal2-scrollbar-measure {
819
+ position: absolute;
820
+ top: -9999px;
821
+ width: 50px;
822
+ height: 50px;
823
+ overflow: scroll;
824
+ }
825
+
826
+ .swal2-rtl .swal2-close {
827
+ right: auto;
828
+ left: 0;
829
+ }
830
+ .swal2-rtl .swal2-timer-progress-bar {
831
+ right: 0;
832
+ left: auto;
833
+ }
834
+
835
+ @supports (-ms-accelerator: true) {
836
+ .swal2-range input {
837
+ width: 100% !important;
838
+ }
839
+ .swal2-range output {
840
+ display: none;
841
+ }
842
+ }
843
+ @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
844
+ .swal2-range input {
845
+ width: 100% !important;
846
+ }
847
+ .swal2-range output {
848
+ display: none;
849
+ }
850
+ }
851
+ @-webkit-keyframes swal2-toast-show {
852
+ 0% {
853
+ transform: translateY(-0.625em) rotateZ(2deg);
854
+ }
855
+ 33% {
856
+ transform: translateY(0) rotateZ(-2deg);
857
+ }
858
+ 66% {
859
+ transform: translateY(0.3125em) rotateZ(2deg);
860
+ }
861
+ 100% {
862
+ transform: translateY(0) rotateZ(0deg);
863
+ }
864
+ }
865
+ @keyframes swal2-toast-show {
866
+ 0% {
867
+ transform: translateY(-0.625em) rotateZ(2deg);
868
+ }
869
+ 33% {
870
+ transform: translateY(0) rotateZ(-2deg);
871
+ }
872
+ 66% {
873
+ transform: translateY(0.3125em) rotateZ(2deg);
874
+ }
875
+ 100% {
876
+ transform: translateY(0) rotateZ(0deg);
877
+ }
878
+ }
879
+ @-webkit-keyframes swal2-toast-hide {
880
+ 100% {
881
+ transform: rotateZ(1deg);
882
+ opacity: 0;
883
+ }
884
+ }
885
+ @keyframes swal2-toast-hide {
886
+ 100% {
887
+ transform: rotateZ(1deg);
888
+ opacity: 0;
889
+ }
890
+ }
891
+ @-webkit-keyframes swal2-toast-animate-success-line-tip {
892
+ 0% {
893
+ top: 0.5625em;
894
+ left: 0.0625em;
895
+ width: 0;
896
+ }
897
+ 54% {
898
+ top: 0.125em;
899
+ left: 0.125em;
900
+ width: 0;
901
+ }
902
+ 70% {
903
+ top: 0.625em;
904
+ left: -0.25em;
905
+ width: 1.625em;
906
+ }
907
+ 84% {
908
+ top: 1.0625em;
909
+ left: 0.75em;
910
+ width: 0.5em;
911
+ }
912
+ 100% {
913
+ top: 1.125em;
914
+ left: 0.1875em;
915
+ width: 0.75em;
916
+ }
917
+ }
918
+ @keyframes swal2-toast-animate-success-line-tip {
919
+ 0% {
920
+ top: 0.5625em;
921
+ left: 0.0625em;
922
+ width: 0;
923
+ }
924
+ 54% {
925
+ top: 0.125em;
926
+ left: 0.125em;
927
+ width: 0;
928
+ }
929
+ 70% {
930
+ top: 0.625em;
931
+ left: -0.25em;
932
+ width: 1.625em;
933
+ }
934
+ 84% {
935
+ top: 1.0625em;
936
+ left: 0.75em;
937
+ width: 0.5em;
938
+ }
939
+ 100% {
940
+ top: 1.125em;
941
+ left: 0.1875em;
942
+ width: 0.75em;
943
+ }
944
+ }
945
+ @-webkit-keyframes swal2-toast-animate-success-line-long {
946
+ 0% {
947
+ top: 1.625em;
948
+ right: 1.375em;
949
+ width: 0;
950
+ }
951
+ 65% {
952
+ top: 1.25em;
953
+ right: 0.9375em;
954
+ width: 0;
955
+ }
956
+ 84% {
957
+ top: 0.9375em;
958
+ right: 0;
959
+ width: 1.125em;
960
+ }
961
+ 100% {
962
+ top: 0.9375em;
963
+ right: 0.1875em;
964
+ width: 1.375em;
965
+ }
966
+ }
967
+ @keyframes swal2-toast-animate-success-line-long {
968
+ 0% {
969
+ top: 1.625em;
970
+ right: 1.375em;
971
+ width: 0;
972
+ }
973
+ 65% {
974
+ top: 1.25em;
975
+ right: 0.9375em;
976
+ width: 0;
977
+ }
978
+ 84% {
979
+ top: 0.9375em;
980
+ right: 0;
981
+ width: 1.125em;
982
+ }
983
+ 100% {
984
+ top: 0.9375em;
985
+ right: 0.1875em;
986
+ width: 1.375em;
987
+ }
988
+ }
989
+ @-webkit-keyframes swal2-show {
990
+ 0% {
991
+ transform: scale(0.7);
992
+ }
993
+ 45% {
994
+ transform: scale(1.05);
995
+ }
996
+ 80% {
997
+ transform: scale(0.95);
998
+ }
999
+ 100% {
1000
+ transform: scale(1);
1001
+ }
1002
+ }
1003
+ @keyframes swal2-show {
1004
+ 0% {
1005
+ transform: scale(0.7);
1006
+ }
1007
+ 45% {
1008
+ transform: scale(1.05);
1009
+ }
1010
+ 80% {
1011
+ transform: scale(0.95);
1012
+ }
1013
+ 100% {
1014
+ transform: scale(1);
1015
+ }
1016
+ }
1017
+ @-webkit-keyframes swal2-hide {
1018
+ 0% {
1019
+ transform: scale(1);
1020
+ opacity: 1;
1021
+ }
1022
+ 100% {
1023
+ transform: scale(0.5);
1024
+ opacity: 0;
1025
+ }
1026
+ }
1027
+ @keyframes swal2-hide {
1028
+ 0% {
1029
+ transform: scale(1);
1030
+ opacity: 1;
1031
+ }
1032
+ 100% {
1033
+ transform: scale(0.5);
1034
+ opacity: 0;
1035
+ }
1036
+ }
1037
+ @-webkit-keyframes swal2-animate-success-line-tip {
1038
+ 0% {
1039
+ top: 1.1875em;
1040
+ left: 0.0625em;
1041
+ width: 0;
1042
+ }
1043
+ 54% {
1044
+ top: 1.0625em;
1045
+ left: 0.125em;
1046
+ width: 0;
1047
+ }
1048
+ 70% {
1049
+ top: 2.1875em;
1050
+ left: -0.375em;
1051
+ width: 3.125em;
1052
+ }
1053
+ 84% {
1054
+ top: 3em;
1055
+ left: 1.3125em;
1056
+ width: 1.0625em;
1057
+ }
1058
+ 100% {
1059
+ top: 2.8125em;
1060
+ left: 0.8125em;
1061
+ width: 1.5625em;
1062
+ }
1063
+ }
1064
+ @keyframes swal2-animate-success-line-tip {
1065
+ 0% {
1066
+ top: 1.1875em;
1067
+ left: 0.0625em;
1068
+ width: 0;
1069
+ }
1070
+ 54% {
1071
+ top: 1.0625em;
1072
+ left: 0.125em;
1073
+ width: 0;
1074
+ }
1075
+ 70% {
1076
+ top: 2.1875em;
1077
+ left: -0.375em;
1078
+ width: 3.125em;
1079
+ }
1080
+ 84% {
1081
+ top: 3em;
1082
+ left: 1.3125em;
1083
+ width: 1.0625em;
1084
+ }
1085
+ 100% {
1086
+ top: 2.8125em;
1087
+ left: 0.8125em;
1088
+ width: 1.5625em;
1089
+ }
1090
+ }
1091
+ @-webkit-keyframes swal2-animate-success-line-long {
1092
+ 0% {
1093
+ top: 3.375em;
1094
+ right: 2.875em;
1095
+ width: 0;
1096
+ }
1097
+ 65% {
1098
+ top: 3.375em;
1099
+ right: 2.875em;
1100
+ width: 0;
1101
+ }
1102
+ 84% {
1103
+ top: 2.1875em;
1104
+ right: 0;
1105
+ width: 3.4375em;
1106
+ }
1107
+ 100% {
1108
+ top: 2.375em;
1109
+ right: 0.5em;
1110
+ width: 2.9375em;
1111
+ }
1112
  }
1113
+ @keyframes swal2-animate-success-line-long {
1114
+ 0% {
1115
+ top: 3.375em;
1116
+ right: 2.875em;
1117
+ width: 0;
1118
+ }
1119
+ 65% {
1120
+ top: 3.375em;
1121
+ right: 2.875em;
1122
+ width: 0;
1123
+ }
1124
+ 84% {
1125
+ top: 2.1875em;
1126
+ right: 0;
1127
+ width: 3.4375em;
1128
+ }
1129
+ 100% {
1130
+ top: 2.375em;
1131
+ right: 0.5em;
1132
+ width: 2.9375em;
1133
+ }
1134
  }
1135
+ @-webkit-keyframes swal2-rotate-success-circular-line {
1136
+ 0% {
1137
+ transform: rotate(-45deg);
1138
+ }
1139
+ 5% {
1140
+ transform: rotate(-45deg);
1141
+ }
1142
+ 12% {
1143
+ transform: rotate(-405deg);
1144
+ }
1145
+ 100% {
1146
+ transform: rotate(-405deg);
1147
+ }
1148
  }
1149
+ @keyframes swal2-rotate-success-circular-line {
1150
+ 0% {
1151
+ transform: rotate(-45deg);
1152
+ }
1153
+ 5% {
1154
+ transform: rotate(-45deg);
1155
+ }
1156
+ 12% {
1157
+ transform: rotate(-405deg);
1158
+ }
1159
+ 100% {
1160
+ transform: rotate(-405deg);
1161
+ }
1162
  }
1163
+ @-webkit-keyframes swal2-animate-error-x-mark {
1164
+ 0% {
1165
+ margin-top: 1.625em;
1166
+ transform: scale(0.4);
1167
+ opacity: 0;
1168
+ }
1169
+ 50% {
1170
+ margin-top: 1.625em;
1171
+ transform: scale(0.4);
1172
+ opacity: 0;
1173
+ }
1174
+ 80% {
1175
+ margin-top: -0.375em;
1176
+ transform: scale(1.15);
1177
+ }
1178
+ 100% {
1179
+ margin-top: 0;
1180
+ transform: scale(1);
1181
+ opacity: 1;
1182
+ }
1183
  }
1184
+ @keyframes swal2-animate-error-x-mark {
1185
+ 0% {
1186
+ margin-top: 1.625em;
1187
+ transform: scale(0.4);
1188
+ opacity: 0;
1189
+ }
1190
+ 50% {
1191
+ margin-top: 1.625em;
1192
+ transform: scale(0.4);
1193
+ opacity: 0;
1194
+ }
1195
+ 80% {
1196
+ margin-top: -0.375em;
1197
+ transform: scale(1.15);
1198
+ }
1199
+ 100% {
1200
+ margin-top: 0;
1201
+ transform: scale(1);
1202
+ opacity: 1;
1203
+ }
1204
  }
1205
+ @-webkit-keyframes swal2-animate-error-icon {
1206
+ 0% {
1207
+ transform: rotateX(100deg);
1208
+ opacity: 0;
1209
+ }
1210
+ 100% {
1211
+ transform: rotateX(0deg);
1212
+ opacity: 1;
1213
+ }
1214
+ }
1215
+ @keyframes swal2-animate-error-icon {
1216
+ 0% {
1217
+ transform: rotateX(100deg);
1218
+ opacity: 0;
1219
+ }
1220
+ 100% {
1221
+ transform: rotateX(0deg);
1222
+ opacity: 1;
1223
+ }
1224
  }
 
1225
  @-webkit-keyframes swal2-rotate-loading {
1226
  0% {
1227
  transform: rotate(0deg);
1230
  transform: rotate(360deg);
1231
  }
1232
  }
 
1233
  @keyframes swal2-rotate-loading {
1234
  0% {
1235
  transform: rotate(0deg);
1238
  transform: rotate(360deg);
1239
  }
1240
  }
1241
+ body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
1242
+ overflow: hidden;
1243
+ }
1244
+ body.swal2-height-auto {
1245
+ height: auto !important;
1246
+ }
1247
+ body.swal2-no-backdrop .swal2-container {
1248
+ top: auto;
1249
+ right: auto;
1250
+ bottom: auto;
1251
+ left: auto;
1252
+ max-width: calc(100% - 0.625em * 2);
1253
+ background-color: transparent !important;
1254
+ }
1255
+ body.swal2-no-backdrop .swal2-container > .swal2-modal {
1256
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
1257
+ }
1258
+ body.swal2-no-backdrop .swal2-container.swal2-top {
1259
+ top: 0;
1260
+ left: 50%;
1261
+ transform: translateX(-50%);
1262
+ }
1263
+ body.swal2-no-backdrop .swal2-container.swal2-top-start, body.swal2-no-backdrop .swal2-container.swal2-top-left {
1264
+ top: 0;
1265
+ left: 0;
1266
+ }
1267
+ body.swal2-no-backdrop .swal2-container.swal2-top-end, body.swal2-no-backdrop .swal2-container.swal2-top-right {
1268
+ top: 0;
1269
+ right: 0;
1270
+ }
1271
+ body.swal2-no-backdrop .swal2-container.swal2-center {
1272
+ top: 50%;
1273
+ left: 50%;
1274
+ transform: translate(-50%, -50%);
1275
+ }
1276
+ body.swal2-no-backdrop .swal2-container.swal2-center-start, body.swal2-no-backdrop .swal2-container.swal2-center-left {
1277
+ top: 50%;
1278
+ left: 0;
1279
+ transform: translateY(-50%);
1280
+ }
1281
+ body.swal2-no-backdrop .swal2-container.swal2-center-end, body.swal2-no-backdrop .swal2-container.swal2-center-right {
1282
+ top: 50%;
1283
+ right: 0;
1284
+ transform: translateY(-50%);
1285
+ }
1286
+ body.swal2-no-backdrop .swal2-container.swal2-bottom {
1287
+ bottom: 0;
1288
+ left: 50%;
1289
+ transform: translateX(-50%);
1290
+ }
1291
+ body.swal2-no-backdrop .swal2-container.swal2-bottom-start, body.swal2-no-backdrop .swal2-container.swal2-bottom-left {
1292
+ bottom: 0;
1293
+ left: 0;
1294
+ }
1295
+ body.swal2-no-backdrop .swal2-container.swal2-bottom-end, body.swal2-no-backdrop .swal2-container.swal2-bottom-right {
1296
+ right: 0;
1297
+ bottom: 0;
1298
+ }
1299
  @media print {
1300
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
1301
  overflow-y: scroll !important;
1306
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container {
1307
  position: static !important;
1308
  }
1309
+ }
1310
+ body.swal2-toast-shown .swal2-container {
1311
+ background-color: transparent;
1312
+ }
1313
+ body.swal2-toast-shown .swal2-container.swal2-top {
1314
+ top: 0;
1315
+ right: auto;
1316
+ bottom: auto;
1317
+ left: 50%;
1318
+ transform: translateX(-50%);
1319
+ }
1320
+ body.swal2-toast-shown .swal2-container.swal2-top-end, body.swal2-toast-shown .swal2-container.swal2-top-right {
1321
+ top: 0;
1322
+ right: 0;
1323
+ bottom: auto;
1324
+ left: auto;
1325
+ }
1326
+ body.swal2-toast-shown .swal2-container.swal2-top-start, body.swal2-toast-shown .swal2-container.swal2-top-left {
1327
+ top: 0;
1328
+ right: auto;
1329
+ bottom: auto;
1330
+ left: 0;
1331
+ }
1332
+ body.swal2-toast-shown .swal2-container.swal2-center-start, body.swal2-toast-shown .swal2-container.swal2-center-left {
1333
+ top: 50%;
1334
+ right: auto;
1335
+ bottom: auto;
1336
+ left: 0;
1337
+ transform: translateY(-50%);
1338
+ }
1339
+ body.swal2-toast-shown .swal2-container.swal2-center {
1340
+ top: 50%;
1341
+ right: auto;
1342
+ bottom: auto;
1343
+ left: 50%;
1344
+ transform: translate(-50%, -50%);
1345
+ }
1346
+ body.swal2-toast-shown .swal2-container.swal2-center-end, body.swal2-toast-shown .swal2-container.swal2-center-right {
1347
+ top: 50%;
1348
+ right: 0;
1349
+ bottom: auto;
1350
+ left: auto;
1351
+ transform: translateY(-50%);
1352
+ }
1353
+ body.swal2-toast-shown .swal2-container.swal2-bottom-start, body.swal2-toast-shown .swal2-container.swal2-bottom-left {
1354
+ top: auto;
1355
+ right: auto;
1356
+ bottom: 0;
1357
+ left: 0;
1358
+ }
1359
+ body.swal2-toast-shown .swal2-container.swal2-bottom {
1360
+ top: auto;
1361
+ right: auto;
1362
+ bottom: 0;
1363
+ left: 50%;
1364
+ transform: translateX(-50%);
1365
+ }
1366
+ body.swal2-toast-shown .swal2-container.swal2-bottom-end, body.swal2-toast-shown .swal2-container.swal2-bottom-right {
1367
+ top: auto;
1368
+ right: 0;
1369
+ bottom: 0;
1370
+ left: auto;
1371
  }
assets/css/sweetalert2/sweetalert2.min.css CHANGED
@@ -1 +1 @@
1
- @charset "UTF-8";@-webkit-keyframes swal2-show{0%{transform:scale(.7)}45%{transform:scale(1.05)}80%{transform:scale(.95)}100%{transform:scale(1)}}@keyframes swal2-show{0%{transform:scale(.7)}45%{transform:scale(1.05)}80%{transform:scale(.95)}100%{transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{transform:scale(1);opacity:1}100%{transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{transform:scale(1);opacity:1}100%{transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}100%{top:2.8125em;left:.875em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}100%{top:2.8125em;left:.875em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}100%{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}100%{top:2.375em;right:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}100%{transform:rotate(-405deg)}}@keyframes swal2-rotate-success-circular-line{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}100%{transform:rotate(-405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;transform:scale(.4);opacity:0}50%{margin-top:1.625em;transform:scale(.4);opacity:0}80%{margin-top:-.375em;transform:scale(1.15)}100%{margin-top:0;transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;transform:scale(.4);opacity:0}50%{margin-top:1.625em;transform:scale(.4);opacity:0}80%{margin-top:-.375em;transform:scale(1.15)}100%{margin-top:0;transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0);opacity:1}}body.swal2-toast-shown .swal2-container{background-color:transparent}body.swal2-toast-shown .swal2-container.swal2-shown{background-color:transparent}body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-top-end,body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}body.swal2-toast-shown .swal2-container.swal2-top-left,body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}body.swal2-toast-shown .swal2-container.swal2-center-left,body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;transform:translate(-50%,-50%)}body.swal2-toast-shown .swal2-container.swal2-center-end,body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-left,body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-end,body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}body.swal2-toast-column .swal2-toast{flex-direction:column;align-items:stretch}body.swal2-toast-column .swal2-toast .swal2-actions{flex:1;align-self:stretch;height:2.2em;margin-top:.3125em}body.swal2-toast-column .swal2-toast .swal2-loading{justify-content:center}body.swal2-toast-column .swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}body.swal2-toast-column .swal2-toast .swal2-validation-message{font-size:1em}.swal2-popup.swal2-toast{flex-direction:row;align-items:center;width:auto;padding:.625em;overflow-y:hidden;box-shadow:0 0 .625em #d9d9d9}.swal2-popup.swal2-toast .swal2-header{flex-direction:row}.swal2-popup.swal2-toast .swal2-title{flex-grow:1;justify-content:flex-start;margin:0 .6em;font-size:1em}.swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.swal2-popup.swal2-toast .swal2-content{justify-content:flex-start;font-size:1em}.swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0}.swal2-popup.swal2-toast .swal2-icon::before{display:flex;align-items:center;font-size:2em;font-weight:700}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.swal2-popup.swal2-toast .swal2-icon::before{font-size:.25em}}.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.swal2-popup.swal2-toast .swal2-actions{flex-basis:auto!important;width:auto;height:auto;margin:0 .3125em}.swal2-popup.swal2-toast .swal2-styled{margin:0 .3125em;padding:.3125em .625em;font-size:1em}.swal2-popup.swal2-toast .swal2-styled:focus{box-shadow:0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)}.swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:1.6em;height:3em;transform:rotate(45deg);border-radius:50%}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.8em;left:-.5em;transform:rotate(-45deg);transform-origin:2em 2em;border-radius:4em 0 0 4em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;transform-origin:0 1.5em;border-radius:0 4em 4em 0}.swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.swal2-popup.swal2-toast.swal2-show{-webkit-animation:swal2-toast-show .5s;animation:swal2-toast-show .5s}.swal2-popup.swal2-toast.swal2-hide{-webkit-animation:swal2-toast-hide .1s forwards;animation:swal2-toast-hide .1s forwards}.swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-toast-animate-success-line-tip .75s;animation:swal2-toast-animate-success-line-tip .75s}.swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-toast-animate-success-line-long .75s;animation:swal2-toast-animate-success-line-long .75s}@-webkit-keyframes swal2-toast-show{0%{transform:translateY(-.625em) rotateZ(2deg)}33%{transform:translateY(0) rotateZ(-2deg)}66%{transform:translateY(.3125em) rotateZ(2deg)}100%{transform:translateY(0) rotateZ(0)}}@keyframes swal2-toast-show{0%{transform:translateY(-.625em) rotateZ(2deg)}33%{transform:translateY(0) rotateZ(-2deg)}66%{transform:translateY(.3125em) rotateZ(2deg)}100%{transform:translateY(0) rotateZ(0)}}@-webkit-keyframes swal2-toast-hide{100%{transform:rotateZ(1deg);opacity:0}}@keyframes swal2-toast-hide{100%{transform:rotateZ(1deg);opacity:0}}@-webkit-keyframes swal2-toast-animate-success-line-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}100%{top:1.125em;left:.1875em;width:.75em}}@keyframes swal2-toast-animate-success-line-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}100%{top:1.125em;left:.1875em;width:.75em}}@-webkit-keyframes swal2-toast-animate-success-line-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}100%{top:.9375em;right:.1875em;width:1.375em}}@keyframes swal2-toast-animate-success-line-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}100%{top:.9375em;right:.1875em;width:1.375em}}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}body.swal2-height-auto{height:auto!important}body.swal2-no-backdrop .swal2-shown{top:auto;right:auto;bottom:auto;left:auto;max-width:calc(100% - .625em * 2);background-color:transparent}body.swal2-no-backdrop .swal2-shown>.swal2-modal{box-shadow:0 0 10px rgba(0,0,0,.4)}body.swal2-no-backdrop .swal2-shown.swal2-top{top:0;left:50%;transform:translateX(-50%)}body.swal2-no-backdrop .swal2-shown.swal2-top-left,body.swal2-no-backdrop .swal2-shown.swal2-top-start{top:0;left:0}body.swal2-no-backdrop .swal2-shown.swal2-top-end,body.swal2-no-backdrop .swal2-shown.swal2-top-right{top:0;right:0}body.swal2-no-backdrop .swal2-shown.swal2-center{top:50%;left:50%;transform:translate(-50%,-50%)}body.swal2-no-backdrop .swal2-shown.swal2-center-left,body.swal2-no-backdrop .swal2-shown.swal2-center-start{top:50%;left:0;transform:translateY(-50%)}body.swal2-no-backdrop .swal2-shown.swal2-center-end,body.swal2-no-backdrop .swal2-shown.swal2-center-right{top:50%;right:0;transform:translateY(-50%)}body.swal2-no-backdrop .swal2-shown.swal2-bottom{bottom:0;left:50%;transform:translateX(-50%)}body.swal2-no-backdrop .swal2-shown.swal2-bottom-left,body.swal2-no-backdrop .swal2-shown.swal2-bottom-start{bottom:0;left:0}body.swal2-no-backdrop .swal2-shown.swal2-bottom-end,body.swal2-no-backdrop .swal2-shown.swal2-bottom-right{right:0;bottom:0}.swal2-container{display:flex;position:fixed;z-index:1060;top:0;right:0;bottom:0;left:0;flex-direction:row;align-items:center;justify-content:center;padding:.625em;overflow-x:hidden;background-color:transparent;-webkit-overflow-scrolling:touch}.swal2-container.swal2-top{align-items:flex-start}.swal2-container.swal2-top-left,.swal2-container.swal2-top-start{align-items:flex-start;justify-content:flex-start}.swal2-container.swal2-top-end,.swal2-container.swal2-top-right{align-items:flex-start;justify-content:flex-end}.swal2-container.swal2-center{align-items:center}.swal2-container.swal2-center-left,.swal2-container.swal2-center-start{align-items:center;justify-content:flex-start}.swal2-container.swal2-center-end,.swal2-container.swal2-center-right{align-items:center;justify-content:flex-end}.swal2-container.swal2-bottom{align-items:flex-end}.swal2-container.swal2-bottom-left,.swal2-container.swal2-bottom-start{align-items:flex-end;justify-content:flex-start}.swal2-container.swal2-bottom-end,.swal2-container.swal2-bottom-right{align-items:flex-end;justify-content:flex-end}.swal2-container.swal2-bottom-end>:first-child,.swal2-container.swal2-bottom-left>:first-child,.swal2-container.swal2-bottom-right>:first-child,.swal2-container.swal2-bottom-start>:first-child,.swal2-container.swal2-bottom>:first-child{margin-top:auto}.swal2-container.swal2-grow-fullscreen>.swal2-modal{display:flex!important;flex:1;align-self:stretch;justify-content:center}.swal2-container.swal2-grow-row>.swal2-modal{display:flex!important;flex:1;align-content:center;justify-content:center}.swal2-container.swal2-grow-column{flex:1;flex-direction:column}.swal2-container.swal2-grow-column.swal2-bottom,.swal2-container.swal2-grow-column.swal2-center,.swal2-container.swal2-grow-column.swal2-top{align-items:center}.swal2-container.swal2-grow-column.swal2-bottom-left,.swal2-container.swal2-grow-column.swal2-bottom-start,.swal2-container.swal2-grow-column.swal2-center-left,.swal2-container.swal2-grow-column.swal2-center-start,.swal2-container.swal2-grow-column.swal2-top-left,.swal2-container.swal2-grow-column.swal2-top-start{align-items:flex-start}.swal2-container.swal2-grow-column.swal2-bottom-end,.swal2-container.swal2-grow-column.swal2-bottom-right,.swal2-container.swal2-grow-column.swal2-center-end,.swal2-container.swal2-grow-column.swal2-center-right,.swal2-container.swal2-grow-column.swal2-top-end,.swal2-container.swal2-grow-column.swal2-top-right{align-items:flex-end}.swal2-container.swal2-grow-column>.swal2-modal{display:flex!important;flex:1;align-content:center;justify-content:center}.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.swal2-container .swal2-modal{margin:0!important}}.swal2-container.swal2-fade{transition:background-color .1s}.swal2-container.swal2-shown{background-color:rgba(0,0,0,.4)}.swal2-popup{display:none;position:relative;box-sizing:border-box;flex-direction:column;justify-content:center;width:32em;max-width:100%;padding:1.25em;border:none;border-radius:.3125em;background:#fff;font-family:inherit;font-size:1rem}.swal2-popup:focus{outline:0}.swal2-popup.swal2-loading{overflow-y:hidden}.swal2-header{display:flex;flex-direction:column;align-items:center}.swal2-title{position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.swal2-actions{display:flex;z-index:1;flex-wrap:wrap;align-items:center;justify-content:center;width:100%;margin:1.25em auto 0}.swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.swal2-actions.swal2-loading .swal2-styled.swal2-confirm{box-sizing:border-box;width:2.5em;height:2.5em;margin:.46875em;padding:0;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;border:.25em solid transparent;border-radius:100%;border-color:transparent;background-color:transparent!important;color:transparent;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.swal2-actions.swal2-loading .swal2-styled.swal2-cancel{margin-right:30px;margin-left:30px}.swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm::after{content:"";display:inline-block;width:15px;height:15px;margin-left:5px;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;border:3px solid #999;border-radius:50%;border-right-color:transparent;box-shadow:1px 1px 1px #fff}.swal2-styled{margin:.3125em;padding:.625em 2em;box-shadow:none;font-weight:500}.swal2-styled:not([disabled]){cursor:pointer}.swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#3085d6;color:#fff;font-size:1.0625em}.swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#aaa;color:#fff;font-size:1.0625em}.swal2-styled:focus{outline:0;box-shadow:0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)}.swal2-styled::-moz-focus-inner{border:0}.swal2-footer{justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.swal2-image{max-width:100%;margin:1.25em auto}.swal2-close{position:absolute;z-index:2;top:0;right:0;justify-content:center;width:1.2em;height:1.2em;padding:0;overflow:hidden;transition:color .1s ease-out;border:none;border-radius:0;outline:initial;background:0 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer}.swal2-close:hover{transform:none;background:0 0;color:#f27474}.swal2-content{z-index:1;justify-content:center;margin:0;padding:0;color:#545454;font-size:1.125em;font-weight:400;line-height:normal;text-align:center;word-wrap:break-word}.swal2-checkbox,.swal2-file,.swal2-input,.swal2-radio,.swal2-select,.swal2-textarea{margin:1em auto}.swal2-file,.swal2-input,.swal2-textarea{box-sizing:border-box;width:100%;transition:border-color .3s,box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;background:inherit;box-shadow:inset 0 1px 1px rgba(0,0,0,.06);color:inherit;font-size:1.125em}.swal2-file.swal2-inputerror,.swal2-input.swal2-inputerror,.swal2-textarea.swal2-inputerror{border-color:#f27474!important;box-shadow:0 0 2px #f27474!important}.swal2-file:focus,.swal2-input:focus,.swal2-textarea:focus{border:1px solid #b4dbed;outline:0;box-shadow:0 0 3px #c4e6f5}.swal2-file::-webkit-input-placeholder,.swal2-input::-webkit-input-placeholder,.swal2-textarea::-webkit-input-placeholder{color:#ccc}.swal2-file::-moz-placeholder,.swal2-input::-moz-placeholder,.swal2-textarea::-moz-placeholder{color:#ccc}.swal2-file:-ms-input-placeholder,.swal2-input:-ms-input-placeholder,.swal2-textarea:-ms-input-placeholder{color:#ccc}.swal2-file::-ms-input-placeholder,.swal2-input::-ms-input-placeholder,.swal2-textarea::-ms-input-placeholder{color:#ccc}.swal2-file::placeholder,.swal2-input::placeholder,.swal2-textarea::placeholder{color:#ccc}.swal2-range{margin:1em auto;background:inherit}.swal2-range input{width:80%}.swal2-range output{width:20%;color:inherit;font-weight:600;text-align:center}.swal2-range input,.swal2-range output{height:2.625em;padding:0;font-size:1.125em;line-height:2.625em}.swal2-input{height:2.625em;padding:0 .75em}.swal2-input[type=number]{max-width:10em}.swal2-file{background:inherit;font-size:1.125em}.swal2-textarea{height:6.75em;padding:.75em}.swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;background:inherit;color:inherit;font-size:1.125em}.swal2-checkbox,.swal2-radio{align-items:center;justify-content:center;background:inherit;color:inherit}.swal2-checkbox label,.swal2-radio label{margin:0 .6em;font-size:1.125em}.swal2-checkbox input,.swal2-radio input{margin:0 .4em}.swal2-validation-message{display:none;align-items:center;justify-content:center;padding:.625em;overflow:hidden;background:#f0f0f0;color:#666;font-size:1em;font-weight:300}.swal2-validation-message::before{content:"!";display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;zoom:normal;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center}@supports (-ms-accelerator:true){.swal2-range input{width:100%!important}.swal2-range output{display:none}}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.swal2-range input{width:100%!important}.swal2-range output{display:none}}@-moz-document url-prefix(){.swal2-close:focus{outline:2px solid rgba(50,100,150,.4)}}.swal2-icon{position:relative;box-sizing:content-box;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;zoom:normal;border:.25em solid transparent;border-radius:50%;font-family:inherit;line-height:5em;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.swal2-icon::before{display:flex;align-items:center;height:92%;font-size:3.75em}.swal2-icon.swal2-error{border-color:#f27474}.swal2-icon.swal2-error .swal2-x-mark{position:relative;flex-grow:1}.swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;transform:rotate(45deg)}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;transform:rotate(-45deg)}.swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.swal2-icon.swal2-warning::before{content:"!"}.swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee}.swal2-icon.swal2-info::before{content:"i"}.swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.swal2-icon.swal2-question::before{content:"?"}.swal2-icon.swal2-question.swal2-arabic-question-mark::before{content:"؟"}.swal2-icon.swal2-success{border-color:#a5dc86}.swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;transform:rotate(45deg);border-radius:50%}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;transform:rotate(-45deg);transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;transform:rotate(-45deg);transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.swal2-icon.swal2-success .swal2-success-ring{position:absolute;z-index:2;top:-.25em;left:-.25em;box-sizing:content-box;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%}.swal2-icon.swal2-success .swal2-success-fix{position:absolute;z-index:1;top:.5em;left:1.625em;width:.4375em;height:5.625em;transform:rotate(-45deg)}.swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;z-index:2;height:.3125em;border-radius:.125em;background-color:#a5dc86}.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.875em;width:1.5625em;transform:rotate(45deg)}.swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;transform:rotate(-45deg)}.swal2-progress-steps{align-items:center;margin:0 0 1.25em;padding:0;background:inherit;font-weight:600}.swal2-progress-steps li{display:inline-block;position:relative}.swal2-progress-steps .swal2-progress-step{z-index:20;width:2em;height:2em;border-radius:2em;background:#3085d6;color:#fff;line-height:2em;text-align:center}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step{background:#3085d6}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step{background:#add8e6;color:#fff}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step-line{background:#add8e6}.swal2-progress-steps .swal2-progress-step-line{z-index:10;width:2.5em;height:.4em;margin:0 -1px;background:#3085d6}[class^=swal2]{-webkit-tap-highlight-color:transparent}.swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.swal2-show.swal2-noanimation{-webkit-animation:none;animation:none}.swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.swal2-hide.swal2-noanimation{-webkit-animation:none;animation:none}.swal2-rtl .swal2-close{right:auto;left:0}.swal2-animate-success-icon .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.swal2-animate-success-icon .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.swal2-animate-success-icon .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.swal2-animate-error-icon{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.swal2-animate-error-icon .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}@-webkit-keyframes swal2-rotate-loading{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes swal2-rotate-loading{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@media print{body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}
1
+ .swal2-popup.swal2-toast{flex-direction:column;align-items:stretch;width:auto;padding:1.25em;overflow-y:hidden;background:#fff;box-shadow:0 0 .625em #d9d9d9}.swal2-popup.swal2-toast .swal2-header{flex-direction:row;padding:0}.swal2-popup.swal2-toast .swal2-title{flex-grow:1;justify-content:flex-start;margin:0 .625em;font-size:1em}.swal2-popup.swal2-toast .swal2-loading{justify-content:center}.swal2-popup.swal2-toast .swal2-input{height:2em;margin:.3125em auto;font-size:1em}.swal2-popup.swal2-toast .swal2-validation-message{font-size:1em}.swal2-popup.swal2-toast .swal2-footer{margin:.5em 0 0;padding:.5em 0 0;font-size:.8em}.swal2-popup.swal2-toast .swal2-close{position:static;width:.8em;height:.8em;line-height:.8}.swal2-popup.swal2-toast .swal2-content{justify-content:flex-start;margin:0 .625em;padding:0;font-size:1em;text-align:initial}.swal2-popup.swal2-toast .swal2-html-container{padding:.625em 0 0}.swal2-popup.swal2-toast .swal2-html-container:empty{padding:0}.swal2-popup.swal2-toast .swal2-icon{width:2em;min-width:2em;height:2em;margin:0 .5em 0 0}.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content{display:flex;align-items:center;font-size:1.8em;font-weight:700}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content{font-size:.25em}}.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line]{top:.875em;width:1.375em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:.3125em}.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:.3125em}.swal2-popup.swal2-toast .swal2-actions{flex:1;flex-basis:auto!important;align-self:stretch;width:auto;height:2.2em;height:auto;margin:0 .3125em;margin-top:.3125em;padding:0}.swal2-popup.swal2-toast .swal2-styled{margin:.125em .3125em;padding:.3125em .625em;font-size:1em}.swal2-popup.swal2-toast .swal2-styled:focus{box-shadow:0 0 0 1px #fff,0 0 0 3px rgba(100,150,200,.5)}.swal2-popup.swal2-toast .swal2-success{border-color:#a5dc86}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line]{position:absolute;width:1.6em;height:3em;transform:rotate(45deg);border-radius:50%}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.8em;left:-.5em;transform:rotate(-45deg);transform-origin:2em 2em;border-radius:4em 0 0 4em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.25em;left:.9375em;transform-origin:0 1.5em;border-radius:0 4em 4em 0}.swal2-popup.swal2-toast .swal2-success .swal2-success-ring{width:2em;height:2em}.swal2-popup.swal2-toast .swal2-success .swal2-success-fix{top:0;left:.4375em;width:.4375em;height:2.6875em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line]{height:.3125em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip]{top:1.125em;left:.1875em;width:.75em}.swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long]{top:.9375em;right:.1875em;width:1.375em}.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-tip{-webkit-animation:swal2-toast-animate-success-line-tip .75s;animation:swal2-toast-animate-success-line-tip .75s}.swal2-popup.swal2-toast .swal2-success.swal2-icon-show .swal2-success-line-long{-webkit-animation:swal2-toast-animate-success-line-long .75s;animation:swal2-toast-animate-success-line-long .75s}.swal2-popup.swal2-toast.swal2-show{-webkit-animation:swal2-toast-show .5s;animation:swal2-toast-show .5s}.swal2-popup.swal2-toast.swal2-hide{-webkit-animation:swal2-toast-hide .1s forwards;animation:swal2-toast-hide .1s forwards}.swal2-container{display:flex;position:fixed;z-index:1060;top:0;right:0;bottom:0;left:0;flex-direction:row;align-items:center;justify-content:center;padding:.625em;overflow-x:hidden;transition:background-color .1s;-webkit-overflow-scrolling:touch}.swal2-container.swal2-backdrop-show,.swal2-container.swal2-noanimation{background:rgba(0,0,0,.4)}.swal2-container.swal2-backdrop-hide{background:0 0!important}.swal2-container.swal2-top{align-items:flex-start}.swal2-container.swal2-top-left,.swal2-container.swal2-top-start{align-items:flex-start;justify-content:flex-start}.swal2-container.swal2-top-end,.swal2-container.swal2-top-right{align-items:flex-start;justify-content:flex-end}.swal2-container.swal2-center{align-items:center}.swal2-container.swal2-center-left,.swal2-container.swal2-center-start{align-items:center;justify-content:flex-start}.swal2-container.swal2-center-end,.swal2-container.swal2-center-right{align-items:center;justify-content:flex-end}.swal2-container.swal2-bottom{align-items:flex-end}.swal2-container.swal2-bottom-left,.swal2-container.swal2-bottom-start{align-items:flex-end;justify-content:flex-start}.swal2-container.swal2-bottom-end,.swal2-container.swal2-bottom-right{align-items:flex-end;justify-content:flex-end}.swal2-container.swal2-bottom-end>:first-child,.swal2-container.swal2-bottom-left>:first-child,.swal2-container.swal2-bottom-right>:first-child,.swal2-container.swal2-bottom-start>:first-child,.swal2-container.swal2-bottom>:first-child{margin-top:auto}.swal2-container.swal2-grow-fullscreen>.swal2-modal{display:flex!important;flex:1;align-self:stretch;justify-content:center}.swal2-container.swal2-grow-row>.swal2-modal{display:flex!important;flex:1;align-content:center;justify-content:center}.swal2-container.swal2-grow-column{flex:1;flex-direction:column}.swal2-container.swal2-grow-column.swal2-bottom,.swal2-container.swal2-grow-column.swal2-center,.swal2-container.swal2-grow-column.swal2-top{align-items:center}.swal2-container.swal2-grow-column.swal2-bottom-left,.swal2-container.swal2-grow-column.swal2-bottom-start,.swal2-container.swal2-grow-column.swal2-center-left,.swal2-container.swal2-grow-column.swal2-center-start,.swal2-container.swal2-grow-column.swal2-top-left,.swal2-container.swal2-grow-column.swal2-top-start{align-items:flex-start}.swal2-container.swal2-grow-column.swal2-bottom-end,.swal2-container.swal2-grow-column.swal2-bottom-right,.swal2-container.swal2-grow-column.swal2-center-end,.swal2-container.swal2-grow-column.swal2-center-right,.swal2-container.swal2-grow-column.swal2-top-end,.swal2-container.swal2-grow-column.swal2-top-right{align-items:flex-end}.swal2-container.swal2-grow-column>.swal2-modal{display:flex!important;flex:1;align-content:center;justify-content:center}.swal2-container.swal2-no-transition{transition:none!important}.swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right):not(.swal2-grow-fullscreen)>.swal2-modal{margin:auto}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.swal2-container .swal2-modal{margin:0!important}}.swal2-popup{display:none;position:relative;box-sizing:border-box;flex-direction:column;justify-content:center;width:32em;max-width:100%;padding:1.25em;border:none;border-radius:5px;background:#fff;font-family:inherit;font-size:1rem}.swal2-popup:focus{outline:0}.swal2-popup.swal2-loading{overflow-y:hidden}.swal2-header{display:flex;flex-direction:column;align-items:center;padding:0 1.8em}.swal2-title{position:relative;max-width:100%;margin:0 0 .4em;padding:0;color:#595959;font-size:1.875em;font-weight:600;text-align:center;text-transform:none;word-wrap:break-word}.swal2-actions{display:flex;z-index:1;box-sizing:border-box;flex-wrap:wrap;align-items:center;justify-content:center;width:100%;margin:1.25em auto 0;padding:0}.swal2-actions:not(.swal2-loading) .swal2-styled[disabled]{opacity:.4}.swal2-actions:not(.swal2-loading) .swal2-styled:hover{background-image:linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))}.swal2-actions:not(.swal2-loading) .swal2-styled:active{background-image:linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))}.swal2-loader{display:none;align-items:center;justify-content:center;width:2.2em;height:2.2em;margin:0 1.875em;-webkit-animation:swal2-rotate-loading 1.5s linear 0s infinite normal;animation:swal2-rotate-loading 1.5s linear 0s infinite normal;border-width:.25em;border-style:solid;border-radius:100%;border-color:#2778c4 transparent #2778c4 transparent}.swal2-styled{margin:.3125em;padding:.625em 1.1em;box-shadow:none;font-weight:500}.swal2-styled:not([disabled]){cursor:pointer}.swal2-styled.swal2-confirm{border:0;border-radius:.25em;background:initial;background-color:#2778c4;color:#fff;font-size:1em}.swal2-styled.swal2-deny{border:0;border-radius:.25em;background:initial;background-color:#d14529;color:#fff;font-size:1em}.swal2-styled.swal2-cancel{border:0;border-radius:.25em;background:initial;background-color:#757575;color:#fff;font-size:1em}.swal2-styled:focus{outline:0;box-shadow:0 0 0 3px rgba(100,150,200,.5)}.swal2-styled::-moz-focus-inner{border:0}.swal2-footer{justify-content:center;margin:1.25em 0 0;padding:1em 0 0;border-top:1px solid #eee;color:#545454;font-size:1em}.swal2-timer-progress-bar-container{position:absolute;right:0;bottom:0;left:0;height:.25em;overflow:hidden;border-bottom-right-radius:5px;border-bottom-left-radius:5px}.swal2-timer-progress-bar{width:100%;height:.25em;background:rgba(0,0,0,.2)}.swal2-image{max-width:100%;margin:1.25em auto}.swal2-close{position:absolute;z-index:2;top:0;right:0;align-items:center;justify-content:center;width:1.2em;height:1.2em;padding:0;overflow:hidden;transition:color .1s ease-out;border:none;border-radius:5px;background:0 0;color:#ccc;font-family:serif;font-size:2.5em;line-height:1.2;cursor:pointer}.swal2-close:hover{transform:none;background:0 0;color:#f27474}.swal2-close:focus{outline:0;box-shadow:inset 0 0 0 3px rgba(100,150,200,.5)}.swal2-close::-moz-focus-inner{border:0}.swal2-content{z-index:1;justify-content:center;margin:0;padding:0 1.6em;color:#545454;font-size:1.125em;font-weight:400;line-height:normal;text-align:center;word-wrap:break-word}.swal2-checkbox,.swal2-file,.swal2-input,.swal2-radio,.swal2-select,.swal2-textarea{margin:1em auto}.swal2-file,.swal2-input,.swal2-textarea{box-sizing:border-box;width:100%;transition:border-color .3s,box-shadow .3s;border:1px solid #d9d9d9;border-radius:.1875em;background:inherit;box-shadow:inset 0 1px 1px rgba(0,0,0,.06);color:inherit;font-size:1.125em}.swal2-file.swal2-inputerror,.swal2-input.swal2-inputerror,.swal2-textarea.swal2-inputerror{border-color:#f27474!important;box-shadow:0 0 2px #f27474!important}.swal2-file:focus,.swal2-input:focus,.swal2-textarea:focus{border:1px solid #b4dbed;outline:0;box-shadow:0 0 0 3px rgba(100,150,200,.5)}.swal2-file::-moz-placeholder,.swal2-input::-moz-placeholder,.swal2-textarea::-moz-placeholder{color:#ccc}.swal2-file:-ms-input-placeholder,.swal2-input:-ms-input-placeholder,.swal2-textarea:-ms-input-placeholder{color:#ccc}.swal2-file::placeholder,.swal2-input::placeholder,.swal2-textarea::placeholder{color:#ccc}.swal2-range{margin:1em auto;background:#fff}.swal2-range input{width:80%}.swal2-range output{width:20%;color:inherit;font-weight:600;text-align:center}.swal2-range input,.swal2-range output{height:2.625em;padding:0;font-size:1.125em;line-height:2.625em}.swal2-input{height:2.625em;padding:0 .75em}.swal2-input[type=number]{max-width:10em}.swal2-file{background:inherit;font-size:1.125em}.swal2-textarea{height:6.75em;padding:.75em}.swal2-select{min-width:50%;max-width:100%;padding:.375em .625em;background:inherit;color:inherit;font-size:1.125em}.swal2-checkbox,.swal2-radio{align-items:center;justify-content:center;background:#fff;color:inherit}.swal2-checkbox label,.swal2-radio label{margin:0 .6em;font-size:1.125em}.swal2-checkbox input,.swal2-radio input{flex-shrink:0;margin:0 .4em}.swal2-input-label{display:flex;justify-content:center;margin:1em auto}.swal2-validation-message{align-items:center;justify-content:center;margin:0 -2.7em;padding:.625em;overflow:hidden;background:#f0f0f0;color:#666;font-size:1em;font-weight:300}.swal2-validation-message::before{content:"!";display:inline-block;width:1.5em;min-width:1.5em;height:1.5em;margin:0 .625em;border-radius:50%;background-color:#f27474;color:#fff;font-weight:600;line-height:1.5em;text-align:center}.swal2-icon{position:relative;box-sizing:content-box;justify-content:center;width:5em;height:5em;margin:1.25em auto 1.875em;border:.25em solid transparent;border-radius:50%;border-color:#000;font-family:inherit;line-height:5em;cursor:default;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.swal2-icon .swal2-icon-content{display:flex;align-items:center;font-size:3.75em}.swal2-icon.swal2-error{border-color:#f27474;color:#f27474}.swal2-icon.swal2-error .swal2-x-mark{position:relative;flex-grow:1}.swal2-icon.swal2-error [class^=swal2-x-mark-line]{display:block;position:absolute;top:2.3125em;width:2.9375em;height:.3125em;border-radius:.125em;background-color:#f27474}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left]{left:1.0625em;transform:rotate(45deg)}.swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right]{right:1em;transform:rotate(-45deg)}.swal2-icon.swal2-error.swal2-icon-show{-webkit-animation:swal2-animate-error-icon .5s;animation:swal2-animate-error-icon .5s}.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark{-webkit-animation:swal2-animate-error-x-mark .5s;animation:swal2-animate-error-x-mark .5s}.swal2-icon.swal2-warning{border-color:#facea8;color:#f8bb86}.swal2-icon.swal2-info{border-color:#9de0f6;color:#3fc3ee}.swal2-icon.swal2-question{border-color:#c9dae1;color:#87adbd}.swal2-icon.swal2-success{border-color:#a5dc86;color:#a5dc86}.swal2-icon.swal2-success [class^=swal2-success-circular-line]{position:absolute;width:3.75em;height:7.5em;transform:rotate(45deg);border-radius:50%}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-.4375em;left:-2.0635em;transform:rotate(-45deg);transform-origin:3.75em 3.75em;border-radius:7.5em 0 0 7.5em}.swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-.6875em;left:1.875em;transform:rotate(-45deg);transform-origin:0 3.75em;border-radius:0 7.5em 7.5em 0}.swal2-icon.swal2-success .swal2-success-ring{position:absolute;z-index:2;top:-.25em;left:-.25em;box-sizing:content-box;width:100%;height:100%;border:.25em solid rgba(165,220,134,.3);border-radius:50%}.swal2-icon.swal2-success .swal2-success-fix{position:absolute;z-index:1;top:.5em;left:1.625em;width:.4375em;height:5.625em;transform:rotate(-45deg)}.swal2-icon.swal2-success [class^=swal2-success-line]{display:block;position:absolute;z-index:2;height:.3125em;border-radius:.125em;background-color:#a5dc86}.swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{top:2.875em;left:.8125em;width:1.5625em;transform:rotate(45deg)}.swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:2.375em;right:.5em;width:2.9375em;transform:rotate(-45deg)}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip{-webkit-animation:swal2-animate-success-line-tip .75s;animation:swal2-animate-success-line-tip .75s}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long{-webkit-animation:swal2-animate-success-line-long .75s;animation:swal2-animate-success-line-long .75s}.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right{-webkit-animation:swal2-rotate-success-circular-line 4.25s ease-in;animation:swal2-rotate-success-circular-line 4.25s ease-in}.swal2-progress-steps{flex-wrap:wrap;align-items:center;max-width:100%;margin:0 0 1.25em;padding:0;background:inherit;font-weight:600}.swal2-progress-steps li{display:inline-block;position:relative}.swal2-progress-steps .swal2-progress-step{z-index:20;flex-shrink:0;width:2em;height:2em;border-radius:2em;background:#2778c4;color:#fff;line-height:2em;text-align:center}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step{background:#2778c4}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step{background:#add8e6;color:#fff}.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step~.swal2-progress-step-line{background:#add8e6}.swal2-progress-steps .swal2-progress-step-line{z-index:10;flex-shrink:0;width:2.5em;height:.4em;margin:0 -1px;background:#2778c4}[class^=swal2]{-webkit-tap-highlight-color:transparent}.swal2-show{-webkit-animation:swal2-show .3s;animation:swal2-show .3s}.swal2-hide{-webkit-animation:swal2-hide .15s forwards;animation:swal2-hide .15s forwards}.swal2-noanimation{transition:none}.swal2-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}.swal2-rtl .swal2-close{right:auto;left:0}.swal2-rtl .swal2-timer-progress-bar{right:0;left:auto}@supports (-ms-accelerator:true){.swal2-range input{width:100%!important}.swal2-range output{display:none}}@media all and (-ms-high-contrast:none),(-ms-high-contrast:active){.swal2-range input{width:100%!important}.swal2-range output{display:none}}@-webkit-keyframes swal2-toast-show{0%{transform:translateY(-.625em) rotateZ(2deg)}33%{transform:translateY(0) rotateZ(-2deg)}66%{transform:translateY(.3125em) rotateZ(2deg)}100%{transform:translateY(0) rotateZ(0)}}@keyframes swal2-toast-show{0%{transform:translateY(-.625em) rotateZ(2deg)}33%{transform:translateY(0) rotateZ(-2deg)}66%{transform:translateY(.3125em) rotateZ(2deg)}100%{transform:translateY(0) rotateZ(0)}}@-webkit-keyframes swal2-toast-hide{100%{transform:rotateZ(1deg);opacity:0}}@keyframes swal2-toast-hide{100%{transform:rotateZ(1deg);opacity:0}}@-webkit-keyframes swal2-toast-animate-success-line-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}100%{top:1.125em;left:.1875em;width:.75em}}@keyframes swal2-toast-animate-success-line-tip{0%{top:.5625em;left:.0625em;width:0}54%{top:.125em;left:.125em;width:0}70%{top:.625em;left:-.25em;width:1.625em}84%{top:1.0625em;left:.75em;width:.5em}100%{top:1.125em;left:.1875em;width:.75em}}@-webkit-keyframes swal2-toast-animate-success-line-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}100%{top:.9375em;right:.1875em;width:1.375em}}@keyframes swal2-toast-animate-success-line-long{0%{top:1.625em;right:1.375em;width:0}65%{top:1.25em;right:.9375em;width:0}84%{top:.9375em;right:0;width:1.125em}100%{top:.9375em;right:.1875em;width:1.375em}}@-webkit-keyframes swal2-show{0%{transform:scale(.7)}45%{transform:scale(1.05)}80%{transform:scale(.95)}100%{transform:scale(1)}}@keyframes swal2-show{0%{transform:scale(.7)}45%{transform:scale(1.05)}80%{transform:scale(.95)}100%{transform:scale(1)}}@-webkit-keyframes swal2-hide{0%{transform:scale(1);opacity:1}100%{transform:scale(.5);opacity:0}}@keyframes swal2-hide{0%{transform:scale(1);opacity:1}100%{transform:scale(.5);opacity:0}}@-webkit-keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}100%{top:2.8125em;left:.8125em;width:1.5625em}}@keyframes swal2-animate-success-line-tip{0%{top:1.1875em;left:.0625em;width:0}54%{top:1.0625em;left:.125em;width:0}70%{top:2.1875em;left:-.375em;width:3.125em}84%{top:3em;left:1.3125em;width:1.0625em}100%{top:2.8125em;left:.8125em;width:1.5625em}}@-webkit-keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}100%{top:2.375em;right:.5em;width:2.9375em}}@keyframes swal2-animate-success-line-long{0%{top:3.375em;right:2.875em;width:0}65%{top:3.375em;right:2.875em;width:0}84%{top:2.1875em;right:0;width:3.4375em}100%{top:2.375em;right:.5em;width:2.9375em}}@-webkit-keyframes swal2-rotate-success-circular-line{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}100%{transform:rotate(-405deg)}}@keyframes swal2-rotate-success-circular-line{0%{transform:rotate(-45deg)}5%{transform:rotate(-45deg)}12%{transform:rotate(-405deg)}100%{transform:rotate(-405deg)}}@-webkit-keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;transform:scale(.4);opacity:0}50%{margin-top:1.625em;transform:scale(.4);opacity:0}80%{margin-top:-.375em;transform:scale(1.15)}100%{margin-top:0;transform:scale(1);opacity:1}}@keyframes swal2-animate-error-x-mark{0%{margin-top:1.625em;transform:scale(.4);opacity:0}50%{margin-top:1.625em;transform:scale(.4);opacity:0}80%{margin-top:-.375em;transform:scale(1.15)}100%{margin-top:0;transform:scale(1);opacity:1}}@-webkit-keyframes swal2-animate-error-icon{0%{transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0);opacity:1}}@keyframes swal2-animate-error-icon{0%{transform:rotateX(100deg);opacity:0}100%{transform:rotateX(0);opacity:1}}@-webkit-keyframes swal2-rotate-loading{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@keyframes swal2-rotate-loading{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow:hidden}body.swal2-height-auto{height:auto!important}body.swal2-no-backdrop .swal2-container{top:auto;right:auto;bottom:auto;left:auto;max-width:calc(100% - .625em * 2);background-color:transparent!important}body.swal2-no-backdrop .swal2-container>.swal2-modal{box-shadow:0 0 10px rgba(0,0,0,.4)}body.swal2-no-backdrop .swal2-container.swal2-top{top:0;left:50%;transform:translateX(-50%)}body.swal2-no-backdrop .swal2-container.swal2-top-left,body.swal2-no-backdrop .swal2-container.swal2-top-start{top:0;left:0}body.swal2-no-backdrop .swal2-container.swal2-top-end,body.swal2-no-backdrop .swal2-container.swal2-top-right{top:0;right:0}body.swal2-no-backdrop .swal2-container.swal2-center{top:50%;left:50%;transform:translate(-50%,-50%)}body.swal2-no-backdrop .swal2-container.swal2-center-left,body.swal2-no-backdrop .swal2-container.swal2-center-start{top:50%;left:0;transform:translateY(-50%)}body.swal2-no-backdrop .swal2-container.swal2-center-end,body.swal2-no-backdrop .swal2-container.swal2-center-right{top:50%;right:0;transform:translateY(-50%)}body.swal2-no-backdrop .swal2-container.swal2-bottom{bottom:0;left:50%;transform:translateX(-50%)}body.swal2-no-backdrop .swal2-container.swal2-bottom-left,body.swal2-no-backdrop .swal2-container.swal2-bottom-start{bottom:0;left:0}body.swal2-no-backdrop .swal2-container.swal2-bottom-end,body.swal2-no-backdrop .swal2-container.swal2-bottom-right{right:0;bottom:0}@media print{body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown){overflow-y:scroll!important}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)>[aria-hidden=true]{display:none}body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) .swal2-container{position:static!important}}body.swal2-toast-shown .swal2-container{background-color:transparent}body.swal2-toast-shown .swal2-container.swal2-top{top:0;right:auto;bottom:auto;left:50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-top-end,body.swal2-toast-shown .swal2-container.swal2-top-right{top:0;right:0;bottom:auto;left:auto}body.swal2-toast-shown .swal2-container.swal2-top-left,body.swal2-toast-shown .swal2-container.swal2-top-start{top:0;right:auto;bottom:auto;left:0}body.swal2-toast-shown .swal2-container.swal2-center-left,body.swal2-toast-shown .swal2-container.swal2-center-start{top:50%;right:auto;bottom:auto;left:0;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-center{top:50%;right:auto;bottom:auto;left:50%;transform:translate(-50%,-50%)}body.swal2-toast-shown .swal2-container.swal2-center-end,body.swal2-toast-shown .swal2-container.swal2-center-right{top:50%;right:0;bottom:auto;left:auto;transform:translateY(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-left,body.swal2-toast-shown .swal2-container.swal2-bottom-start{top:auto;right:auto;bottom:0;left:0}body.swal2-toast-shown .swal2-container.swal2-bottom{top:auto;right:auto;bottom:0;left:50%;transform:translateX(-50%)}body.swal2-toast-shown .swal2-container.swal2-bottom-end,body.swal2-toast-shown .swal2-container.swal2-bottom-right{top:auto;right:0;bottom:0;left:auto}
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;box-shadow:0 1px 3px rgba(182,187,207,.15)}.ur-form-container .button+.button,.ur-form-container .button+button,.ur-form-container button+.button,.ur-form-container button+button,.user-registration .button+.button,.user-registration .button+button,.user-registration button+.button,.user-registration button+button{margin-right:6px}.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;text-align:center}.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:.9;vertical-align:middle}.ur-form-container .button.button-icon svg,.ur-form-container button.button-icon svg,.user-registration .button.button-icon svg,.user-registration button.button-icon svg{display:block;margin:0 auto}.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.is-active,.ur-form-container button.is-active,.user-registration .button.is-active,.user-registration button.is-active{background:#475bb2;color:#fff;border-color:#475bb2}.ur-form-container .button.is-active:active,.ur-form-container .button.is-active:focus,.ur-form-container .button.is-active:hover,.ur-form-container button.is-active:active,.ur-form-container button.is-active:focus,.ur-form-container button.is-active:hover,.user-registration .button.is-active:active,.user-registration .button.is-active:focus,.user-registration .button.is-active:hover,.user-registration button.is-active:active,.user-registration button.is-active:focus,.user-registration button.is-active:hover{background:#475bb2;color:#fff;border-color:#475bb2}.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}.ur-form-container .button-tertiary,.user-registration .button-tertiary{background:#fff;color:#2d3559;border:1px solid #dee0e9}.ur-form-container .button-tertiary:active,.ur-form-container .button-tertiary:focus,.ur-form-container .button-tertiary:hover,.user-registration .button-tertiary:active,.user-registration .button-tertiary:focus,.user-registration .button-tertiary:hover{background:#f0f1f5;border-color:#dee0e9}.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}.user-registration-button-group{position:relative;display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;vertical-align:middle}.user-registration-button-group .button:not(:first-child),.user-registration-button-group>button:not(:first-child){margin-right:-1px;border-top-right-radius:0;border-bottom-right-radius:0}.user-registration-button-group .button:not(:last-child),.user-registration-button-group>button:not(:last-child){border-top-left-radius:0;border-bottom-left-radius:0}.user-registration-button-group .button,.user-registration-button-group button{margin-left:0!important}.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}.user-registration-page.user-registration-modal-open{overflow:hidden}.user-registration-page.user-registration-modal-open .user-registration-modal{max-width:100%}.user-registration-modal{position:fixed;top:0;right:0;left:0;height:100%;width:100%;margin:0 auto!important;overflow-x:hidden;overflow-y:auto;z-index:999}.user-registration-modal .user-registration-modal__backdrop{position:fixed;right:0;top:0;background-color:rgba(45,53,89,.5);min-width:100%;min-height:100%;z-index:1}.user-registration-modal .user-registration-modal__content{background:#fff;position:relative;width:auto;margin:16px;border-radius:8px;z-index:99999;box-shadow:0 3px 25px 0 rgba(45,53,89,.4)}@media (min-width:576px){.user-registration-modal .user-registration-modal__content{max-width:500px;margin:24px auto}}@media (min-width:992px){.user-registration-modal .user-registration-modal__content.user-registration-modal__content--lg,.user-registration-modal .user-registration-modal__content.user-registration-modal__content--xl{max-width:800px}}@media (min-width:1200px){.user-registration-modal .user-registration-modal__content.user-registration-modal__content--xl{max-width:1140px}}.user-registration-modal .user-registration-modal__header{display:-webkit-box;display:-webkit-flex;display:flex;padding:16px;border-bottom:1px solid #dee0e9}.user-registration-modal .user-registration-modal__header .user-registration-modal__title{font-size:20px;line-height:1.4;margin:0;padding:0}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon{position:relative;display:block;width:32px;height:32px;-webkit-box-flex:0;-webkit-flex:0 0 32px;flex:0 0 32px;cursor:pointer;margin-right:auto}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::after,.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::before{content:'';height:2px;width:16px;display:block;position:absolute;top:50%;right:0;left:0;margin:0 auto;background:#b6bbcf}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::before{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.user-registration-modal .user-registration-modal__body{position:relative;padding:16px}.user-registration-modal .user-registration-modal__body #user-registration,.user-registration-modal .user-registration-modal__body .login,.user-registration-modal .user-registration-modal__body .user-registration{margin:0;padding:0;border:none}.user-registration-modal .user-registration-modal__footer{padding:16px;border-top:1px solid #dee0e9}.user-registration-modal .user-registration-modal__footer *{margin:4px}.swal2-container .user-registration-swal2-modal{padding:40px}.swal2-container .user-registration-swal2-modal .swal2-input{font-size:16px}.swal2-container .user-registration-swal2-modal .swal2-animate-success-icon [class^=swal2-success-circular-line],.swal2-container .user-registration-swal2-modal .swal2-animate-success-icon [class^=swal2-success-line]{-webkit-animation:none;animation:none}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon{font-size:28px;width:56px;height:56px;line-height:56px;margin:0 auto 16px;border-width:2px;border-radius:50%}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line]{height:3px;width:28px;top:50%;right:0;left:0;margin:0 auto}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line][class$=left]{-webkit-transform:translateY(-50%) rotate(-45deg);-ms-transform:translateY(-50%) rotate(-45deg);transform:translateY(-50%) rotate(-45deg)}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line][class$=right]{-webkit-transform:translateY(-50%) rotate(45deg);-ms-transform:translateY(-50%) rotate(45deg);transform:translateY(-50%) rotate(45deg)}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line]{height:3px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{width:16px;top:56%;right:10px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:47%;width:32px;left:6px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line]{height:64px;width:32px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-75px;right:27px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-26px;right:82px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success .swal2-success-ring{top:-3px;right:-2px;border-width:2px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success .swal2-success-fix{height:64px;right:2px;left:0;margin:0 auto;top:-2px;bottom:0;width:6px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon::before{font-size:40px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-title{color:#2d3559;font-size:24px;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:16px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-title .dashicons{color:#ff4149;font-size:28px;width:56px;height:56px;line-height:56px;margin:0 auto 16px;border:2px solid #ff4149;border-radius:50%}.swal2-container .user-registration-swal2-modal__title{line-height:1.35;display:block}.swal2-container .user-registration-swal2-modal .swal2-content{color:#4c5477;font-size:1em;line-height:1.5}.swal2-container .user-registration-swal2-modal .swal2-actions button{margin-top:0;margin-bottom:0}.swal2-container .user-registration-swal2-modal--centered .swal2-title{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.components-radio-control__option{padding-right:14px;margin-bottom:20px!important}.components-base-control__field{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.wp-core-ui select{max-width:100%!important}.clear{clear:both}.user-registration-page .select2-dropdown,.user-registration-swal2-container{z-index:9999}.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 .__PrivateStripeElement,.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%;padding:4px 8px;border-radius:0;min-height:36px;margin-bottom:10px;line-height:1.5}.ur-frontend-form .ur-form-row .ur-form-grid .__PrivateStripeElement::-webkit-input-placeholder,.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 .__PrivateStripeElement::-ms-input-placeholder,.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 .__PrivateStripeElement::placeholder,.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 .StripeElement{padding:4px 8px;border:1px solid #dee0e9}.ur-frontend-form .ur-form-row .ur-form-grid .StripeElement .__PrivateStripeElement iframe{position:absolute;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.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 .user-registration-submit-Button{float:left}.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;border-width:0 4px 0 0;border-style:solid;border-color:transparent;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}.user-registration-form-login .ur-front-spinner{margin-right:0;float:left;margin-top:15px;margin-left:20px}.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%;text-align:center}.edit-post-visual-editor .ur-gutenberg-form-selector-wrap .components-placeholder__fieldset,.edit-post-visual-editor .user-registration-gutenberg-form-selector-wrap .components-placeholder__fieldset{text-align:center}.edit-post-visual-editor .ur-gutenberg-form-selector-wrap .components-placeholder__fieldset img,.edit-post-visual-editor .user-registration-gutenberg-form-selector-wrap .components-placeholder__fieldset img{margin:0 auto}.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
+ @charset "UTF-8";.ur-h2,.ur-h3,.ur-h4{font-weight:600!important}.ur-h2{font-size:28px!important}.ur-h3{font-size:20px!important}.ur-h4{font-size:16px!important}.ur-text-center{text-align:center}.ur-text-right{text-align:left}.ur-text-muted{color:#b6bbcf}@font-face{font-family:UserRegistration;src:url(../fonts/UserRegistration.eot?nk6vrg);src:url(../fonts/UserRegistration.eot?nk6vrg#iefix) format("embedded-opentype"),url(../fonts/UserRegistration.ttf?nk6vrg) format("truetype"),url(../fonts/UserRegistration.woff?nk6vrg) format("woff"),url(../fonts/UserRegistration.svg?nk6vrg#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-icon-credit-card::before{content:""}.ur-icon-range::before{content:""}.ur-icon-course::before{content:""}.ur-icon-mailerlite::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;box-shadow:0 1px 3px rgba(182,187,207,.15)}.ur-form-container .button+.button,.ur-form-container .button+button,.ur-form-container button+.button,.ur-form-container button+button,.user-registration .button+.button,.user-registration .button+button,.user-registration button+.button,.user-registration button+button{margin-right:6px}.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;text-align:center}.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:.9;vertical-align:middle}.ur-form-container .button.button-icon svg,.ur-form-container button.button-icon svg,.user-registration .button.button-icon svg,.user-registration button.button-icon svg{display:block;margin:0 auto}.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.is-active,.ur-form-container button.is-active,.user-registration .button.is-active,.user-registration button.is-active{background:#475bb2;color:#fff;border-color:#475bb2}.ur-form-container .button.is-active:active,.ur-form-container .button.is-active:focus,.ur-form-container .button.is-active:hover,.ur-form-container button.is-active:active,.ur-form-container button.is-active:focus,.ur-form-container button.is-active:hover,.user-registration .button.is-active:active,.user-registration .button.is-active:focus,.user-registration .button.is-active:hover,.user-registration button.is-active:active,.user-registration button.is-active:focus,.user-registration button.is-active:hover{background:#475bb2;color:#fff;border-color:#475bb2}.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}.ur-form-container .button-tertiary,.user-registration .button-tertiary{background:#fff;color:#2d3559;border:1px solid #dee0e9}.ur-form-container .button-tertiary:active,.ur-form-container .button-tertiary:focus,.ur-form-container .button-tertiary:hover,.user-registration .button-tertiary:active,.user-registration .button-tertiary:focus,.user-registration .button-tertiary:hover{background:#f0f1f5;border-color:#dee0e9}.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}.user-registration-button-group{position:relative;display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;vertical-align:middle}.user-registration-button-group .button:not(:first-child),.user-registration-button-group>button:not(:first-child){margin-right:-1px;border-top-right-radius:0;border-bottom-right-radius:0}.user-registration-button-group .button:not(:last-child),.user-registration-button-group>button:not(:last-child){border-top-left-radius:0;border-bottom-left-radius:0}.user-registration-button-group .button,.user-registration-button-group button{margin-left:0!important}.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}.user-registration-page.user-registration-modal-open{overflow:hidden}.user-registration-page.user-registration-modal-open .user-registration-modal{max-width:100%}.user-registration-modal{position:fixed;top:0;right:0;left:0;height:100%;width:100%;margin:0 auto!important;overflow-x:hidden;overflow-y:auto;z-index:999}.user-registration-modal .user-registration-modal__backdrop{position:fixed;right:0;top:0;background-color:rgba(45,53,89,.5);min-width:100%;min-height:100%;z-index:1}.user-registration-modal .user-registration-modal__content{background:#fff;position:relative;width:auto;margin:16px;border-radius:8px;z-index:99999;box-shadow:0 3px 25px 0 rgba(45,53,89,.4)}@media (min-width:576px){.user-registration-modal .user-registration-modal__content{max-width:500px;margin:24px auto}}@media (min-width:992px){.user-registration-modal .user-registration-modal__content.user-registration-modal__content--lg,.user-registration-modal .user-registration-modal__content.user-registration-modal__content--xl{max-width:800px}}@media (min-width:1200px){.user-registration-modal .user-registration-modal__content.user-registration-modal__content--xl{max-width:1140px}}.user-registration-modal .user-registration-modal__header{display:-webkit-box;display:-webkit-flex;display:flex;padding:16px;border-bottom:1px solid #dee0e9}.user-registration-modal .user-registration-modal__header .user-registration-modal__title{font-size:20px;line-height:1.4;margin:0;padding:0}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon{position:relative;display:block;width:32px;height:32px;-webkit-box-flex:0;-webkit-flex:0 0 32px;flex:0 0 32px;cursor:pointer;margin-right:auto}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::after,.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::before{content:"";height:2px;width:16px;display:block;position:absolute;top:50%;right:0;left:0;margin:0 auto;background:#b6bbcf}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::before{-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.user-registration-modal .user-registration-modal__body{position:relative;padding:16px}.user-registration-modal .user-registration-modal__body #user-registration,.user-registration-modal .user-registration-modal__body .login,.user-registration-modal .user-registration-modal__body .user-registration{margin:0;padding:0;border:none}.user-registration-modal .user-registration-modal__footer{padding:16px;border-top:1px solid #dee0e9}.user-registration-modal .user-registration-modal__footer *{margin:4px}.swal2-container .user-registration-swal2-modal{padding:40px}.swal2-container .user-registration-swal2-modal .swal2-input{font-size:16px}.swal2-container .user-registration-swal2-modal .swal2-animate-success-icon [class^=swal2-success-circular-line],.swal2-container .user-registration-swal2-modal .swal2-animate-success-icon [class^=swal2-success-line]{-webkit-animation:none;animation:none}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon{width:56px;height:56px;line-height:56px;margin:0 auto 16px;border-width:2px;border-radius:50%}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line]{height:3px;width:28px;top:50%;right:0;left:0;margin:0 auto}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line][class$=left]{-webkit-transform:translateY(-50%) rotate(-45deg);-ms-transform:translateY(-50%) rotate(-45deg);transform:translateY(-50%) rotate(-45deg)}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line][class$=right]{-webkit-transform:translateY(-50%) rotate(45deg);-ms-transform:translateY(-50%) rotate(45deg);transform:translateY(-50%) rotate(45deg)}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line]{height:3px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{width:16px;top:56%;right:10px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:47%;width:32px;left:6px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line]{height:64px;width:32px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-75px;right:27px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-26px;right:82px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success .swal2-success-ring{top:-3px;right:-2px;border-width:2px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success .swal2-success-fix{height:64px;right:2px;left:0;margin:0 auto;top:-2px;bottom:0;width:6px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon::before{font-size:40px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-title{color:#2d3559;font-size:24px;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:16px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-title .dashicons{color:#ff4149;font-size:28px;width:56px;height:56px;line-height:56px;margin:0 auto 16px;border:2px solid #ff4149;border-radius:50%}.swal2-container .user-registration-swal2-modal__title{line-height:1.35;display:block}.swal2-container .user-registration-swal2-modal .swal2-content{color:#4c5477;font-size:1em;line-height:1.5}.swal2-container .user-registration-swal2-modal .swal2-actions button{margin-top:0;margin-bottom:0}.swal2-container .user-registration-swal2-modal--centered .swal2-title{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.components-radio-control__option{padding-right:14px;margin-bottom:20px!important}.components-base-control__field{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.wp-core-ui select{max-width:100%!important}.clear{clear:both}.user-registration-page .select2-dropdown,.user-registration-swal2-container{z-index:9999}.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 .__PrivateStripeElement,.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%;padding:4px 8px;border-radius:0;min-height:36px;margin-bottom:10px;line-height:1.5}.ur-frontend-form .ur-form-row .ur-form-grid .__PrivateStripeElement::-webkit-input-placeholder,.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 .__PrivateStripeElement::-ms-input-placeholder,.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 .__PrivateStripeElement::placeholder,.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 .StripeElement{padding:4px 8px;border:1px solid #dee0e9}.ur-frontend-form .ur-form-row .ur-form-grid .StripeElement .__PrivateStripeElement iframe{position:absolute;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.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 .user-registration-submit-Button{float:left}.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;border-width:0 4px 0 0;border-style:solid;border-color:transparent;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}.user-registration-form-login .ur-front-spinner{margin-right:0;float:left;margin-top:15px;margin-left:20px}.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%;text-align:center}.edit-post-visual-editor .ur-gutenberg-form-selector-wrap .components-placeholder__fieldset,.edit-post-visual-editor .user-registration-gutenberg-form-selector-wrap .components-placeholder__fieldset{text-align:center}.edit-post-visual-editor .ur-gutenberg-form-selector-wrap .components-placeholder__fieldset img,.edit-post-visual-editor .user-registration-gutenberg-form-selector-wrap .components-placeholder__fieldset img{margin:0 auto}.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}.button-check-all{display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box}.flatpickr-input,.input-text{padding-right:32px!important}.without_icon{padding-right:10px!important}span.input-wrapper{position:relative}span.input-wrapper .ur-icon{position:absolute;top:10px;right:10px}
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;box-shadow:0 1px 3px rgba(182,187,207,.15)}.ur-form-container .button+.button,.ur-form-container .button+button,.ur-form-container button+.button,.ur-form-container button+button,.user-registration .button+.button,.user-registration .button+button,.user-registration button+.button,.user-registration button+button{margin-left:6px}.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;text-align:center}.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:.9;vertical-align:middle}.ur-form-container .button.button-icon svg,.ur-form-container button.button-icon svg,.user-registration .button.button-icon svg,.user-registration button.button-icon svg{display:block;margin:0 auto}.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.is-active,.ur-form-container button.is-active,.user-registration .button.is-active,.user-registration button.is-active{background:#475bb2;color:#fff;border-color:#475bb2}.ur-form-container .button.is-active:active,.ur-form-container .button.is-active:focus,.ur-form-container .button.is-active:hover,.ur-form-container button.is-active:active,.ur-form-container button.is-active:focus,.ur-form-container button.is-active:hover,.user-registration .button.is-active:active,.user-registration .button.is-active:focus,.user-registration .button.is-active:hover,.user-registration button.is-active:active,.user-registration button.is-active:focus,.user-registration button.is-active:hover{background:#475bb2;color:#fff;border-color:#475bb2}.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}.ur-form-container .button-tertiary,.user-registration .button-tertiary{background:#fff;color:#2d3559;border:1px solid #dee0e9}.ur-form-container .button-tertiary:active,.ur-form-container .button-tertiary:focus,.ur-form-container .button-tertiary:hover,.user-registration .button-tertiary:active,.user-registration .button-tertiary:focus,.user-registration .button-tertiary:hover{background:#f0f1f5;border-color:#dee0e9}.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}.user-registration-button-group{position:relative;display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;vertical-align:middle}.user-registration-button-group .button:not(:first-child),.user-registration-button-group>button:not(:first-child){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.user-registration-button-group .button:not(:last-child),.user-registration-button-group>button:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.user-registration-button-group .button,.user-registration-button-group button{margin-right:0!important}.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}.user-registration-page.user-registration-modal-open{overflow:hidden}.user-registration-page.user-registration-modal-open .user-registration-modal{max-width:100%}.user-registration-modal{position:fixed;top:0;left:0;right:0;height:100%;width:100%;margin:0 auto!important;overflow-x:hidden;overflow-y:auto;z-index:999}.user-registration-modal .user-registration-modal__backdrop{position:fixed;left:0;top:0;background-color:rgba(45,53,89,.5);min-width:100%;min-height:100%;z-index:1}.user-registration-modal .user-registration-modal__content{background:#fff;position:relative;width:auto;margin:16px;border-radius:8px;z-index:99999;box-shadow:0 3px 25px 0 rgba(45,53,89,.4)}@media (min-width:576px){.user-registration-modal .user-registration-modal__content{max-width:500px;margin:24px auto}}@media (min-width:992px){.user-registration-modal .user-registration-modal__content.user-registration-modal__content--lg,.user-registration-modal .user-registration-modal__content.user-registration-modal__content--xl{max-width:800px}}@media (min-width:1200px){.user-registration-modal .user-registration-modal__content.user-registration-modal__content--xl{max-width:1140px}}.user-registration-modal .user-registration-modal__header{display:-webkit-box;display:-webkit-flex;display:flex;padding:16px;border-bottom:1px solid #dee0e9}.user-registration-modal .user-registration-modal__header .user-registration-modal__title{font-size:20px;line-height:1.4;margin:0;padding:0}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon{position:relative;display:block;width:32px;height:32px;-webkit-box-flex:0;-webkit-flex:0 0 32px;flex:0 0 32px;cursor:pointer;margin-left:auto}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::after,.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::before{content:'';height:2px;width:16px;display:block;position:absolute;top:50%;left:0;right:0;margin:0 auto;background:#b6bbcf}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::before{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::after{-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.user-registration-modal .user-registration-modal__body{position:relative;padding:16px}.user-registration-modal .user-registration-modal__body #user-registration,.user-registration-modal .user-registration-modal__body .login,.user-registration-modal .user-registration-modal__body .user-registration{margin:0;padding:0;border:none}.user-registration-modal .user-registration-modal__footer{padding:16px;border-top:1px solid #dee0e9}.user-registration-modal .user-registration-modal__footer *{margin:4px}.swal2-container .user-registration-swal2-modal{padding:40px}.swal2-container .user-registration-swal2-modal .swal2-input{font-size:16px}.swal2-container .user-registration-swal2-modal .swal2-animate-success-icon [class^=swal2-success-circular-line],.swal2-container .user-registration-swal2-modal .swal2-animate-success-icon [class^=swal2-success-line]{-webkit-animation:none;animation:none}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon{font-size:28px;width:56px;height:56px;line-height:56px;margin:0 auto 16px;border-width:2px;border-radius:50%}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line]{height:3px;width:28px;top:50%;left:0;right:0;margin:0 auto}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line][class$=left]{-webkit-transform:translateY(-50%) rotate(45deg);-ms-transform:translateY(-50%) rotate(45deg);transform:translateY(-50%) rotate(45deg)}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line][class$=right]{-webkit-transform:translateY(-50%) rotate(-45deg);-ms-transform:translateY(-50%) rotate(-45deg);transform:translateY(-50%) rotate(-45deg)}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line]{height:3px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{width:16px;top:56%;left:10px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:47%;width:32px;right:6px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line]{height:64px;width:32px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-75px;left:27px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-26px;left:82px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success .swal2-success-ring{top:-3px;left:-2px;border-width:2px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success .swal2-success-fix{height:64px;left:2px;right:0;margin:0 auto;top:-2px;bottom:0;width:6px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon::before{font-size:40px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-title{color:#2d3559;font-size:24px;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:16px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-title .dashicons{color:#ff4149;font-size:28px;width:56px;height:56px;line-height:56px;margin:0 auto 16px;border:2px solid #ff4149;border-radius:50%}.swal2-container .user-registration-swal2-modal__title{line-height:1.35;display:block}.swal2-container .user-registration-swal2-modal .swal2-content{color:#4c5477;font-size:1em;line-height:1.5}.swal2-container .user-registration-swal2-modal .swal2-actions button{margin-top:0;margin-bottom:0}.swal2-container .user-registration-swal2-modal--centered .swal2-title{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.components-radio-control__option{padding-left:14px;margin-bottom:20px!important}.components-base-control__field{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.wp-core-ui select{max-width:100%!important}.clear{clear:both}.user-registration-page .select2-dropdown,.user-registration-swal2-container{z-index:9999}.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 .__PrivateStripeElement,.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%;padding:4px 8px;border-radius:0;min-height:36px;margin-bottom:10px;line-height:1.5}.ur-frontend-form .ur-form-row .ur-form-grid .__PrivateStripeElement::-webkit-input-placeholder,.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 .__PrivateStripeElement::-ms-input-placeholder,.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 .__PrivateStripeElement::placeholder,.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 .StripeElement{padding:4px 8px;border:1px solid #dee0e9}.ur-frontend-form .ur-form-row .ur-form-grid .StripeElement .__PrivateStripeElement iframe{position:absolute;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.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 .user-registration-submit-Button{float:right}.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;border-width:0 0 0 4px;border-style:solid;border-color:transparent;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}.user-registration-form-login .ur-front-spinner{margin-left:0;float:right;margin-top:15px;margin-right:20px}.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%;text-align:center}.edit-post-visual-editor .ur-gutenberg-form-selector-wrap .components-placeholder__fieldset,.edit-post-visual-editor .user-registration-gutenberg-form-selector-wrap .components-placeholder__fieldset{text-align:center}.edit-post-visual-editor .ur-gutenberg-form-selector-wrap .components-placeholder__fieldset img,.edit-post-visual-editor .user-registration-gutenberg-form-selector-wrap .components-placeholder__fieldset img{margin:0 auto}.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
+ @charset "UTF-8";.ur-h2,.ur-h3,.ur-h4{font-weight:600!important}.ur-h2{font-size:28px!important}.ur-h3{font-size:20px!important}.ur-h4{font-size:16px!important}.ur-text-center{text-align:center}.ur-text-right{text-align:right}.ur-text-muted{color:#b6bbcf}@font-face{font-family:UserRegistration;src:url(../fonts/UserRegistration.eot?nk6vrg);src:url(../fonts/UserRegistration.eot?nk6vrg#iefix) format("embedded-opentype"),url(../fonts/UserRegistration.ttf?nk6vrg) format("truetype"),url(../fonts/UserRegistration.woff?nk6vrg) format("woff"),url(../fonts/UserRegistration.svg?nk6vrg#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-icon-credit-card::before{content:""}.ur-icon-range::before{content:""}.ur-icon-course::before{content:""}.ur-icon-mailerlite::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;box-shadow:0 1px 3px rgba(182,187,207,.15)}.ur-form-container .button+.button,.ur-form-container .button+button,.ur-form-container button+.button,.ur-form-container button+button,.user-registration .button+.button,.user-registration .button+button,.user-registration button+.button,.user-registration button+button{margin-left:6px}.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;text-align:center}.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:.9;vertical-align:middle}.ur-form-container .button.button-icon svg,.ur-form-container button.button-icon svg,.user-registration .button.button-icon svg,.user-registration button.button-icon svg{display:block;margin:0 auto}.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.is-active,.ur-form-container button.is-active,.user-registration .button.is-active,.user-registration button.is-active{background:#475bb2;color:#fff;border-color:#475bb2}.ur-form-container .button.is-active:active,.ur-form-container .button.is-active:focus,.ur-form-container .button.is-active:hover,.ur-form-container button.is-active:active,.ur-form-container button.is-active:focus,.ur-form-container button.is-active:hover,.user-registration .button.is-active:active,.user-registration .button.is-active:focus,.user-registration .button.is-active:hover,.user-registration button.is-active:active,.user-registration button.is-active:focus,.user-registration button.is-active:hover{background:#475bb2;color:#fff;border-color:#475bb2}.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}.ur-form-container .button-tertiary,.user-registration .button-tertiary{background:#fff;color:#2d3559;border:1px solid #dee0e9}.ur-form-container .button-tertiary:active,.ur-form-container .button-tertiary:focus,.ur-form-container .button-tertiary:hover,.user-registration .button-tertiary:active,.user-registration .button-tertiary:focus,.user-registration .button-tertiary:hover{background:#f0f1f5;border-color:#dee0e9}.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}.user-registration-button-group{position:relative;display:-webkit-inline-box;display:-webkit-inline-flex;display:inline-flex;vertical-align:middle}.user-registration-button-group .button:not(:first-child),.user-registration-button-group>button:not(:first-child){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.user-registration-button-group .button:not(:last-child),.user-registration-button-group>button:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.user-registration-button-group .button,.user-registration-button-group button{margin-right:0!important}.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}.user-registration-page.user-registration-modal-open{overflow:hidden}.user-registration-page.user-registration-modal-open .user-registration-modal{max-width:100%}.user-registration-modal{position:fixed;top:0;left:0;right:0;height:100%;width:100%;margin:0 auto!important;overflow-x:hidden;overflow-y:auto;z-index:999}.user-registration-modal .user-registration-modal__backdrop{position:fixed;left:0;top:0;background-color:rgba(45,53,89,.5);min-width:100%;min-height:100%;z-index:1}.user-registration-modal .user-registration-modal__content{background:#fff;position:relative;width:auto;margin:16px;border-radius:8px;z-index:99999;box-shadow:0 3px 25px 0 rgba(45,53,89,.4)}@media (min-width:576px){.user-registration-modal .user-registration-modal__content{max-width:500px;margin:24px auto}}@media (min-width:992px){.user-registration-modal .user-registration-modal__content.user-registration-modal__content--lg,.user-registration-modal .user-registration-modal__content.user-registration-modal__content--xl{max-width:800px}}@media (min-width:1200px){.user-registration-modal .user-registration-modal__content.user-registration-modal__content--xl{max-width:1140px}}.user-registration-modal .user-registration-modal__header{display:-webkit-box;display:-webkit-flex;display:flex;padding:16px;border-bottom:1px solid #dee0e9}.user-registration-modal .user-registration-modal__header .user-registration-modal__title{font-size:20px;line-height:1.4;margin:0;padding:0}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon{position:relative;display:block;width:32px;height:32px;-webkit-box-flex:0;-webkit-flex:0 0 32px;flex:0 0 32px;cursor:pointer;margin-left:auto}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::after,.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::before{content:"";height:2px;width:16px;display:block;position:absolute;top:50%;left:0;right:0;margin:0 auto;background:#b6bbcf}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::before{-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}.user-registration-modal .user-registration-modal__header .user-registration-modal__close-icon::after{-webkit-transform:rotate(135deg);-ms-transform:rotate(135deg);transform:rotate(135deg)}.user-registration-modal .user-registration-modal__body{position:relative;padding:16px}.user-registration-modal .user-registration-modal__body #user-registration,.user-registration-modal .user-registration-modal__body .login,.user-registration-modal .user-registration-modal__body .user-registration{margin:0;padding:0;border:none}.user-registration-modal .user-registration-modal__footer{padding:16px;border-top:1px solid #dee0e9}.user-registration-modal .user-registration-modal__footer *{margin:4px}.swal2-container .user-registration-swal2-modal{padding:40px}.swal2-container .user-registration-swal2-modal .swal2-input{font-size:16px}.swal2-container .user-registration-swal2-modal .swal2-animate-success-icon [class^=swal2-success-circular-line],.swal2-container .user-registration-swal2-modal .swal2-animate-success-icon [class^=swal2-success-line]{-webkit-animation:none;animation:none}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon{width:56px;height:56px;line-height:56px;margin:0 auto 16px;border-width:2px;border-radius:50%}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line]{height:3px;width:28px;top:50%;left:0;right:0;margin:0 auto}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line][class$=left]{-webkit-transform:translateY(-50%) rotate(45deg);-ms-transform:translateY(-50%) rotate(45deg);transform:translateY(-50%) rotate(45deg)}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon .swal2-x-mark [class^=swal2-x-mark-line][class$=right]{-webkit-transform:translateY(-50%) rotate(-45deg);-ms-transform:translateY(-50%) rotate(-45deg);transform:translateY(-50%) rotate(-45deg)}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line]{height:3px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip]{width:16px;top:56%;left:10px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-line][class$=long]{top:47%;width:32px;right:6px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line]{height:64px;width:32px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left]{top:-75px;left:27px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right]{top:-26px;left:82px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success .swal2-success-ring{top:-3px;left:-2px;border-width:2px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon.swal2-success .swal2-success-fix{height:64px;left:2px;right:0;margin:0 auto;top:-2px;bottom:0;width:6px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-icon::before{font-size:40px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-title{color:#2d3559;font-size:24px;-webkit-flex-wrap:wrap;flex-wrap:wrap;margin-bottom:16px}.swal2-container .user-registration-swal2-modal .swal2-header .swal2-title .dashicons{color:#ff4149;font-size:28px;width:56px;height:56px;line-height:56px;margin:0 auto 16px;border:2px solid #ff4149;border-radius:50%}.swal2-container .user-registration-swal2-modal__title{line-height:1.35;display:block}.swal2-container .user-registration-swal2-modal .swal2-content{color:#4c5477;font-size:1em;line-height:1.5}.swal2-container .user-registration-swal2-modal .swal2-actions button{margin-top:0;margin-bottom:0}.swal2-container .user-registration-swal2-modal--centered .swal2-title{-webkit-box-orient:vertical;-webkit-box-direction:normal;-webkit-flex-direction:column;flex-direction:column}.components-radio-control__option{padding-left:14px;margin-bottom:20px!important}.components-base-control__field{display:-webkit-box;display:-webkit-flex;display:flex;-webkit-box-pack:center;-webkit-justify-content:center;justify-content:center}.wp-core-ui select{max-width:100%!important}.clear{clear:both}.user-registration-page .select2-dropdown,.user-registration-swal2-container{z-index:9999}.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 .__PrivateStripeElement,.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%;padding:4px 8px;border-radius:0;min-height:36px;margin-bottom:10px;line-height:1.5}.ur-frontend-form .ur-form-row .ur-form-grid .__PrivateStripeElement::-webkit-input-placeholder,.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 .__PrivateStripeElement::-ms-input-placeholder,.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 .__PrivateStripeElement::placeholder,.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 .StripeElement{padding:4px 8px;border:1px solid #dee0e9}.ur-frontend-form .ur-form-row .ur-form-grid .StripeElement .__PrivateStripeElement iframe{position:absolute;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.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 .user-registration-submit-Button{float:right}.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;border-width:0 0 0 4px;border-style:solid;border-color:transparent;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}.user-registration-form-login .ur-front-spinner{margin-left:0;float:right;margin-top:15px;margin-right:20px}.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%;text-align:center}.edit-post-visual-editor .ur-gutenberg-form-selector-wrap .components-placeholder__fieldset,.edit-post-visual-editor .user-registration-gutenberg-form-selector-wrap .components-placeholder__fieldset{text-align:center}.edit-post-visual-editor .ur-gutenberg-form-selector-wrap .components-placeholder__fieldset img,.edit-post-visual-editor .user-registration-gutenberg-form-selector-wrap .components-placeholder__fieldset img{margin:0 auto}.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}.button-check-all{display:inline-block;text-decoration:none;font-size:13px;line-height:2.15384615;min-height:30px;margin:0;padding:0 10px;cursor:pointer;border-width:1px;border-style:solid;-webkit-appearance:none;border-radius:3px;white-space:nowrap;box-sizing:border-box}.flatpickr-input,.input-text{padding-left:32px!important}.without_icon{padding-left:10px!important}span.input-wrapper{position:relative}span.input-wrapper .ur-icon{position:absolute;top:10px;left:10px}
assets/css/user-registration.scss CHANGED
@@ -9,6 +9,7 @@
9
  */
10
  @import "variables/variables";
11
  @import "mixins/mixins";
 
12
 
13
  // Components
14
  @import "components/button", "components/modal";
@@ -121,6 +122,7 @@
121
  padding: 10px;
122
  box-shadow: none;
123
  background: none;
 
124
  input[name="rememberme"]#rememberme {
125
  vertical-align: middle;
126
  }
@@ -489,6 +491,7 @@
489
  color: $label_color;
490
  margin-bottom: 10px;
491
  height: 45px;
 
492
  &:focus {
493
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
494
  }
@@ -793,8 +796,9 @@
793
  width: 16px;
794
  height: 16px;
795
  margin-left: -40px;
796
- float: left;
797
  }
 
798
  .user-registration-form-login {
799
  .ur-front-spinner {
800
  margin-left: 0;
@@ -803,6 +807,7 @@
803
  margin-right: 20px;
804
  }
805
  }
 
806
  .edit-post-visual-editor {
807
  .ur-gutenberg-form-selector-wrap,
808
  .user-registration-gutenberg-form-selector-wrap {
@@ -829,6 +834,7 @@
829
  .ur-frontend-form.ur-gutenberg-editor form button[type="submit"] {
830
  cursor: not-allowed;
831
  }
 
832
  .ur-frontend-form.ur-gutenberg-editor form .ur-form-row .ur-form-grid input {
833
  cursor: not-allowed;
834
  }
@@ -914,3 +920,39 @@
914
  .ur-hidden {
915
  display: none;
916
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
9
  */
10
  @import "variables/variables";
11
  @import "mixins/mixins";
12
+ @import "fonts";
13
 
14
  // Components
15
  @import "components/button", "components/modal";
122
  padding: 10px;
123
  box-shadow: none;
124
  background: none;
125
+
126
  input[name="rememberme"]#rememberme {
127
  vertical-align: middle;
128
  }
491
  color: $label_color;
492
  margin-bottom: 10px;
493
  height: 45px;
494
+
495
  &:focus {
496
  box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.05);
497
  }
796
  width: 16px;
797
  height: 16px;
798
  margin-left: -40px;
799
+ float: left;
800
  }
801
+
802
  .user-registration-form-login {
803
  .ur-front-spinner {
804
  margin-left: 0;
807
  margin-right: 20px;
808
  }
809
  }
810
+
811
  .edit-post-visual-editor {
812
  .ur-gutenberg-form-selector-wrap,
813
  .user-registration-gutenberg-form-selector-wrap {
834
  .ur-frontend-form.ur-gutenberg-editor form button[type="submit"] {
835
  cursor: not-allowed;
836
  }
837
+
838
  .ur-frontend-form.ur-gutenberg-editor form .ur-form-row .ur-form-grid input {
839
  cursor: not-allowed;
840
  }
920
  .ur-hidden {
921
  display: none;
922
  }
923
+
924
+ .button-check-all {
925
+ display: inline-block;
926
+ text-decoration: none;
927
+ font-size: 13px;
928
+ line-height: 2.15384615;
929
+ min-height: 30px;
930
+ margin: 0;
931
+ padding: 0 10px;
932
+ cursor: pointer;
933
+ border-width: 1px;
934
+ border-style: solid;
935
+ -webkit-appearance: none;
936
+ border-radius: 3px;
937
+ white-space: nowrap;
938
+ box-sizing: border-box;
939
+ }
940
+
941
+ .input-text,
942
+ .flatpickr-input {
943
+ padding-left: 32px !important;
944
+ }
945
+
946
+ .without_icon {
947
+ padding-left: 10px !important;
948
+ }
949
+
950
+ span.input-wrapper {
951
+ position: relative;
952
+
953
+ .ur-icon {
954
+ position: absolute;
955
+ top: 10px;
956
+ left: 10px;
957
+ }
958
+ }
assets/js/admin/admin.js CHANGED
@@ -3,35 +3,6 @@
3
  * global i18n_admin
4
  */
5
  jQuery(function ($) {
6
- // Sync Number field's options with hidden corresponding elements.
7
- $(document.body).on(
8
- "input",
9
- ".ur_advance_setting.ur-settings-min",
10
- function () {
11
- $(
12
- ".ur-selected-item.ur-item-active .ur_advance_setting.ur-settings-min"
13
- ).val($(this).val());
14
- }
15
- );
16
- $(document.body).on(
17
- "input",
18
- ".ur_advance_setting.ur-settings-max",
19
- function () {
20
- $(
21
- ".ur-selected-item.ur-item-active .ur_advance_setting.ur-settings-max"
22
- ).val($(this).val());
23
- }
24
- );
25
- $(document.body).on(
26
- "input",
27
- ".ur_advance_setting.ur-settings-step",
28
- function () {
29
- $(
30
- ".ur-selected-item.ur-item-active .ur_advance_setting.ur-settings-step"
31
- ).val($(this).val());
32
- }
33
- );
34
-
35
  // Bind UI Action handlers for searching fields.
36
  $(document.body).on("input", "#ur-search-fields", function () {
37
  var search_string = $(this).val().toLowerCase();
@@ -393,1153 +364,49 @@ jQuery(function ($) {
393
 
394
  $("input.input-color").wpColorPicker();
395
  // send test email message
396
- $( '.user_registration_send_email_test' ).on( 'click', function(e) {
397
- var email = $( "#user_registration_email_send_to" ).val();
398
- e.preventDefault();
399
- $.ajax({
400
- url: user_registration_send_email.ajax_url,
401
- data: {
402
- 'action': 'user_registration_send_test_email',
403
- email : email,
404
- },
405
- type: 'post',
406
- beforeSend: function () {
407
- var spinner = '<span class="ur-spinner is-active"></span>';
408
- $( '.user_registration_send_email_test' ).append( spinner );
409
- },
410
- complete: function( response ) {
411
- $( '.ur-spinner' ).remove();
412
- $( '.user-registration_page_user-registration-settings .notice' ).remove();
413
- if( response.responseJSON.success === true ) {
414
- message_string = '<div class="success notice notice-success is-dismissible"><p><strong>' + response.responseJSON.data.message + '</strong></p></div>';
415
- $( '.user-registration-header' ).after( message_string );
416
- } else {
417
- message_string = '<div class="error notice notice-success is-dismissible"><p><strong>'+ response.responseJSON.data.message +'</strong></p></div>';
418
- $( '.user-registration-header' ).after( message_string );
419
- }
420
- $( '.user-registration_page_user-registration-settings .notice' ).css( 'display','block' );
421
- $( window ).scrollTop(
422
- $( ".notice" ).position()
423
- );
424
- },
425
- });
426
- });
427
- });
428
-
429
- (function ($, user_registration_admin_data) {
430
- var i18n_admin = user_registration_admin_data.i18n_admin;
431
- $(function () {
432
- var user_profile_modal = {
433
- init: function () {
434
- $(document.body)
435
- .on("click", ".column-data_link a", this.add_item)
436
- .on("ur_backbone_modal_loaded", this.backbone.init)
437
- .on("ur_backbone_modal_response", this.backbone.response);
438
  },
439
- add_item: function (e) {
440
- e.preventDefault();
441
- $(this).URBackboneModal({ template: "test-demo" });
442
- return false;
443
  },
444
- backbone: {
445
- init: function (e, target) {
446
- if ("test-demo" === target) {
447
- }
448
- },
449
- response: function (e, target) {
450
- if ("test-demo" === target) {
451
- }
452
- },
 
 
 
 
 
 
 
 
 
 
 
 
 
453
  },
454
- };
455
- user_profile_modal.init();
456
- $.fn.ur_form_builder = function () {
457
- var loaded_params = {
458
- active_grid: user_registration_admin_data.active_grid,
459
- number_of_grid_list:
460
- user_registration_admin_data.number_of_grid,
461
- min_grid_height: 70,
462
- };
463
- // traverse all nodes
464
- return this.each(function () {
465
- // express a single node as a jQuery object
466
- var $this = $(this);
467
- var builder = {
468
- init: function () {
469
- this.single_row();
470
- manage_required_fields();
471
- },
472
- get_grid_button: function () {
473
- var grid_button = $(
474
- '<div class="ur-grid-containner"/>'
475
- );
476
- var grid_content =
477
- '<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>';
478
- grid_content +=
479
- '<button type="button" class="dashicons dashicons-no-alt ur-remove-row"></button>';
480
- grid_content +=
481
- '<div class="ur-toggle-grid-content" style="display:none">';
482
- grid_content +=
483
- "<small>Select the grid column.</small>";
484
- grid_content +=
485
- '<div class="ur-grid-selector" data-grid = "1">';
486
- grid_content +=
487
- '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M28,6V26H4V6H28m2-2H2V28H30V4Z"/></svg>';
488
- grid_content += "</div>";
489
- grid_content +=
490
- '<div class="ur-grid-selector" data-grid = "2">';
491
- grid_content +=
492
- '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M17,4H2V28H30V4ZM4,26V6H15V26Zm24,0H17V6H28Z"/></svg>';
493
- grid_content += "</div>";
494
- grid_content +=
495
- '<div class="ur-grid-selector" data-grid = "3">';
496
- grid_content +=
497
- '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><path d="M22,4H2V28H30V4ZM4,26V6h6V26Zm8,0V6h8V26Zm16,0H22V6h6Z"/></svg>';
498
- grid_content += "</div>";
499
- grid_content += "</div>";
500
- grid_button.html(grid_content);
501
- return grid_button.html();
502
- },
503
- single_row: function () {
504
- if (user_registration_admin_data.is_edit_form !== "1") {
505
- var single_row = $(
506
- "<div class='ur-single-row'/ data-row-id=\"0\">"
507
- );
508
- single_row.append($("<div class='ur-grids'/>"));
509
- var grid_button = this.get_grid_button();
510
- single_row.find(".ur-grids").append(grid_button);
511
- single_row
512
- .find(".ur-grids")
513
- .find(
514
- 'span[data-id="' +
515
- loaded_params.active_grid +
516
- '"]'
517
- )
518
- .addClass("ur-active-grid");
519
- var grid_list = this.get_grid_lists(
520
- loaded_params.active_grid
521
- );
522
- single_row.append('<div style="clear:both"></div>');
523
- single_row.append(grid_list);
524
- single_row.append('<div style="clear:both"></div>');
525
-
526
- $this.append(single_row);
527
- $(".ur-single-row")
528
- .eq(0)
529
- .find(".ur-grid-lists")
530
- .eq(0)
531
- .find(".ur-grid-list-item")
532
- .eq(0)
533
- .find(".user-registration-dragged-me")
534
- .remove();
535
- $(".ur-single-row")
536
- .eq(0)
537
- .find(".ur-grid-lists")
538
- .eq(0)
539
- .find(".ur-grid-list-item")
540
- .eq(0)
541
- .append(
542
- user_registration_admin_data.required_form_html
543
- );
544
- }
545
-
546
- if ($this.find(".ur-add-new-row").length == 0) {
547
- $this.append(
548
- '<button type="button" class="button button-primary dashicons dashicons-plus-alt ur-add-new-row ui-sortable-handle" data-total-rows="0">' +
549
- user_registration_admin_data.add_new +
550
- "</button>"
551
- );
552
- var total_rows = $this
553
- .find(".ur-add-new-row")
554
- .siblings(".ur-single-row")
555
- .last()
556
- .prev()
557
- .attr("data-row-id");
558
- $this
559
- .find(".ur-add-new-row")
560
- .attr("data-total-rows", total_rows);
561
- }
562
- events.render_draggable_sortable();
563
- builder.manage_empty_grid();
564
- manage_draggable_users_fields();
565
- },
566
- get_grid_lists: function (number_of_grid) {
567
- var grid_lists = $('<div class="ur-grid-lists"/>');
568
- for (var i = 1; i <= number_of_grid; i++) {
569
- var grid_list_item = $(
570
- "<div ur-grid-id='" +
571
- i +
572
- "' class='ur-grid-list-item'></div>"
573
- );
574
- var width =
575
- Math.floor(100 / number_of_grid) -
576
- number_of_grid;
577
- grid_list_item.css({
578
- width: width + "%",
579
- "min-height":
580
- loaded_params.min_grid_height + "px",
581
- });
582
- grid_lists.append(grid_list_item);
583
- }
584
- grid_lists.append('<div style="clear:both"></div>');
585
- grid_lists.find(".ur-grid-list-item").eq("0").css({});
586
- return grid_lists;
587
- },
588
- populate_dropped_node: function (container, form_field_id) {
589
- var data = {
590
- action: "user_registration_user_input_dropped",
591
- security:
592
- user_registration_admin_data.user_input_dropped,
593
- form_field_id: form_field_id,
594
- };
595
- var template_text =
596
- '<div class="ur-selected-item ajax_added"><div class="ur-action-buttons">' +
597
- '<span title="Clone" class="dashicons dashicons-admin-page ur-clone"></span>' +
598
- '<span title="Trash" class="dashicons dashicons-trash ur-trash"></span>' +
599
- "</div>(content)</div>";
600
- container
601
- .closest(".ur-single-row")
602
- .find(".user-registration-dragged-me")
603
- .fadeOut();
604
- $.ajax({
605
- url: user_registration_admin_data.ajax_url,
606
- data: data,
607
- type: "POST",
608
- beforeSend: function () {
609
- container
610
- .removeAttr("class")
611
- .removeAttr("id")
612
- .removeAttr("data-field-id")
613
- .addClass("ur-selected-item")
614
- .css({ width: "auto" });
615
- container.html(
616
- '<small class="spinner is-active"></small>'
617
- );
618
- container.addClass("ur-item-dragged");
619
- },
620
- complete: function (response) {
621
- builder.manage_empty_grid();
622
- if (response.responseJSON.success === true) {
623
- var template = $(
624
- template_text.replace(
625
- "(content)",
626
- response.responseJSON.data.template
627
- )
628
- );
629
- template.removeClass("ajax_added");
630
- template.removeClass("ur-item-dragged");
631
- container
632
- .find(".ajax_added")
633
- .find(".spinner")
634
- .remove();
635
- container.find(".ajax_added").remove();
636
- $(template).insertBefore(container);
637
- container.remove();
638
- }
639
- manage_draggable_users_fields();
640
-
641
- var populated_item = template
642
- .closest(".ur-selected-item ")
643
- .find("[data-field='field_name']")
644
- .val();
645
- manage_conditional_field_options(
646
- populated_item
647
- );
648
-
649
- $(
650
- '.ur-input-type-select2 .ur-field[data-field-key="select2"] select, .ur-input-type-multi-select2 .ur-field[data-field-key="multi_select2"] select'
651
- ).selectWoo();
652
-
653
- $(document.body).trigger(
654
- "ur_new_field_created"
655
- );
656
- },
657
- });
658
- },
659
- manage_empty_grid: function () {
660
- var main_containner = $(".ur-input-grids");
661
- var drag_me = $(
662
- '<div class="user-registration-dragged-me"/>'
663
- );
664
- main_containner
665
- .find(".user-registration-dragged-me")
666
- .remove();
667
- $.each(
668
- main_containner.find(".ur-grid-list-item"),
669
- function () {
670
- var $this = $(this);
671
- if (
672
- $(this).find(".ur-selected-item").length ===
673
- 0
674
- ) {
675
- $this.append(drag_me.clone());
676
- }
677
- }
678
- );
679
- },
680
- };
681
- var events = {
682
- register: function () {
683
- this.register_add_new_row();
684
- this.register_remove_row();
685
- this.change_ur_grids();
686
- this.remove_selected_item();
687
- this.clone_selected_item();
688
- },
689
- register_add_new_row: function () {
690
- var $this_obj = this;
691
- $("body").on("click", ".ur-add-new-row", function () {
692
- var total_rows = $(this).attr("data-total-rows");
693
- $(this).attr(
694
- "data-total-rows",
695
- parseInt(total_rows) + 1
696
- );
697
-
698
- var single_row_clone = $(this)
699
- .closest(".ur-input-grids")
700
- .find(".ur-single-row")
701
- .eq(0)
702
- .clone();
703
- single_row_clone.attr(
704
- "data-row-id",
705
- parseInt(total_rows) + 1
706
- );
707
- single_row_clone.find(".ur-grid-lists").html("");
708
- single_row_clone
709
- .find(".ur-grids")
710
- .find("span")
711
- .removeClass("ur-active-grid");
712
- single_row_clone
713
- .find(".ur-grids")
714
- .find(
715
- 'span[data-id="' +
716
- loaded_params.active_grid +
717
- '"]'
718
- )
719
- .addClass("ur-active-grid");
720
- var grid_list = builder.get_grid_lists(
721
- loaded_params.active_grid
722
- );
723
- single_row_clone
724
- .find(".ur-grid-lists")
725
- .append(grid_list.html());
726
- single_row_clone.insertBefore(".ur-add-new-row");
727
- single_row_clone.show();
728
- $this_obj.render_draggable_sortable();
729
- builder.manage_empty_grid();
730
- $(document).trigger("user_registration_row_added", [
731
- single_row_clone,
732
- ]);
733
- });
734
- },
735
- register_remove_row: function () {
736
- var $this = this;
737
- $("body").on("click", ".ur-remove-row", function () {
738
- if (
739
- $(".ur-input-grids").find(
740
- ".ur-single-row:visible"
741
- ).length > 1
742
- ) {
743
- var $this_row = $(this);
744
- ur_confirmation(
745
- user_registration_admin_data.i18n_admin
746
- .i18n_are_you_sure_want_to_delete_row,
747
- {
748
- title:
749
- user_registration_admin_data
750
- .i18n_admin.i18n_msg_delete,
751
- confirm: function () {
752
- var btn = $this_row.prev();
753
- var new_btn;
754
- if (
755
- btn.hasClass("ur-add-new-row")
756
- ) {
757
- new_btn = btn.clone();
758
- } else {
759
- new_btn = $this_row
760
- .clone()
761
- .attr(
762
- "class",
763
- "dashicons-minus ur-remove-row"
764
- );
765
- }
766
- if (
767
- new_btn.hasClass(
768
- "ur-add-new-row"
769
- )
770
- ) {
771
- $this_row
772
- .closest(".ur-single-row")
773
- .prev()
774
- .find(".ur-remove-row")
775
- .before(new_btn);
776
- }
777
- var single_row = $this_row.closest(
778
- ".ur-single-row"
779
- );
780
- $(
781
- document
782
- ).trigger(
783
- "user_registration_row_deleted",
784
- [single_row]
785
- );
786
-
787
- // Remove Row Fields from Conditional Select Dropdown.
788
- var row_fields = single_row.find(
789
- ".ur-grid-lists .ur-selected-item .ur-general-setting"
790
- );
791
- $(row_fields).each(function () {
792
- var field_label = $(this)
793
- .closest(
794
- ".ur-selected-item"
795
- )
796
- .find(
797
- " .ur-admin-template .ur-label label"
798
- )
799
- .text();
800
- var field_key = $(this)
801
- .closest(
802
- ".ur-selected-item"
803
- )
804
- .find(
805
- " .ur-admin-template .ur-field"
806
- )
807
- .data("field-key");
808
-
809
- //strip certain fields
810
- if (
811
- "section_title" ==
812
- field_key ||
813
- "html" == field_key ||
814
- "wysiwyg" == field_key ||
815
- "billing_address_title" ==
816
- field_key ||
817
- "shipping_address_title" ==
818
- field_key
819
- ) {
820
- return;
821
- }
822
-
823
- var field_name = $(this)
824
- .find(
825
- "[data-field='field_name']"
826
- )
827
- .val();
828
-
829
- if (
830
- typeof field_name !==
831
- "undefined"
832
- ) {
833
- // Remove item from conditional logic options
834
- $(
835
- '[class*="urcl-settings-rules_field_"] option[value="' +
836
- field_name +
837
- '"]'
838
- ).remove();
839
-
840
- // Remove Field from Form Setting Conditionally Assign User Role.
841
- $(
842
- '[class*="urcl-field-conditional-field-select"] option[value="' +
843
- field_name +
844
- '"]'
845
- ).remove();
846
- }
847
- });
848
- single_row.remove();
849
- $this.check_grid();
850
- manage_draggable_users_fields();
851
-
852
- Swal.fire({
853
- type: "success",
854
- title: "Successfully deleted!",
855
- customClass:
856
- "user-registration-swal2-modal user-registration-swal2-modal--center",
857
- showConfirmButton: false,
858
- timer: 1000,
859
- });
860
- },
861
- reject: function () {
862
- // Do Nothing.
863
- },
864
- }
865
- );
866
- } else {
867
- ur_alert(
868
- user_registration_admin_data.i18n_admin
869
- .i18n_at_least_one_row_is_required_to_create_a_registration_form,
870
- {
871
- title:
872
- user_registration_admin_data
873
- .i18n_admin
874
- .i18n_cannot_delete_row,
875
- }
876
- );
877
- }
878
- });
879
- },
880
- change_ur_grids: function () {
881
- var $this_obj = this;
882
-
883
- $(document).on(
884
- "click",
885
- ".ur-grids .ur-edit-grid",
886
- function (e) {
887
- e.stopPropagation();
888
- $(this)
889
- .siblings(".ur-toggle-grid-content")
890
- .stop(true)
891
- .slideToggle(200);
892
- }
893
- );
894
- $(document).on("click", function () {
895
- $(".ur-toggle-grid-content")
896
- .stop(true)
897
- .slideUp(200);
898
- });
899
-
900
- $(document).on(
901
- "click",
902
- ".ur-grids .ur-toggle-grid-content .ur-grid-selector",
903
- function () {
904
- var $this_single_row = $(this).closest(
905
- ".ur-single-row"
906
- ),
907
- grid_num = $(this).attr("data-grid"),
908
- grid_comp = $this_single_row.find(
909
- ".ur-grid-lists .ur-grid-list-item"
910
- ).length,
911
- $grids = builder.get_grid_lists(grid_num),
912
- iterator = 0;
913
-
914
- // Prevent from selecting same grid.
915
- if (
916
- $this_single_row.find(
917
- ".ur-grid-lists .ur-grid-list-item"
918
- ).length === parseInt(grid_num)
919
- ) {
920
- return;
921
- }
922
-
923
- $this_single_row
924
- .find("button.ur-edit-grid")
925
- .html($(this).html());
926
-
927
- $.each(
928
- $this_single_row.find(
929
- ".ur-grid-lists .ur-grid-list-item"
930
- ),
931
- function () {
932
- $(this)
933
- .children("*")
934
- .each(function () {
935
- $grids
936
- .find(".ur-grid-list-item")
937
- .eq(iterator)
938
- .append($(this).clone()); // "this" is the current element in the loop.
939
-
940
- // In case the fields have to be redistributed into 2 columns - prioritizes left column first, if 3rd column is going away.
941
- if (
942
- 3 ===
943
- parseInt(
944
- $(this)
945
- .parent()
946
- .attr(
947
- "ur-grid-id"
948
- )
949
- ) &&
950
- 3 === parseInt(grid_comp) &&
951
- 2 === parseInt(grid_num)
952
- ) {
953
- iterator = Math.abs(
954
- --iterator
955
- ); // Alternates between 0 and 1.
956
- }
957
- });
958
-
959
- // Decides to check if it's trying to push into lower amount of columns.
960
- // If so, it simply resets the index to 0 to disallow elements from removed rows.
961
- if (
962
- parseInt(grid_num) > grid_comp ||
963
- ($(this).children("*").length &&
964
- 2 <= parseInt(grid_num))
965
- ) {
966
- iterator =
967
- parseInt(grid_num) <= ++iterator
968
- ? 0
969
- : iterator;
970
- }
971
- }
972
- );
973
-
974
- $this_single_row
975
- .find(".ur-grid-lists")
976
- .eq(0)
977
- .hide();
978
- $grids
979
- .clone()
980
- .insertAfter(
981
- $this_single_row.find(".ur-grid-lists")
982
- );
983
- $this_single_row
984
- .find(".ur-grid-lists")
985
- .eq(0)
986
- .remove();
987
- $this_obj.render_draggable_sortable();
988
- builder.manage_empty_grid();
989
- }
990
- );
991
- },
992
- render_draggable_sortable: function () {
993
- $(".ur-grid-list-item")
994
- .sortable({
995
- containment: ".ur-input-grids",
996
- over: function () {
997
- $(this).addClass("ur-sortable-active");
998
- builder.manage_empty_grid();
999
- },
1000
- out: function () {
1001
- $(this).removeClass("ur-sortable-active");
1002
- builder.manage_empty_grid();
1003
- },
1004
- revert: true,
1005
- connectWith: ".ur-grid-list-item",
1006
- })
1007
- .disableSelection();
1008
- $(".ur-input-grids").sortable({
1009
- containment: ".ur-builder-wrapper",
1010
- tolerance: "pointer",
1011
- revert: "invalid",
1012
- placeholder: "ur-single-row",
1013
- forceHelperSize: true,
1014
- over: function () {
1015
- $(this).addClass("ur-sortable-active");
1016
- },
1017
- out: function () {
1018
- $(this).removeClass("ur-sortable-active");
1019
- },
1020
- });
1021
- $("#ur-draggabled .draggable")
1022
- .draggable({
1023
- connectToSortable: ".ur-grid-list-item",
1024
- containment: ".ur-registered-from",
1025
- helper: function () {
1026
- return $(this)
1027
- .clone()
1028
- .insertAfter(
1029
- $(this)
1030
- .closest(".ur-tab-contents")
1031
- .siblings(".ur-tab-lists")
1032
- );
1033
- },
1034
- revert: "invalid",
1035
- // start: function (event, ui) {
1036
- // },
1037
- stop: function (event, ui) {
1038
- if (
1039
- $(ui.helper).closest(
1040
- ".ur-grid-list-item"
1041
- ).length === 0
1042
- ) {
1043
- return;
1044
- }
1045
- var data_field_id = $(ui.helper)
1046
- .attr("data-field-id")
1047
- .replace("user_registration_", "")
1048
- .trim();
1049
- var length_of_required = $(
1050
- ".ur-input-grids"
1051
- ).find(
1052
- '.ur-field[data-field-key="' +
1053
- data_field_id +
1054
- '"]'
1055
- ).length;
1056
- var only_one_field_index = $.makeArray(
1057
- user_registration_admin_data.form_one_time_draggable_fields
1058
- );
1059
- if (
1060
- length_of_required > 0 &&
1061
- $.inArray(
1062
- data_field_id,
1063
- only_one_field_index
1064
- ) >= 0
1065
- ) {
1066
- show_message(
1067
- user_registration_admin_data
1068
- .i18n_admin
1069
- .i18n_user_required_field_already_there
1070
- );
1071
- $(ui.helper).remove();
1072
- return;
1073
- }
1074
- var clone = $(ui.helper);
1075
- var form_field_id = $(clone).attr(
1076
- "data-field-id"
1077
- );
1078
- if (typeof form_field_id !== "undefined") {
1079
- var this_clone = $(ui.helper)
1080
- .closest(".ur-grid-list-item")
1081
- .find(
1082
- 'li[data-field-id="' +
1083
- $(this).attr(
1084
- "data-field-id"
1085
- ) +
1086
- '"]'
1087
- );
1088
- builder.populate_dropped_node(
1089
- this_clone,
1090
- form_field_id
1091
- );
1092
- }
1093
- },
1094
- })
1095
- .disableSelection();
1096
- },
1097
- remove_selected_item: function () {
1098
- var $this = this;
1099
- $("body").on(
1100
- "click",
1101
- ".ur-selected-item .ur-action-buttons .ur-trash",
1102
- function (e) {
1103
- var removed_item = $(this)
1104
- .closest(".ur-selected-item ")
1105
- .find("[data-field='field_name']")
1106
- .val(),
1107
- ele = $this,
1108
- $ele = $(this);
1109
-
1110
- ur_confirmation(
1111
- user_registration_admin_data.i18n_admin
1112
- .i18n_are_you_sure_want_to_delete_field,
1113
- {
1114
- title:
1115
- user_registration_admin_data
1116
- .i18n_admin.i18n_msg_delete,
1117
- showCancelButton: true,
1118
- confirmButtonText:
1119
- user_registration_admin_data
1120
- .i18n_admin.i18n_choice_ok,
1121
- cancelButtonText:
1122
- user_registration_admin_data
1123
- .i18n_admin.i18n_choice_cancel,
1124
- ele: ele,
1125
- $ele: $ele,
1126
- removed_item: removed_item,
1127
- confirm: function () {
1128
- $ele.closest(
1129
- ".ur-selected-item "
1130
- ).remove();
1131
- ele.check_grid();
1132
- builder.manage_empty_grid();
1133
- manage_draggable_users_fields();
1134
-
1135
- // Remove item from conditional logic options
1136
- $(
1137
- '[class*="urcl-settings-rules_field_"] option[value="' +
1138
- removed_item +
1139
- '"]'
1140
- ).remove();
1141
-
1142
- // Remove Field from Form Setting Conditionally Assign User Role.
1143
- $(
1144
- '[class*="urcl-field-conditional-field-select"] option[value="' +
1145
- removed_item +
1146
- '"]'
1147
- ).remove();
1148
-
1149
- // To prevent click on whole item.
1150
- return false;
1151
- },
1152
- reject: function () {
1153
- return false;
1154
- },
1155
- }
1156
- );
1157
- }
1158
- );
1159
- },
1160
-
1161
- clone_selected_item: function () {
1162
- $("body").on(
1163
- "click",
1164
- ".ur-selected-item .ur-action-buttons .ur-clone",
1165
- function () {
1166
- var data_field_key = $(this)
1167
- .closest(".ur-selected-item ")
1168
- .find(".ur-field")
1169
- .attr("data-field-key");
1170
- var selected_node = $(".ur-input-grids").find(
1171
- '.ur-field[data-field-key="' +
1172
- data_field_key +
1173
- '"]'
1174
- );
1175
- var length_of_required = selected_node.length;
1176
- if (
1177
- length_of_required > 0 &&
1178
- $.inArray(
1179
- data_field_key,
1180
- user_registration_admin_data.form_one_time_draggable_fields
1181
- ) > -1
1182
- ) {
1183
- show_message(
1184
- user_registration_admin_data.i18n_admin
1185
- .i18n_user_required_field_already_there_could_not_clone
1186
- );
1187
- return;
1188
- }
1189
- var clone = $(this)
1190
- .closest(".ur-selected-item ")
1191
- .clone();
1192
- var label_node = clone.find(
1193
- 'input[data-field="field_name"]'
1194
- );
1195
- var regex = /\d+/g;
1196
- var matches = label_node.val().match(regex);
1197
- var find_string =
1198
- matches.length > 0
1199
- ? matches[matches.length - 1]
1200
- : "";
1201
- var label_string = label_node
1202
- .val()
1203
- .replace(find_string, "");
1204
- clone
1205
- .find('input[data-field="field_name"]')
1206
- .attr(
1207
- "value",
1208
- label_string + new Date().getTime()
1209
- );
1210
- $(this)
1211
- .closest(".ur-grid-list-item")
1212
- .append(clone);
1213
-
1214
- var populated_item = clone
1215
- .find("[data-field='field_name']")
1216
- .val();
1217
- manage_conditional_field_options(
1218
- populated_item
1219
- );
1220
- }
1221
- );
1222
- },
1223
- check_grid: function () {
1224
- $(".ur-tabs").tabs({ disabled: [1] });
1225
- $(".ur-tabs")
1226
- .find("a")
1227
- .eq(0)
1228
- .trigger("click", ["triggered_click"]);
1229
- $(".ur-tabs")
1230
- .find('[aria-controls="ur-tab-field-options"]')
1231
- .addClass("ur-no-pointer");
1232
- $(".ur-selected-item").removeClass("ur-item-active");
1233
- },
1234
- };
1235
- builder.init();
1236
- events.register();
1237
- });
1238
- };
1239
- $(".ur-input-grids").ur_form_builder();
1240
- $(".ur-tabs .ur-tab-lists").on("click", "a.nav-tab", function () {
1241
- $(".ur-tabs .ur-tab-lists").find("a.nav-tab").removeClass("active");
1242
- $(this).addClass("active");
1243
  });
1244
- $(".ur-tabs").tabs();
1245
- $(".ur-tabs").find("a").eq(0).trigger("click", ["triggered_click"]);
1246
- $(".ur-tabs").tabs({ disabled: [1] });
1247
-
1248
- /**
1249
- * This block of code is for the "Selected Countries" option of "Country" field
1250
- *
1251
- * Doc: https://select2.org/
1252
- * Ref: https://jsfiddle.net/Lkkm2L48/7/
1253
- */
1254
- var SelectionAdapter, DropdownAdapter;
1255
- $.fn.select2.amd.require(
1256
- [
1257
- "select2/selection/single",
1258
- "select2/selection/placeholder",
1259
- "select2/dropdown",
1260
- "select2/dropdown/search",
1261
- "select2/dropdown/attachBody",
1262
- "select2/utils",
1263
- "select2/selection/eventRelay",
1264
- ],
1265
- function (
1266
- SingleSelection,
1267
- Placeholder,
1268
- Dropdown,
1269
- DropdownSe
3
  * global i18n_admin
4
  */
5
  jQuery(function ($) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6
  // Bind UI Action handlers for searching fields.
7
  $(document.body).on("input", "#ur-search-fields", function () {
8
  var search_string = $(this).val().toLowerCase();
364
 
365
  $("input.input-color").wpColorPicker();
366
  // send test email message
367
+ $(".user_registration_send_email_test").on("click", function (e) {
368
+ var email = $("#user_registration_email_send_to").val();
369
+ e.preventDefault();
370
+ $.ajax({
371
+ url: user_registration_send_email.ajax_url,
372
+ data: {
373
+ action: "user_registration_send_test_email",
374
+ email: email,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
375
  },
376
+ type: "post",
377
+ beforeSend: function () {
378
+ var spinner = '<span class="ur-spinner is-active"></span>';
379
+ $(".user_registration_send_email_test").append(spinner);
380
  },
381
+ complete: function (response) {
382
+ $(".ur-spinner").remove();
383
+ $(
384
+ ".user-registration_page_user-registration-settings .notice"
385
+ ).remove();
386
+ if (response.responseJSON.success === true) {
387
+ message_string =
388
+ '<div class="success notice notice-success is-dismissible"><p><strong>' +
389
+ response.responseJSON.data.message +
390
+ "</strong></p></div>";
391
+ $(".user-registration-header").after(message_string);
392
+ } else {
393
+ message_string =
394
+ '<div class="error notice notice-success is-dismissible"><p><strong>' +
395
+ response.responseJSON.data.message +
396
+ "</strong></p></div>";
397
+ $(".user-registration-header").after(message_string);
398
+ }
399
+ $(
400
+ ".user-registration_page_user-registration-settings .notice"
401
+ ).css("display", "block");
402
+ $(window).scrollTop($(".notice").position());
403
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
404
  });