nexmo-oas-renderer 0.11.3 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (79) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +135 -0
  3. data/.travis.yml +1 -0
  4. data/Gemfile +1 -1
  5. data/Gemfile.lock +81 -61
  6. data/Rakefile +2 -2
  7. data/bin/console +3 -3
  8. data/lib/nexmo/oas/engine.rb +2 -0
  9. data/lib/nexmo/oas/renderer.rb +5 -5
  10. data/lib/nexmo/oas/renderer/app.rb +70 -45
  11. data/lib/nexmo/oas/renderer/config.ru +4 -2
  12. data/lib/nexmo/oas/renderer/decorators/response_parser_decorator.rb +18 -18
  13. data/lib/nexmo/oas/renderer/helpers/navigation.rb +2 -2
  14. data/lib/nexmo/oas/renderer/helpers/render.rb +2 -1
  15. data/lib/nexmo/oas/renderer/helpers/summary.rb +4 -1
  16. data/lib/nexmo/oas/renderer/helpers/url.rb +2 -0
  17. data/lib/nexmo/oas/renderer/presenters/api_specification.rb +2 -1
  18. data/lib/nexmo/oas/renderer/presenters/endpoint.rb +2 -0
  19. data/lib/nexmo/oas/renderer/presenters/groups.rb +4 -0
  20. data/lib/nexmo/oas/renderer/presenters/navigation.rb +2 -0
  21. data/lib/nexmo/oas/renderer/presenters/open_api_specification.rb +5 -2
  22. data/lib/nexmo/oas/renderer/presenters/request_body_raw.rb +141 -0
  23. data/lib/nexmo/oas/renderer/presenters/response_format.rb +4 -2
  24. data/lib/nexmo/oas/renderer/presenters/response_tab/link.rb +3 -0
  25. data/lib/nexmo/oas/renderer/presenters/response_tab/panel.rb +8 -5
  26. data/lib/nexmo/oas/renderer/presenters/response_tabs.rb +6 -2
  27. data/lib/nexmo/oas/renderer/presenters/versions.rb +11 -10
  28. data/lib/nexmo/oas/renderer/public/assets/javascripts/components/format.js +12 -7
  29. data/lib/nexmo/oas/renderer/public/assets/javascripts/nexmo-oas-renderer.js +51 -24
  30. data/lib/nexmo/oas/renderer/public/assets/javascripts/popper.min.js +5 -0
  31. data/lib/nexmo/oas/renderer/public/assets/javascripts/tooltip.min.js +5 -0
  32. data/lib/nexmo/oas/renderer/public/assets/javascripts/volta.accordion.js +301 -243
  33. data/lib/nexmo/oas/renderer/public/assets/javascripts/volta.tooltip.js +76 -0
  34. data/lib/nexmo/oas/renderer/public/assets/stylesheets/nexmo-oas-renderer.css +255 -823
  35. data/lib/nexmo/oas/renderer/public/assets/stylesheets/nexmo-oas-renderer.css.map +2 -2
  36. data/lib/nexmo/oas/renderer/public/assets/stylesheets/sass/api.scss +287 -90
  37. data/lib/nexmo/oas/renderer/public/assets/stylesheets/sass/style.scss +2 -6
  38. data/lib/nexmo/oas/renderer/public/assets/stylesheets/sass/themes/dark.scss +89 -0
  39. data/lib/nexmo/oas/renderer/public/assets/stylesheets/sass/themes/light.scss +68 -0
  40. data/lib/nexmo/oas/renderer/public/assets/stylesheets/volta-prism.min.css +1 -1
  41. data/lib/nexmo/oas/renderer/public/assets/stylesheets/volta.min.css +1 -1
  42. data/lib/nexmo/oas/renderer/services/oas_parser.rb +2 -0
  43. data/lib/nexmo/oas/renderer/services/open_api_definition_resolver.rb +3 -1
  44. data/lib/nexmo/oas/renderer/version.rb +3 -1
  45. data/lib/nexmo/oas/renderer/views/layouts/_head.erb +1 -0
  46. data/lib/nexmo/oas/renderer/views/layouts/_javascripts.erb +5 -4
  47. data/lib/nexmo/oas/renderer/views/layouts/open_api.erb +3 -1
  48. data/lib/nexmo/oas/renderer/views/open_api/_auth.erb +74 -0
  49. data/lib/nexmo/oas/renderer/views/open_api/_available_endpoints.erb +25 -0
  50. data/lib/nexmo/oas/renderer/views/open_api/_callback_endpoint.erb +18 -27
  51. data/lib/nexmo/oas/renderer/views/open_api/_callbacks.erb +5 -0
  52. data/lib/nexmo/oas/renderer/views/open_api/_endpoint.erb +39 -124
  53. data/lib/nexmo/oas/renderer/views/open_api/_header.erb +71 -0
  54. data/lib/nexmo/oas/renderer/views/open_api/_model.erb +31 -26
  55. data/lib/nexmo/oas/renderer/views/open_api/_navigation.erb +54 -78
  56. data/lib/nexmo/oas/renderer/views/open_api/_parameter_groups.erb +2 -5
  57. data/lib/nexmo/oas/renderer/views/open_api/_parameters.erb +98 -169
  58. data/lib/nexmo/oas/renderer/views/open_api/_request_json.erb +4 -0
  59. data/lib/nexmo/oas/renderer/views/open_api/_request_one_of.erb +70 -0
  60. data/lib/nexmo/oas/renderer/views/open_api/_request_single.erb +53 -0
  61. data/lib/nexmo/oas/renderer/views/open_api/_requests.erb +22 -0
  62. data/lib/nexmo/oas/renderer/views/open_api/_response_description_parameters.erb +88 -90
  63. data/lib/nexmo/oas/renderer/views/open_api/_response_descriptions.erb +17 -12
  64. data/lib/nexmo/oas/renderer/views/open_api/_response_fields.erb +1 -16
  65. data/lib/nexmo/oas/renderer/views/open_api/_response_tabs.erb +2 -2
  66. data/lib/nexmo/oas/renderer/views/open_api/_responses.erb +35 -0
  67. data/lib/nexmo/oas/renderer/views/open_api/_tabbed_parameters.erb +15 -4
  68. data/lib/nexmo/oas/renderer/views/open_api/_tabbed_single_parameter.erb +56 -0
  69. data/lib/nexmo/oas/renderer/views/open_api/_webhooks.erb +30 -0
  70. data/lib/nexmo/oas/renderer/views/open_api/show.erb +10 -115
  71. data/nexmo-oas-renderer.gemspec +26 -26
  72. metadata +61 -49
  73. data/lib/nexmo/oas/renderer/public/assets/javascripts/components/scroll.js +0 -21
  74. data/lib/nexmo/oas/renderer/public/assets/stylesheets/sass/core.scss +0 -137
  75. data/lib/nexmo/oas/renderer/public/assets/stylesheets/sass/navigation.scss +0 -102
  76. data/lib/nexmo/oas/renderer/public/assets/stylesheets/sass/nexmo.scss +0 -61
  77. data/lib/nexmo/oas/renderer/public/assets/stylesheets/sass/syntax.scss +0 -63
  78. data/lib/nexmo/oas/renderer/public/assets/stylesheets/sass/typography.scss +0 -248
  79. data/lib/nexmo/oas/renderer/public/assets/stylesheets/sass/volta-templates.scss +0 -119
@@ -0,0 +1,89 @@
1
+ .theme-dark {
2
+
3
+ .Vlt-switch__slider {
4
+ &:after {
5
+ background: black;
6
+ background-image: url("data:image/svg+xml,%0A%3Csvg width='15px' height='200px' viewBox='0 0 230 200' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' d='M45.3408,0 L-0.0002,0 L64.6808,146.958 C65.1748,148.081 66.7718,148.07 67.2508,146.942 L88.7628,96.337 L45.3408,0 Z'%3E%3C/path%3E%3Cpath fill='%23ffffff' d='M183.4502,0 C183.4502,0 113.9562,159.156 104.6482,173.833 C93.8292,190.896 86.6592,197.409 73.3912,199.496 C73.2682,199.515 73.1772,199.621 73.1772,199.746 C73.1772,199.886 73.2912,200 73.4312,200 L114.9552,200 C132.9432,200 145.9152,184.979 153.1042,171.714 C161.2742,156.637 229.5902,0 229.5902,0 L183.4502,0 Z'%3E%3C/path%3E%3C/svg%3E");
7
+ background-repeat: no-repeat;
8
+ background-position: center;
9
+ left: 22px;
10
+ }
11
+ }
12
+
13
+ .theme-link {
14
+ color: white !important;
15
+ }
16
+
17
+ .group-link{
18
+ background: #e1e2e6 !important;
19
+ color: #131415;
20
+ }
21
+
22
+ .oas-navbar {
23
+ .oas-trigger, h4 {
24
+ color: white !important;
25
+ &:before {
26
+ filter: invert(100%);
27
+ }
28
+ }
29
+ }
30
+
31
+ // Primary Colours
32
+ .oas-navbar, .oas-right-panel {
33
+ background: #131415;
34
+ }
35
+
36
+ .Vlt-native-dropdown {
37
+ select {
38
+ background: #e1e2e6 !important;
39
+ color: black;
40
+ }
41
+
42
+ &:after {
43
+ filter: invert(100%);
44
+ }
45
+ }
46
+
47
+ .Nxd-method-badge {
48
+ color: white;
49
+ text-transform: uppercase;
50
+
51
+ &--post {
52
+ background: $green;
53
+ }
54
+
55
+ &--get {
56
+ background: $blue-dark;
57
+ }
58
+
59
+ &--delete {
60
+ background: $red;
61
+ }
62
+
63
+ &--patch {
64
+ background: $teal;
65
+ }
66
+
67
+ &--put {
68
+ background: $purple-dark;
69
+ }
70
+ }
71
+
72
+
73
+ .oas-right-panel {
74
+ .Vlt-tabs__link {
75
+ color: white !important;
76
+
77
+ &_active {
78
+ &:after {
79
+ background: white !important;
80
+ }
81
+ }
82
+ }
83
+
84
+ .Vlt-js-tabs__link_active {
85
+ background: white !important;
86
+ }
87
+ }
88
+
89
+ }
@@ -0,0 +1,68 @@
1
+ .theme-light {
2
+
3
+ .Vlt-switch__slider {
4
+ &:after {
5
+ background-image: url("data:image/svg+xml,%0A%3Csvg height='15px' viewBox='0 0 230 200' version='1.1' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23131415' d='M45.3408,0 L-0.0002,0 L64.6808,146.958 C65.1748,148.081 66.7718,148.07 67.2508,146.942 L88.7628,96.337 L45.3408,0 Z'%3E%3C/path%3E%3Cpath fill='%23131415' d='M183.4502,0 C183.4502,0 113.9562,159.156 104.6482,173.833 C93.8292,190.896 86.6592,197.409 73.3912,199.496 C73.2682,199.515 73.1772,199.621 73.1772,199.746 C73.1772,199.886 73.2912,200 73.4312,200 L114.9552,200 C132.9432,200 145.9152,184.979 153.1042,171.714 C161.2742,156.637 229.5902,0 229.5902,0 L183.4502,0 Z'%3E%3C/path%3E%3C/svg%3E");
6
+ background-repeat: no-repeat;
7
+ background-position: center;
8
+ }
9
+ }
10
+
11
+ .theme-link {
12
+ color: black;
13
+ }
14
+
15
+ // Primary colours
16
+ .oas-navbar, .oas-right-panel {
17
+ background: #f8fafc !important;
18
+ }
19
+
20
+ // Top navbar
21
+ .group-link {
22
+ background: black !important;
23
+ color: white;
24
+ }
25
+
26
+ .Nxd-method-badge {
27
+ &--post {
28
+ color: $green-dark;
29
+ background: $green-lighter;
30
+ }
31
+
32
+ &--get {
33
+ color: $blue-dark;
34
+ background: $blue-lighter;
35
+ }
36
+
37
+ &--delete {
38
+ color: $red-dark;
39
+ background: $red-lighter;
40
+ }
41
+
42
+ &--patch {
43
+ color: $teal-dark;
44
+ background: $teal-lighter;
45
+ }
46
+
47
+ &--put {
48
+ color: $purple-dark;
49
+ background: $purple-lighter;
50
+ }
51
+ }
52
+
53
+
54
+ // Responses
55
+
56
+ .oas-right-panel {
57
+ .Vlt-js-tabs__link_active {
58
+ background: #131415 !important;
59
+ color: white;
60
+ }
61
+
62
+ h4,
63
+ .Vlt-tabs__link {
64
+ color: black !important;
65
+ }
66
+ }
67
+
68
+ }
@@ -1 +1 @@
1
- @charset "UTF-8";.Vlt-btn,.Vlt-btn-group .Vlt-btn,div.code-toolbar>.toolbar .toolbar-item a{-ms-flex-align:center;align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:0;border-radius:48px;cursor:pointer;display:inline-block;font-size:1.4rem;font-weight:600;-ms-flex-pack:center;justify-content:center;line-height:2.4rem;margin:8px 0;min-height:40px;min-width:40px;outline:0;padding:8px 14px;text-align:center;transition:all .3s;vertical-align:middle;white-space:nowrap}.Vlt-btn:focus,div.code-toolbar>.toolbar .toolbar-item a:focus{outline:0}.Vlt-btn:active,div.code-toolbar>.toolbar .toolbar-item a:active{outline:0}.Vlt-btn svg,.Vlt-btn-group .Vlt-btn svg,div.code-toolbar>.toolbar .toolbar-item a svg{display:inline-block;fill:#fff;height:18px;margin-right:8px;margin-top:-2px;vertical-align:middle;width:18px}.vlt-btn--large .Vlt-btn svg,.vlt-btn--large div.code-toolbar>.toolbar .toolbar-item a svg,div.code-toolbar>.toolbar .toolbar-item .vlt-btn--large a svg{margin-right:10px}.Vlt-btn--block{width:100%}.Vlt-btn+.Vlt-btn{margin-left:8px}.Vlt-btn--nomargin{margin:0}.Vlt-btn--app,div.code-toolbar>.toolbar .toolbar-item a{border-radius:6px}.Vlt-btn--small.Vlt-btn--app,div.code-toolbar>.toolbar .toolbar-item a.Vlt-btn--small{border-radius:5px}.Vlt-btn--small,.Vlt-btn-group--small .Vlt-btn,div.code-toolbar>.toolbar .toolbar-item a{font-size:1.2rem;line-height:1.6rem;min-height:32px;min-width:32px;padding:8px 12px}.Vlt-btn--small svg,.Vlt-btn-group--small .Vlt-btn svg,div.code-toolbar>.toolbar .toolbar-item a svg{height:16px;width:16px}.Vlt-btn--large,.Vlt-btn-group--large .Vlt-btn{font-size:1.6rem;line-height:2.4rem;margin:8px 0 16px;min-height:48px;min-width:48px;padding:12px 24px}.Vlt-btn--large svg,.Vlt-btn-group--large .Vlt-btn svg{height:20px;margin-right:14px;margin-top:-3px;width:20px}.Vlt-btn--large svg span,.Vlt-btn-group--large .Vlt-btn svg span{margin-left:8px}.Vlt-btn--icon svg,.Vlt-btn-group--icon .Vlt-btn svg{margin-left:-10px;margin-right:-10px}.Vlt-btn--icon-right svg{margin-left:8px;margin-right:0}.Vlt-btn--large.Vlt-btn--icon-right svg{margin-left:14px}.Vlt-btn--primary{background:#871fff;color:#fff}.Vlt-btn--primary svg{fill:#fff}.Vlt-btn--primary:hover,.Vlt-btn--primary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#6d00eb}.Vlt-btn--primary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--primary{background:#6100d2}.Vlt-btn--outline.Vlt-btn--primary{color:#871fff}.Vlt-btn--outline.Vlt-btn--primary svg{fill:#871fff}.Vlt-btn--outline.Vlt-btn--primary:hover,.Vlt-btn--outline.Vlt-btn--primary:not(.Vlt-btn--no-focus):focus{background:rgba(135,31,255,.1)}.Vlt-btn--outline.Vlt-btn--primary:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--primary{background:rgba(135,31,255,.2)}.Vlt-btn--secondary{background:#131415;color:#fff}.Vlt-btn--secondary svg{fill:#fff}.Vlt-btn--secondary:hover,.Vlt-btn--secondary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#43474b}.Vlt-btn--secondary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--secondary{background:#5c6165}.Vlt-btn--outline.Vlt-btn--secondary{color:#131415}.Vlt-btn--outline.Vlt-btn--secondary svg{fill:#131415}.Vlt-btn--outline.Vlt-btn--secondary:hover,.Vlt-btn--outline.Vlt-btn--secondary:not(.Vlt-btn--no-focus):focus{background:rgba(19,20,21,.1)}.Vlt-btn--outline.Vlt-btn--secondary:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--secondary{background:rgba(19,20,21,.2)}.Vlt-btn--tertiary,.Vlt-btn-group .Vlt-btn,div.code-toolbar>.toolbar .toolbar-item a{background:#e1e2e6;color:#131415}.Vlt-btn--tertiary svg,.Vlt-btn-group .Vlt-btn svg,div.code-toolbar>.toolbar .toolbar-item a svg{fill:#131415}.Vlt-btn--tertiary:hover,.Vlt-btn--tertiary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-btn-group .Vlt-btn:hover,.Vlt-btn-group .Vlt-btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,div.code-toolbar>.toolbar .toolbar-item a:hover,div.code-toolbar>.toolbar .toolbar-item a:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#d0d2d8}.Vlt-btn--tertiary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn-group .Vlt-btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn-group .Vlt-btn_active.Vlt-btn,.Vlt-btn_active.Vlt-btn--tertiary,div.code-toolbar>.toolbar .toolbar-item a.Vlt-btn_active,div.code-toolbar>.toolbar .toolbar-item a:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active{background:#c2c4cc}.Vlt-btn--outline.Vlt-btn--tertiary,.Vlt-btn-group .Vlt-btn--outline.Vlt-btn,div.code-toolbar>.toolbar .toolbar-item a.Vlt-btn--outline{color:#e1e2e6}.Vlt-btn--outline.Vlt-btn--tertiary svg,.Vlt-btn-group .Vlt-btn--outline.Vlt-btn svg,div.code-toolbar>.toolbar .toolbar-item a.Vlt-btn--outline svg{fill:#e1e2e6}.Vlt-btn--outline.Vlt-btn--tertiary:hover,.Vlt-btn--outline.Vlt-btn--tertiary:not(.Vlt-btn--no-focus):focus,.Vlt-btn-group .Vlt-btn--outline.Vlt-btn:hover,.Vlt-btn-group .Vlt-btn--outline.Vlt-btn:not(.Vlt-btn--no-focus):focus,div.code-toolbar>.toolbar .toolbar-item a.Vlt-btn--outline:hover,div.code-toolbar>.toolbar .toolbar-item a.Vlt-btn--outline:not(.Vlt-btn--no-focus):focus{background:rgba(194,196,204,.1)}.Vlt-btn--outline.Vlt-btn--tertiary:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--tertiary,.Vlt-btn-group .Vlt-btn--outline.Vlt-btn:not(.Vlt-btn--no-focus):active,.Vlt-btn-group .Vlt-btn--outline.Vlt-btn_active.Vlt-btn,div.code-toolbar>.toolbar .toolbar-item a.Vlt-btn--outline.Vlt-btn_active,div.code-toolbar>.toolbar .toolbar-item a.Vlt-btn--outline:not(.Vlt-btn--no-focus):active{background:rgba(194,196,204,.2)}.Vlt-btn--destructive{background:#e84545;color:#fff}.Vlt-btn--destructive svg{fill:#fff}.Vlt-btn--destructive:hover,.Vlt-btn--destructive:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#de1c1c}.Vlt-btn--destructive:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--destructive{background:#c81919}.Vlt-btn--outline.Vlt-btn--destructive{color:#e84545}.Vlt-btn--outline.Vlt-btn--destructive svg{fill:#e84545}.Vlt-btn--outline.Vlt-btn--destructive:hover,.Vlt-btn--outline.Vlt-btn--destructive:not(.Vlt-btn--no-focus):focus{background:rgba(232,69,69,.1)}.Vlt-btn--outline.Vlt-btn--destructive:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--destructive{background:rgba(232,69,69,.2)}.Vlt-btn--quaternary{background:#06ba77;color:#fff}.Vlt-btn--quaternary svg{fill:#fff}.Vlt-btn--quaternary:hover,.Vlt-btn--quaternary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#059c64}.Vlt-btn--quaternary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--quaternary{background:#048957}.Vlt-btn--outline.Vlt-btn--quaternary{color:#06ba77}.Vlt-btn--outline.Vlt-btn--quaternary svg{fill:#06ba77}.Vlt-btn--outline.Vlt-btn--quaternary:hover,.Vlt-btn--outline.Vlt-btn--quaternary:not(.Vlt-btn--no-focus):focus{background:rgba(6,186,119,.1)}.Vlt-btn--outline.Vlt-btn--quaternary:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--quaternary{background:rgba(6,186,119,.2)}.Vlt-btn--indigo{background:#d6219c;color:#fff}.Vlt-btn--indigo svg{fill:#fff}.Vlt-btn--indigo:hover,.Vlt-btn--indigo:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#bb1d89}.Vlt-btn--indigo:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--indigo{background:#aa1a7c}.Vlt-btn--outline.Vlt-btn--indigo{color:#d6219c}.Vlt-btn--outline.Vlt-btn--indigo svg{fill:#d6219c}.Vlt-btn--outline.Vlt-btn--indigo:hover,.Vlt-btn--outline.Vlt-btn--indigo:not(.Vlt-btn--no-focus):focus{background:rgba(214,33,156,.1)}.Vlt-btn--outline.Vlt-btn--indigo:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--indigo{background:rgba(214,33,156,.2)}.Vlt-btn--orange{background:#fa7454;color:#fff}.Vlt-btn--orange svg{fill:#fff}.Vlt-btn--orange:hover,.Vlt-btn--orange:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#f95c36}.Vlt-btn--orange:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--orange{background:#f94c22}.Vlt-btn--outline.Vlt-btn--orange{color:#fa7454}.Vlt-btn--outline.Vlt-btn--orange svg{fill:#fa7454}.Vlt-btn--outline.Vlt-btn--orange:hover,.Vlt-btn--outline.Vlt-btn--orange:not(.Vlt-btn--no-focus):focus{background:rgba(250,116,84,.1)}.Vlt-btn--outline.Vlt-btn--orange:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--orange{background:rgba(250,116,84,.2)}.Vlt-btn--white{background:#fff;color:#131415}.Vlt-btn--white svg{fill:#131415}.Vlt-btn--white:hover,.Vlt-btn--white:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#e1e2e6}.Vlt-btn--white:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--white{background:#c2c4cc}.Vlt-btn--outline.Vlt-btn--white{color:#fff}.Vlt-btn--outline.Vlt-btn--white svg{fill:#fff}.Vlt-btn--outline.Vlt-btn--white:hover,.Vlt-btn--outline.Vlt-btn--white:not(.Vlt-btn--no-focus):focus{background:rgba(255,255,255,.1)}.Vlt-btn--outline.Vlt-btn--white:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--white{background:rgba(255,255,255,.2)}.Vlt-btn--outline{background-color:transparent;box-shadow:inset 0 0 0 1px}.Vlt-btn--outline .Vlt-spinner:after,.Vlt-btn--outline .Vlt-spinner:before{border-color:currentColor transparent transparent}.Vlt-btn--link,.Vlt-text-btn{border-radius:0;box-shadow:none;cursor:pointer;font-size:1.5rem;padding:0;white-space:nowrap}.Vlt-btn--link svg,.Vlt-text-btn svg{fill:#4d7793}.Vlt-btn--link:hover,.Vlt-text-btn:hover{text-decoration:underline;transform:none}.Vlt-btn--link:active,.Vlt-text-btn:active{box-shadow:none}.Vlt-btn--link.Vlt-btn--disabled,.Vlt-btn--link.Vlt-btn_disabled,.Vlt-btn--link:disabled,.Vlt-text-btn.Vlt-btn--disabled,.Vlt-text-btn.Vlt-btn_disabled,.Vlt-text-btn:disabled{background:0 0!important}.Vlt-btn-group{display:-ms-flexbox;display:flex}.Vlt-btn-group:not(.Vlt-btn-group--app) .Vlt-btn:first-child{min-width:44px;padding-left:20px}.Vlt-btn-group:not(.Vlt-btn-group--app) .Vlt-btn:last-child{min-width:44px;padding-right:20px}.Vlt-btn-group .Vlt-btn{margin-left:0;margin-right:0}.Vlt-btn-group .Vlt-btn:not(:first-child){border-bottom-left-radius:0;border-left:0;border-top-left-radius:0}.Vlt-btn-group .Vlt-btn:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.Vlt-btn-group .Vlt-btn:not(.Vlt-btn--no-focus):focus{z-index:2}.Vlt-btn-group--app .Vlt-btn{background:#e1e2e6!important;position:relative;z-index:1}.Vlt-btn-group--app .Vlt-btn:before{border-radius:5px;bottom:2px;content:'';left:1px;position:absolute;right:1px;top:2px;transition:background .3s;z-index:-1}.Vlt-btn-group--app .Vlt-btn:hover:before{background:#c2c4cc}.Vlt-btn-group--app .Vlt-btn.Vlt-btn_active{color:#fff!important}.Vlt-btn-group--app .Vlt-btn.Vlt-btn_active svg{fill:#fff!important}.Vlt-btn-group--app .Vlt-btn.Vlt-btn_active:before{background:#131415}.Vlt-btn-group--app .Vlt-btn:first-child{border-bottom-left-radius:6px;border-top-left-radius:6px}.Vlt-btn-group--app .Vlt-btn:first-child:before{left:2px}.Vlt-btn-group--app .Vlt-btn:last-child{border-bottom-right-radius:6px;border-top-right-radius:6px}.Vlt-btn-group--app .Vlt-btn:last-child:before{right:2px}.Vlt-btn-group--small:not(.Vlt-btn-group--app) .Vlt-btn:first-child{min-width:36px;padding-left:16px}.Vlt-btn-group--small:not(.Vlt-btn-group--app) .Vlt-btn:last-child{min-width:36px;padding-right:16px}.Vlt-btn-group--large:not(.Vlt-btn-group--app) .Vlt-btn:first-child{min-width:52px;padding-left:28px}.Vlt-btn-group--large:not(.Vlt-btn-group--app) .Vlt-btn:last-child{min-width:52px;padding-right:28px}.Vlt-btn-group--hover{border:0!important;margin-top:11px;opacity:0;padding:0!important;position:absolute;right:16px;transition:all .3s;z-index:-1}.Vlt-btn-group--hover .Vlt-btn:first-child{border-bottom-left-radius:30px;border-top-left-radius:30px}.Vlt-btn-group--hover .Vlt-btn:last-child{border-bottom-right-radius:30px;border-top-right-radius:30px}.Vlt-btn-group--inline{display:-ms-inline-flexbox;display:inline-flex}.Vlt-btn-on-hover{position:relative}.Vlt-btn-on-hover:hover .Vlt-btn-group--hover{background-color:transparent;opacity:1;z-index:2}.Vlt-btn-on-hover:not(tr):not(td):not(table) .Vlt-btn-group--hover{margin-top:0;top:-16px}.Vlt-btn--link,.Vlt-text-btn,.Vlt-text-link{color:#871fff;cursor:pointer;font-size:inherit;font-weight:inherit;line-height:inherit}.Vlt-btn--link:hover,.Vlt-text-btn:hover,.Vlt-text-link:hover{color:#441080;text-decoration:underline}.Vlt-btn--link:active,.Vlt-text-btn:active,.Vlt-text-link:active{color:#441080}.Vlt-btn--link:visited,.Vlt-text-btn:visited,.Vlt-text-link:visited{color:#871fff}.Vlt-btn--link:visited:hover,.Vlt-text-btn:visited:hover,.Vlt-text-link:visited:hover{color:#441080}.Vlt-black.Vlt-btn--link,.Vlt-black.Vlt-text-btn,.Vlt-text-link.Vlt-black{color:#131415;font-weight:600;position:relative}.Vlt-black.Vlt-btn--link:after,.Vlt-black.Vlt-text-btn:after,.Vlt-text-link.Vlt-black:after{background-color:#131415;bottom:-2px;content:'';height:1px;left:0;position:absolute;width:100%}.Vlt-black.Vlt-btn--link:hover,.Vlt-black.Vlt-text-btn:hover,.Vlt-text-link.Vlt-black:hover{color:#616266;text-decoration:none}.Vlt-black.Vlt-btn--link:hover:after,.Vlt-black.Vlt-text-btn:hover:after,.Vlt-text-link.Vlt-black:hover:after{background-color:#616266}.Vlt-black.Vlt-btn--link:active,.Vlt-black.Vlt-text-btn:active,.Vlt-text-link.Vlt-black:active{color:#616266}.Vlt-black.Vlt-btn--link:visited,.Vlt-black.Vlt-text-btn:visited,.Vlt-text-link.Vlt-black:visited{color:#131415}.Vlt-btn--link,.Vlt-text-btn,.reset-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:0;outline:0;padding:0}.Vlt-btn--disabled.Vlt-btn,.Vlt-btn--link.Vlt-btn--disabled,.Vlt-btn--link.Vlt-btn_disabled,.Vlt-btn--link:disabled,.Vlt-btn:disabled,.Vlt-btn_disabled.Vlt-btn,.Vlt-text-btn.Vlt-btn--disabled,.Vlt-text-btn.Vlt-btn_disabled,.Vlt-text-btn:disabled,div.code-toolbar>.toolbar .toolbar-item a.Vlt-btn--disabled,div.code-toolbar>.toolbar .toolbar-item a.Vlt-btn_disabled,div.code-toolbar>.toolbar .toolbar-item a:disabled{background:rgba(194,196,204,.5);border:0;box-shadow:none;color:#9b9da3;pointer-events:none}.Vlt-btn--disabled.Vlt-btn svg,.Vlt-btn--link.Vlt-btn--disabled svg,.Vlt-btn--link.Vlt-btn_disabled svg,.Vlt-btn--link:disabled svg,.Vlt-btn:disabled svg,.Vlt-btn_disabled.Vlt-btn svg,.Vlt-text-btn.Vlt-btn--disabled svg,.Vlt-text-btn.Vlt-btn_disabled svg,.Vlt-text-btn:disabled svg,div.code-toolbar>.toolbar .toolbar-item a.Vlt-btn--disabled svg,div.code-toolbar>.toolbar .toolbar-item a.Vlt-btn_disabled svg,div.code-toolbar>.toolbar .toolbar-item a:disabled svg{fill:#9b9da3}code[class*=language-],pre[class*=language-]{color:#000;background:0 0;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#9a6e3a;background:rgba(255,255,255,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.class-name,.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}pre[data-line]{position:relative;padding:1em 0 1em 3em}.line-highlight{position:absolute;left:0;right:0;padding:inherit 0;margin-top:1em;background:rgba(153,122,102,.08);background:linear-gradient(to right,rgba(153,122,102,.1) 70%,rgba(153,122,102,0));pointer-events:none;line-height:inherit;white-space:pre}.line-highlight:before,.line-highlight[data-end]:after{content:attr(data-start);position:absolute;top:.4em;left:.6em;min-width:1em;padding:0 .5em;background-color:rgba(153,122,102,.4);color:#f5f2f0;font:bold 65%/1.5 sans-serif;text-align:center;vertical-align:.3em;border-radius:999px;text-shadow:none;box-shadow:0 1px #fff}.line-highlight[data-end]:after{content:attr(data-end);top:auto;bottom:.4em}.line-numbers .line-highlight:after,.line-numbers .line-highlight:before{content:none}pre[class*=language-].line-numbers{position:relative;padding-left:3.8em;counter-reset:linenumber}pre[class*=language-].line-numbers>code{position:relative;white-space:inherit}.line-numbers .line-numbers-rows{position:absolute;pointer-events:none;top:0;font-size:100%;left:-3.8em;width:3em;letter-spacing:-1px;border-right:1px solid #999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.line-numbers-rows>span{pointer-events:none;display:block;counter-increment:linenumber}.line-numbers-rows>span:before{content:counter(linenumber);color:#999;display:block;padding-right:.8em;text-align:right}div.code-toolbar{position:relative}div.code-toolbar>.toolbar{position:absolute;top:.3em;right:.2em;transition:opacity .3s ease-in-out;opacity:0}div.code-toolbar:hover>.toolbar{opacity:1}div.code-toolbar>.toolbar .toolbar-item{display:inline-block}div.code-toolbar>.toolbar a{cursor:pointer}div.code-toolbar>.toolbar button{background:0 0;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;padding:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}div.code-toolbar>.toolbar a,div.code-toolbar>.toolbar button,div.code-toolbar>.toolbar span{color:#bbb;font-size:.8em;padding:0 .5em;background:#f5f2f0;background:rgba(224,224,224,.2);box-shadow:0 2px 0 0 rgba(0,0,0,.2);border-radius:.5em}div.code-toolbar>.toolbar a:focus,div.code-toolbar>.toolbar a:hover,div.code-toolbar>.toolbar button:focus,div.code-toolbar>.toolbar button:hover,div.code-toolbar>.toolbar span:focus,div.code-toolbar>.toolbar span:hover{color:inherit;text-decoration:none}.command-line-prompt{border-right:1px solid #999;display:block;float:left;font-size:100%;letter-spacing:-1px;margin-right:1em;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.command-line-prompt>span:before{color:#999;content:' ';display:block;padding-right:.8em}.command-line-prompt>span[data-user]:before{content:"[" attr(data-user) "@" attr(data-host) "] $"}.command-line-prompt>span[data-user=root]:before{content:"[" attr(data-user) "@" attr(data-host) "] #"}.command-line-prompt>span[data-prompt]:before{content:attr(data-prompt)}.Vlt-tooltip{display:-ms-inline-flexbox;display:inline-flex;position:relative}span.Vlt-tooltip{margin-left:4px;vertical-align:bottom}.Vlt-tooltip--js{z-index:600}.Vlt-tooltip--js[x-placement^=bottom] .Vlt-tooltip__arrow,.Vlt-tooltip--js[x-placement^=left] .Vlt-tooltip__arrow,.Vlt-tooltip--js[x-placement^=right] .Vlt-tooltip__arrow,.Vlt-tooltip--js[x-placement^=top] .Vlt-tooltip__arrow,.tooltip-arrow,div.code-toolbar>.toolbar .toolbar-item a:after{border-style:solid;position:absolute}.Vlt-tooltip--js[x-placement^=bottom] .Vlt-tooltip__arrow,.arrow-bottom-mixin{border-color:transparent transparent #131415;border-width:0 6px 6px;top:3px}.Vlt-tooltip--js[x-placement^=top] .Vlt-tooltip__arrow,.arrow-top-mixin,div.code-toolbar>.toolbar .toolbar-item a:after{border-color:#131415 transparent transparent;border-width:6px 6px 0;bottom:3px}.Vlt-tooltip--js[x-placement^=right] .Vlt-tooltip__arrow,.arrow-right-mixin{border-color:transparent #131415 transparent transparent;border-width:6px 6px 6px 0;left:3px}.Vlt-tooltip--js[x-placement^=left] .Vlt-tooltip__arrow,.arrow-left-mixin{border-color:transparent transparent transparent #131415;border-width:6px 0 6px 6px;right:3px}.Vlt-tooltip--js[x-placement^=bottom] .Vlt-tooltip__content,.tooltip-bottom-mixin{margin-top:9px;text-align:center}.Vlt-tooltip--js[x-placement^=top] .Vlt-tooltip__content,.tooltip-top-mixin{margin-bottom:9px;text-align:center}.Vlt-tooltip--js[x-placement^=right] .Vlt-tooltip__content,.tooltip-right-mixin{margin-left:9px;text-align:left}.Vlt-tooltip--js[x-placement^=left] .Vlt-tooltip__content,.tooltip-left-mixin{margin-right:9px;text-align:left}.Vlt-tooltip__content{background:#131415;border-radius:6px;color:#fff;cursor:default;font-size:1.4rem;font-weight:600;line-height:2.1rem;max-width:300px;padding:6px 12px;transition:display .2s;white-space:normal;width:-webkit-max-content;width:-moz-max-content;width:max-content;z-index:600}.pre-nowrap pre[class*=language-]{white-space:pre}pre[class*=language-]{-webkit-font-smoothing:antialiased;background:#f3f3f5;border:0;border-radius:8px;font-size:1.5rem;margin:0 0 16px;text-shadow:none;white-space:pre-wrap}pre[class*=language-] code{color:#131415;display:block;font-family:monospace,monospace;margin-top:18px;text-shadow:none}pre[class*=language-] code span{font-size:100%}pre[class*=language-] code em{font-style:italic}pre[class*=language-] code::-moz-selection{background:rgba(102,159,196,.5)}pre[class*=language-] code::selection{background:rgba(102,159,196,.5)}pre[class*=language-] code::moz-selection{background:rgba(102,159,196,.5)}pre[class*=language-] .token.atrule,pre[class*=language-] .token.keyword{color:#871fff}pre[class*=language-] .token.selector,pre[class*=language-] .token.tag{color:#616266}pre[class*=language-] .token.attr-name{color:#669fc4}pre[class*=language-] .token.comment{color:#a6a9b5}pre[class*=language-] .token code.language-url,pre[class*=language-] .token.function,pre[class*=language-] .token.url{color:#4d7793}pre[class*=language-] .token.boolean,pre[class*=language-] .token.builtin,pre[class*=language-] .token.class-name,pre[class*=language-] .token.constant,pre[class*=language-] .token.namespace{color:#669fc4}pre[class*=language-] .token.number{color:#e84545}pre[class*=language-] .token.parameter,pre[class*=language-] .token.symbol{color:#e84545}pre[class*=language-] .token.attr-value,pre[class*=language-] .token.macro,pre[class*=language-] .token.string,pre[class*=language-] .token.stripe,pre[class*=language-] .token.value{color:#2d966f}pre[class*=language-] .token.variable{color:#fa7454}pre[class*=language-] .token.macro .keyword{color:#173630}pre[class*=language-] .token.publishable-key,pre[class*=language-] .token.secret-key,pre[class*=language-] .token.token-tooltip{background:#e1e2e6;border-radius:3px;margin:-2px;padding:2px}pre[class*=language-] .token.publishable-key.enabled,pre[class*=language-] .token.secret-key.enabled,pre[class*=language-] .token.token-tooltip.enabled{background:#e1e2e6}pre[class*=language-] .command-line-prompt>span:before,pre[class*=language-] .line-numbers-rows>span:before{color:#c2c4cc}pre[class*=language-] .language-bash .token.option,pre[class*=language-] .language-css .property{color:#e84545}pre[class*=language-] .language-html .token.punctuation,pre[class*=language-] .language-markup .token.punctuation{color:#9b9da3}pre[class*=language-] .language-html .token.attr-value,pre[class*=language-] .language-markup .token.attr-value{color:#fa7454}pre[class*=language-] .language-html .token.attr-value>.punctuation:not(:first-child),pre[class*=language-] .language-markup .token.attr-value>.punctuation:not(:first-child){color:#c85e43}pre[class*=language-] .language-html .token.namespace,pre[class*=language-] .language-markup .token.namespace{color:#4d7793}pre[class*=language-] .language-php .token.operator{color:#871fff}pre[class*=language-].Vlt-prism--dark{background:#131415;color:#c2c4cc}pre[class*=language-].Vlt-prism--dark code{color:#c2c4cc}pre[class*=language-].Vlt-prism--dark .token.cdata,pre[class*=language-].Vlt-prism--dark .token.comment,pre[class*=language-].Vlt-prism--dark .token.doctype,pre[class*=language-].Vlt-prism--dark .token.prolog{color:#7a7b80}pre[class*=language-].Vlt-prism--dark .token .namespace{opacity:.7}pre[class*=language-].Vlt-prism--dark .token.keyword,pre[class*=language-].Vlt-prism--dark .token.property,pre[class*=language-].Vlt-prism--dark .token.tag{color:#80c7f5}pre[class*=language-].Vlt-prism--dark .token.class-name{color:#fff8c0;text-decoration:underline}pre[class*=language-].Vlt-prism--dark .token.boolean,pre[class*=language-].Vlt-prism--dark .token.constant{color:#06ba77}pre[class*=language-].Vlt-prism--dark .token.deleted,pre[class*=language-].Vlt-prism--dark .token.symbol{color:#e84545}pre[class*=language-].Vlt-prism--dark .token.number{color:#b779ff}pre[class*=language-].Vlt-prism--dark .token.attr-name,pre[class*=language-].Vlt-prism--dark .token.builtin,pre[class*=language-].Vlt-prism--dark .token.char,pre[class*=language-].Vlt-prism--dark .token.inserted,pre[class*=language-].Vlt-prism--dark .token.selector,pre[class*=language-].Vlt-prism--dark .token.string{color:#86d8b9}pre[class*=language-].Vlt-prism--dark .token.variable{color:#cfa5ff}pre[class*=language-].Vlt-prism--dark .token.operator,pre[class*=language-].Vlt-prism--dark .token.punctuation{background:0 0;color:#c2c4cc}pre[class*=language-].Vlt-prism--dark .token.entity{color:#fff8c0}pre[class*=language-].Vlt-prism--dark .token.url{color:#80c7f5}pre[class*=language-].Vlt-prism--dark .token.atrule,pre[class*=language-].Vlt-prism--dark .token.attr-value{color:#fff8c0}pre[class*=language-].Vlt-prism--dark .token.function{color:#fcac98}pre[class*=language-].Vlt-prism--dark .token.regex{color:#9d7005}pre[class*=language-].Vlt-prism--dark .token.important{color:#fa7454}pre[class*=language-].Vlt-prism--dark .command-line-prompt>span:before,pre[class*=language-].Vlt-prism--dark .line-numbers-rows>span:before{color:#9b9da3}pre[class*=language-].Vlt-prism--dark .language-css .token.string,pre[class*=language-].Vlt-prism--dark .style .token.string{color:#06ba77}pre[class*=language-].Vlt-prism--dark+div.toolbar .toolbar-item a:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill%3D%22%23C2C4CC%22%20d%3D%22M1.5%2018H16.5C17.3295%2018%2018%2017.3295%2018%2016.5V1.5C18%200.672%2017.3295%200%2016.5%200H1.5C0.6705%200%200%200.672%200%201.5V16.5C0%2017.3295%200.6705%2018%201.5%2018Z%22%2F%3E%0A%3Cpath%20fill%3D%22%23C2C4CC%22%20d%3D%22M6%2024H22.5C23.3295%2024%2024%2023.3295%2024%2022.5V6H21V21H6V24Z%22%2F%3E%0A%3C%2Fsvg%3E)}pre[class*=language-].Vlt-prism--dark+div.toolbar .toolbar-item a:hover:before{background-color:#616266}pre[class*=language-].Vlt-prism--dark+div.toolbar .toolbar-item a:active:before,pre[class*=language-].Vlt-prism--dark+div.toolbar .toolbar-item a:focus:before{background-color:#fff;background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill%3D%22%23131415%22%20d%3D%22M1.5%2018H16.5C17.3295%2018%2018%2017.3295%2018%2016.5V1.5C18%200.672%2017.3295%200%2016.5%200H1.5C0.6705%200%200%200.672%200%201.5V16.5C0%2017.3295%200.6705%2018%201.5%2018Z%22%2F%3E%0A%3Cpath%20fill%3D%22%23131415%22%20d%3D%22M6%2024H22.5C23.3295%2024%2024%2023.3295%2024%2022.5V6H21V21H6V24Z%22%2F%3E%0A%3C%2Fsvg%3E)}pre[class*=language-].Vlt-prism--copy-disabled+div.toolbar .toolbar-item a{display:none}div.code-toolbar>.toolbar{opacity:1;right:0;top:0}div.code-toolbar>.toolbar .toolbar-item a{background-color:transparent;box-shadow:none;font-family:spezia,sans-serif;margin:0;min-height:0;padding:8px;text-indent:-9999px;transition:none}div.code-toolbar>.toolbar .toolbar-item a:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill%3D%22%23131415%22%20d%3D%22M1.5%2018H16.5C17.3295%2018%2018%2017.3295%2018%2016.5V1.5C18%200.672%2017.3295%200%2016.5%200H1.5C0.6705%200%200%200.672%200%201.5V16.5C0%2017.3295%200.6705%2018%201.5%2018Z%22%2F%3E%0A%3Cpath%20fill%3D%22%23131415%22%20d%3D%22M6%2024H22.5C23.3295%2024%2024%2023.3295%2024%2022.5V6H21V21H6V24Z%22%2F%3E%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:18px 16px;border-radius:6px;content:'';display:inline-block;-ms-flex:0 0 14px;flex:0 0 14px;height:14px;line-height:1;margin-left:0;padding:16px;position:absolute;right:4px;text-indent:0;top:4px;width:16px}div.code-toolbar>.toolbar .toolbar-item a:after{content:'';display:none;height:22px;right:14px;width:10px}div.code-toolbar>.toolbar .toolbar-item a:hover{background-color:#131415;color:#fff;margin-top:-60px;text-indent:0}div.code-toolbar>.toolbar .toolbar-item a:hover:before{background-color:#c2c4cc}div.code-toolbar>.toolbar .toolbar-item a:hover:after{display:inline-block}div.code-toolbar>.toolbar .toolbar-item a:active,div.code-toolbar>.toolbar .toolbar-item a:focus{background-color:#131415!important}div.code-toolbar>.toolbar .toolbar-item a:active:before,div.code-toolbar>.toolbar .toolbar-item a:focus:before{background-color:#131415;background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M1.5%2018H16.5C17.3295%2018%2018%2017.3295%2018%2016.5V1.5C18%200.672%2017.3295%200%2016.5%200H1.5C0.6705%200%200%200.672%200%201.5V16.5C0%2017.3295%200.6705%2018%201.5%2018Z%22%2F%3E%0A%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M6%2024H22.5C23.3295%2024%2024%2023.3295%2024%2022.5V6H21V21H6V24Z%22%2F%3E%0A%3C%2Fsvg%3E)}.command-line-prompt{border-right:1px solid #9b9da3;display:block;float:left;font-size:100%!important;letter-spacing:-1px;margin-right:1em;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
1
+ @charset "UTF-8";.Vlt-btn,.Vlt-btn-group .Vlt-btn,div.code-toolbar>.toolbar .toolbar-item button{-ms-flex-align:center;align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:0;border-radius:48px;cursor:pointer;display:inline-block;font-size:1.4rem;font-weight:600;-ms-flex-pack:center;justify-content:center;line-height:2.4rem;margin:8px 0;min-height:40px;min-width:40px;outline:0;padding:8px 14px;text-align:center;transition:all .3s;vertical-align:middle;white-space:nowrap}.Vlt-btn:focus,div.code-toolbar>.toolbar .toolbar-item button:focus{outline:0}.Vlt-btn:active,div.code-toolbar>.toolbar .toolbar-item button:active{outline:0}.Vlt-btn svg,.Vlt-btn-group .Vlt-btn svg,div.code-toolbar>.toolbar .toolbar-item button svg{display:inline-block;fill:#fff;height:18px;margin-right:8px;margin-top:-2px;vertical-align:middle;width:18px}.vlt-btn--large .Vlt-btn svg,.vlt-btn--large div.code-toolbar>.toolbar .toolbar-item button svg,div.code-toolbar>.toolbar .toolbar-item .vlt-btn--large button svg{margin-right:10px}.Vlt-btn--block{width:100%}.Vlt-btn+.Vlt-btn{margin-left:8px}.Vlt-btn--nomargin{margin:0}.Vlt-btn--app,div.code-toolbar>.toolbar .toolbar-item button{border-radius:6px}.Vlt-btn--small.Vlt-btn--app,div.code-toolbar>.toolbar .toolbar-item button.Vlt-btn--small{border-radius:5px}.Vlt-btn--small,.Vlt-btn-group--small .Vlt-btn,div.code-toolbar>.toolbar .toolbar-item button{font-size:1.2rem;line-height:1.6rem;min-height:32px;min-width:32px;padding:8px 12px}.Vlt-btn--small svg,.Vlt-btn-group--small .Vlt-btn svg,div.code-toolbar>.toolbar .toolbar-item button svg{height:16px;width:16px}.Vlt-btn--large,.Vlt-btn-group--large .Vlt-btn{font-size:1.6rem;line-height:2.4rem;margin:8px 0 16px;min-height:48px;min-width:48px;padding:12px 24px}.Vlt-btn--large svg,.Vlt-btn-group--large .Vlt-btn svg{height:20px;margin-right:14px;margin-top:-3px;width:20px}.Vlt-btn--large svg span,.Vlt-btn-group--large .Vlt-btn svg span{margin-left:8px}.Vlt-btn--icon svg,.Vlt-btn-group--icon .Vlt-btn svg{margin-left:-10px;margin-right:-10px}.Vlt-btn--icon-right svg{margin-left:8px;margin-right:0}.Vlt-btn--large.Vlt-btn--icon-right svg{margin-left:14px}.Vlt-btn--primary{background:#871fff;color:#fff}.Vlt-btn--primary svg{fill:#fff}.Vlt-btn--primary:hover,.Vlt-btn--primary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#6d00eb}.Vlt-btn--primary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--primary{background:#6100d2}.Vlt-btn--outline.Vlt-btn--primary{color:#871fff}.Vlt-btn--outline.Vlt-btn--primary svg{fill:#871fff}.Vlt-btn--outline.Vlt-btn--primary:hover,.Vlt-btn--outline.Vlt-btn--primary:not(.Vlt-btn--no-focus):focus{background:rgba(135,31,255,.1)}.Vlt-btn--outline.Vlt-btn--primary:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--primary{background:rgba(135,31,255,.2)}.Vlt-btn--secondary{background:#131415;color:#fff}.Vlt-btn--secondary svg{fill:#fff}.Vlt-btn--secondary:hover,.Vlt-btn--secondary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#43474b}.Vlt-btn--secondary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--secondary{background:#5c6165}.Vlt-btn--outline.Vlt-btn--secondary{color:#131415}.Vlt-btn--outline.Vlt-btn--secondary svg{fill:#131415}.Vlt-btn--outline.Vlt-btn--secondary:hover,.Vlt-btn--outline.Vlt-btn--secondary:not(.Vlt-btn--no-focus):focus{background:rgba(19,20,21,.1)}.Vlt-btn--outline.Vlt-btn--secondary:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--secondary{background:rgba(19,20,21,.2)}.Vlt-btn--tertiary,.Vlt-btn-group .Vlt-btn,div.code-toolbar>.toolbar .toolbar-item button{background:#e1e2e6;color:#131415}.Vlt-btn--tertiary svg,.Vlt-btn-group .Vlt-btn svg,div.code-toolbar>.toolbar .toolbar-item button svg{fill:#131415}.Vlt-btn--tertiary:hover,.Vlt-btn--tertiary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-btn-group .Vlt-btn:hover,.Vlt-btn-group .Vlt-btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,div.code-toolbar>.toolbar .toolbar-item button:hover,div.code-toolbar>.toolbar .toolbar-item button:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#d0d2d8}.Vlt-btn--tertiary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn-group .Vlt-btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn-group .Vlt-btn_active.Vlt-btn,.Vlt-btn_active.Vlt-btn--tertiary,div.code-toolbar>.toolbar .toolbar-item button.Vlt-btn_active,div.code-toolbar>.toolbar .toolbar-item button:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active{background:#c2c4cc}.Vlt-btn--outline.Vlt-btn--tertiary,.Vlt-btn-group .Vlt-btn--outline.Vlt-btn,div.code-toolbar>.toolbar .toolbar-item button.Vlt-btn--outline{color:#e1e2e6}.Vlt-btn--outline.Vlt-btn--tertiary svg,.Vlt-btn-group .Vlt-btn--outline.Vlt-btn svg,div.code-toolbar>.toolbar .toolbar-item button.Vlt-btn--outline svg{fill:#e1e2e6}.Vlt-btn--outline.Vlt-btn--tertiary:hover,.Vlt-btn--outline.Vlt-btn--tertiary:not(.Vlt-btn--no-focus):focus,.Vlt-btn-group .Vlt-btn--outline.Vlt-btn:hover,.Vlt-btn-group .Vlt-btn--outline.Vlt-btn:not(.Vlt-btn--no-focus):focus,div.code-toolbar>.toolbar .toolbar-item button.Vlt-btn--outline:hover,div.code-toolbar>.toolbar .toolbar-item button.Vlt-btn--outline:not(.Vlt-btn--no-focus):focus{background:rgba(194,196,204,.1)}.Vlt-btn--outline.Vlt-btn--tertiary:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--tertiary,.Vlt-btn-group .Vlt-btn--outline.Vlt-btn:not(.Vlt-btn--no-focus):active,.Vlt-btn-group .Vlt-btn--outline.Vlt-btn_active.Vlt-btn,div.code-toolbar>.toolbar .toolbar-item button.Vlt-btn--outline.Vlt-btn_active,div.code-toolbar>.toolbar .toolbar-item button.Vlt-btn--outline:not(.Vlt-btn--no-focus):active{background:rgba(194,196,204,.2)}.Vlt-btn--destructive{background:#e84545;color:#fff}.Vlt-btn--destructive svg{fill:#fff}.Vlt-btn--destructive:hover,.Vlt-btn--destructive:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#de1c1c}.Vlt-btn--destructive:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--destructive{background:#c81919}.Vlt-btn--outline.Vlt-btn--destructive{color:#e84545}.Vlt-btn--outline.Vlt-btn--destructive svg{fill:#e84545}.Vlt-btn--outline.Vlt-btn--destructive:hover,.Vlt-btn--outline.Vlt-btn--destructive:not(.Vlt-btn--no-focus):focus{background:rgba(232,69,69,.1)}.Vlt-btn--outline.Vlt-btn--destructive:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--destructive{background:rgba(232,69,69,.2)}.Vlt-btn--quaternary{background:#06ba77;color:#fff}.Vlt-btn--quaternary svg{fill:#fff}.Vlt-btn--quaternary:hover,.Vlt-btn--quaternary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#059c64}.Vlt-btn--quaternary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--quaternary{background:#048957}.Vlt-btn--outline.Vlt-btn--quaternary{color:#06ba77}.Vlt-btn--outline.Vlt-btn--quaternary svg{fill:#06ba77}.Vlt-btn--outline.Vlt-btn--quaternary:hover,.Vlt-btn--outline.Vlt-btn--quaternary:not(.Vlt-btn--no-focus):focus{background:rgba(6,186,119,.1)}.Vlt-btn--outline.Vlt-btn--quaternary:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--quaternary{background:rgba(6,186,119,.2)}.Vlt-btn--indigo{background:#d6219c;color:#fff}.Vlt-btn--indigo svg{fill:#fff}.Vlt-btn--indigo:hover,.Vlt-btn--indigo:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#bb1d89}.Vlt-btn--indigo:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--indigo{background:#aa1a7c}.Vlt-btn--outline.Vlt-btn--indigo{color:#d6219c}.Vlt-btn--outline.Vlt-btn--indigo svg{fill:#d6219c}.Vlt-btn--outline.Vlt-btn--indigo:hover,.Vlt-btn--outline.Vlt-btn--indigo:not(.Vlt-btn--no-focus):focus{background:rgba(214,33,156,.1)}.Vlt-btn--outline.Vlt-btn--indigo:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--indigo{background:rgba(214,33,156,.2)}.Vlt-btn--orange{background:#fa7454;color:#fff}.Vlt-btn--orange svg{fill:#fff}.Vlt-btn--orange:hover,.Vlt-btn--orange:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#f95c36}.Vlt-btn--orange:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--orange{background:#f94c22}.Vlt-btn--outline.Vlt-btn--orange{color:#fa7454}.Vlt-btn--outline.Vlt-btn--orange svg{fill:#fa7454}.Vlt-btn--outline.Vlt-btn--orange:hover,.Vlt-btn--outline.Vlt-btn--orange:not(.Vlt-btn--no-focus):focus{background:rgba(250,116,84,.1)}.Vlt-btn--outline.Vlt-btn--orange:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--orange{background:rgba(250,116,84,.2)}.Vlt-btn--white{background:#fff;color:#131415}.Vlt-btn--white svg{fill:#131415}.Vlt-btn--white:hover,.Vlt-btn--white:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#e1e2e6}.Vlt-btn--white:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--white{background:#c2c4cc}.Vlt-btn--outline.Vlt-btn--white{color:#fff}.Vlt-btn--outline.Vlt-btn--white svg{fill:#fff}.Vlt-btn--outline.Vlt-btn--white:hover,.Vlt-btn--outline.Vlt-btn--white:not(.Vlt-btn--no-focus):focus{background:rgba(255,255,255,.1)}.Vlt-btn--outline.Vlt-btn--white:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--white{background:rgba(255,255,255,.2)}.Vlt-btn--outline{background-color:transparent;box-shadow:inset 0 0 0 1px}.Vlt-btn--outline .Vlt-spinner:after,.Vlt-btn--outline .Vlt-spinner:before{border-color:currentColor transparent transparent}.Vlt-btn--link,.Vlt-text-btn{border-radius:0;box-shadow:none;cursor:pointer;font-size:1.5rem;padding:0;white-space:nowrap}.Vlt-btn--link svg,.Vlt-text-btn svg{fill:#871fff}.Vlt-btn--link:hover,.Vlt-text-btn:hover{text-decoration:underline;transform:none}.Vlt-btn--link:active,.Vlt-text-btn:active{box-shadow:none}.Vlt-btn--link.Vlt-btn--disabled,.Vlt-btn--link.Vlt-btn_disabled,.Vlt-btn--link:disabled,.Vlt-text-btn.Vlt-btn--disabled,.Vlt-text-btn.Vlt-btn_disabled,.Vlt-text-btn:disabled{background:0 0!important}.Vlt-btn-group{display:-ms-flexbox;display:flex}.Vlt-btn-group:not(.Vlt-btn-group--app) .Vlt-btn:first-child{min-width:44px;padding-left:20px}.Vlt-btn-group:not(.Vlt-btn-group--app) .Vlt-btn:last-child{min-width:44px;padding-right:20px}.Vlt-btn-group .Vlt-btn{margin-left:0;margin-right:0}.Vlt-btn-group .Vlt-btn:not(:first-child){border-bottom-left-radius:0;border-left:0;border-top-left-radius:0}.Vlt-btn-group .Vlt-btn:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.Vlt-btn-group .Vlt-btn:not(.Vlt-btn--no-focus):focus{z-index:2}.Vlt-btn-group--app .Vlt-btn{background:#e1e2e6!important;position:relative;z-index:1}.Vlt-btn-group--app .Vlt-btn:before{border-radius:5px;bottom:2px;content:'';left:1px;position:absolute;right:1px;top:2px;transition:background .3s;z-index:-1}.Vlt-btn-group--app .Vlt-btn:hover:before{background:#c2c4cc}.Vlt-btn-group--app .Vlt-btn.Vlt-btn_active{color:#fff!important}.Vlt-btn-group--app .Vlt-btn.Vlt-btn_active svg{fill:#fff!important}.Vlt-btn-group--app .Vlt-btn.Vlt-btn_active:before{background:#131415}.Vlt-btn-group--app .Vlt-btn:first-child{border-bottom-left-radius:6px;border-top-left-radius:6px}.Vlt-btn-group--app .Vlt-btn:first-child:before{left:2px}.Vlt-btn-group--app .Vlt-btn:last-child{border-bottom-right-radius:6px;border-top-right-radius:6px}.Vlt-btn-group--app .Vlt-btn:last-child:before{right:2px}.Vlt-btn-group--small:not(.Vlt-btn-group--app) .Vlt-btn:first-child{min-width:36px;padding-left:16px}.Vlt-btn-group--small:not(.Vlt-btn-group--app) .Vlt-btn:last-child{min-width:36px;padding-right:16px}.Vlt-btn-group--large:not(.Vlt-btn-group--app) .Vlt-btn:first-child{min-width:52px;padding-left:28px}.Vlt-btn-group--large:not(.Vlt-btn-group--app) .Vlt-btn:last-child{min-width:52px;padding-right:28px}.Vlt-btn-group--hover{border:0!important;margin-top:-1px;opacity:0;padding:0!important;position:absolute;right:16px;transition:all .3s;z-index:-1}.Vlt-btn-group--inline{display:-ms-inline-flexbox;display:inline-flex}.Vlt-btn-on-hover{position:relative}.Vlt-btn-on-hover:hover .Vlt-btn-group--hover{background-color:transparent;opacity:1;z-index:2}.Vlt-btn-on-hover:not(tr):not(td):not(table) .Vlt-btn-group--hover{margin-top:0;top:-16px}.Vlt-btn--link,.Vlt-text-btn,.Vlt-text-link{color:#871fff;cursor:pointer;font-size:inherit;font-weight:inherit;line-height:inherit}.Vlt-btn--link:hover,.Vlt-text-btn:hover,.Vlt-text-link:hover{color:#441080;text-decoration:underline}.Vlt-btn--link:active,.Vlt-text-btn:active,.Vlt-text-link:active{color:#441080}.Vlt-btn--link:visited,.Vlt-text-btn:visited,.Vlt-text-link:visited{color:#871fff}.Vlt-btn--link:visited:hover,.Vlt-text-btn:visited:hover,.Vlt-text-link:visited:hover{color:#441080}.Vlt-black.Vlt-btn--link,.Vlt-black.Vlt-text-btn,.Vlt-text-link.Vlt-black{color:#131415;font-weight:600;position:relative}.Vlt-black.Vlt-btn--link:after,.Vlt-black.Vlt-text-btn:after,.Vlt-text-link.Vlt-black:after{background-color:#131415;bottom:-2px;content:'';height:1px;left:0;position:absolute;width:100%}.Vlt-black.Vlt-btn--link:hover,.Vlt-black.Vlt-text-btn:hover,.Vlt-text-link.Vlt-black:hover{color:#616266;text-decoration:none}.Vlt-black.Vlt-btn--link:hover:after,.Vlt-black.Vlt-text-btn:hover:after,.Vlt-text-link.Vlt-black:hover:after{background-color:#616266}.Vlt-black.Vlt-btn--link:active,.Vlt-black.Vlt-text-btn:active,.Vlt-text-link.Vlt-black:active{color:#616266}.Vlt-black.Vlt-btn--link:visited,.Vlt-black.Vlt-text-btn:visited,.Vlt-text-link.Vlt-black:visited{color:#131415}.Vlt-btn--link,.Vlt-text-btn,.reset-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:0;outline:0;padding:0}.Vlt-btn--disabled.Vlt-btn,.Vlt-btn--link.Vlt-btn--disabled,.Vlt-btn--link.Vlt-btn_disabled,.Vlt-btn--link:disabled,.Vlt-btn:disabled,.Vlt-btn_disabled.Vlt-btn,.Vlt-text-btn.Vlt-btn--disabled,.Vlt-text-btn.Vlt-btn_disabled,.Vlt-text-btn:disabled,div.code-toolbar>.toolbar .toolbar-item button.Vlt-btn--disabled,div.code-toolbar>.toolbar .toolbar-item button.Vlt-btn_disabled,div.code-toolbar>.toolbar .toolbar-item button:disabled{background:rgba(194,196,204,.5);border:0;box-shadow:none;color:#9b9da3;pointer-events:none}.Vlt-btn--disabled.Vlt-btn svg,.Vlt-btn--link.Vlt-btn--disabled svg,.Vlt-btn--link.Vlt-btn_disabled svg,.Vlt-btn--link:disabled svg,.Vlt-btn:disabled svg,.Vlt-btn_disabled.Vlt-btn svg,.Vlt-text-btn.Vlt-btn--disabled svg,.Vlt-text-btn.Vlt-btn_disabled svg,.Vlt-text-btn:disabled svg,div.code-toolbar>.toolbar .toolbar-item button.Vlt-btn--disabled svg,div.code-toolbar>.toolbar .toolbar-item button.Vlt-btn_disabled svg,div.code-toolbar>.toolbar .toolbar-item button:disabled svg{fill:#9b9da3}code[class*=language-],pre[class*=language-]{color:#000;background:0 0;text-shadow:0 1px #fff;font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-ms-hyphens:none;hyphens:none}code[class*=language-] ::-moz-selection,code[class*=language-]::-moz-selection,pre[class*=language-] ::-moz-selection,pre[class*=language-]::-moz-selection{text-shadow:none;background:#b3d4fc}code[class*=language-] ::selection,code[class*=language-]::selection,pre[class*=language-] ::selection,pre[class*=language-]::selection{text-shadow:none;background:#b3d4fc}@media print{code[class*=language-],pre[class*=language-]{text-shadow:none}}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto}:not(pre)>code[class*=language-],pre[class*=language-]{background:#f5f2f0}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#999}.namespace{opacity:.7}.token.boolean,.token.constant,.token.deleted,.token.number,.token.property,.token.symbol,.token.tag{color:#905}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#690}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url{color:#9a6e3a;background:rgba(255,255,255,.5)}.token.atrule,.token.attr-value,.token.keyword{color:#07a}.token.class-name,.token.function{color:#dd4a68}.token.important,.token.regex,.token.variable{color:#e90}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}pre[data-line]{position:relative;padding:1em 0 1em 3em}.line-highlight{position:absolute;left:0;right:0;padding:inherit 0;margin-top:1em;background:rgba(153,122,102,.08);background:linear-gradient(to right,rgba(153,122,102,.1) 70%,rgba(153,122,102,0));pointer-events:none;line-height:inherit;white-space:pre}.line-highlight:before,.line-highlight[data-end]:after{content:attr(data-start);position:absolute;top:.4em;left:.6em;min-width:1em;padding:0 .5em;background-color:rgba(153,122,102,.4);color:#f5f2f0;font:bold 65%/1.5 sans-serif;text-align:center;vertical-align:.3em;border-radius:999px;text-shadow:none;box-shadow:0 1px #fff}.line-highlight[data-end]:after{content:attr(data-end);top:auto;bottom:.4em}.line-numbers .line-highlight:after,.line-numbers .line-highlight:before{content:none}pre[class*=language-].line-numbers{position:relative;padding-left:3.8em;counter-reset:linenumber}pre[class*=language-].line-numbers>code{position:relative;white-space:inherit}.line-numbers .line-numbers-rows{position:absolute;pointer-events:none;top:0;font-size:100%;left:-3.8em;width:3em;letter-spacing:-1px;border-right:1px solid #999;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.line-numbers-rows>span{pointer-events:none;display:block;counter-increment:linenumber}.line-numbers-rows>span:before{content:counter(linenumber);color:#999;display:block;padding-right:.8em;text-align:right}div.code-toolbar{position:relative}div.code-toolbar>.toolbar{position:absolute;top:.3em;right:.2em;transition:opacity .3s ease-in-out;opacity:0}div.code-toolbar:hover>.toolbar{opacity:1}div.code-toolbar>.toolbar .toolbar-item{display:inline-block}div.code-toolbar>.toolbar a{cursor:pointer}div.code-toolbar>.toolbar button{background:0 0;border:0;color:inherit;font:inherit;line-height:normal;overflow:visible;padding:0;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none}div.code-toolbar>.toolbar a,div.code-toolbar>.toolbar button,div.code-toolbar>.toolbar span{color:#bbb;font-size:.8em;padding:0 .5em;background:#f5f2f0;background:rgba(224,224,224,.2);box-shadow:0 2px 0 0 rgba(0,0,0,.2);border-radius:.5em}div.code-toolbar>.toolbar a:focus,div.code-toolbar>.toolbar a:hover,div.code-toolbar>.toolbar button:focus,div.code-toolbar>.toolbar button:hover,div.code-toolbar>.toolbar span:focus,div.code-toolbar>.toolbar span:hover{color:inherit;text-decoration:none}.command-line-prompt{border-right:1px solid #999;display:block;float:left;font-size:100%;letter-spacing:-1px;margin-right:1em;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.command-line-prompt>span:before{color:#999;content:' ';display:block;padding-right:.8em}.command-line-prompt>span[data-user]:before{content:"[" attr(data-user) "@" attr(data-host) "] $"}.command-line-prompt>span[data-user=root]:before{content:"[" attr(data-user) "@" attr(data-host) "] #"}.command-line-prompt>span[data-prompt]:before{content:attr(data-prompt)}.Vlt-tooltip{display:-ms-inline-flexbox;display:inline-flex;position:relative}span.Vlt-tooltip{margin-left:4px;vertical-align:bottom}.Vlt-tooltip__content a,.Vlt-tooltip__content a.Vlt-text-link,.Vlt-tooltip__content a.Vlt-text-link:visited,.Vlt-tooltip__content a:visited{color:#cfa5ff;font-weight:600}.Vlt-tooltip__content a.Vlt-text-link:hover,.Vlt-tooltip__content a.Vlt-text-link:visited:hover,.Vlt-tooltip__content a:hover,.Vlt-tooltip__content a:visited:hover{color:#b779ff}.Vlt-tooltip--js{z-index:600}.Vlt-tooltip--js.Vlt-tooltip--large .Vlt-tooltip__content{padding:16px 24px}.Vlt-tooltip--js[x-placement^=bottom] .Vlt-tooltip__arrow,.Vlt-tooltip--js[x-placement^=left] .Vlt-tooltip__arrow,.Vlt-tooltip--js[x-placement^=right] .Vlt-tooltip__arrow,.Vlt-tooltip--js[x-placement^=top] .Vlt-tooltip__arrow,.tooltip-arrow,div.code-toolbar>.toolbar .toolbar-item button:after{border-style:solid;position:absolute}.Vlt-tooltip--js[x-placement^=bottom] .Vlt-tooltip__arrow,.arrow-bottom-mixin{border-color:transparent transparent #131415;border-width:0 6px 6px;top:3px}.Vlt-tooltip--js[x-placement^=top] .Vlt-tooltip__arrow,.arrow-top-mixin,div.code-toolbar>.toolbar .toolbar-item button:after{border-color:#131415 transparent transparent;border-width:6px 6px 0;bottom:3px}.Vlt-tooltip--js[x-placement^=right] .Vlt-tooltip__arrow,.arrow-right-mixin{border-color:transparent #131415 transparent transparent;border-width:6px 6px 6px 0;left:3px}.Vlt-tooltip--js[x-placement^=left] .Vlt-tooltip__arrow,.arrow-left-mixin{border-color:transparent transparent transparent #131415;border-width:6px 0 6px 6px;right:3px}.Vlt-tooltip--js[x-placement^=bottom] .Vlt-tooltip__content,.tooltip-bottom-mixin{margin-top:9px;text-align:center}.Vlt-tooltip--js[x-placement^=top] .Vlt-tooltip__content,.tooltip-top-mixin{margin-bottom:9px;text-align:center}.Vlt-tooltip--js[x-placement^=right] .Vlt-tooltip__content,.tooltip-right-mixin{margin-left:9px;text-align:left}.Vlt-tooltip--js[x-placement^=left] .Vlt-tooltip__content,.tooltip-left-mixin{margin-right:9px;text-align:left}.Vlt-tooltip__content{background:#131415;border-radius:6px;color:#fff;cursor:default;font-size:1.4rem;font-weight:600;line-height:2.1rem;max-width:300px;padding:6px 12px;transition:display .2s;white-space:normal;width:-webkit-max-content;width:-moz-max-content;width:max-content;z-index:600}.pre-nowrap pre[class*=language-]{white-space:pre}pre[class*=language-]{-webkit-font-smoothing:antialiased;background:#f3f3f5;border:0;border-radius:8px;font-size:1.5rem;margin:0 0 16px;text-shadow:none;white-space:pre-wrap}pre[class*=language-] code{color:#131415;display:block;font-family:monospace,monospace;text-shadow:none}pre[class*=language-] code span{font-size:100%}pre[class*=language-] code em{font-style:italic}pre[class*=language-] code::-moz-selection{background:rgba(102,159,196,.5)}pre[class*=language-] code::selection{background:rgba(102,159,196,.5)}pre[class*=language-] code::moz-selection{background:rgba(102,159,196,.5)}pre[class*=language-] .token.atrule,pre[class*=language-] .token.keyword{color:#ab197d}pre[class*=language-] .token.selector,pre[class*=language-] .token.tag{color:#616266}pre[class*=language-] .token.attr-name{color:#669fc4}pre[class*=language-] .token.comment{color:#a6a9b5}pre[class*=language-] .token code.language-url,pre[class*=language-] .token.function,pre[class*=language-] .token.url{color:#4d7793}pre[class*=language-] .token.boolean,pre[class*=language-] .token.builtin,pre[class*=language-] .token.class-name,pre[class*=language-] .token.constant,pre[class*=language-] .token.namespace{color:#669fc4}pre[class*=language-] .token.operator{background:0 0}pre[class*=language-] .token.number{color:#e84545}pre[class*=language-] .token.parameter,pre[class*=language-] .token.symbol{color:#e84545}pre[class*=language-] .token.attr-value,pre[class*=language-] .token.macro,pre[class*=language-] .token.string,pre[class*=language-] .token.stripe,pre[class*=language-] .token.value{color:#2d966f}pre[class*=language-] .token.variable{color:#fa7454}pre[class*=language-] .token.macro .keyword{color:#173630}pre[class*=language-] .token.publishable-key,pre[class*=language-] .token.secret-key,pre[class*=language-] .token.token-tooltip{background:#e1e2e6;border-radius:3px;margin:-2px;padding:2px}pre[class*=language-] .token.publishable-key.enabled,pre[class*=language-] .token.secret-key.enabled,pre[class*=language-] .token.token-tooltip.enabled{background:#e1e2e6}pre[class*=language-] .command-line-prompt>span:before,pre[class*=language-] .line-numbers-rows>span:before{color:#c2c4cc}pre[class*=language-] .language-bash .token.option,pre[class*=language-] .language-css .property{color:#e84545}pre[class*=language-] .language-html .token.punctuation,pre[class*=language-] .language-markup .token.punctuation{color:#9b9da3}pre[class*=language-] .language-html .token.attr-value,pre[class*=language-] .language-markup .token.attr-value{color:#fa7454}pre[class*=language-] .language-html .token.attr-value>.punctuation:not(:first-child),pre[class*=language-] .language-markup .token.attr-value>.punctuation:not(:first-child){color:#c85e43}pre[class*=language-] .language-html .token.namespace,pre[class*=language-] .language-markup .token.namespace{color:#4d7793}pre[class*=language-] .language-php .token.operator{background:0 0;color:#ab197d}pre[class*=language-].Vlt-prism--dark{background:#131415;color:#c2c4cc}pre[class*=language-].Vlt-prism--dark code{background-color:#131415;color:#c2c4cc}pre[class*=language-].Vlt-prism--dark .token.cdata,pre[class*=language-].Vlt-prism--dark .token.comment,pre[class*=language-].Vlt-prism--dark .token.doctype,pre[class*=language-].Vlt-prism--dark .token.prolog{color:#7a7b80}pre[class*=language-].Vlt-prism--dark .token .namespace{opacity:.7}pre[class*=language-].Vlt-prism--dark .token.keyword,pre[class*=language-].Vlt-prism--dark .token.property,pre[class*=language-].Vlt-prism--dark .token.tag{color:#80c7f5}pre[class*=language-].Vlt-prism--dark .token.class-name{color:#fff8c0;text-decoration:underline}pre[class*=language-].Vlt-prism--dark .token.boolean,pre[class*=language-].Vlt-prism--dark .token.constant{color:#06ba77}pre[class*=language-].Vlt-prism--dark .token.deleted,pre[class*=language-].Vlt-prism--dark .token.symbol{color:#e84545}pre[class*=language-].Vlt-prism--dark .token.number{color:#d6219c}pre[class*=language-].Vlt-prism--dark .token.attr-name,pre[class*=language-].Vlt-prism--dark .token.builtin,pre[class*=language-].Vlt-prism--dark .token.char,pre[class*=language-].Vlt-prism--dark .token.inserted,pre[class*=language-].Vlt-prism--dark .token.selector,pre[class*=language-].Vlt-prism--dark .token.string{color:#86d8b9}pre[class*=language-].Vlt-prism--dark .token.variable{color:#eb90ce}pre[class*=language-].Vlt-prism--dark .token.operator,pre[class*=language-].Vlt-prism--dark .token.punctuation{background:0 0;color:#c2c4cc}pre[class*=language-].Vlt-prism--dark .token.entity{color:#fff8c0}pre[class*=language-].Vlt-prism--dark .token.url{color:#80c7f5}pre[class*=language-].Vlt-prism--dark .token.atrule,pre[class*=language-].Vlt-prism--dark .token.attr-value{color:#fff8c0}pre[class*=language-].Vlt-prism--dark .token.function{color:#fcac98}pre[class*=language-].Vlt-prism--dark .token.regex{color:#9d7005}pre[class*=language-].Vlt-prism--dark .token.important{color:#fa7454}pre[class*=language-].Vlt-prism--dark .command-line-prompt>span:before,pre[class*=language-].Vlt-prism--dark .line-numbers-rows>span:before{color:#9b9da3}pre[class*=language-].Vlt-prism--dark .language-css .token.string,pre[class*=language-].Vlt-prism--dark .style .token.string{color:#06ba77}pre[class*=language-].Vlt-prism--dark+div.toolbar .toolbar-item button:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill%3D%22%23C2C4CC%22%20d%3D%22M1.5%2018H16.5C17.3295%2018%2018%2017.3295%2018%2016.5V1.5C18%200.672%2017.3295%200%2016.5%200H1.5C0.6705%200%200%200.672%200%201.5V16.5C0%2017.3295%200.6705%2018%201.5%2018Z%22%2F%3E%0A%3Cpath%20fill%3D%22%23C2C4CC%22%20d%3D%22M6%2024H22.5C23.3295%2024%2024%2023.3295%2024%2022.5V6H21V21H6V24Z%22%2F%3E%0A%3C%2Fsvg%3E)}pre[class*=language-].Vlt-prism--dark+div.toolbar .toolbar-item button:hover:before{background-color:#616266}pre[class*=language-].Vlt-prism--dark+div.toolbar .toolbar-item button:active:before,pre[class*=language-].Vlt-prism--dark+div.toolbar .toolbar-item button:focus:before{background-color:#fff;background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill%3D%22%23131415%22%20d%3D%22M1.5%2018H16.5C17.3295%2018%2018%2017.3295%2018%2016.5V1.5C18%200.672%2017.3295%200%2016.5%200H1.5C0.6705%200%200%200.672%200%201.5V16.5C0%2017.3295%200.6705%2018%201.5%2018Z%22%2F%3E%0A%3Cpath%20fill%3D%22%23131415%22%20d%3D%22M6%2024H22.5C23.3295%2024%2024%2023.3295%2024%2022.5V6H21V21H6V24Z%22%2F%3E%0A%3C%2Fsvg%3E)}pre[class*=language-].Vlt-prism--copy-disabled+div.toolbar .toolbar-item button{display:none}div.code-toolbar>.toolbar{opacity:1;right:4px;top:4px}div.code-toolbar>.toolbar .toolbar-item button{background-color:transparent;box-shadow:none;font-family:spezia,sans-serif;margin:0;min-height:0;padding:8px;text-indent:-9999px;transition:none}div.code-toolbar>.toolbar .toolbar-item button:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill%3D%22%23131415%22%20d%3D%22M1.5%2018H16.5C17.3295%2018%2018%2017.3295%2018%2016.5V1.5C18%200.672%2017.3295%200%2016.5%200H1.5C0.6705%200%200%200.672%200%201.5V16.5C0%2017.3295%200.6705%2018%201.5%2018Z%22%2F%3E%0A%3Cpath%20fill%3D%22%23131415%22%20d%3D%22M6%2024H22.5C23.3295%2024%2024%2023.3295%2024%2022.5V6H21V21H6V24Z%22%2F%3E%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:18px 16px;border-radius:6px;content:'';display:inline-block;-ms-flex:0 0 14px;flex:0 0 14px;height:14px;line-height:1;margin-left:0;padding:16px;position:absolute;right:0;text-indent:0;top:0;width:16px}div.code-toolbar>.toolbar .toolbar-item button:after{content:'';display:none;height:26px;right:10px;width:10px}div.code-toolbar>.toolbar .toolbar-item button:hover{background-color:#131415;color:#fff;margin-right:-4px;margin-top:-68px;text-indent:0}div.code-toolbar>.toolbar .toolbar-item button:hover:before{background-color:#c2c4cc}div.code-toolbar>.toolbar .toolbar-item button:hover:after{display:inline-block}div.code-toolbar>.toolbar .toolbar-item button:active,div.code-toolbar>.toolbar .toolbar-item button:focus{background-color:#131415!important}div.code-toolbar>.toolbar .toolbar-item button:active:before,div.code-toolbar>.toolbar .toolbar-item button:focus:before{background-color:#131415;background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M1.5%2018H16.5C17.3295%2018%2018%2017.3295%2018%2016.5V1.5C18%200.672%2017.3295%200%2016.5%200H1.5C0.6705%200%200%200.672%200%201.5V16.5C0%2017.3295%200.6705%2018%201.5%2018Z%22%2F%3E%0A%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M6%2024H22.5C23.3295%2024%2024%2023.3295%2024%2022.5V6H21V21H6V24Z%22%2F%3E%0A%3C%2Fsvg%3E)}.command-line-prompt{border-right:1px solid #9b9da3;display:block;float:left;font-size:100%!important;letter-spacing:-1px;margin-right:1em;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
@@ -1 +1 @@
1
- @charset "UTF-8";a,article,aside,audio,caption,dd,div,dl,dt,em,fieldset,footer,form,h1,h2,h3,h4,h5,h6,header,i,iframe,img,ins,label,li,mark,nav,ol,p,section,small,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,video{border:0;font:inherit;font-size:100%;margin:0;padding:0;vertical-align:baseline}html{box-sizing:border-box}body,html{margin:0;padding:0}*,:after,:before{box-sizing:inherit}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}main{display:block}a,h1,h2,h3,h4,h5,h6,p,span{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}img{height:auto;max-width:100%}::-webkit-scrollbar-track{background:0 0}@media only screen and (min-width:576px){.Vlt-S-only{display:none!important}}@media only screen and (max-width:575px){.Vlt-M-only{display:none!important}}@media only screen and (min-width:768px){.Vlt-M-only{display:none!important}}@media only screen and (max-width:767px){.Vlt-L-plus{display:none!important}}@media only screen and (max-width:575px){.Vlt-M-plus{display:none!important}}@media only screen and (min-width:768px){.Vlt-M-less{display:none!important}}.Vlt-grid{-ms-flex-align:stretch;align-items:stretch;display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-left:-16px;margin-right:-16px}.Vlt-grid--center{-ms-flex-pack:center;justify-content:center}.Vlt-grid--nowrap{-ms-flex-flow:row;flex-flow:row}.Vlt-grid--flush{margin-left:0;margin-right:0}.Vlt-grid--flush>.Vlt-col{padding-left:0;padding-right:0}@media only screen and (max-width:767px){.Vlt-grid--stack-flush .Vlt-col:not([class*=Vlt-col--A]),.Vlt-grid--stack-flush .Vlt-col:not([class*=Vlt-col--M]),.Vlt-grid--stack-flush .Vlt-col:not([class*=Vlt-col--S]){margin-bottom:0;margin-top:0}}@media only screen and (min-width:768px){.Vlt-grid--narrow{margin-left:-8px;margin-right:-8px}}@media only screen and (min-width:768px){.Vlt-grid--narrow .Vlt-col{padding-left:8px;padding-right:8px}}@media only screen and (max-width:767px){.Vlt-grid--narrow .Vlt-col:not([class*=Vlt-col--M]),.Vlt-grid--narrow .Vlt-col:not([class*=Vlt-col--S]){margin-bottom:4px;margin-top:4px}}.Vlt-grid__separator{-ms-flex:0 0 100%!important;flex:0 0 100%!important;max-width:100%!important}.Vlt-grid__separator--spaced{height:1.5rem}.Vlt-grid__separator--tall{height:2.5rem}.Vlt-grid--middle{-ms-flex-align:center;align-items:center}.Vlt-grid--bottom{-ms-flex-align:end;align-items:flex-end}.Vlt-grid--margin1{margin-bottom:8px;margin-top:8px}.Vlt-grid--margin2{margin-bottom:16px;margin-top:16px}.Vlt-grid--margin3{margin-bottom:24px;margin-top:24px}.Vlt-grid--margin4{margin-bottom:32px;margin-top:32px}.Vlt-grid--margin-top1{margin-top:8px}.Vlt-grid--margin-top2{margin-top:16px}.Vlt-grid--margin-top3{margin-top:24px}.Vlt-grid--margin-top4{margin-top:32px}.Vlt-grid--margin-bottom1{margin-bottom:8px}.Vlt-grid--margin-bottom2{margin-bottom:16px}.Vlt-grid--margin-bottom3{margin-bottom:24px}.Vlt-grid--margin-bottom4{margin-bottom:32px}.Vlt-col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%;padding-left:16px;padding-right:16px;position:relative}@media print{.Vlt-col{display:inline-block}}@media only screen and (max-width:767px){.Vlt-col:not([class*=Vlt-col--A]):not([class*=Vlt-col--M]),.Vlt-col:not([class*=Vlt-col--A]):not([class*=Vlt-col--S]){-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.Vlt-col:not([class*=Vlt-col--M]),.Vlt-col:not([class*=Vlt-col--S]){margin-bottom:8px;margin-top:8px}}.Vlt-col--full{-ms-flex:0 0 100%;flex:0 0 100%}@media only screen and (min-width:768px){.Vlt-col--1of2{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.Vlt-col--1of3{-ms-flex:0 0 33.33%;flex:0 0 33.33%;max-width:33.33%}.Vlt-col--2of3{-ms-flex:0 0 66.66%;flex:0 0 66.66%;max-width:66.66%}.Vlt-col--1of4{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.Vlt-col--2of4{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.Vlt-col--3of4{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.Vlt-col--center{text-align:center}.Vlt-col--right{text-align:right}.Vlt-col--left{text-align:left}}.Vlt-col--A{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1}.Vlt-col--A-1of2{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.Vlt-col--A-1of3{-ms-flex:0 0 33.33%;flex:0 0 33.33%;max-width:33.33%}.Vlt-col--A-2of3{-ms-flex:0 0 66.66%;flex:0 0 66.66%;max-width:66.66%}.Vlt-col--A-1of4{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.Vlt-col--A-2of4{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.Vlt-col--A-3of4{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.Vlt-col--A-center{text-align:center}.Vlt-col--A-right{text-align:right}.Vlt-col--A-left{text-align:left}@media only screen and (max-width:575px){.Vlt-col--S{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1}.Vlt-col--S-1of2{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.Vlt-col--S-1of3{-ms-flex:0 0 33.33%;flex:0 0 33.33%;max-width:33.33%}.Vlt-col--S-2of3{-ms-flex:0 0 66.66%;flex:0 0 66.66%;max-width:66.66%}.Vlt-col--S-1of4{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.Vlt-col--S-2of4{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.Vlt-col--S-3of4{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.Vlt-col--S-center{text-align:center}.Vlt-col--S-right{text-align:right}.Vlt-col--S-left{text-align:left}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-col--M{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1}.Vlt-col--M-1of2{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.Vlt-col--M-1of3{-ms-flex:0 0 33.33%;flex:0 0 33.33%;max-width:33.33%}.Vlt-col--M-2of3{-ms-flex:0 0 66.66%;flex:0 0 66.66%;max-width:66.66%}.Vlt-col--M-1of4{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.Vlt-col--M-2of4{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.Vlt-col--M-3of4{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.Vlt-col--M-center{text-align:center}.Vlt-col--M-right{text-align:right}.Vlt-col--M-left{text-align:left}}.Vlt-row{clear:both;padding:10px 0}@font-face{font-family:Spezia;font-style:normal;font-weight:600;src:url(../../fonts/Spezia-SemiBold.eot?#iefix) format("embedded-opentype"),url(../../fonts/Spezia-SemiBold.woff2) format("woff2"),url(../../fonts/Spezia-SemiBold.woff) format("woff"),url(../../fonts/Spezia-SemiBold.ttf) format("truetype")}@font-face{font-family:Spezia;font-style:normal;font-weight:800;src:url(../../fonts/Spezia-WideMedium.eot?#iefix) format("embedded-opentype"),url(../../fonts/Spezia-WideMedium.woff2) format("woff2"),url(../../fonts/Spezia-WideMedium.woff) format("woff"),url(../../fonts/Spezia-WideMedium.ttf) format("truetype")}@font-face{font-family:Spezia;font-style:normal;font-weight:900;src:url(../../fonts/Spezia-WideMedium.eot?#iefix) format("embedded-opentype"),url(../../fonts/Spezia-WideMedium.woff2) format("woff2"),url(../../fonts/Spezia-WideMedium.woff) format("woff"),url(../../fonts/Spezia-WideMedium.ttf) format("truetype")}@font-face{font-family:Spezia;font-style:normal;font-weight:400;src:url(../../fonts/Spezia-Regular.eot?#iefix) format("embedded-opentype"),url(../../fonts/Spezia-Regular.woff2) format("woff2"),url(../../fonts/Spezia-Regular.woff) format("woff"),url(../../fonts/Spezia-Regular.ttf) format("truetype")}html{font-size:62.5%}body{color:#131415;font-family:spezia,sans-serif;font-size:1.4rem;line-height:2rem}*{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}button,input,select,textarea{font-family:inherit}a,button,label,li,p,td,th{font-size:1.4rem;font-weight:400;line-height:2rem}b,strong{font-weight:600}a{text-decoration:none}.Vlt-title,h1,h2,h3,h4,h5,h6{color:#131415}.Vlt-title a,h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:inherit;font-size:inherit;font-weight:inherit;line-height:inherit}p{color:#131415;margin-bottom:8px}.p-large{font-size:1.6rem;line-height:2.3rem;margin-bottom:16px}.Vlt-title--icon{display:-ms-flexbox;display:flex}.Vlt-title--icon svg{fill:#131415;margin-right:8px}.Vlt-title--icon .Vlt-badge,.Vlt-title--icon code{margin:0 .3em}.Vlt-title--margin-top1{margin-top:8px}.Vlt-title--margin-top2{margin-top:16px}.Vlt-title--margin-top3{margin-top:24px}.Vlt-title--margin-top4{margin-top:32px}.Vlt-title--center{-ms-flex-pack:center;justify-content:center;text-align:center}.Vlt-title--nomargin{margin:0}.Vlt-title--h1,h1{font-size:3.1rem;font-weight:800;letter-spacing:-2px;line-height:3.6rem;margin-bottom:24px}@media only screen and (min-width:768px){.Vlt-title--h1,h1{font-size:3.9rem;line-height:4.3rem}}.Vlt-title--h1.Vlt-title--icon svg,h1.Vlt-title--icon svg{-ms-flex:0 0 25px;flex:0 0 25px;height:25px;margin-top:5px;width:25px}@media only screen and (min-width:768px){.Vlt-title--h1.Vlt-title--icon svg,h1.Vlt-title--icon svg{-ms-flex:0 0 30px;flex:0 0 30px;height:30px;width:30px}}.Vlt-title--h2,h2{font-size:2.7rem;font-weight:800;letter-spacing:-1.5px;line-height:3.1rem;margin-bottom:16px}@media only screen and (min-width:768px){.Vlt-title--h2,h2{font-size:2.9rem;line-height:3.4rem}}.Vlt-title--h2.Vlt-title--icon svg,h2.Vlt-title--icon svg{-ms-flex:0 0 21px;flex:0 0 21px;height:21px;margin-top:4px;width:21px}@media only screen and (min-width:768px){.Vlt-title--h2.Vlt-title--icon svg,h2.Vlt-title--icon svg{-ms-flex:0 0 25px;flex:0 0 25px;height:25px;width:25px}}.Vlt-title--h3,h3{font-size:2.3rem;font-weight:800;letter-spacing:-1px;line-height:2.6rem;margin-bottom:16px}@media only screen and (min-width:768px){.Vlt-title--h3,h3{font-size:2.3rem;line-height:2.6rem}}.Vlt-title--h3.Vlt-title--icon svg,h3.Vlt-title--icon svg{-ms-flex:0 0 21px;flex:0 0 21px;height:21px;margin-top:2px;width:21px}@media only screen and (min-width:768px){.Vlt-title--h3.Vlt-title--icon svg,h3.Vlt-title--icon svg{-ms-flex:0 0 21px;flex:0 0 21px;height:21px;width:21px}}.Vlt-title--h4,h4{font-size:1.9rem;font-weight:800;letter-spacing:-1px;line-height:2.3rem;margin-bottom:8px}@media only screen and (min-width:768px){.Vlt-title--h4,h4{font-size:2rem;line-height:2.5rem}}.Vlt-title--h4.Vlt-title--icon svg,h4.Vlt-title--icon svg{-ms-flex:0 0 16px;flex:0 0 16px;height:16px;margin-top:4px;width:16px}.Vlt-title--h5,h5{font-size:1.5rem;font-weight:600;letter-spacing:-.25px;line-height:2rem;margin-bottom:8px}.Vlt-title--h5.Vlt-title--icon svg,h5.Vlt-title--icon svg{-ms-flex:0 0 14px;flex:0 0 14px;height:14px;margin-top:3px;width:14px}small{font-size:1.2rem;font-weight:400;line-height:1.6rem}.Vlt-title small,.p-large small,h1 small,h2 small,h3 small,h4 small,h5 small{font-size:80%;font-weight:inherit;line-height:inherit}code{background-color:#f3f3f5;border-radius:4px;color:#c85e43;font-family:monospace,monospace;font-size:inherit;line-height:inherit;padding:3px 4px}p+.Vlt-title,p+h1,p+h2,p+h3,p+h4,ul+.Vlt-title,ul+h1,ul+h2,ul+h3,ul+h4{padding-top:16px}.Vlt-text--large{font-size:1.6rem}.Vlt-text--larger{font-size:2.3rem}.Vlt-text--largest{font-size:3.5rem}.Vlt-white{color:#fff!important;fill:#fff!important}.Vlt-bg-white{background-color:#fff!important}.Vlt-orange-lighter{color:#fee3dd!important;fill:#fee3dd!important}.Vlt-bg-orange-lighter{background-color:#fee3dd!important}.Vlt-orange-light{color:#fcac98!important;fill:#fcac98!important}.Vlt-bg-orange-light{background-color:#fcac98!important}.Vlt-orange{color:#fa7454!important;fill:#fa7454!important}.Vlt-bg-orange{background-color:#fa7454!important}.Vlt-orange-dark{color:#c85e43!important;fill:#c85e43!important}.Vlt-bg-orange-dark{background-color:#c85e43!important}.Vlt-orange-darker{color:#642f22!important;fill:#642f22!important}.Vlt-bg-orange-darker{background-color:#642f22!important}.Vlt-blue-lighter{color:#d9eefc!important;fill:#d9eefc!important}.Vlt-bg-blue-lighter{background-color:#d9eefc!important}.Vlt-blue-light{color:#80c7f5!important;fill:#80c7f5!important}.Vlt-bg-blue-light{background-color:#80c7f5!important}.Vlt-blue{color:#669fc4!important;fill:#669fc4!important}.Vlt-bg-blue{background-color:#669fc4!important}.Vlt-blue-dark{color:#4d7793!important;fill:#4d7793!important}.Vlt-bg-blue-dark{background-color:#4d7793!important}.Vlt-blue-darker{color:#335062!important;fill:#335062!important}.Vlt-bg-blue-darker{background-color:#335062!important}.Vlt-blue-text{color:#3e4e57!important;fill:#3e4e57!important}.Vlt-bg-blue-text{background-color:#3e4e57!important}.Vlt-green-lighter{color:#d7f2e8!important;fill:#d7f2e8!important}.Vlt-bg-green-lighter{background-color:#d7f2e8!important}.Vlt-green-light{color:#86d8b9!important;fill:#86d8b9!important}.Vlt-bg-green-light{background-color:#86d8b9!important}.Vlt-green{color:#06ba77!important;fill:#06ba77!important}.Vlt-bg-green{background-color:#06ba77!important}.Vlt-green-dark{color:#2d966f!important;fill:#2d966f!important}.Vlt-bg-green-dark{background-color:#2d966f!important}.Vlt-green-darker{color:#173630!important;fill:#173630!important}.Vlt-bg-green-darker{background-color:#173630!important}.Vlt-green-text{color:#414f3e!important;fill:#414f3e!important}.Vlt-bg-green-text{background-color:#414f3e!important}.Vlt-purple-lighter{color:#f3e9ff!important;fill:#f3e9ff!important}.Vlt-bg-purple-lighter{background-color:#f3e9ff!important}.Vlt-purple-light{color:#cfa5ff!important;fill:#cfa5ff!important}.Vlt-bg-purple-light{background-color:#cfa5ff!important}.Vlt-purple{color:#b779ff!important;fill:#b779ff!important}.Vlt-bg-purple{background-color:#b779ff!important}.Vlt-purple-dark{color:#871fff!important;fill:#871fff!important}.Vlt-bg-purple-dark{background-color:#871fff!important}.Vlt-purple-darker{color:#441080!important;fill:#441080!important}.Vlt-bg-purple-darker{background-color:#441080!important}.Vlt-purple-text{color:#50495a!important;fill:#50495a!important}.Vlt-bg-purple-text{background-color:#50495a!important}.Vlt-teal-lighter{color:#dbf3f6!important;fill:#dbf3f6!important}.Vlt-bg-teal-lighter{background-color:#dbf3f6!important}.Vlt-teal-light{color:#94dbe4!important;fill:#94dbe4!important}.Vlt-bg-teal-light{background-color:#94dbe4!important}.Vlt-teal{color:#4cc3d2!important;fill:#4cc3d2!important}.Vlt-bg-teal{background-color:#4cc3d2!important}.Vlt-teal-dark{color:#00848e!important;fill:#00848e!important}.Vlt-bg-teal-dark{background-color:#00848e!important}.Vlt-teal-darker{color:#003136!important;fill:#003136!important}.Vlt-bg-teal-darker{background-color:#003136!important}.Vlt-teal-text{color:#405352!important;fill:#405352!important}.Vlt-bg-teal-text{background-color:#405352!important}.Vlt-yellow-lighter{color:#fff8c0!important;fill:#fff8c0!important}.Vlt-bg-yellow-lighter{background-color:#fff8c0!important}.Vlt-yellow-light{color:#ffe82e!important;fill:#ffe82e!important}.Vlt-bg-yellow-light{background-color:#ffe82e!important}.Vlt-yellow{color:#ffc100!important;fill:#ffc100!important}.Vlt-bg-yellow{background-color:#ffc100!important}.Vlt-yellow-dark{color:#9d7005!important;fill:#9d7005!important}.Vlt-bg-yellow-dark{background-color:#9d7005!important}.Vlt-yellow-darker{color:#583b00!important;fill:#583b00!important}.Vlt-bg-yellow-darker{background-color:#583b00!important}.Vlt-yellow-text{color:#595130!important;fill:#595130!important}.Vlt-bg-yellow-text{background-color:#595130!important}.Vlt-indigo-lighter{color:#f7d3ec!important;fill:#f7d3ec!important}.Vlt-bg-indigo-lighter{background-color:#f7d3ec!important}.Vlt-indigo-light{color:#eb90ce!important;fill:#eb90ce!important}.Vlt-bg-indigo-light{background-color:#eb90ce!important}.Vlt-indigo{color:#d6219c!important;fill:#d6219c!important}.Vlt-bg-indigo{background-color:#d6219c!important}.Vlt-indigo-dark{color:#ab197d!important;fill:#ab197d!important}.Vlt-bg-indigo-dark{background-color:#ab197d!important}.Vlt-indigo-darker{color:#560d3d!important;fill:#560d3d!important}.Vlt-bg-indigo-darker{background-color:#560d3d!important}.Vlt-indigo-text{color:#3e4155!important;fill:#3e4155!important}.Vlt-bg-indigo-text{background-color:#3e4155!important}.Vlt-grey-lighter{color:#f3f3f5!important;fill:#f3f3f5!important}.Vlt-bg-grey-lighter{background-color:#f3f3f5!important}.Vlt-grey-light{color:#e1e2e6!important;fill:#e1e2e6!important}.Vlt-bg-grey-light{background-color:#e1e2e6!important}.Vlt-grey{color:#c2c4cc!important;fill:#c2c4cc!important}.Vlt-bg-grey{background-color:#c2c4cc!important}.Vlt-grey-dark{color:#9b9da3!important;fill:#9b9da3!important}.Vlt-bg-grey-dark{background-color:#9b9da3!important}.Vlt-grey-darker{color:#616266!important;fill:#616266!important}.Vlt-bg-grey-darker{background-color:#616266!important}.Vlt-black{color:#131415!important;fill:#131415!important}.Vlt-bg-black{background-color:#131415!important}.Vlt-red-lighter{color:#fdecec!important;fill:#fdecec!important}.Vlt-bg-red-lighter{background-color:#fdecec!important}.Vlt-red-light{color:#f79ca6!important;fill:#f79ca6!important}.Vlt-bg-red-light{background-color:#f79ca6!important}.Vlt-red{color:#e84545!important;fill:#e84545!important}.Vlt-bg-red{background-color:#e84545!important}.Vlt-red-dark{color:#ba3737!important;fill:#ba3737!important}.Vlt-bg-red-dark{background-color:#ba3737!important}.Vlt-red-darker{color:#5d1b1b!important;fill:#5d1b1b!important}.Vlt-bg-red-darker{background-color:#5d1b1b!important}.Vlt-red-text{color:#583c35!important;fill:#583c35!important}.Vlt-bg-red-text{background-color:#583c35!important}.Vlt-aqua-lighter{color:#d0e7f1!important;fill:#d0e7f1!important}.Vlt-bg-aqua-lighter{background-color:#d0e7f1!important}.Vlt-aqua-light{color:#9ccde2!important;fill:#9ccde2!important}.Vlt-bg-aqua-light{background-color:#9ccde2!important}.Vlt-aqua{color:#3298c4!important;fill:#3298c4!important}.Vlt-bg-aqua{background-color:#3298c4!important}.Vlt-aqua-dark{color:#0070a1!important;fill:#0070a1!important}.Vlt-bg-aqua-dark{background-color:#0070a1!important}.Vlt-aqua-darker{color:#035879!important;fill:#035879!important}.Vlt-bg-aqua-darker{background-color:#035879!important}.Vlt-aqua-text{color:#004059!important;fill:#004059!important}.Vlt-bg-aqua-text{background-color:#004059!important}.Vlt-gradient--blue{background:linear-gradient(to right,#5685a4,#3b5c72)!important}.Vlt-gradient--blue-light{background:linear-gradient(to right,#78abcb,#4587b2)!important}.Vlt-gradient--red{background:linear-gradient(to right,#eb5c5c,#de1c1c)!important}.Vlt-gradient--orange{background:linear-gradient(to right,#fb9c86,#f9603b)!important}.Vlt-gradient--indigo{background:linear-gradient(to right,#df31a8,#aa1a7c)!important}.Vlt-gradient--green{background:linear-gradient(to right,#07d387,#048957)!important}.Vlt-gradient--purple{background:linear-gradient(to right,#c593ff,#9c46ff)!important}.Vlt-gradient--teal{background:linear-gradient(to right,#60cad7,#2facbc)!important}.Vlt-gradient--blue-to-pink{background:linear-gradient(to right,#7fc6f4,#d5279b)!important}.Vlt-gradient--blue-to-purple{background:linear-gradient(to right,#7fc6f4,#8728fb)!important}.Vlt-gradient--pink-to-peach{background:linear-gradient(to right,#d5279b,#fea18c)!important}.Vlt-gradient--purple-to-peach{background:linear-gradient(to right,#8728fb,#fea18c)!important}.Vlt-gradient--gumdrops1{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3EGumdrops%201%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2213.3144563%25%22%20y1%3D%2234.7953338%25%22%20x2%3D%2250%25%22%20y2%3D%2266.5343565%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%237FC8F5%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2289.0050238%25%22%20y1%3D%2234.3360213%25%22%20x2%3D%2250%25%22%20y2%3D%2267.4497767%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA68C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%237FC8F5%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%220%22%20y%3D%221267%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-264.000000%2C%20-1527.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Gumdrops-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--gumdrops2{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3EGumdrops%202%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2217.1215089%25%22%20y1%3D%2236.5604745%25%22%20x2%3D%2250%25%22%20y2%3D%2264.0645185%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA68C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2286.1918852%25%22%20y1%3D%2235.5961581%25%22%20x2%3D%2236.8815991%25%22%20y2%3D%2276.4527216%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%237FC8F5%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%22549%22%20y%3D%221267%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-813.000000%2C%20-1527.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Gumdrops-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--gumdrops3{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3EGumdrops%203%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2214.549983%25%22%20y1%3D%2236.9106736%25%22%20x2%3D%2250%25%22%20y2%3D%2267.2917158%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%237FC8F5%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA68C%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2289.0050238%25%22%20y1%3D%2234.3360213%25%22%20x2%3D%2250%25%22%20y2%3D%2267.1626569%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA68C%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%221098%22%20y%3D%221267%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-1362.000000%2C%20-1527.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Gumdrops-3%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--lovehearts1{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3ELovehearts%201%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2213.3144563%25%22%20y1%3D%2234.7953338%25%22%20x2%3D%2250%25%22%20y2%3D%2266.5343565%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA68C%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2289.0050238%25%22%20y1%3D%2234.3360213%25%22%20x2%3D%2250%25%22%20y2%3D%2267.4497767%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA68C%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%220%22%20y%3D%22868%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-264.000000%2C%20-1128.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Lovehearts-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--lovehearts2{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3ELovehearts%202%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2213.3312755%25%22%20y1%3D%2235.0197434%25%22%20x2%3D%2250%25%22%20y2%3D%2268.0240162%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2289.6436478%25%22%20y1%3D%2234.4795812%25%22%20x2%3D%2224.3581829%25%22%20y2%3D%2283.1645088%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA68C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%22549%22%20y%3D%22868%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-813.000000%2C%20-1128.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Lovehearts-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--lovehearts3{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3ELovehearts%203%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2213.3312755%25%22%20y1%3D%2235.0197434%25%22%20x2%3D%2250%25%22%20y2%3D%2268.0240162%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA68C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2289.0050238%25%22%20y1%3D%2234.3360213%25%22%20x2%3D%2250%25%22%20y2%3D%2267.4497767%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%221098%22%20y%3D%22868%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-1362.000000%2C%20-1128.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Lovehearts-3%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--skittles1{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3ESkittles%201%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2213.3312755%25%22%20y1%3D%2235.0197434%25%22%20x2%3D%2250%25%22%20y2%3D%2268.0240162%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA78C%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2289.0050238%25%22%20y1%3D%2234.3360213%25%22%20x2%3D%2250%25%22%20y2%3D%2267.4497767%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%2380C7F5%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA78C%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-264.000000%2C%20-260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Skittles-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--skittles2{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3ERectangle%20Copy%209%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2213.3312755%25%22%20y1%3D%2235.0197434%25%22%20x2%3D%2250%25%22%20y2%3D%2268.0240162%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%2380C7F5%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2289.0050238%25%22%20y1%3D%2234.3360213%25%22%20x2%3D%2250%25%22%20y2%3D%2267.4497767%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA78C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%22549%22%20y%3D%220%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-813.000000%2C%20-260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Rectangle-Copy-9%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--skittles3{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3ESkittles%203%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2213.3312755%25%22%20y1%3D%2235.0197434%25%22%20x2%3D%2250%25%22%20y2%3D%2268.0240162%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA78C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%2380C7F5%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2289.0050238%25%22%20y1%3D%2234.3360213%25%22%20x2%3D%2250%25%22%20y2%3D%2267.4497767%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%2380C7F5%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%221098%22%20y%3D%220%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-1362.000000%2C%20-260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Skittles-3%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--twizzlers1{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3ETwizzlers%201%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2213.3144563%25%22%20y1%3D%2234.7953338%25%22%20x2%3D%2250%25%22%20y2%3D%2266.5343565%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%2380C7F5%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2289.0050238%25%22%20y1%3D%2234.3360213%25%22%20x2%3D%2250%25%22%20y2%3D%2267.4497767%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%2380C7F5%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%220%22%20y%3D%22428%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-264.000000%2C%20-688.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Twizzlers-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--twizzlers2{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3ETwizzlers%202%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2213.3312755%25%22%20y1%3D%2235.0197434%25%22%20x2%3D%2250%25%22%20y2%3D%2268.0240162%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2289.6436478%25%22%20y1%3D%2234.4795812%25%22%20x2%3D%2224.3581829%25%22%20y2%3D%2283.1645088%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%2380C7F5%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%22549%22%20y%3D%22428%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-813.000000%2C%20-688.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Twizzlers-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--twizzlers3{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3ETwizzlers%203%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2213.5473433%25%22%20y1%3D%2234.8769086%25%22%20x2%3D%2250%25%22%20y2%3D%2265.6074248%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%2380C7F5%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2284.1887347%25%22%20y1%3D%2238.7711517%25%22%20x2%3D%2250%25%22%20y2%3D%2267.4497767%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%221098%22%20y%3D%22428%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-1362.000000%2C%20-688.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Twizzlers-3%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-btn,.Vlt-btn-group .Vlt-btn,.Vlt-callout__cta,.Vlt-dropdown__btn,.Vlt-native-dropdown select{-ms-flex-align:center;align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:0;border-radius:48px;cursor:pointer;display:inline-block;font-size:1.4rem;font-weight:600;-ms-flex-pack:center;justify-content:center;line-height:2.4rem;margin:8px 0;min-height:40px;min-width:40px;outline:0;padding:8px 14px;text-align:center;transition:all .3s;vertical-align:middle;white-space:nowrap}.Vlt-btn:focus,.Vlt-callout__cta:focus,.Vlt-dropdown__btn:focus,.Vlt-native-dropdown select:focus{outline:0}.Vlt-btn:active,.Vlt-callout__cta:active,.Vlt-dropdown__btn:active,.Vlt-native-dropdown select:active{outline:0}.Vlt-btn svg,.Vlt-btn-group .Vlt-btn svg,.Vlt-callout__cta svg,.Vlt-dropdown__btn svg,.Vlt-native-dropdown select svg{display:inline-block;fill:#fff;height:18px;margin-right:8px;margin-top:-2px;vertical-align:middle;width:18px}.Vlt-native-dropdown .vlt-btn--large select svg,.vlt-btn--large .Vlt-btn svg,.vlt-btn--large .Vlt-callout__cta svg,.vlt-btn--large .Vlt-dropdown__btn svg,.vlt-btn--large .Vlt-native-dropdown select svg{margin-right:10px}.Vlt-btn--block{width:100%}.Vlt-btn+.Vlt-btn{margin-left:8px}.Vlt-btn--nomargin{margin:0}.Vlt-btn--app,.Vlt-callout__cta,.Vlt-card__cta .Vlt-btn,.Vlt-composite__append .Vlt-btn,.Vlt-composite__append .Vlt-dropdown__btn,.Vlt-composite__append .Vlt-native-dropdown select,.Vlt-composite__prepend .Vlt-btn,.Vlt-composite__prepend .Vlt-dropdown__btn,.Vlt-composite__prepend .Vlt-native-dropdown select,.Vlt-modal__footer .Vlt-btn,.Vlt-table .Vlt-btn{border-radius:6px}.Vlt-btn--small.Vlt-btn--app,.Vlt-btn--small.Vlt-callout__cta,.Vlt-card__cta .Vlt-btn--small.Vlt-btn,.Vlt-composite__append .Vlt-btn--small.Vlt-btn,.Vlt-composite__append .Vlt-btn--small.Vlt-dropdown__btn,.Vlt-composite__append .Vlt-native-dropdown select.Vlt-btn--small,.Vlt-composite__prepend .Vlt-btn--small.Vlt-btn,.Vlt-composite__prepend .Vlt-btn--small.Vlt-dropdown__btn,.Vlt-composite__prepend .Vlt-native-dropdown select.Vlt-btn--small,.Vlt-modal__footer .Vlt-btn--small.Vlt-btn,.Vlt-table .Vlt-btn--small.Vlt-btn{border-radius:5px}.Vlt-btn--small,.Vlt-btn-group--small .Vlt-btn,.Vlt-callout--banner .Vlt-btn,.Vlt-callout--banner .Vlt-callout__cta,.Vlt-callout__cta,.Vlt-dropdown__btn--small,.Vlt-table .Vlt-btn{font-size:1.2rem;line-height:1.6rem;min-height:32px;min-width:32px;padding:8px 12px}.Vlt-btn--small svg,.Vlt-btn-group--small .Vlt-btn svg,.Vlt-callout--banner .Vlt-btn svg,.Vlt-callout--banner .Vlt-callout__cta svg,.Vlt-callout__cta svg,.Vlt-dropdown__btn--small svg,.Vlt-table .Vlt-btn svg{height:16px;width:16px}.Vlt-btn--large,.Vlt-btn-group--large .Vlt-btn,.Vlt-dropdown__btn--large,.Vlt-form__element--big .Vlt-composite__append .Vlt-btn,.Vlt-form__element--big .Vlt-composite__append .Vlt-dropdown__btn,.Vlt-form__element--big .Vlt-composite__append .Vlt-native-dropdown select,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-btn,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-dropdown__btn,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-native-dropdown select,.Vlt-native-dropdown--large select{font-size:1.6rem;line-height:2.4rem;margin:8px 0 16px;min-height:48px;min-width:48px;padding:12px 24px}.Vlt-btn--large svg,.Vlt-btn-group--large .Vlt-btn svg,.Vlt-dropdown__btn--large svg,.Vlt-form__element--big .Vlt-composite__append .Vlt-btn svg,.Vlt-form__element--big .Vlt-composite__append .Vlt-dropdown__btn svg,.Vlt-form__element--big .Vlt-composite__append .Vlt-native-dropdown select svg,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-btn svg,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-dropdown__btn svg,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-native-dropdown select svg,.Vlt-native-dropdown--large select svg{height:20px;margin-right:14px;margin-top:-3px;width:20px}.Vlt-btn--large svg span,.Vlt-btn-group--large .Vlt-btn svg span,.Vlt-dropdown__btn--large svg span,.Vlt-form__element--big .Vlt-composite__append .Vlt-btn svg span,.Vlt-form__element--big .Vlt-composite__append .Vlt-dropdown__btn svg span,.Vlt-form__element--big .Vlt-composite__append .Vlt-native-dropdown select svg span,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-btn svg span,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-dropdown__btn svg span,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-native-dropdown select svg span,.Vlt-native-dropdown--large select svg span{margin-left:8px}.Vlt-btn--icon svg,.Vlt-btn-group--icon .Vlt-btn svg,.Vlt-form__element--big .Vlt-composite__append .Vlt-btn.Vlt-btn--icon svg,.Vlt-form__element--big .Vlt-composite__append .Vlt-dropdown__btn.Vlt-btn--icon svg,.Vlt-form__element--big .Vlt-composite__append .Vlt-native-dropdown select.Vlt-btn--icon svg,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-btn.Vlt-btn--icon svg,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-dropdown__btn.Vlt-btn--icon svg,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-native-dropdown select.Vlt-btn--icon svg{margin-left:-10px;margin-right:-10px}.Vlt-btn--icon-right svg{margin-left:8px;margin-right:0}.Vlt-btn--large.Vlt-btn--icon-right svg{margin-left:14px}.Vlt-btn--primary,.Vlt-dropdown__btn--primary{background:#871fff;color:#fff}.Vlt-btn--primary svg,.Vlt-dropdown__btn--primary svg{fill:#fff}.Vlt-btn--primary:hover,.Vlt-btn--primary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-dropdown__btn--primary:hover,.Vlt-dropdown__btn--primary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#6d00eb}.Vlt-btn--primary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--primary,.Vlt-btn_active.Vlt-dropdown__btn--primary,.Vlt-dropdown__btn--primary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active{background:#6100d2}.Vlt-btn--outline.Vlt-btn--primary,.Vlt-btn--outline.Vlt-dropdown__btn--primary{color:#871fff}.Vlt-btn--outline.Vlt-btn--primary svg,.Vlt-btn--outline.Vlt-dropdown__btn--primary svg{fill:#871fff}.Vlt-btn--outline.Vlt-btn--primary:hover,.Vlt-btn--outline.Vlt-btn--primary:not(.Vlt-btn--no-focus):focus,.Vlt-btn--outline.Vlt-dropdown__btn--primary:hover,.Vlt-btn--outline.Vlt-dropdown__btn--primary:not(.Vlt-btn--no-focus):focus{background:rgba(135,31,255,.1)}.Vlt-btn--outline.Vlt-btn--primary:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--primary,.Vlt-btn--outline.Vlt-btn_active.Vlt-dropdown__btn--primary,.Vlt-btn--outline.Vlt-dropdown__btn--primary:not(.Vlt-btn--no-focus):active{background:rgba(135,31,255,.2)}.Vlt-btn--secondary,.Vlt-callout__cta,.Vlt-dropdown__btn--secondary,.Vlt-native-dropdown select{background:#131415;color:#fff}.Vlt-btn--secondary svg,.Vlt-callout__cta svg,.Vlt-dropdown__btn--secondary svg,.Vlt-native-dropdown select svg{fill:#fff}.Vlt-btn--secondary:hover,.Vlt-btn--secondary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-callout__cta:hover,.Vlt-callout__cta:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-dropdown__btn--secondary:hover,.Vlt-dropdown__btn--secondary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-native-dropdown select:hover,.Vlt-native-dropdown select:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#43474b}.Vlt-btn--secondary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--secondary,.Vlt-btn_active.Vlt-callout__cta,.Vlt-btn_active.Vlt-dropdown__btn--secondary,.Vlt-callout__cta:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-dropdown__btn--secondary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-native-dropdown select.Vlt-btn_active,.Vlt-native-dropdown select:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active{background:#5c6165}.Vlt-btn--outline.Vlt-btn--secondary,.Vlt-btn--outline.Vlt-callout__cta,.Vlt-btn--outline.Vlt-dropdown__btn--secondary,.Vlt-native-dropdown select.Vlt-btn--outline{color:#131415}.Vlt-btn--outline.Vlt-btn--secondary svg,.Vlt-btn--outline.Vlt-callout__cta svg,.Vlt-btn--outline.Vlt-dropdown__btn--secondary svg,.Vlt-native-dropdown select.Vlt-btn--outline svg{fill:#131415}.Vlt-btn--outline.Vlt-btn--secondary:hover,.Vlt-btn--outline.Vlt-btn--secondary:not(.Vlt-btn--no-focus):focus,.Vlt-btn--outline.Vlt-callout__cta:hover,.Vlt-btn--outline.Vlt-callout__cta:not(.Vlt-btn--no-focus):focus,.Vlt-btn--outline.Vlt-dropdown__btn--secondary:hover,.Vlt-btn--outline.Vlt-dropdown__btn--secondary:not(.Vlt-btn--no-focus):focus,.Vlt-native-dropdown select.Vlt-btn--outline:hover,.Vlt-native-dropdown select.Vlt-btn--outline:not(.Vlt-btn--no-focus):focus{background:rgba(19,20,21,.1)}.Vlt-btn--outline.Vlt-btn--secondary:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--secondary,.Vlt-btn--outline.Vlt-btn_active.Vlt-callout__cta,.Vlt-btn--outline.Vlt-btn_active.Vlt-dropdown__btn--secondary,.Vlt-btn--outline.Vlt-callout__cta:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-dropdown__btn--secondary:not(.Vlt-btn--no-focus):active,.Vlt-native-dropdown select.Vlt-btn--outline.Vlt-btn_active,.Vlt-native-dropdown select.Vlt-btn--outline:not(.Vlt-btn--no-focus):active{background:rgba(19,20,21,.2)}.Vlt-btn--tertiary,.Vlt-btn-group .Vlt-btn,.Vlt-composite__append .Vlt-btn,.Vlt-composite__append .Vlt-dropdown__btn,.Vlt-composite__append .Vlt-native-dropdown select,.Vlt-composite__prepend .Vlt-btn,.Vlt-composite__prepend .Vlt-dropdown__btn,.Vlt-composite__prepend .Vlt-native-dropdown select,.Vlt-dropdown__btn:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white){background:#e1e2e6;color:#131415}.Vlt-btn--tertiary svg,.Vlt-btn-group .Vlt-btn svg,.Vlt-composite__append .Vlt-btn svg,.Vlt-composite__append .Vlt-dropdown__btn svg,.Vlt-composite__append .Vlt-native-dropdown select svg,.Vlt-composite__prepend .Vlt-btn svg,.Vlt-composite__prepend .Vlt-dropdown__btn svg,.Vlt-composite__prepend .Vlt-native-dropdown select svg,.Vlt-dropdown__btn:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white) svg{fill:#131415}.Vlt-btn--tertiary:hover,.Vlt-btn--tertiary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-btn-group .Vlt-btn:hover,.Vlt-btn-group .Vlt-btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-composite__append .Vlt-btn:hover,.Vlt-composite__append .Vlt-btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-composite__append .Vlt-dropdown__btn:hover,.Vlt-composite__append .Vlt-dropdown__btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-composite__append .Vlt-native-dropdown select:hover,.Vlt-composite__append .Vlt-native-dropdown select:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-composite__prepend .Vlt-btn:hover,.Vlt-composite__prepend .Vlt-btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-composite__prepend .Vlt-dropdown__btn:hover,.Vlt-composite__prepend .Vlt-dropdown__btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-composite__prepend .Vlt-native-dropdown select:hover,.Vlt-composite__prepend .Vlt-native-dropdown select:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-dropdown__btn:hover:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white),.Vlt-dropdown__btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white){background:#d0d2d8}.Vlt-btn--tertiary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn-group .Vlt-btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn-group .Vlt-btn_active.Vlt-btn,.Vlt-btn_active.Vlt-btn--tertiary,.Vlt-btn_active.Vlt-dropdown__btn:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white),.Vlt-composite__append .Vlt-btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-composite__append .Vlt-btn_active.Vlt-btn,.Vlt-composite__append .Vlt-btn_active.Vlt-dropdown__btn,.Vlt-composite__append .Vlt-dropdown__btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-composite__append .Vlt-native-dropdown select.Vlt-btn_active,.Vlt-composite__append .Vlt-native-dropdown select:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-composite__prepend .Vlt-btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-composite__prepend .Vlt-btn_active.Vlt-btn,.Vlt-composite__prepend .Vlt-btn_active.Vlt-dropdown__btn,.Vlt-composite__prepend .Vlt-dropdown__btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-composite__prepend .Vlt-native-dropdown select.Vlt-btn_active,.Vlt-composite__prepend .Vlt-native-dropdown select:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-dropdown__btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white){background:#c2c4cc}.Vlt-btn--outline.Vlt-btn--tertiary,.Vlt-btn--outline.Vlt-dropdown__btn:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white),.Vlt-btn-group .Vlt-btn--outline.Vlt-btn,.Vlt-composite__append .Vlt-btn--outline.Vlt-btn,.Vlt-composite__append .Vlt-btn--outline.Vlt-dropdown__btn,.Vlt-composite__append .Vlt-native-dropdown select.Vlt-btn--outline,.Vlt-composite__prepend .Vlt-btn--outline.Vlt-btn,.Vlt-composite__prepend .Vlt-btn--outline.Vlt-dropdown__btn,.Vlt-composite__prepend .Vlt-native-dropdown select.Vlt-btn--outline{color:#e1e2e6}.Vlt-btn--outline.Vlt-btn--tertiary svg,.Vlt-btn--outline.Vlt-dropdown__btn:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white) svg,.Vlt-btn-group .Vlt-btn--outline.Vlt-btn svg,.Vlt-composite__append .Vlt-btn--outline.Vlt-btn svg,.Vlt-composite__append .Vlt-btn--outline.Vlt-dropdown__btn svg,.Vlt-composite__append .Vlt-native-dropdown select.Vlt-btn--outline svg,.Vlt-composite__prepend .Vlt-btn--outline.Vlt-btn svg,.Vlt-composite__prepend .Vlt-btn--outline.Vlt-dropdown__btn svg,.Vlt-composite__prepend .Vlt-native-dropdown select.Vlt-btn--outline svg{fill:#e1e2e6}.Vlt-btn--outline.Vlt-btn--tertiary:hover,.Vlt-btn--outline.Vlt-btn--tertiary:not(.Vlt-btn--no-focus):focus,.Vlt-btn--outline.Vlt-dropdown__btn:hover:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white),.Vlt-btn--outline.Vlt-dropdown__btn:not(.Vlt-btn--no-focus):focus:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white),.Vlt-btn-group .Vlt-btn--outline.Vlt-btn:hover,.Vlt-btn-group .Vlt-btn--outline.Vlt-btn:not(.Vlt-btn--no-focus):focus,.Vlt-composite__append .Vlt-btn--outline.Vlt-btn:hover,.Vlt-composite__append .Vlt-btn--outline.Vlt-btn:not(.Vlt-btn--no-focus):focus,.Vlt-composite__append .Vlt-btn--outline.Vlt-dropdown__btn:hover,.Vlt-composite__append .Vlt-btn--outline.Vlt-dropdown__btn:not(.Vlt-btn--no-focus):focus,.Vlt-composite__append .Vlt-native-dropdown select.Vlt-btn--outline:hover,.Vlt-composite__append .Vlt-native-dropdown select.Vlt-btn--outline:not(.Vlt-btn--no-focus):focus,.Vlt-composite__prepend .Vlt-btn--outline.Vlt-btn:hover,.Vlt-composite__prepend .Vlt-btn--outline.Vlt-btn:not(.Vlt-btn--no-focus):focus,.Vlt-composite__prepend .Vlt-btn--outline.Vlt-dropdown__btn:hover,.Vlt-composite__prepend .Vlt-btn--outline.Vlt-dropdown__btn:not(.Vlt-btn--no-focus):focus,.Vlt-composite__prepend .Vlt-native-dropdown select.Vlt-btn--outline:hover,.Vlt-composite__prepend .Vlt-native-dropdown select.Vlt-btn--outline:not(.Vlt-btn--no-focus):focus{background:rgba(194,196,204,.1)}.Vlt-btn--outline.Vlt-btn--tertiary:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--tertiary,.Vlt-btn--outline.Vlt-btn_active.Vlt-dropdown__btn:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white),.Vlt-btn--outline.Vlt-dropdown__btn:not(.Vlt-btn--no-focus):active:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white),.Vlt-btn-group .Vlt-btn--outline.Vlt-btn:not(.Vlt-btn--no-focus):active,.Vlt-btn-group .Vlt-btn--outline.Vlt-btn_active.Vlt-btn,.Vlt-composite__append .Vlt-btn--outline.Vlt-btn:not(.Vlt-btn--no-focus):active,.Vlt-composite__append .Vlt-btn--outline.Vlt-btn_active.Vlt-btn,.Vlt-composite__append .Vlt-btn--outline.Vlt-btn_active.Vlt-dropdown__btn,.Vlt-composite__append .Vlt-btn--outline.Vlt-dropdown__btn:not(.Vlt-btn--no-focus):active,.Vlt-composite__append .Vlt-native-dropdown select.Vlt-btn--outline.Vlt-btn_active,.Vlt-composite__append .Vlt-native-dropdown select.Vlt-btn--outline:not(.Vlt-btn--no-focus):active,.Vlt-composite__prepend .Vlt-btn--outline.Vlt-btn:not(.Vlt-btn--no-focus):active,.Vlt-composite__prepend .Vlt-btn--outline.Vlt-btn_active.Vlt-btn,.Vlt-composite__prepend .Vlt-btn--outline.Vlt-btn_active.Vlt-dropdown__btn,.Vlt-composite__prepend .Vlt-btn--outline.Vlt-dropdown__btn:not(.Vlt-btn--no-focus):active,.Vlt-composite__prepend .Vlt-native-dropdown select.Vlt-btn--outline.Vlt-btn_active,.Vlt-composite__prepend .Vlt-native-dropdown select.Vlt-btn--outline:not(.Vlt-btn--no-focus):active{background:rgba(194,196,204,.2)}.Vlt-btn--destructive,.Vlt-dropdown__btn--destructive{background:#e84545;color:#fff}.Vlt-btn--destructive svg,.Vlt-dropdown__btn--destructive svg{fill:#fff}.Vlt-btn--destructive:hover,.Vlt-btn--destructive:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-dropdown__btn--destructive:hover,.Vlt-dropdown__btn--destructive:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#de1c1c}.Vlt-btn--destructive:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--destructive,.Vlt-btn_active.Vlt-dropdown__btn--destructive,.Vlt-dropdown__btn--destructive:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active{background:#c81919}.Vlt-btn--outline.Vlt-btn--destructive,.Vlt-btn--outline.Vlt-dropdown__btn--destructive{color:#e84545}.Vlt-btn--outline.Vlt-btn--destructive svg,.Vlt-btn--outline.Vlt-dropdown__btn--destructive svg{fill:#e84545}.Vlt-btn--outline.Vlt-btn--destructive:hover,.Vlt-btn--outline.Vlt-btn--destructive:not(.Vlt-btn--no-focus):focus,.Vlt-btn--outline.Vlt-dropdown__btn--destructive:hover,.Vlt-btn--outline.Vlt-dropdown__btn--destructive:not(.Vlt-btn--no-focus):focus{background:rgba(232,69,69,.1)}.Vlt-btn--outline.Vlt-btn--destructive:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--destructive,.Vlt-btn--outline.Vlt-btn_active.Vlt-dropdown__btn--destructive,.Vlt-btn--outline.Vlt-dropdown__btn--destructive:not(.Vlt-btn--no-focus):active{background:rgba(232,69,69,.2)}.Vlt-btn--quaternary,.Vlt-dropdown__btn--quaternary{background:#06ba77;color:#fff}.Vlt-btn--quaternary svg,.Vlt-dropdown__btn--quaternary svg{fill:#fff}.Vlt-btn--quaternary:hover,.Vlt-btn--quaternary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-dropdown__btn--quaternary:hover,.Vlt-dropdown__btn--quaternary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#059c64}.Vlt-btn--quaternary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--quaternary,.Vlt-btn_active.Vlt-dropdown__btn--quaternary,.Vlt-dropdown__btn--quaternary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active{background:#048957}.Vlt-btn--outline.Vlt-btn--quaternary,.Vlt-btn--outline.Vlt-dropdown__btn--quaternary{color:#06ba77}.Vlt-btn--outline.Vlt-btn--quaternary svg,.Vlt-btn--outline.Vlt-dropdown__btn--quaternary svg{fill:#06ba77}.Vlt-btn--outline.Vlt-btn--quaternary:hover,.Vlt-btn--outline.Vlt-btn--quaternary:not(.Vlt-btn--no-focus):focus,.Vlt-btn--outline.Vlt-dropdown__btn--quaternary:hover,.Vlt-btn--outline.Vlt-dropdown__btn--quaternary:not(.Vlt-btn--no-focus):focus{background:rgba(6,186,119,.1)}.Vlt-btn--outline.Vlt-btn--quaternary:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--quaternary,.Vlt-btn--outline.Vlt-btn_active.Vlt-dropdown__btn--quaternary,.Vlt-btn--outline.Vlt-dropdown__btn--quaternary:not(.Vlt-btn--no-focus):active{background:rgba(6,186,119,.2)}.Vlt-btn--indigo{background:#d6219c;color:#fff}.Vlt-btn--indigo svg{fill:#fff}.Vlt-btn--indigo:hover,.Vlt-btn--indigo:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#bb1d89}.Vlt-btn--indigo:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--indigo{background:#aa1a7c}.Vlt-btn--outline.Vlt-btn--indigo{color:#d6219c}.Vlt-btn--outline.Vlt-btn--indigo svg{fill:#d6219c}.Vlt-btn--outline.Vlt-btn--indigo:hover,.Vlt-btn--outline.Vlt-btn--indigo:not(.Vlt-btn--no-focus):focus{background:rgba(214,33,156,.1)}.Vlt-btn--outline.Vlt-btn--indigo:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--indigo{background:rgba(214,33,156,.2)}.Vlt-btn--orange{background:#fa7454;color:#fff}.Vlt-btn--orange svg{fill:#fff}.Vlt-btn--orange:hover,.Vlt-btn--orange:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#f95c36}.Vlt-btn--orange:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--orange{background:#f94c22}.Vlt-btn--outline.Vlt-btn--orange{color:#fa7454}.Vlt-btn--outline.Vlt-btn--orange svg{fill:#fa7454}.Vlt-btn--outline.Vlt-btn--orange:hover,.Vlt-btn--outline.Vlt-btn--orange:not(.Vlt-btn--no-focus):focus{background:rgba(250,116,84,.1)}.Vlt-btn--outline.Vlt-btn--orange:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--orange{background:rgba(250,116,84,.2)}.Vlt-btn--white{background:#fff;color:#131415}.Vlt-btn--white svg{fill:#131415}.Vlt-btn--white:hover,.Vlt-btn--white:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#e1e2e6}.Vlt-btn--white:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--white{background:#c2c4cc}.Vlt-btn--outline.Vlt-btn--white{color:#fff}.Vlt-btn--outline.Vlt-btn--white svg{fill:#fff}.Vlt-btn--outline.Vlt-btn--white:hover,.Vlt-btn--outline.Vlt-btn--white:not(.Vlt-btn--no-focus):focus{background:rgba(255,255,255,.1)}.Vlt-btn--outline.Vlt-btn--white:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--white{background:rgba(255,255,255,.2)}.Vlt-btn--outline{background-color:transparent;box-shadow:inset 0 0 0 1px}.Vlt-btn--outline .Vlt-spinner:after,.Vlt-btn--outline .Vlt-spinner:before{border-color:currentColor transparent transparent}.Vlt-btn--link,.Vlt-callout--banner .Vlt-callout__link,.Vlt-text-btn{border-radius:0;box-shadow:none;cursor:pointer;font-size:1.5rem;padding:0;white-space:nowrap}.Vlt-btn--link svg,.Vlt-callout--banner .Vlt-callout__link svg,.Vlt-text-btn svg{fill:#4d7793}.Vlt-btn--link:hover,.Vlt-callout--banner .Vlt-callout__link:hover,.Vlt-text-btn:hover{text-decoration:underline;transform:none}.Vlt-btn--link:active,.Vlt-callout--banner .Vlt-callout__link:active,.Vlt-text-btn:active{box-shadow:none}.Vlt-btn--link.Vlt-btn--disabled,.Vlt-btn--link.Vlt-btn_disabled,.Vlt-btn--link:disabled,.Vlt-callout--banner .Vlt-btn--disabled.Vlt-callout__link,.Vlt-callout--banner .Vlt-btn_disabled.Vlt-callout__link,.Vlt-callout--banner .Vlt-callout__link:disabled,.Vlt-text-btn.Vlt-btn--disabled,.Vlt-text-btn.Vlt-btn_disabled,.Vlt-text-btn:disabled{background:0 0!important}.Vlt-btn-group{display:-ms-flexbox;display:flex}.Vlt-btn-group:not(.Vlt-btn-group--app) .Vlt-btn:first-child{min-width:44px;padding-left:20px}.Vlt-btn-group:not(.Vlt-btn-group--app) .Vlt-btn:last-child{min-width:44px;padding-right:20px}.Vlt-btn-group .Vlt-btn{margin-left:0;margin-right:0}.Vlt-btn-group .Vlt-btn:not(:first-child){border-bottom-left-radius:0;border-left:0;border-top-left-radius:0}.Vlt-btn-group .Vlt-btn:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.Vlt-btn-group .Vlt-btn:not(.Vlt-btn--no-focus):focus{z-index:2}.Vlt-btn-group--app .Vlt-btn{background:#e1e2e6!important;position:relative;z-index:1}.Vlt-btn-group--app .Vlt-btn:before{border-radius:5px;bottom:2px;content:'';left:1px;position:absolute;right:1px;top:2px;transition:background .3s;z-index:-1}.Vlt-btn-group--app .Vlt-btn:hover:before{background:#c2c4cc}.Vlt-btn-group--app .Vlt-btn.Vlt-btn_active{color:#fff!important}.Vlt-btn-group--app .Vlt-btn.Vlt-btn_active svg{fill:#fff!important}.Vlt-btn-group--app .Vlt-btn.Vlt-btn_active:before{background:#131415}.Vlt-btn-group--app .Vlt-btn:first-child{border-bottom-left-radius:6px;border-top-left-radius:6px}.Vlt-btn-group--app .Vlt-btn:first-child:before{left:2px}.Vlt-btn-group--app .Vlt-btn:last-child{border-bottom-right-radius:6px;border-top-right-radius:6px}.Vlt-btn-group--app .Vlt-btn:last-child:before{right:2px}.Vlt-btn-group--small:not(.Vlt-btn-group--app) .Vlt-btn:first-child{min-width:36px;padding-left:16px}.Vlt-btn-group--small:not(.Vlt-btn-group--app) .Vlt-btn:last-child{min-width:36px;padding-right:16px}.Vlt-btn-group--large:not(.Vlt-btn-group--app) .Vlt-btn:first-child{min-width:52px;padding-left:28px}.Vlt-btn-group--large:not(.Vlt-btn-group--app) .Vlt-btn:last-child{min-width:52px;padding-right:28px}.Vlt-btn-group--hover{border:0!important;margin-top:11px;opacity:0;padding:0!important;position:absolute;right:16px;transition:all .3s;z-index:-1}.Vlt-btn-group--hover .Vlt-btn:first-child{border-bottom-left-radius:30px;border-top-left-radius:30px}.Vlt-btn-group--hover .Vlt-btn:last-child{border-bottom-right-radius:30px;border-top-right-radius:30px}.Vlt-btn-group--inline{display:-ms-inline-flexbox;display:inline-flex}.Vlt-btn-on-hover{position:relative}.Vlt-btn-on-hover:hover .Vlt-btn-group--hover{background-color:transparent;opacity:1;z-index:2}.Vlt-btn-on-hover:not(tr):not(td):not(table) .Vlt-btn-group--hover{margin-top:0;top:-16px}.Vlt-btn--link,.Vlt-callout--banner .Vlt-callout__link,.Vlt-text-btn,.Vlt-text-link,label a:not([class]),li a:not([class]),nav a:not([class]),p a:not([class]),small a:not([class]),span a:not([class]),td a:not([class]),th a:not([class]){color:#871fff;cursor:pointer;font-size:inherit;font-weight:inherit;line-height:inherit}.Vlt-btn--link:hover,.Vlt-callout--banner .Vlt-callout__link:hover,.Vlt-text-btn:hover,.Vlt-text-link:hover,label a:hover:not([class]),li a:hover:not([class]),nav a:hover:not([class]),p a:hover:not([class]),small a:hover:not([class]),span a:hover:not([class]),td a:hover:not([class]),th a:hover:not([class]){color:#441080;text-decoration:underline}.Vlt-btn--link:active,.Vlt-callout--banner .Vlt-callout__link:active,.Vlt-text-btn:active,.Vlt-text-link:active,label a:active:not([class]),li a:active:not([class]),nav a:active:not([class]),p a:active:not([class]),small a:active:not([class]),span a:active:not([class]),td a:active:not([class]),th a:active:not([class]){color:#441080}.Vlt-btn--link:visited,.Vlt-callout--banner .Vlt-callout__link:visited,.Vlt-text-btn:visited,.Vlt-text-link:visited,label a:visited:not([class]),li a:visited:not([class]),nav a:visited:not([class]),p a:visited:not([class]),small a:visited:not([class]),span a:visited:not([class]),td a:visited:not([class]),th a:visited:not([class]){color:#871fff}.Vlt-btn--link:visited:hover,.Vlt-callout--banner .Vlt-callout__link:visited:hover,.Vlt-text-btn:visited:hover,.Vlt-text-link:visited:hover,label a:visited:hover:not([class]),li a:visited:hover:not([class]),nav a:visited:hover:not([class]),p a:visited:hover:not([class]),small a:visited:hover:not([class]),span a:visited:hover:not([class]),td a:visited:hover:not([class]),th a:visited:hover:not([class]){color:#441080}.Vlt-black.Vlt-btn--link,.Vlt-black.Vlt-text-btn,.Vlt-callout--banner .Vlt-black.Vlt-callout__link,.Vlt-text-link.Vlt-black,label a.Vlt-black:not([class]),li a.Vlt-black:not([class]),nav a.Vlt-black:not([class]),p a.Vlt-black:not([class]),small a.Vlt-black:not([class]),span a.Vlt-black:not([class]),td a.Vlt-black:not([class]),th a.Vlt-black:not([class]){color:#131415;font-weight:600;position:relative}.Vlt-black.Vlt-btn--link:after,.Vlt-black.Vlt-text-btn:after,.Vlt-callout--banner .Vlt-black.Vlt-callout__link:after,.Vlt-text-link.Vlt-black:after,label a.Vlt-black:not([class]):after,li a.Vlt-black:not([class]):after,nav a.Vlt-black:not([class]):after,p a.Vlt-black:not([class]):after,small a.Vlt-black:not([class]):after,span a.Vlt-black:not([class]):after,td a.Vlt-black:not([class]):after,th a.Vlt-black:not([class]):after{background-color:#131415;bottom:-2px;content:'';height:1px;left:0;position:absolute;width:100%}.Vlt-black.Vlt-btn--link:hover,.Vlt-black.Vlt-text-btn:hover,.Vlt-callout--banner .Vlt-black.Vlt-callout__link:hover,.Vlt-text-link.Vlt-black:hover,label a.Vlt-black:hover:not([class]),li a.Vlt-black:hover:not([class]),nav a.Vlt-black:hover:not([class]),p a.Vlt-black:hover:not([class]),small a.Vlt-black:hover:not([class]),span a.Vlt-black:hover:not([class]),td a.Vlt-black:hover:not([class]),th a.Vlt-black:hover:not([class]){color:#616266;text-decoration:none}.Vlt-black.Vlt-btn--link:hover:after,.Vlt-black.Vlt-text-btn:hover:after,.Vlt-callout--banner .Vlt-black.Vlt-callout__link:hover:after,.Vlt-text-link.Vlt-black:hover:after,label a.Vlt-black:not([class]):hover:after,li a.Vlt-black:not([class]):hover:after,nav a.Vlt-black:not([class]):hover:after,p a.Vlt-black:not([class]):hover:after,small a.Vlt-black:not([class]):hover:after,span a.Vlt-black:not([class]):hover:after,td a.Vlt-black:not([class]):hover:after,th a.Vlt-black:not([class]):hover:after{background-color:#616266}.Vlt-black.Vlt-btn--link:active,.Vlt-black.Vlt-text-btn:active,.Vlt-callout--banner .Vlt-black.Vlt-callout__link:active,.Vlt-text-link.Vlt-black:active,label a.Vlt-black:active:not([class]),li a.Vlt-black:active:not([class]),nav a.Vlt-black:active:not([class]),p a.Vlt-black:active:not([class]),small a.Vlt-black:active:not([class]),span a.Vlt-black:active:not([class]),td a.Vlt-black:active:not([class]),th a.Vlt-black:active:not([class]){color:#616266}.Vlt-black.Vlt-btn--link:visited,.Vlt-black.Vlt-text-btn:visited,.Vlt-callout--banner .Vlt-black.Vlt-callout__link:visited,.Vlt-text-link.Vlt-black:visited,label a.Vlt-black:visited:not([class]),li a.Vlt-black:visited:not([class]),nav a.Vlt-black:visited:not([class]),p a.Vlt-black:visited:not([class]),small a.Vlt-black:visited:not([class]),span a.Vlt-black:visited:not([class]),td a.Vlt-black:visited:not([class]),th a.Vlt-black:visited:not([class]){color:#131415}.Vlt-accordion__trigger,.Vlt-badge__dismiss,.Vlt-btn--link,.Vlt-callout--banner .Vlt-callout__link,.Vlt-callout__dismiss,.Vlt-dialpad__key,.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs .Vlt-js-tabs__link,.Vlt-sidenav__mobile button,.Vlt-text-btn,.reset-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:0;outline:0;padding:0}.Vlt-btn--disabled.Vlt-btn,.Vlt-btn--disabled.Vlt-callout__cta,.Vlt-btn--disabled.Vlt-dropdown__btn,.Vlt-btn--link.Vlt-btn--disabled,.Vlt-btn--link.Vlt-btn_disabled,.Vlt-btn--link:disabled,.Vlt-btn:disabled,.Vlt-btn_disabled.Vlt-btn,.Vlt-btn_disabled.Vlt-callout__cta,.Vlt-btn_disabled.Vlt-dropdown__btn,.Vlt-callout--banner .Vlt-btn--disabled.Vlt-callout__link,.Vlt-callout--banner .Vlt-btn_disabled.Vlt-callout__link,.Vlt-callout--banner .Vlt-callout__link:disabled,.Vlt-callout__cta:disabled,.Vlt-dropdown__btn:disabled,.Vlt-native-dropdown select.Vlt-btn--disabled,.Vlt-native-dropdown select.Vlt-btn_disabled,.Vlt-native-dropdown select:disabled,.Vlt-text-btn.Vlt-btn--disabled,.Vlt-text-btn.Vlt-btn_disabled,.Vlt-text-btn:disabled{background:rgba(194,196,204,.5);border:0;box-shadow:none;color:#9b9da3;pointer-events:none}.Vlt-btn--disabled.Vlt-btn svg,.Vlt-btn--disabled.Vlt-callout__cta svg,.Vlt-btn--disabled.Vlt-dropdown__btn svg,.Vlt-btn--link.Vlt-btn--disabled svg,.Vlt-btn--link.Vlt-btn_disabled svg,.Vlt-btn--link:disabled svg,.Vlt-btn:disabled svg,.Vlt-btn_disabled.Vlt-btn svg,.Vlt-btn_disabled.Vlt-callout__cta svg,.Vlt-btn_disabled.Vlt-dropdown__btn svg,.Vlt-callout--banner .Vlt-btn--disabled.Vlt-callout__link svg,.Vlt-callout--banner .Vlt-btn_disabled.Vlt-callout__link svg,.Vlt-callout--banner .Vlt-callout__link:disabled svg,.Vlt-callout__cta:disabled svg,.Vlt-dropdown__btn:disabled svg,.Vlt-native-dropdown select.Vlt-btn--disabled svg,.Vlt-native-dropdown select.Vlt-btn_disabled svg,.Vlt-native-dropdown select:disabled svg,.Vlt-text-btn.Vlt-btn--disabled svg,.Vlt-text-btn.Vlt-btn_disabled svg,.Vlt-text-btn:disabled svg{fill:#9b9da3}.Vlt-custom-select:after,.Vlt-select:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';height:20px;margin-top:-10px;pointer-events:none;position:absolute;right:14px;top:50%;width:20px}.Vlt-label{display:block;font-size:1.4rem;line-height:1.5;margin-bottom:4px;text-align:left}.Vlt-label label{font-size:1.4rem}.Vlt-label+.Vlt-checkbox,.Vlt-label+.Vlt-form__element,.Vlt-label+.Vlt-radio{margin-top:4px}.Vlt-input input:-webkit-autofill,.Vlt-input input:-webkit-autofill:focus,.Vlt-input input:-webkit-autofill:hover{box-shadow:0 0 0 1000px #f3e9ff inset}.Vlt-input.Vlt-input--round input{border-radius:46px}.Vlt-select.Vlt-select--round select{border-radius:46px}.Vlt-custom-select,.Vlt-input,.Vlt-select,.Vlt-textarea{max-width:100%;position:relative}.Vlt-custom-select__input,.Vlt-input input,.Vlt-select select,.Vlt-textarea textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fff;border:1px solid #c2c4cc;border-radius:5px;box-shadow:none;color:#131415;display:block;font-size:1.4rem;height:40px;padding-left:12px;transition:background-color .5s,border-color .5s;width:100%}.Vlt-custom-select__input:hover,.Vlt-input input:hover,.Vlt-select select:hover,.Vlt-textarea textarea:hover{border-color:#131415}.Vlt-custom-select__input:disabled,.Vlt-input input:disabled,.Vlt-select select:disabled,.Vlt-textarea textarea:disabled{color:#9b9da3;cursor:default}.Vlt-composite{display:-ms-flexbox!important;display:flex!important;-ms-flex-flow:row;flex-flow:row;position:relative}.Vlt-composite .Vlt-input,.Vlt-composite .Vlt-select{-ms-flex:1;flex:1;position:relative}.Vlt-form__element--elastic .Vlt-composite .Vlt-input,.Vlt-form__element--elastic .Vlt-composite .Vlt-select{-ms-flex:0;flex:0;-ms-flex-preferred-size:auto;flex-basis:auto}.Vlt-composite--appendedicon .Vlt-input input,.Vlt-composite--appendedicon .Vlt-select select{padding-right:40px}.Vlt-composite:not(.Vlt-composite--appendedicon) .Vlt-input:first-child input,.Vlt-composite:not(.Vlt-composite--appendedicon) .Vlt-select:first-child select{border-bottom-right-radius:0;border-right:0;border-top-right-radius:0}.Vlt-composite__append .Vlt-btn,.Vlt-composite__append .Vlt-dropdown__btn,.Vlt-composite__append .Vlt-native-dropdown select,.Vlt-composite__prepend .Vlt-btn,.Vlt-composite__prepend .Vlt-dropdown__btn,.Vlt-composite__prepend .Vlt-native-dropdown select{border:1px solid #c2c4cc;margin:0!important;padding-bottom:7px;padding-top:7px}.Vlt-composite__append .Vlt-btn:hover,.Vlt-composite__append .Vlt-dropdown__btn:hover,.Vlt-composite__append .Vlt-native-dropdown select:hover,.Vlt-composite__prepend .Vlt-btn:hover,.Vlt-composite__prepend .Vlt-dropdown__btn:hover,.Vlt-composite__prepend .Vlt-native-dropdown select:hover{transform:scale(1)}.Vlt-form__element--big .Vlt-composite__append .Vlt-btn,.Vlt-form__element--big .Vlt-composite__append .Vlt-dropdown__btn,.Vlt-form__element--big .Vlt-composite__append .Vlt-native-dropdown select,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-btn,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-dropdown__btn,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-native-dropdown select{padding:10px 24px}.Vlt-composite__append .Vlt-dropdown__btn:after,.Vlt-composite__append .Vlt-native-dropdown:after,.Vlt-composite__prepend .Vlt-dropdown__btn:after,.Vlt-composite__prepend .Vlt-native-dropdown:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-composite__append{position:relative;z-index:2}.Vlt-composite__append .Vlt-btn,.Vlt-composite__append .Vlt-dropdown__btn,.Vlt-composite__append .Vlt-native-dropdown select{border-bottom-left-radius:0;border-top-left-radius:0}.Vlt-composite__append--icon{height:100%;padding:11px 12px;position:absolute;right:0;width:42px}.Vlt-composite__append--icon svg{fill:#9b9da3;height:18px;position:relative;width:18px}.Vlt-composite__prepend{position:relative;z-index:2}.Vlt-composite__prepend .Vlt-btn,.Vlt-composite__prepend .Vlt-dropdown__btn,.Vlt-composite__prepend .Vlt-native-dropdown select{border-bottom-right-radius:0;border-top-right-radius:0}.Vlt-composite__prepend:not(.Vlt-composite__prepend--icon)+.Vlt-input input,.Vlt-composite__prepend:not(.Vlt-composite__prepend--icon)+.Vlt-select select{border-bottom-left-radius:0;border-left:0;border-top-left-radius:0}.Vlt-composite__prepend--icon{height:100%;padding:11px 12px;position:absolute;width:42px}.Vlt-composite__prepend--icon svg{fill:#131415;height:18px;width:18px}.Vlt-composite__prepend--icon+.Vlt-input input,.Vlt-composite__prepend--icon+.Vlt-select select{padding-left:42px}.Vlt-composite .Vlt-btn,.Vlt-composite .Vlt-dropdown__btn .Vlt-native-dropdown select{margin:0}.Vlt-composite .Vlt-input input:disabled,.Vlt-composite .Vlt-input input[readonly]{border-color:#c2c4cc}.Vlt-textarea textarea{height:auto;padding-bottom:8px;padding-top:8px;resize:vertical}.Vlt-custom-select__input,.Vlt-select select{-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;padding-right:42px;text-indent:1px;text-overflow:''}.Vlt-custom-select__input::-ms-expand,.Vlt-select select::-ms-expand{display:none}.Vlt-form__group{-ms-flex-align:end;align-items:flex-end;display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.Vlt-form__group .Vlt-form__element{margin-right:16px}.Vlt-form__group .Vlt-form__element:last-child{margin-right:0}.Vlt-form__group>.Vlt-btn{margin-bottom:8px}.Vlt-form__group>.Vlt-form__element__error,.Vlt-form__group>.Vlt-form__element__hint{-ms-flex:0 0 100%;flex:0 0 100%;margin-bottom:4px}.Vlt-form__group+.Vlt-form__element,.Vlt-form__group+.Vlt-form__group{margin-top:0}@media only screen and (max-width:575px){.Vlt-form__group--M-plus{display:block}}.Vlt-form__group--inline{display:-ms-inline-flexbox;display:inline-flex}.Vlt-form__group--stretch .Vlt-form__element{-ms-flex:auto;flex:auto}.Vlt-form__element{padding:8px 0}.Vlt-form__element h1,.Vlt-form__element h2,.Vlt-form__element h3,.Vlt-form__element h4{margin:0}.Vlt-form__element__error,.Vlt-form__element__hint{display:block;-ms-flex:0 0 100%;flex:0 0 100%;font-size:1.2rem;line-height:1.33;margin-top:6px;text-align:left}.Vlt-form__element__hint{color:#616266}.Vlt-form__element__error{color:#e84545}.Vlt-form__element__error:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23e84545%3B%22%20d%3D%22M8%200C3.6%200%200%203.6%200%208C0%2012.4%203.6%2016%208%2016C12.4%2016%2016%2012.4%2016%208C16%203.6%2012.4%200%208%200ZM8%2012C7.4%2012%207%2011.6%207%2011C7%2010.4%207.4%2010%208%2010C8.6%2010%209%2010.4%209%2011C9%2011.6%208.6%2012%208%2012ZM9%209H7V4H9V9Z%22%2F%3E%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';display:inline-block;height:16px;margin-right:6px;vertical-align:bottom;width:16px}.Vlt-form__element--error .Vlt-checkbox{color:#e84545}.Vlt-form__element--error .Vlt-checkbox input:not(:checked)+.Vlt-checkbox__icon{background:#fff!important}.Vlt-form__element--error.Vlt-form__element--big label{color:#e84545}.Vlt-form__element--elastic .Vlt-input,.Vlt-form__element--elastic .Vlt-select,.Vlt-form__element--elastic input,.Vlt-form__element--elastic select{display:inline-block;width:auto}.Vlt-form__element--elastic .Vlt-input+.Vlt-input,.Vlt-form__element--elastic .Vlt-input+.Vlt-select,.Vlt-form__element--elastic .Vlt-input+input,.Vlt-form__element--elastic .Vlt-input+select,.Vlt-form__element--elastic .Vlt-select+.Vlt-input,.Vlt-form__element--elastic .Vlt-select+.Vlt-select,.Vlt-form__element--elastic .Vlt-select+input,.Vlt-form__element--elastic .Vlt-select+select,.Vlt-form__element--elastic input+.Vlt-input,.Vlt-form__element--elastic input+.Vlt-select,.Vlt-form__element--elastic input+input,.Vlt-form__element--elastic input+select,.Vlt-form__element--elastic select+.Vlt-input,.Vlt-form__element--elastic select+.Vlt-select,.Vlt-form__element--elastic select+input,.Vlt-form__element--elastic select+select{margin-left:16px}.Vlt-form__element--elastic .Vlt-textarea,.Vlt-form__element--elastic textarea{display:inline-block;width:auto}.Vlt-form__element--inline-content .Vlt-checkbox,.Vlt-form__element--inline-content .Vlt-radio{display:inline-block;margin-bottom:16px;margin-right:16px;margin-top:4px!important}.Vlt-form__element .Vlt-dropdown__btn{margin:0}.Vlt-checkbox,.Vlt-radio{position:relative}.Vlt-checkbox input,.Vlt-radio input{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:0;opacity:0;overflow:hidden;position:absolute;width:0}.Vlt-checkbox input:active,.Vlt-checkbox input:focus,.Vlt-radio input:active,.Vlt-radio input:focus{box-shadow:none;outline:0}.Vlt-checkbox input:disabled:active+.Vlt-checkbox__icon,.Vlt-checkbox input:disabled:active+.Vlt-radio__icon,.Vlt-radio input:disabled:active+.Vlt-checkbox__icon,.Vlt-radio input:disabled:active+.Vlt-radio__icon{box-shadow:none}.Vlt-checkbox input:invalid:focus+.Vlt-checkbox__icon,.Vlt-checkbox input:invalid:focus+.Vlt-radio__icon,.Vlt-radio input:invalid:focus+.Vlt-checkbox__icon,.Vlt-radio input:invalid:focus+.Vlt-radio__icon{box-shadow:0 0 5px rgba(232,69,69,.5)}.Vlt-checkbox label,.Vlt-radio label{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;text-align:left}.Vlt-checkbox__button,.Vlt-radio__button{display:block;-ms-flex:0 0 22px;flex:0 0 22px;height:22px;margin-right:10px;margin-top:-1px;position:relative;width:22px}.Vlt-checkbox__icon,.Vlt-radio__icon{border:2px solid #c2c4cc;display:block;height:100%;transition:all .2s;width:100%}.Vlt-checkbox__icon:after,.Vlt-radio__icon:after{content:'';display:block;position:absolute;transform:scale(.1,.1);transition:transform .2s ease-out}.Vlt-checkbox:hover .Vlt-checkbox__icon,.Vlt-checkbox:hover .Vlt-radio__icon,.Vlt-radio:hover .Vlt-checkbox__icon,.Vlt-radio:hover .Vlt-radio__icon{border-color:#131415}.Vlt-checkbox+.Vlt-checkbox,.Vlt-checkbox+.Vlt-form__element__error,.Vlt-checkbox+.Vlt-form__element__hint,.Vlt-checkbox+.Vlt-radio,.Vlt-radio+.Vlt-checkbox,.Vlt-radio+.Vlt-form__element__error,.Vlt-radio+.Vlt-form__element__hint,.Vlt-radio+.Vlt-radio{margin-top:16px}.Vlt-checkbox--inline,.Vlt-radio--inline{display:inline-block;margin-bottom:16px;margin-right:16px;margin-top:4px!important}.Vlt-radio__icon{border-radius:100%;transition:all .2s}.Vlt-radio__icon:after{border-radius:100%;height:10px;left:50%;margin-left:-5px;margin-top:-5px;top:50%;width:10px}.Vlt-radio__button input:checked~.Vlt-radio__icon:after{background:#131415;transform:scale(1,1)}.Vlt-checkbox--error .Vlt-checkbox input:not(:checked)+.Vlt-checkbox__icon{background-color:#fff}.Vlt-checkbox__icon{background-color:#f3f3f5;border:1px solid #c2c4cc;border-radius:4px}.Vlt-checkbox__icon:after{background-position:center center;background-repeat:no-repeat;background-size:16px 16px;content:'';height:100%;left:0;top:0;transform:scale(1,1);width:100%}.Vlt-checkbox__button input:hover:not(:checked)~.Vlt-checkbox__icon{background-color:#fff;border-color:#9b9da3}.Vlt-checkbox__button input:focus~.Vlt-checkbox__icon{border-color:#131415}.Vlt-checkbox__button input:checked~.Vlt-checkbox__icon{background-color:#131415;border-color:#131415}.Vlt-checkbox__button input:checked~.Vlt-checkbox__icon:after{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Vlt-icon-check%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M9%2C16.1l-5.2-5.1c-0.4-0.4-1.1-0.4-1.5%2C0c-0.4%2C0.4-0.4%2C1%2C0%2C1.4L9%2C19L21.7%2C6.7c0.4-0.4%2C0.4-1%2C0-1.4%26%23xA%3B%26%23x9%3B%26%23x9%3Bc-0.4-0.4-1.1-0.4-1.5%2C0L9%2C16.1z%22%2F%3E%3C%2Fsvg%3E)}.Vlt-checkbox__button input:disabled~.Vlt-checkbox__icon{background-color:#fff;border-color:#c2c4cc}.Vlt-checkbox--partial .Vlt-checkbox__icon{background-color:#131415;border-color:#131415}.Vlt-checkbox--partial .Vlt-checkbox__button input:hover~.Vlt-checkbox__icon{background-color:#131415;border-color:#131415}.Vlt-checkbox--partial .Vlt-checkbox__button input:checked~.Vlt-checkbox__icon{background-color:#131415;border-color:#131415}.Vlt-checkbox--partial .Vlt-checkbox__icon:after{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M15%207H1C0.4%207%200%207.4%200%208C0%208.6%200.4%209%201%209H15C15.6%209%2016%208.6%2016%208C16%207.4%2015.6%207%2015%207Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-checkbox input:invalid+.Vlt-checkbox__icon,.Vlt-checkbox input:invalid+.Vlt-radio__icon,.Vlt-custom-select__input:invalid,.Vlt-form-error-style,.Vlt-form__element--error .Vlt-checkbox input:not(:checked)+.Vlt-checkbox__icon,.Vlt-form__element--error .Vlt-radio input:not(:checked)+.Vlt-radio__icon,.Vlt-form__element--error input,.Vlt-form__element--error select,.Vlt-form__element--error textarea,.Vlt-input input:invalid,.Vlt-radio input:invalid+.Vlt-checkbox__icon,.Vlt-radio input:invalid+.Vlt-radio__icon,.Vlt-select select:invalid,.Vlt-textarea textarea:invalid{background:#fdecec;border-color:#e84545}.Vlt-checkbox input:invalid+.Vlt-checkbox__icon:hover,.Vlt-checkbox input:invalid+.Vlt-radio__icon:hover,.Vlt-custom-select__input:hover:invalid,.Vlt-form-error-style:hover,.Vlt-form__element--error .Vlt-checkbox input:not(:checked)+.Vlt-checkbox__icon:hover,.Vlt-form__element--error .Vlt-radio input:not(:checked)+.Vlt-radio__icon:hover,.Vlt-form__element--error input:hover,.Vlt-form__element--error select:hover,.Vlt-form__element--error textarea:hover,.Vlt-input input:hover:invalid,.Vlt-radio input:invalid+.Vlt-checkbox__icon:hover,.Vlt-radio input:invalid+.Vlt-radio__icon:hover,.Vlt-select select:hover:invalid,.Vlt-textarea textarea:hover:invalid{border-color:#e84545}.Vlt-form-valid-style,.Vlt-form__element--valid input,.Vlt-form__element--valid select,.Vlt-form__element--valid textarea{border-color:#06ba77}.Vlt-form-valid-style:hover,.Vlt-form__element--valid input:hover,.Vlt-form__element--valid select:hover,.Vlt-form__element--valid textarea:hover{border-color:#06ba77}.Vlt-checkbox input:active+.Vlt-radio__icon,.Vlt-checkbox input:focus+.Vlt-radio__icon,.Vlt-custom-select__input:focus,.Vlt-form-focus-style,.Vlt-input input:focus,.Vlt-radio input:active+.Vlt-radio__icon,.Vlt-radio input:focus+.Vlt-radio__icon,.Vlt-select select:focus,.Vlt-textarea textarea:focus{background:#fff;border-color:#131415;outline:0}.Vlt-checkbox input:active+.Vlt-radio__icon:hover,.Vlt-checkbox input:focus+.Vlt-radio__icon:hover,.Vlt-custom-select__input:hover:focus,.Vlt-form-focus-style:hover,.Vlt-input input:hover:focus,.Vlt-radio input:active+.Vlt-radio__icon:hover,.Vlt-radio input:focus+.Vlt-radio__icon:hover,.Vlt-select select:hover:focus,.Vlt-textarea textarea:hover:focus{border-color:#131415}.Vlt-checkbox input:disabled+.Vlt-radio__icon,.Vlt-custom-select__input:disabled,.Vlt-custom-select__input[readonly],.Vlt-form-disabled-readonly-style,.Vlt-input input:disabled,.Vlt-input input[readonly],.Vlt-radio input:disabled+.Vlt-radio__icon,.Vlt-select select:disabled,.Vlt-select select[readonly],.Vlt-textarea textarea:disabled,.Vlt-textarea textarea[readonly]{background:#f3f3f5;border-color:#e1e2e6;box-shadow:none}.Vlt-checkbox input:disabled+.Vlt-radio__icon:hover,.Vlt-custom-select__input:hover:disabled,.Vlt-custom-select__input:hover[readonly],.Vlt-form-disabled-readonly-style:hover,.Vlt-input input:hover:disabled,.Vlt-input input:hover[readonly],.Vlt-radio input:disabled+.Vlt-radio__icon:hover,.Vlt-select select:hover:disabled,.Vlt-select select:hover[readonly],.Vlt-textarea textarea:hover:disabled,.Vlt-textarea textarea:hover[readonly]{border-color:#e1e2e6}.Vlt-form__element--big{display:block;position:relative}.Vlt-form__element--big label{color:#616266;cursor:text;font-size:1.2rem;left:14px;line-height:1.6rem;opacity:1;pointer-events:none;position:absolute;top:7px;transition:all .2s}.Vlt-form__element--big textarea{width:100%}.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input,.Vlt-form__element--big .Vlt-custom-select input,.Vlt-form__element--big .Vlt-custom-select select,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input,.Vlt-form__element--big .Vlt-input input,.Vlt-form__element--big .Vlt-input select,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input,.Vlt-form__element--big .Vlt-select input,.Vlt-form__element--big .Vlt-select select,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input,.Vlt-form__element--big .Vlt-textarea input,.Vlt-form__element--big .Vlt-textarea select{border-radius:6px;height:4.8rem;padding:20px 14px 6px}.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input textarea:-ms-input-placeholder,.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input:-ms-input-placeholder,.Vlt-form__element--big .Vlt-custom-select input textarea:-ms-input-placeholder,.Vlt-form__element--big .Vlt-custom-select input:-ms-input-placeholder,.Vlt-form__element--big .Vlt-custom-select select textarea:-ms-input-placeholder,.Vlt-form__element--big .Vlt-custom-select select:-ms-input-placeholder,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input textarea:-ms-input-placeholder,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input:-ms-input-placeholder,.Vlt-form__element--big .Vlt-input input textarea:-ms-input-placeholder,.Vlt-form__element--big .Vlt-input input:-ms-input-placeholder,.Vlt-form__element--big .Vlt-input select textarea:-ms-input-placeholder,.Vlt-form__element--big .Vlt-input select:-ms-input-placeholder,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input textarea:-ms-input-placeholder,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input:-ms-input-placeholder,.Vlt-form__element--big .Vlt-select input textarea:-ms-input-placeholder,.Vlt-form__element--big .Vlt-select input:-ms-input-placeholder,.Vlt-form__element--big .Vlt-select select textarea:-ms-input-placeholder,.Vlt-form__element--big .Vlt-select select:-ms-input-placeholder,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input textarea:-ms-input-placeholder,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input:-ms-input-placeholder,.Vlt-form__element--big .Vlt-textarea input textarea:-ms-input-placeholder,.Vlt-form__element--big .Vlt-textarea input:-ms-input-placeholder,.Vlt-form__element--big .Vlt-textarea select textarea:-ms-input-placeholder,.Vlt-form__element--big .Vlt-textarea select:-ms-input-placeholder{color:#c2c4cc;opacity:1;transition:all .2s}.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input textarea::placeholder,.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input::placeholder,.Vlt-form__element--big .Vlt-custom-select input textarea::placeholder,.Vlt-form__element--big .Vlt-custom-select input::placeholder,.Vlt-form__element--big .Vlt-custom-select select textarea::placeholder,.Vlt-form__element--big .Vlt-custom-select select::placeholder,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input textarea::placeholder,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input::placeholder,.Vlt-form__element--big .Vlt-input input textarea::placeholder,.Vlt-form__element--big .Vlt-input input::placeholder,.Vlt-form__element--big .Vlt-input select textarea::placeholder,.Vlt-form__element--big .Vlt-input select::placeholder,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input textarea::placeholder,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input::placeholder,.Vlt-form__element--big .Vlt-select input textarea::placeholder,.Vlt-form__element--big .Vlt-select input::placeholder,.Vlt-form__element--big .Vlt-select select textarea::placeholder,.Vlt-form__element--big .Vlt-select select::placeholder,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input textarea::placeholder,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input::placeholder,.Vlt-form__element--big .Vlt-textarea input textarea::placeholder,.Vlt-form__element--big .Vlt-textarea input::placeholder,.Vlt-form__element--big .Vlt-textarea select textarea::placeholder,.Vlt-form__element--big .Vlt-textarea select::placeholder{color:#c2c4cc;opacity:1;transition:all .2s}.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input textarea:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-custom-select input textarea:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-custom-select input:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-custom-select select textarea:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-custom-select select:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input textarea:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-input input textarea:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-input input:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-input select textarea:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-input select:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input textarea:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-select input textarea:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-select input:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-select select textarea:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-select select:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input textarea:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-textarea input textarea:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-textarea input:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-textarea select textarea:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-textarea select:placeholder-shown:not(:focus):-ms-input-placeholder{opacity:0}.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input textarea:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-custom-select input textarea:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-custom-select input:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-custom-select select textarea:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-custom-select select:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input textarea:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-input input textarea:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-input input:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-input select textarea:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-input select:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input textarea:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-select input textarea:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-select input:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-select select textarea:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-select select:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input textarea:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-textarea input textarea:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-textarea input:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-textarea select textarea:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-textarea select:placeholder-shown:not(:focus)::placeholder{opacity:0}.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input textarea:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-custom-select input textarea:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-custom-select input:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-custom-select select textarea:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-custom-select select:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input textarea:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-input input textarea:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-input input:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-input select textarea:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-input select:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input textarea:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-select input textarea:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-select input:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-select select textarea:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-select select:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input textarea:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-textarea input textarea:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-textarea input:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-textarea select textarea:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-textarea select:placeholder-shown:not(:focus)+*{font-size:1.6rem;margin-top:-.8rem;top:50%}.Vlt-form__element--big .Vlt-custom-select select,.Vlt-form__element--big .Vlt-input select,.Vlt-form__element--big .Vlt-select select,.Vlt-form__element--big .Vlt-textarea select{padding-right:50px}.Vlt-form__element--big .Vlt-custom-select:after,.Vlt-form__element--big .Vlt-select:after{height:24px;margin-top:-12px;width:24px}.Vlt-form__element--big .Vlt-custom-select__input{text-align:left}.Vlt-form__element--big .Vlt-form__element__error,.Vlt-form__element--big .Vlt-form__element__hint{margin-top:8px}.Vlt-dropdown{display:inline-block;position:relative}.Vlt-dropdown__header,.Vlt-dropdown__title{background:#871fff;border-top-left-radius:8px;border-top-right-radius:8px;color:#fff;font-size:1.5rem;font-weight:600;margin-top:-8px;padding:5px 16px;text-align:left}.Vlt-dropdown__block,.Vlt-dropdown__link{color:#131415;overflow:hidden;padding:5px 16px;position:relative;text-align:left}.Vlt-dropdown__block--noborder,.Vlt-dropdown__link--noborder{margin-top:-4px}.Vlt-dropdown__block--noborder:before,.Vlt-dropdown__link--noborder:before{display:none}.Vlt-dropdown__block--disabled,.Vlt-dropdown__block_disabled,.Vlt-dropdown__link--disabled,.Vlt-dropdown__link_disabled{color:#9b9da3;cursor:default;pointer-events:none}.Vlt-dropdown__block--highlighted,.Vlt-dropdown__link--highlighted{color:#669fc4}.Vlt-dropdown__block__icon,.Vlt-dropdown__link__icon{-ms-flex:0 0 20px;flex:0 0 20px;height:20px;margin-bottom:-3px;margin-right:10px;opacity:.8;vertical-align:middle;width:20px}.Vlt-dropdown__link{cursor:pointer;display:-ms-flexbox;display:flex;font-size:1.4rem;-ms-flex-pack:justify;justify-content:space-between;white-space:nowrap}.Vlt-dropdown__link:hover{background:rgba(19,20,21,.05)}.Vlt-dropdown__link:active{background:rgba(19,20,21,.1)}.Vlt-dropdown__link--nohover:hover{background:0 0}.Vlt-dropdown__link--selected,.Vlt-dropdown__link_selected{font-size:1.5rem;font-weight:600;padding-right:40px}.Vlt-dropdown__link--selected:after,.Vlt-dropdown__link_selected:after{background:url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23131415%22%20fill-rule%3D%22nonzero%22%20d%3D%22M2.904%2012.11L1.5%2013.52%207.958%2020%2022.5%205.409%2021.096%204%207.958%2017.182z%22%2F%3E%3C%2Fsvg%3E) no-repeat right center;background-size:contain;content:'';height:16px;position:absolute;right:16px;top:9px;width:16px}.Vlt-dropdown__block--nowrap{white-space:nowrap}.Vlt-dropdown__block--center{text-align:center}.Vlt-dropdown__label{-ms-flex:1;flex:1}.Vlt-btn+.Vlt-dropdown,.Vlt-dropdown+.Vlt-btn{margin-left:8px}.Vlt-dropdown__trigger{display:inline-block}.Vlt-dropdown__trigger--btn .Vlt-btn:hover{transform:none}.Vlt-dropdown__trigger--btn .Vlt-btn:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';display:inline-block;float:right;height:24px;margin-left:5px;vertical-align:middle;width:20px}.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--secondary.Vlt-btn--outline:after,.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--tertiary:after,.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--white:after,.Vlt-dropdown__trigger--btn .Vlt-native-dropdown select.Vlt-btn.Vlt-btn--outline:after,.Vlt-native-dropdown .Vlt-dropdown__trigger--btn select.Vlt-btn.Vlt-btn--outline:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--outline.Vlt-btn--primary:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23b779ff%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--outline.Vlt-btn--tertiary:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23e1e2e6%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--outline.Vlt-btn--quaternary:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%2306ba77%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--outline.Vlt-btn--indigo:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23d6219c%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--outline.Vlt-btn--orange:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23fa7454%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--outline.Vlt-btn--destructive:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23e84545%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--outline.Vlt-btn--white:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--link:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23117bb8%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-dropdown__trigger--btn+.Vlt-dropdown__panel{margin-top:-4px}.Vlt-dropdown__trigger--block{width:100%}.Vlt-dropdown__trigger--block .Vlt-btn{text-align:left;width:100%}.Vlt-dropdown__btn{margin-bottom:0;margin-top:0}.Vlt-dropdown__btn:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';display:inline-block;height:20px;margin-bottom:-1px;margin-left:5px;margin-top:-2px;vertical-align:middle;width:20px}.Vlt-dropdown__btn:hover{transform:none}.Vlt-dropdown__btn:active{transform:none}.Vlt-dropdown__btn:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white):after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-dropdown__btn--large:after{height:24px;margin-left:8px;width:24px}.Vlt-dropdown__btn--small:after{margin:-4px -5px -3px 5px}.Vlt-dropdown__btn--app{border-radius:6px}.Vlt-dropdown__btn--app.Vlt-btn--small{border-radius:5px}.Vlt-form__element .Vlt-dropdown__btn{margin-bottom:0;margin-top:0}.Vlt-native-dropdown{display:-ms-inline-flexbox;display:inline-flex;position:relative;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.Vlt-native-dropdown select{margin-bottom:0;margin-top:0;padding-right:38px}.Vlt-native-dropdown select::-ms-expand{display:none}.Vlt-native-dropdown select:hover{transform:none}.Vlt-native-dropdown select:active{transform:none}.Vlt-native-dropdown:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';display:inline-block;height:20px;margin-left:5px;margin-top:-10px;pointer-events:none;position:absolute;right:12px;top:50%;width:20px}.Vlt-form__element--big .Vlt-native-dropdown:after,.Vlt-native-dropdown--large:after{right:25px}.Vlt-form__element--big .Vlt-native-dropdown select,.Vlt-native-dropdown--large select{margin-bottom:0;margin-top:0;padding-right:50px!important}.Vlt-btn+.Vlt-native-dropdown,.Vlt-native-dropdown+.Vlt-btn{margin-left:8px}.Vlt-native-dropdown--app select{border-radius:6px}.Vlt-native-dropdown--app select.Vlt-btn--small{border-radius:5px}.Vlt-dropdown__panel{max-height:0;min-width:100%;overflow:hidden;position:absolute;top:100%;z-index:99999999}.Vlt-dropdown__panel__content{background:#fff;border-radius:8px;box-shadow:inset 0 0 0 1px #e1e2e6,0 2px 5px rgba(19,20,21,.15);font-size:1.5rem;margin-bottom:4px;padding:8px 0}@media only screen and (max-width:767px){.Vlt-dropdown__panel__content{-webkit-overflow-scrolling:touch;overflow-y:scroll}}.Vlt-dropdown__panel__content li:not([class]){display:block}.Vlt-dropdown__panel--left{right:0}.Vlt-dropdown__panel--width2{min-width:200px}.Vlt-dropdown__panel--width3{min-width:300px}.Vlt-dropdown__panel--nomaxheight{max-height:none}.Vlt-dropdown__panel .Vlt-btn{margin-bottom:0;margin-top:0}.Vlt-dropdown__scroll{-ms-flex:auto;flex:auto;overflow-y:auto}.Vlt-dropdown--expanded .Vlt-dropdown__panel,.Vlt-dropdown__panel_open,.Vlt-dropdown_expanded .Vlt-dropdown__panel{max-height:100vh;overflow:visible;transition:.3s}.Vlt-dropdown--expanded .Vlt-dropdown__panel .Vlt-dropdown__panel__content,.Vlt-dropdown__panel_open .Vlt-dropdown__panel__content,.Vlt-dropdown_expanded .Vlt-dropdown__panel .Vlt-dropdown__panel__content{max-height:400px;overflow-y:auto}.Vlt-dropdown--expanded .Vlt-dropdown__panel .Vlt-dropdown__panel__content--scroll-area,.Vlt-dropdown__panel_open .Vlt-dropdown__panel__content--scroll-area,.Vlt-dropdown_expanded .Vlt-dropdown__panel .Vlt-dropdown__panel__content--scroll-area{display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column;overflow-y:hidden}.Vlt-dropdown--expanded .Vlt-dropdown__panel .Vlt-dropdown__panel__content--scroll-area .Vlt-dropdown__block,.Vlt-dropdown--expanded .Vlt-dropdown__panel .Vlt-dropdown__panel__content--scroll-area .Vlt-dropdown__link,.Vlt-dropdown__panel_open .Vlt-dropdown__panel__content--scroll-area .Vlt-dropdown__block,.Vlt-dropdown__panel_open .Vlt-dropdown__panel__content--scroll-area .Vlt-dropdown__link,.Vlt-dropdown_expanded .Vlt-dropdown__panel .Vlt-dropdown__panel__content--scroll-area .Vlt-dropdown__block,.Vlt-dropdown_expanded .Vlt-dropdown__panel .Vlt-dropdown__panel__content--scroll-area .Vlt-dropdown__link{-ms-flex-negative:0;flex-shrink:0}.Vlt-badge{background:rgba(135,31,255,.2);border-radius:13px;color:#871fff;display:inline-block;-ms-flex-negative:0;flex-shrink:0;font-size:1.2rem;font-weight:600;line-height:1.6rem;margin:0;padding:5px 12px;vertical-align:bottom;white-space:nowrap}.Vlt-badge--black{background:#131415;color:#fff}.Vlt-badge--black.Vlt-badge--outline,.Vlt-badge--black.Vlt-badge--transparent{background:rgba(19,20,21,.2);color:#131415}.Vlt-badge--grey{background:#c2c4cc;color:#131415}.Vlt-badge--grey.Vlt-badge--outline,.Vlt-badge--grey.Vlt-badge--transparent{background:rgba(194,196,204,.2);color:#c2c4cc}.Vlt-badge--white{background:#fff;color:#131415}.Vlt-badge--white.Vlt-badge--outline,.Vlt-badge--white.Vlt-badge--transparent{background:rgba(255,255,255,.2);color:#fff}.Vlt-badge--purple{background:#871fff;color:#fff}.Vlt-badge--purple.Vlt-badge--outline,.Vlt-badge--purple.Vlt-badge--transparent{background:rgba(135,31,255,.2);color:#871fff}.Vlt-badge--indigo{background:#d6219c;color:#fff}.Vlt-badge--indigo.Vlt-badge--outline,.Vlt-badge--indigo.Vlt-badge--transparent{background:rgba(214,33,156,.2);color:#d6219c}.Vlt-badge--red{background:#e84545;color:#fff}.Vlt-badge--red.Vlt-badge--outline,.Vlt-badge--red.Vlt-badge--transparent{background:rgba(232,69,69,.2);color:#e84545}.Vlt-badge--yellow{background:#ffc100;color:#fff}.Vlt-badge--yellow.Vlt-badge--outline,.Vlt-badge--yellow.Vlt-badge--transparent{background:rgba(255,193,0,.2);color:#ffc100}.Vlt-badge--orange{background:#fa7454;color:#fff}.Vlt-badge--orange.Vlt-badge--outline,.Vlt-badge--orange.Vlt-badge--transparent{background:rgba(250,116,84,.2);color:#fa7454}.Vlt-badge--green{background:#06ba77;color:#fff}.Vlt-badge--green.Vlt-badge--outline,.Vlt-badge--green.Vlt-badge--transparent{background:rgba(6,186,119,.2);color:#06ba77}.Vlt-badge--blue{background:#669fc4;color:#fff}.Vlt-badge--blue.Vlt-badge--outline,.Vlt-badge--blue.Vlt-badge--transparent{background:rgba(102,159,196,.2);color:#669fc4}.Vlt-badge--outline{background:0 0!important;box-shadow:inset 0 0 0 1px}.Vlt-badge--large{border-radius:15px;font-size:1.3rem;line-height:1.6rem;padding:7px 14px}.Vlt-badge--large .Vlt-badge__dismiss{margin-left:8px}.Vlt-badge--small{border-radius:10px;font-size:1.1rem;line-height:1.4rem;padding:2px 8px}p .Vlt-badge{margin:0 5px}.Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23871fff%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center;background-repeat:no-repeat;background-size:contain;cursor:pointer;height:16px;margin-left:6px;margin-right:-4px;margin-top:-1px;transition:opacity .2s;vertical-align:middle;width:16px}.Vlt-badge:not(.Vlt-badge--outline):not(.Vlt-badge--transparent) .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--grey:not(.Vlt-badge--outline):not(.Vlt-badge--transparent) .Vlt-badge__dismiss,.Vlt-badge--white:not(.Vlt-badge--outline):not(.Vlt-badge--transparent) .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--white.Vlt-badge--outline .Vlt-badge__dismiss,.Vlt-badge--white.Vlt-badge--transparent .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--black.Vlt-badge--outline .Vlt-badge__dismiss,.Vlt-badge--black.Vlt-badge--transparent .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--grey.Vlt-badge--outline .Vlt-badge__dismiss,.Vlt-badge--grey.Vlt-badge--transparent .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23c2c4cc%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--purple.Vlt-badge--outline .Vlt-badge__dismiss,.Vlt-badge--purple.Vlt-badge--transparent .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23871fff%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--indigo.Vlt-badge--outline .Vlt-badge__dismiss,.Vlt-badge--indigo.Vlt-badge--transparent .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23d6219c%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--red.Vlt-badge--outline .Vlt-badge__dismiss,.Vlt-badge--red.Vlt-badge--transparent .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23e84545%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--yellow.Vlt-badge--outline .Vlt-badge__dismiss,.Vlt-badge--yellow.Vlt-badge--transparent .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23ffc100%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--orange.Vlt-badge--outline .Vlt-badge__dismiss,.Vlt-badge--orange.Vlt-badge--transparent .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23fa7454%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--green.Vlt-badge--outline .Vlt-badge__dismiss,.Vlt-badge--green.Vlt-badge--transparent .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%2306ba77%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--blue.Vlt-badge--outline .Vlt-badge__dismiss,.Vlt-badge--blue.Vlt-badge--transparent .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23669fc4%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge__dismiss:hover{opacity:.6}.Vlt-badge--dismissed{border:0!important;height:0;opacity:0;overflow:hidden;padding:0}.Vlt-badge-combined{display:-ms-flexbox;display:flex}.Vlt-badge-combined .Vlt-badge:first-child{border-bottom-right-radius:0;border-top-right-radius:0;margin-right:0}.Vlt-badge-combined .Vlt-badge:last-child{border-bottom-left-radius:0;border-top-left-radius:0;margin-left:0}.Vlt-badge-combined--app .Vlt-badge{border-radius:4px}.Vlt-badge+.Vlt-badge{margin-left:8px}.Vlt-badge--margin{margin-bottom:8px;margin-top:8px}.Vlt-badge--margin-left{margin-left:8px}.Vlt-badge--middle{vertical-align:middle}.Vlt-badge--app{border-radius:4px}.Vlt-badge-group .Vlt-badge{margin-bottom:4px;margin-right:8px;margin-top:4px}.Vlt-badge-group .Vlt-badge.Vlt-badge--large{margin:7px 14px}.Vlt-badge-group .Vlt-badge+.Vlt-badge{margin-left:0}.Vlt-badge-group--app .Vlt-badge{border-radius:4px}.Vlt-callout{background-color:#fff;border-radius:6px;box-shadow:inset 0 0 0 1px #c2c4cc;display:-ms-flexbox;display:flex;margin-bottom:16px;opacity:1;overflow:hidden;padding:20px;padding-left:21px;position:relative;text-align:left;transition:all .3s ease-out}.Vlt-callout:before{bottom:0;content:'';left:0;position:absolute;top:0;width:5px}.Vlt-callout i{background-size:23px 23px!important;-ms-flex:0 0 23px;flex:0 0 23px;height:23px;margin-right:12px;width:23px}.Vlt-callout__icon{-ms-flex:0 0 23px;flex:0 0 23px;height:23px;margin-right:12px;width:23px}.Vlt-callout__icon svg{height:23px;width:23px}.Vlt-callout h4{font-size:1.6rem;font-weight:600;letter-spacing:-.5px;line-height:2.2rem;margin-bottom:2px}.Vlt-callout p{color:#131415;line-height:1.5;margin-bottom:0}.Vlt-callout p+p,.Vlt-callout p+ul{margin-top:8px}.Vlt-callout__content{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;-ms-flex:2;flex:2;margin-left:4px}.Vlt-callout__dismiss{background-position:center;background-size:contain;cursor:pointer;-ms-flex:0 0 22px;flex:0 0 22px;height:22px;margin-left:12px;margin-right:-2px;margin-top:-2px;transition:opacity .2s;width:22px}.Vlt-callout__dismiss:hover{opacity:.6}.Vlt-callout .Vlt-btn{margin-top:16px}.Vlt-callout__cta{line-height:1.6rem;margin-bottom:0;margin-top:10px;min-height:30px}.Vlt-callout--dismissed{border:0!important;height:0;opacity:0;overflow:hidden;padding:0}.Vlt-callout--bottom{margin-bottom:0;margin-top:16px}.Vlt-callout--warning:before{background-color:#ffc100}.Vlt-callout--warning .Vlt-callout__icon svg{fill:#ffc100}.Vlt-callout--warning i{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23ffc100%3B%22%20d%3D%22M23.8055%2020.7941L13.443%201.36628C12.8278%200.211242%2011.1722%200.211242%2010.5554%201.36628L0.194435%2020.7941C-0.386353%2021.8837%200.403847%2023.2007%201.63905%2023.2007H22.3626C23.5961%2023.2007%2024.3863%2021.8837%2023.8055%2020.7941ZM12%2019.9286C11.0969%2019.9286%2010.364%2019.1957%2010.364%2018.2926C10.364%2017.3895%2011.0969%2016.6566%2012%2016.6566C12.9031%2016.6566%2013.636%2017.3895%2013.636%2018.2926C13.636%2019.1957%2012.9031%2019.9286%2012%2019.9286ZM13.636%2015.0205H10.364V8.47644H13.636V15.0205Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--warning .Vlt-callout__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%0D%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M12%2012.7223L18.2777%2019L19%2018.2777L12.7223%2012L19%205.72229L18.2777%205L12%2011.2777L5.72229%205L5%205.72229L11.2777%2012L5%2018.2777L5.72229%2019L12%2012.7223Z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--critical:before{background-color:#e84545}.Vlt-callout--critical .Vlt-callout__icon svg{fill:#e84545}.Vlt-callout--critical i{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23e84545%3B%22%20d%3D%22M8%200C3.6%200%200%203.6%200%208C0%2012.4%203.6%2016%208%2016C12.4%2016%2016%2012.4%2016%208C16%203.6%2012.4%200%208%200ZM9%2012H7V7H9V12ZM8%206C7.4%206%207%205.6%207%205C7%204.4%207.4%204%208%204C8.6%204%209%204.4%209%205C9%205.6%208.6%206%208%206Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain;transform:rotate(180deg)}.Vlt-callout--critical .Vlt-callout__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%0D%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M12%2012.7223L18.2777%2019L19%2018.2777L12.7223%2012L19%205.72229L18.2777%205L12%2011.2777L5.72229%205L5%205.72229L11.2777%2012L5%2018.2777L5.72229%2019L12%2012.7223Z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--good:before{background-color:#06ba77}.Vlt-callout--good .Vlt-callout__icon svg{fill:#06ba77}.Vlt-callout--good i{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%2306ba77%3B%22%20d%3D%22M8%200C3.6%200%200%203.6%200%208C0%2012.4%203.6%2016%208%2016C12.4%2016%2016%2012.4%2016%208C16%203.6%2012.4%200%208%200ZM7%2011.4L3.6%208L5%206.6L7%208.6L11%204.6L12.4%206L7%2011.4Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--good .Vlt-callout__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%0D%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M12%2012.7223L18.2777%2019L19%2018.2777L12.7223%2012L19%205.72229L18.2777%205L12%2011.2777L5.72229%205L5%205.72229L11.2777%2012L5%2018.2777L5.72229%2019L12%2012.7223Z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--shoutout:before{background-color:#d6219c}.Vlt-callout--shoutout .Vlt-callout__icon svg{fill:#d6219c}.Vlt-callout--shoutout i{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cg%3E%0A%09%3Cpath%20style%3D%22fill%3A%23d6219c%3B%22%20d%3D%22M17.9%2C0.2C18.3%2C0.1%2C18.6%2C0%2C19%2C0c2.9%2C0%2C5%2C3.9%2C5%2C9s-2.1%2C9-5%2C9c-0.4%2C0-0.7-0.1-1-0.2L2.7%2C13%0A%09%09c-0.8-0.3-1.6-0.8-2-1.5C0.2%2C10.7-0.1%2C9.9%2C0%2C9c-0.1-0.9%2C0.2-1.7%2C0.7-2.5C1.2%2C5.8%2C1.9%2C5.3%2C2.7%2C5L17.9%2C0.2z%20M16%2C9c0%2C4%2C1.6%2C7%2C3%2C7%0A%09%09c1.4%2C0%2C3-3%2C3-7s-1.6-7-3-7C17.6%2C2%2C16%2C5%2C16%2C9z%20M20%2C9c0-0.7-0.3-1.4-0.8-2c-0.5-0.5-1.2-0.9-1.9-1C17.1%2C7%2C17%2C8%2C17%2C9c0%2C1%2C0.1%2C2%2C0.3%2C3%0A%09%09c0.7-0.1%2C1.4-0.4%2C1.9-1C19.7%2C10.4%2C20%2C9.7%2C20%2C9z%20M11.7%2C17.9l-5.8-1.8l2.6%2C6.5c0.1%2C0.3%2C0.3%2C0.5%2C0.5%2C0.8c0.2%2C0.2%2C0.5%2C0.4%2C0.8%2C0.5%0A%09%09c0.3%2C0.1%2C0.6%2C0.2%2C0.9%2C0.2c0.3%2C0%2C0.6-0.1%2C0.9-0.2s0.5-0.3%2C0.8-0.5c0.2-0.2%2C0.4-0.5%2C0.5-0.8c0.1-0.3%2C0.2-0.6%2C0.2-0.9%0A%09%09c0-0.3-0.1-0.6-0.2-0.9L11.7%2C17.9z%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--shoutout .Vlt-callout__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%0D%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M12%2012.7223L18.2777%2019L19%2018.2777L12.7223%2012L19%205.72229L18.2777%205L12%2011.2777L5.72229%205L5%205.72229L11.2777%2012L5%2018.2777L5.72229%2019L12%2012.7223Z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--tip:before{background-color:#871fff}.Vlt-callout--tip .Vlt-callout__icon svg{fill:#871fff}.Vlt-callout--tip i{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23871fff%3B%22%20d%3D%22M8%200C3.6%200%200%203.6%200%208C0%2012.4%203.6%2016%208%2016C12.4%2016%2016%2012.4%2016%208C16%203.6%2012.4%200%208%200ZM9%2012H7V7H9V12ZM8%206C7.4%206%207%205.6%207%205C7%204.4%207.4%204%208%204C8.6%204%209%204.4%209%205C9%205.6%208.6%206%208%206Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--tip .Vlt-callout__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%0D%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M12%2012.7223L18.2777%2019L19%2018.2777L12.7223%2012L19%205.72229L18.2777%205L12%2011.2777L5.72229%205L5%205.72229L11.2777%2012L5%2018.2777L5.72229%2019L12%2012.7223Z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--banner{-ms-flex-align:start;align-items:start;border-radius:0;box-shadow:none;-ms-flex-pack:center;justify-content:center;margin:0!important;padding:16px;padding-right:54px;text-align:center}.Vlt-callout--banner i{background-size:20px 20px!important;-ms-flex:0 0 20px;flex:0 0 20px;height:20px;margin-top:5px;width:20px}.Vlt-callout--banner .Vlt-callout__icon{-ms-flex:0 0 20px;flex:0 0 20px;height:20px;margin-top:5px;width:20px}.Vlt-callout--banner .Vlt-callout__icon svg{height:20px;width:20px}.Vlt-callout--banner .Vlt-callout__link,.Vlt-callout--banner p{font-size:1.4rem;font-weight:600;line-height:2.2rem}.Vlt-callout--banner:before{display:none}.Vlt-callout--banner.Vlt-callout--critical{background-color:#e84545}.Vlt-callout--banner.Vlt-callout--critical .Vlt-callout__link,.Vlt-callout--banner.Vlt-callout--critical p{color:#fff}.Vlt-callout--banner.Vlt-callout--critical i{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M8%200C3.6%200%200%203.6%200%208C0%2012.4%203.6%2016%208%2016C12.4%2016%2016%2012.4%2016%208C16%203.6%2012.4%200%208%200ZM9%2012H7V7H9V12ZM8%206C7.4%206%207%205.6%207%205C7%204.4%207.4%204%208%204C8.6%204%209%204.4%209%205C9%205.6%208.6%206%208%206Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);transform:rotate(180deg)}.Vlt-callout--banner.Vlt-callout--critical .Vlt-callout__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%0D%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M12%2012.7223L18.2777%2019L19%2018.2777L12.7223%2012L19%205.72229L18.2777%205L12%2011.2777L5.72229%205L5%205.72229L11.2777%2012L5%2018.2777L5.72229%2019L12%2012.7223Z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-callout--banner.Vlt-callout--good{background-color:#86d8b9}.Vlt-callout--banner.Vlt-callout--good i{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M8%200C3.6%200%200%203.6%200%208C0%2012.4%203.6%2016%208%2016C12.4%2016%2016%2012.4%2016%208C16%203.6%2012.4%200%208%200ZM7%2011.4L3.6%208L5%206.6L7%208.6L11%204.6L12.4%206L7%2011.4Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-callout--banner.Vlt-callout--shoutout{background-color:#d6219c}.Vlt-callout--banner.Vlt-callout--shoutout .Vlt-callout__link,.Vlt-callout--banner.Vlt-callout--shoutout p{color:#fff}.Vlt-callout--banner.Vlt-callout--shoutout i{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cg%3E%0A%09%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M17.9%2C0.2C18.3%2C0.1%2C18.6%2C0%2C19%2C0c2.9%2C0%2C5%2C3.9%2C5%2C9s-2.1%2C9-5%2C9c-0.4%2C0-0.7-0.1-1-0.2L2.7%2C13%0A%09%09c-0.8-0.3-1.6-0.8-2-1.5C0.2%2C10.7-0.1%2C9.9%2C0%2C9c-0.1-0.9%2C0.2-1.7%2C0.7-2.5C1.2%2C5.8%2C1.9%2C5.3%2C2.7%2C5L17.9%2C0.2z%20M16%2C9c0%2C4%2C1.6%2C7%2C3%2C7%0A%09%09c1.4%2C0%2C3-3%2C3-7s-1.6-7-3-7C17.6%2C2%2C16%2C5%2C16%2C9z%20M20%2C9c0-0.7-0.3-1.4-0.8-2c-0.5-0.5-1.2-0.9-1.9-1C17.1%2C7%2C17%2C8%2C17%2C9c0%2C1%2C0.1%2C2%2C0.3%2C3%0A%09%09c0.7-0.1%2C1.4-0.4%2C1.9-1C19.7%2C10.4%2C20%2C9.7%2C20%2C9z%20M11.7%2C17.9l-5.8-1.8l2.6%2C6.5c0.1%2C0.3%2C0.3%2C0.5%2C0.5%2C0.8c0.2%2C0.2%2C0.5%2C0.4%2C0.8%2C0.5%0A%09%09c0.3%2C0.1%2C0.6%2C0.2%2C0.9%2C0.2c0.3%2C0%2C0.6-0.1%2C0.9-0.2s0.5-0.3%2C0.8-0.5c0.2-0.2%2C0.4-0.5%2C0.5-0.8c0.1-0.3%2C0.2-0.6%2C0.2-0.9%0A%09%09c0-0.3-0.1-0.6-0.2-0.9L11.7%2C17.9z%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-callout--banner.Vlt-callout--shoutout .Vlt-callout__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%0D%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M12%2012.7223L18.2777%2019L19%2018.2777L12.7223%2012L19%205.72229L18.2777%205L12%2011.2777L5.72229%205L5%205.72229L11.2777%2012L5%2018.2777L5.72229%2019L12%2012.7223Z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-callout--banner.Vlt-callout--tip{background-color:#871fff}.Vlt-callout--banner.Vlt-callout--tip .Vlt-callout__link,.Vlt-callout--banner.Vlt-callout--tip p{color:#fff}.Vlt-callout--banner.Vlt-callout--tip i{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M8%200C3.6%200%200%203.6%200%208C0%2012.4%203.6%2016%208%2016C12.4%2016%2016%2012.4%2016%208C16%203.6%2012.4%200%208%200ZM9%2012H7V7H9V12ZM8%206C7.4%206%207%205.6%207%205C7%204.4%207.4%204%208%204C8.6%204%209%204.4%209%205C9%205.6%208.6%206%208%206Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-callout--banner.Vlt-callout--tip .Vlt-callout__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%0D%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M12%2012.7223L18.2777%2019L19%2018.2777L12.7223%2012L19%205.72229L18.2777%205L12%2011.2777L5.72229%205L5%205.72229L11.2777%2012L5%2018.2777L5.72229%2019L12%2012.7223Z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-callout--banner.Vlt-callout--warning{background-color:#ffc100}.Vlt-callout--banner.Vlt-callout--warning i{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M23.8055%2020.7941L13.443%201.36628C12.8278%200.211242%2011.1722%200.211242%2010.5554%201.36628L0.194435%2020.7941C-0.386353%2021.8837%200.403847%2023.2007%201.63905%2023.2007H22.3626C23.5961%2023.2007%2024.3863%2021.8837%2023.8055%2020.7941ZM12%2019.9286C11.0969%2019.9286%2010.364%2019.1957%2010.364%2018.2926C10.364%2017.3895%2011.0969%2016.6566%2012%2016.6566C12.9031%2016.6566%2013.636%2017.3895%2013.636%2018.2926C13.636%2019.1957%2012.9031%2019.9286%2012%2019.9286ZM13.636%2015.0205H10.364V8.47644H13.636V15.0205Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-callout--banner.Vlt-callout--good .Vlt-callout__icon svg,.Vlt-callout--banner.Vlt-callout--warning .Vlt-callout__icon svg{fill:#131415}.Vlt-callout--banner.Vlt-callout--critical .Vlt-callout__icon svg,.Vlt-callout--banner.Vlt-callout--shoutout .Vlt-callout__icon svg,.Vlt-callout--banner.Vlt-callout--tip .Vlt-callout__icon svg{fill:#fff}.Vlt-callout--banner .Vlt-callout__content{-ms-flex:inherit;flex:inherit;margin:4px 0}.Vlt-callout--banner .Vlt-btn,.Vlt-callout--banner .Vlt-callout__cta{-ms-flex:none;flex:none;margin:0 0 0 16px}.Vlt-callout--banner .Vlt-callout__link{color:#131415;margin-left:4px;margin-top:4px;text-decoration:underline}.Vlt-callout--banner .Vlt-callout__dismiss{position:absolute;right:22px;top:22px}.Vlt-flash{box-shadow:inset 0 0 0 1px #c2c4cc,0 4px 10px rgba(0,0,0,.2);left:50%;margin-left:-45%;position:fixed;top:-100%;transition:top .3s;width:90%;z-index:10000000}.Vlt-flash.Vlt-flash_visible{top:20px}.Vlt-flash--bottom{bottom:-100%;top:auto;transition:bottom .3s}.Vlt-flash--bottom.Vlt-flash_visible{bottom:20px;top:auto}@media only screen and (min-width:768px){.Vlt-flash--small{margin-left:-25%;width:50%}}@media only screen and (min-width:768px){.Vlt-table .Vlt-table__row:hover .Vlt-table__cell,.Vlt-table table tbody tr:hover>td{background-color:#f3f3f5}}.Vlt-table{display:-ms-flexbox;display:flex;margin-bottom:8px;overflow-x:auto;overflow-y:hidden;position:relative;width:100%;z-index:1}.Vlt-table table tr{position:relative}.Vlt-table__cell{display:table-cell}.Vlt-table .Vlt-table__row--noline .Vlt-table__cell,.Vlt-table .Vlt-table__row--noline>td{border-bottom:0}.Vlt-table .Vlt-table__row--nohighlight:hover .Vlt-table__cell,.Vlt-table .Vlt-table__row--nohighlight:hover>td{background-color:transparent}.Vlt-table--nowrap .Vlt-table__cell,.Vlt-table--nowrap td,.Vlt-table--nowrap th{white-space:nowrap}@media only screen and (min-width:576px){.Vlt-table--fixed table{table-layout:fixed}}.Vlt-table--nohighlight .Vlt-table__row:hover .Vlt-table__cell{background-color:transparent}.Vlt-table--nohighlight table tbody tr:hover>td{background-color:transparent}.Vlt-table--bordered{border-bottom:1px solid #e1e2e6;border-left:1px solid #e1e2e6;border-radius:2px 2px 4px 4px;border-right:1px solid #e1e2e6;border-top:1px solid #e1e2e6}table tbody .Vlt-table__cell--number,table tfoot .Vlt-table__cell--number{text-align:right}table tbody .Vlt-table__cell--neg,table tfoot .Vlt-table__cell--neg{color:#e84545}table tbody .Vlt-table__cell--pos,table tfoot .Vlt-table__cell--pos{color:#06ba77}table tbody .Vlt-table__cell--avg,table tfoot .Vlt-table__cell--avg{color:#ffc100}table tbody .Vlt-table__cell--nowrap,table tfoot .Vlt-table__cell--nowrap{white-space:nowrap}.Vlt-table .Vlt-btn{margin-bottom:-4px;margin-top:-4px}.Vlt-table__pagination{padding:8px;text-align:center}.Vlt-table__pagination ul{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.Vlt-table__pagination ul li{border-radius:8px;font-size:1.2rem;margin-left:4px;min-width:24px;padding:4px;text-align:center}.Vlt-table__pagination ul li:first-child{margin-left:0}.Vlt-table__pagination ul li a,.Vlt-table__pagination ul li a:visited{color:#131415;display:block;height:100%;width:100%}.Vlt-table__pagination ul li a:hover,.Vlt-table__pagination ul li a:visited:hover{color:#9b9da3}.Vlt-table__pagination__current{background:#c2c4cc}.Vlt-table__pagination__prev{margin-right:8px}.Vlt-table__pagination__prev a,.Vlt-table__pagination__prev a:visited{color:#c2c4cc}.Vlt-table__pagination__next{margin-left:8px}.Vlt-table__pagination__next a,.Vlt-table__pagination__next a:visited{color:#c2c4cc}@media only screen and (max-width:575px){.Vlt-table--mobile-stack,.Vlt-table--mobile-stack.Vlt-table--data{background:0 0}.Vlt-table--mobile-stack table,.Vlt-table--mobile-stack.Vlt-table--data table{background:0 0;display:-ms-flexbox;display:flex;max-width:100%;min-width:100%;overflow:hidden;white-space:nowrap;width:auto}.Vlt-table--mobile-stack table thead,.Vlt-table--mobile-stack.Vlt-table--data table thead{display:-ms-flexbox;display:flex;-ms-flex-negative:0;flex-shrink:0;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content}.Vlt-table--mobile-stack table thead th,.Vlt-table--mobile-stack.Vlt-table--data table thead th{border-bottom:1px solid #e1e2e6;border-top:0;font-size:1.5rem;height:auto;min-height:3.6rem;padding:13px 16px 10px}.Vlt-table--mobile-stack table tr,.Vlt-table--mobile-stack.Vlt-table--data table tr{display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column;-ms-flex-negative:0;flex-shrink:0;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content}.Vlt-table--mobile-stack table tbody,.Vlt-table--mobile-stack.Vlt-table--data table tbody{background:linear-gradient(90deg,rgba(19,20,21,.1) 0,transparent 30%),linear-gradient(90deg,transparent 70%,rgba(19,20,21,.1) 100%) 100% 0;background-repeat:no-repeat;background-size:40px 100%,40px 100%,14px 100%,14px 100%;display:-ms-flexbox;display:flex;overflow-x:auto;overflow-y:hidden;position:relative}.Vlt-table--mobile-stack table tbody tr:first-child,.Vlt-table--mobile-stack.Vlt-table--data table tbody tr:first-child{background:linear-gradient(90deg,#fff 20px,transparent 20px)}.Vlt-table--mobile-stack table tbody tr:last-child,.Vlt-table--mobile-stack.Vlt-table--data table tbody tr:last-child{background:linear-gradient(90deg,transparent calc(100% - 20px),#fff calc(100% - 20px)) 100% 0}.Vlt-table--mobile-stack table td,.Vlt-table--mobile-stack table th,.Vlt-table--mobile-stack.Vlt-table--data table td,.Vlt-table--mobile-stack.Vlt-table--data table th{border-left:0;border-right:0;display:block;white-space:nowrap}.Vlt-table--mobile-stack table .Vlt-table__cell--number,.Vlt-table--mobile-stack.Vlt-table--data table .Vlt-table__cell--number{text-align:left}.Vlt-table--mobile-stack table tfoot,.Vlt-table--mobile-stack.Vlt-table--data table tfoot{display:none}.Vlt-table--mobile-stack.Vlt-table--data:not(.Vlt-table--data) table thead th,.Vlt-table--mobile-stack:not(.Vlt-table--data) table thead th{border-right:1px solid #e1e2e6;padding-left:0;padding-right:16px}.Vlt-table--mobile-stack.Vlt-table--data:not(.Vlt-table--data) table tbody td,.Vlt-table--mobile-stack:not(.Vlt-table--data) table tbody td{padding-left:16px;padding-right:16px}}.Vlt-table__col--sortable{cursor:pointer;padding-left:16px;position:relative}.Vlt-table__col--sortable:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%206%2010%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M2.37873%200.265338L0%202.71856L1.24253%204L3%202.1875L4.75747%204L6%202.71856L3.62127%200.265338C3.45648%200.0954422%203.23301%200%203%200C2.76699%200%202.54352%200.0954422%202.37873%200.265338V0.265338Z%22%2F%3E%0A%3Cpath%20d%3D%22M3%207.8125L1.24253%206L0%207.28144L2.37873%209.73466C2.54352%209.90456%202.76699%2010%203%2010C3.23301%2010%203.45648%209.90456%203.62127%209.73466L6%207.28144L4.75747%206L3%207.8125Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';display:inline-block;height:10px;left:5px;margin-top:-5px;opacity:.6;position:absolute;top:50%;width:6px}.Vlt-table__col--ascending,.Vlt-table__col--descending{color:#131415;font-weight:600}.Vlt-table__col--descending:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%206%2010%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M3%207.8125L1.24253%206L0%207.28144L2.37873%209.73466C2.54352%209.90456%202.76699%2010%203%2010C3.23301%2010%203.45648%209.90456%203.62127%209.73466L6%207.28144L4.75747%206L3%207.8125Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-table__col--ascending:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%206%2010%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M2.37873%200.265338L0%202.71856L1.24253%204L3%202.1875L4.75747%204L6%202.71856L3.62127%200.265338C3.45648%200.0954422%203.23301%200%203%200C2.76699%200%202.54352%200.0954422%202.37873%200.265338Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-table td:not(.Vlt-btn-group) .Vlt-btn+.Vlt-btn{margin-left:4px}.Vlt-table td.Vlt-btn-group{min-height:0}.Vlt-table[data-sortable] th:not([data-sortable=false]){cursor:pointer;padding-left:16px;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.Vlt-table[data-sortable] th:not([data-sortable=false]):before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%206%2010%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M2.37873%200.265338L0%202.71856L1.24253%204L3%202.1875L4.75747%204L6%202.71856L3.62127%200.265338C3.45648%200.0954422%203.23301%200%203%200C2.76699%200%202.54352%200.0954422%202.37873%200.265338V0.265338Z%22%2F%3E%0A%3Cpath%20d%3D%22M3%207.8125L1.24253%206L0%207.28144L2.37873%209.73466C2.54352%209.90456%202.76699%2010%203%2010C3.23301%2010%203.45648%209.90456%203.62127%209.73466L6%207.28144L4.75747%206L3%207.8125Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';display:inline-block;height:10px;left:5px;margin-top:-4px;opacity:.6;position:absolute;top:50%;width:6px}.Vlt-table[data-sortable] th[data-sorted=true]{color:#131415;font-weight:600}.Vlt-table[data-sortable] th[data-sorted-direction=descending]:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%206%2010%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M3%207.8125L1.24253%206L0%207.28144L2.37873%209.73466C2.54352%209.90456%202.76699%2010%203%2010C3.23301%2010%203.45648%209.90456%203.62127%209.73466L6%207.28144L4.75747%206L3%207.8125Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain;opacity:1}.Vlt-table[data-sortable] th[data-sorted-direction=ascending]:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%206%2010%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M2.37873%200.265338L0%202.71856L1.24253%204L3%202.1875L4.75747%204L6%202.71856L3.62127%200.265338C3.45648%200.0954422%203.23301%200%203%200C2.76699%200%202.54352%200.0954422%202.37873%200.265338Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain;opacity:1}.Vlt-table--cols .Vlt-table__cell:not(:first-child),.Vlt-table--cols td:not(:first-child),.Vlt-table--cols th:not(:first-child){border-left:1px solid rgba(19,20,21,.1)}.Vlt-table--data .Vlt-table__inner,.Vlt-table--data table{font-size:1.4rem;width:100%}.Vlt-table--data--cols .Vlt-table__cell:not(:first-child),.Vlt-table--data--cols td:not(:first-child),.Vlt-table--data--cols th:not(:first-child){border-left:1px solid rgba(19,20,21,.1)}.Vlt-table--data.Vlt-table--data--teal.Vlt-table--bordered{border-bottom:1px solid #dbf3f6;border-left:1px solid #dbf3f6;border-right:1px solid #dbf3f6}.Vlt-table--data.Vlt-table--data--orange.Vlt-table--bordered{border-bottom:1px solid #fee3dd;border-left:1px solid #fee3dd;border-right:1px solid #fee3dd}.Vlt-table table thead th,.Vlt-table__header .Vlt-table__cell{border-bottom:1px solid #131415;color:#131415;font-size:1.4rem;font-weight:600;padding:10px 16px 7px}.Vlt-table table td,.Vlt-table table th,.Vlt-table__cell,.Vlt-table__header .Vlt-table__cell{background-clip:padding-box;border-bottom:1px solid #e1e2e6;min-height:3.6rem;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;padding:13px 16px 10px;text-align:left;vertical-align:middle}.Vlt-table--data .Vlt-table__header .Vlt-table__cell,.Vlt-table--data table thead th{background-color:#f3f3f5;border-bottom:1px solid #131415;color:#131415;font-size:1.4rem;height:3.6rem;padding:10px 16px 7px}.Vlt-table--data.Vlt-table--data--dark .Vlt-table__header .Vlt-table__cell,.Vlt-table--data.Vlt-table--data--dark table thead th{background-color:#e1e2e6;border-bottom-color:#131415;color:#131415}.Vlt-table--data.Vlt-table--data--dark.Vlt-table--cols .Vlt-table__header .Vlt-table__cell:not(:first-child),.Vlt-table--data.Vlt-table--data--dark.Vlt-table--cols thead th+th,.Vlt-table--data.Vlt-table--data--dark.Vlt-table--data--cols .Vlt-table__header .Vlt-table__cell:not(:first-child),.Vlt-table--data.Vlt-table--data--dark.Vlt-table--data--cols thead th+th{border-left-color:#c2c4cc}.Vlt-table--data.Vlt-table--data--teal .Vlt-table__header .Vlt-table__cell,.Vlt-table--data.Vlt-table--data--teal table thead th{background-color:#dbf3f6;border-bottom-color:#4cc3d2;color:#405352}.Vlt-table--data.Vlt-table--data--teal.Vlt-table--cols .Vlt-table__header .Vlt-table__cell:not(:first-child),.Vlt-table--data.Vlt-table--data--teal.Vlt-table--cols thead th+th,.Vlt-table--data.Vlt-table--data--teal.Vlt-table--data--cols .Vlt-table__header .Vlt-table__cell:not(:first-child),.Vlt-table--data.Vlt-table--data--teal.Vlt-table--data--cols thead th+th{border-left-color:#94dbe4}.Vlt-table--data.Vlt-table--data--orange .Vlt-table__header .Vlt-table__cell,.Vlt-table--data.Vlt-table--data--orange table thead th{background-color:#fee3dd;border-bottom-color:#fa7454;color:#594430}.Vlt-table--data.Vlt-table--data--orange.Vlt-table--cols .Vlt-table__header .Vlt-table__cell:not(:first-child),.Vlt-table--data.Vlt-table--data--orange.Vlt-table--cols thead th+th,.Vlt-table--data.Vlt-table--data--orange.Vlt-table--data--cols .Vlt-table__header .Vlt-table__cell:not(:first-child),.Vlt-table--data.Vlt-table--data--orange.Vlt-table--data--cols thead th+th{border-left-color:#fcac98}.Vlt-table tfoot td,.Vlt-table__footer .Vlt-table__cell{border-bottom:0;font-weight:700}.Vlt-table table,.Vlt-table__inner{font-size:1.5rem;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;width:100%}.Vlt-table--tall .Vlt-table__cell,.Vlt-table--tall table td{padding-bottom:16px;padding-top:16px}.Vlt-table--short .Vlt-table__cell,.Vlt-table--short table td{padding-bottom:4px;padding-top:4px}.Vlt-list{margin-bottom:16px;padding-left:32px}.Vlt-list ol,.Vlt-list ul{margin-top:8px;padding-left:24px}.Vlt-list li{margin-bottom:.5em;position:relative}.Vlt-list--simple>li:before{color:#131415}.Vlt-list--simple>li>ol>li:before,.Vlt-list--simple>li>ul>li:before{color:#616266}.Vlt-list--simple>li>ol>li>ol>li:before,.Vlt-list--simple>li>ol>li>ul>li:before,.Vlt-list--simple>li>ul>li>ol>li:before,.Vlt-list--simple>li>ul>li>ul>li:before{color:#131415}ul.Vlt-list--simple>li:before{content:'•';left:-16px;position:absolute;top:0}ol.Vlt-list--simple{counter-reset:list}ol.Vlt-list--simple ol{counter-reset:list}ol.Vlt-list--simple>li:before{content:counter(list) ".";counter-increment:list;font-weight:600;left:-20px;position:absolute;top:0}.Vlt-list--square>li{margin-bottom:30px;padding-left:30px;position:relative}.Vlt-list--square>li:before{background:#4d7793;border-radius:2px;content:'';height:10px;left:5px;position:absolute;top:.6em;width:10px}.Vlt-list--square>li>li:before{color:inherit;content:inherit}.Vlt-list--icon{padding-left:0}.Vlt-list--icon>li{margin-bottom:16px;padding-left:30px;position:relative}.Vlt-list--icon>li:before{display:none}.Vlt-list--icon>li>svg{background:0 0;height:20px;left:0;position:absolute;top:0;width:20px}.Vlt-big-number,.Vlt-list--big-number ol>li,.Vlt-list--big-number>li{margin-top:8px;min-height:40px;padding-left:50px;padding-top:4px;position:relative}.Vlt-big-number:before,.Vlt-list--big-number ol>li:before,.Vlt-list--big-number>li:before{-ms-flex-align:center;align-items:center;background:#9b9da3;border-radius:50px;color:#fff;content:attr(data-index);display:-ms-flexbox;display:flex;font-size:1.5rem;font-weight:700;height:30px;-ms-flex-pack:center;justify-content:center;left:5px;position:absolute;top:0;width:30px}.Vlt-big-number--h3:before{top:0}.Vlt-big-number__inset{margin-left:48px}.Vlt-list--big-number{counter-reset:list}.Vlt-list--big-number ol>li,.Vlt-list--big-number>li{counter-increment:list;padding-left:24px}.Vlt-list--big-number ol>li:before,.Vlt-list--big-number>li:before{content:counter(list);left:-16px;top:0}.Vlt-bg-blue .Vlt-list--big-number ol>li:before,.Vlt-bg-blue .Vlt-list--big-number>li:before{background:#669fc4}.Vlt-list--big-number-black ol>li:before,.Vlt-list--big-number-black>li:before{background:#131415}.Vlt-list--big-number-grey ol>li:before,.Vlt-list--big-number-grey>li:before{background:#c2c4cc}.Vlt-list--big-number-white ol>li:before,.Vlt-list--big-number-white>li:before{background:#fff;color:#131415}.Vlt-list--big-number-orange ol>li:before,.Vlt-list--big-number-orange>li:before{background:#fa7454}.Vlt-list--big-number-blue ol>li:before,.Vlt-list--big-number-blue>li:before{background:#669fc4}.Vlt-list--big-number-red ol>li:before,.Vlt-list--big-number-red>li:before{background:#e84545}.Vlt-list--big-number-green ol>li:before,.Vlt-list--big-number-green>li:before{background:#06ba77}.Vlt-list--big-number-purple ol>li:before,.Vlt-list--big-number-purple>li:before{background:#b779ff}.Vlt-list--big-number-yellow ol>li:before,.Vlt-list--big-number-yellow>li:before{background:#ffc100}.Vlt-list--big-number-indigo ol>li:before,.Vlt-list--big-number-indigo>li:before{background:#d6219c}.Vlt-number{-ms-flex-align:center;align-items:center;background:#9b9da3;border-radius:50px;color:#fff;display:-ms-inline-flexbox;display:inline-flex;font-size:1.5rem;font-weight:700;height:30px;-ms-flex-pack:center;justify-content:center;margin:4px;width:30px}.Vlt-number:before{content:attr(data-index)}.Vlt-number--dialer{background:#f3f3f5;border-radius:8px;color:#131415;-ms-flex-flow:column;flex-flow:column;font-weight:400;height:36px;line-height:1;width:36px}.Vlt-number--dialer small{font-size:1rem;line-height:1rem}.Vlt-js-tabs__panel,.Vlt-tabs__panel{display:none;height:100%;left:0;position:absolute;top:0;width:100%}.Vlt-js-tabs__panel_active,.Vlt-tabs__panel_active{display:block;position:static}.Vlt-tabs__link{background:0 0;border:0;border-radius:0;color:#616266;cursor:pointer;display:inline-block;font-size:1.5rem;font-weight:400;margin:0 20px 0 0;outline:0;padding:14px 0;position:relative}.Vlt-tabs__link svg{height:20px;margin-bottom:-4px;vertical-align:baseline;width:20px}.Vlt-tabs__link svg+span{margin-left:8px}.Vlt-tabs__link:after{background:#e1e2e6;bottom:0;content:'';height:3px;left:50%;position:absolute;transition:none;width:0}@media only screen and (min-width:768px){.Vlt-tabs__link:hover:not(.Vlt-tabs__link_active){background:0 0;color:#131415}.Vlt-tabs__link:hover:not(.Vlt-tabs__link_active):after{left:0;transition:all .2s;width:100%}}.Vlt-tabs__header--bordered .Vlt-tabs__link{border-top-left-radius:8px;border-top-right-radius:8px;margin:0;padding-left:16px;padding-right:16px;transition:background .2s}.Vlt-tabs__header--bordered .Vlt-tabs__link:after{background:#e1e2e6;content:'';display:block;height:60%;left:0;position:absolute;top:20%;width:1px!important}.Vlt-tabs__header--bordered .Vlt-tabs__link:first-child:after{display:none}@media only screen and (min-width:768px){.Vlt-tabs__header--bordered .Vlt-tabs__link:hover:not(.Vlt-tabs__link_active){background:rgba(19,20,21,.05)}}.Vlt-tabs__link_active{background:0 0;color:#131415;font-weight:600}.Vlt-tabs__link_active:after{background:#131415;left:0;width:100%}@media only screen and (max-width:767px){.Vlt-tabs__link_active:after{transition:all .2s}}.Vlt-tabs__header--bordered .Vlt-tabs__link_active{border:1px solid #c2c4cc;border-bottom:0}.Vlt-tabs__header--bordered .Vlt-tabs__link_active:after{display:none}.Vlt-tabs__header--bordered .Vlt-tabs__link_active:before{background:#fff;bottom:0;content:'';height:1px;left:0;position:absolute;width:100%}.Vlt-tabs__header{border-bottom:1px solid #c2c4cc;display:-ms-flexbox;display:flex;margin:0;overflow-x:auto;white-space:nowrap}.Vlt-tabs__header--bordered{border-bottom:0;box-shadow:inset 0 -1px 0 #c2c4cc;margin-top:8px}.Vlt-tabs__header--bordered .Vlt-tabs__link{margin-top:4px}.Vlt-tabs__header--bordered .Vlt-tabs__link:first-child{margin-left:8px}.Vlt-tabs__header--shadow:not(.Vlt-tabs__header--icons){background:linear-gradient(90deg,rgba(19,20,21,.1) 0,transparent 10px),linear-gradient(90deg,transparent calc(100% - 10px),rgba(19,20,21,.1) 100%) 100% 0;background-color:#fff;background-repeat:no-repeat;background-size:20px 100%,20px 100%,14px 100%,14px 100%}.Vlt-tabs__header--shadow:not(.Vlt-tabs__header--icons) .Vlt-tabs__header__wrapper{background:linear-gradient(90deg,#fff 20px,transparent 20px),linear-gradient(90deg,transparent calc(100% - 20px),#fff calc(100% - 20px)) 100% 0;display:-ms-flexbox;display:flex;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;width:100%}.Vlt-tabs__header--spaced{display:-ms-flexbox;display:flex;-ms-flex-pack:space-evenly;justify-content:space-evenly}.Vlt-tabs__header--bordered .Vlt-tabs__link_active+.Vlt-tabs__link:after{display:none}.Vlt-tabs__header--bordered .Vlt-tabs__link_disabled:hover{background:0 0!important}.Vlt-tabs__header--icons{-ms-flex-flow:row wrap;flex-flow:row wrap;overflow-x:visible;white-space:normal}.Vlt-tabs__header--icons .Vlt-tabs__link{display:inline-block}.Vlt-tabs__header--icons .Vlt-tabs__link_disabled{pointer-events:inherit}.Vlt-tabs__header--icons .Vlt-tabs__link .Vlt-tooltip--js[x-placement^=bottom]{margin-top:15px}.Vlt-tabs__header--icons:not(.Vlt-tabs__header--bordered) .Vlt-tabs__link{padding:8px 4px}.Vlt-tabs__link svg{fill:#131415}.Vlt-tabs__link:focus{background:0 0}.Vlt-tabs__link_disabled{background:0 0;color:#c2c4cc;cursor:default;pointer-events:none}.Vlt-tabs__link_disabled:after{display:none}.Vlt-tabs__content{margin-top:16px;position:relative}.Vlt-tabs__content--flush{margin-top:0}.Vlt-js-tabs__link{cursor:pointer}.Vlt-tooltip{display:-ms-inline-flexbox;display:inline-flex;position:relative}span.Vlt-tooltip{margin-left:4px;vertical-align:bottom}.Vlt-tooltip--js{z-index:600}.Vlt-tooltip--js[x-placement^=bottom] .Vlt-tooltip__arrow,.Vlt-tooltip--js[x-placement^=left] .Vlt-tooltip__arrow,.Vlt-tooltip--js[x-placement^=right] .Vlt-tooltip__arrow,.Vlt-tooltip--js[x-placement^=top] .Vlt-tooltip__arrow,.tooltip-arrow{border-style:solid;position:absolute}.Vlt-tooltip--js[x-placement^=bottom] .Vlt-tooltip__arrow,.arrow-bottom-mixin{border-color:transparent transparent #131415;border-width:0 6px 6px;top:3px}.Vlt-tooltip--js[x-placement^=top] .Vlt-tooltip__arrow,.arrow-top-mixin{border-color:#131415 transparent transparent;border-width:6px 6px 0;bottom:3px}.Vlt-tooltip--js[x-placement^=right] .Vlt-tooltip__arrow,.arrow-right-mixin{border-color:transparent #131415 transparent transparent;border-width:6px 6px 6px 0;left:3px}.Vlt-tooltip--js[x-placement^=left] .Vlt-tooltip__arrow,.arrow-left-mixin{border-color:transparent transparent transparent #131415;border-width:6px 0 6px 6px;right:3px}.Vlt-tooltip--js[x-placement^=bottom] .Vlt-tooltip__content,.tooltip-bottom-mixin{margin-top:9px;text-align:center}.Vlt-tooltip--js[x-placement^=top] .Vlt-tooltip__content,.tooltip-top-mixin{margin-bottom:9px;text-align:center}.Vlt-tooltip--js[x-placement^=right] .Vlt-tooltip__content,.tooltip-right-mixin{margin-left:9px;text-align:left}.Vlt-tooltip--js[x-placement^=left] .Vlt-tooltip__content,.tooltip-left-mixin{margin-right:9px;text-align:left}.Vlt-tooltip__content{background:#131415;border-radius:6px;color:#fff;cursor:default;font-size:1.4rem;font-weight:600;line-height:2.1rem;max-width:300px;padding:6px 12px;transition:display .2s;white-space:normal;width:-webkit-max-content;width:-moz-max-content;width:max-content;z-index:600}.Vlt-sidenav{background:#f3f3f5;display:-ms-flexbox;display:flex;-ms-flex:0 0 270px;flex:0 0 270px;-ms-flex-flow:column;flex-flow:column;font-weight:600;height:100vh;padding-bottom:10px;width:270px}@media only screen and (max-width:575px){.Vlt-sidenav{height:100vh;left:0;padding-top:5px;position:fixed;top:0;transform:translate(-100vw,0);transition:transform .2s;width:80vw;z-index:800}.Vlt-sidenav_visible{box-shadow:4px 0 12px rgba(19,20,21,.15),20vw 0 0 rgba(19,20,21,.15);transform:translate(0,0)}}.Vlt-sidenav--animate{transition:width .2s,flex-basis .2s;transition:width .2s,flex-basis .2s,-ms-flex-preferred-size .2s}.Vlt-sidenav__mobile-trigger{display:none}@media only screen and (max-width:575px){.Vlt-sidenav__mobile-trigger{display:block}}.Vlt-sidenav__block{-ms-flex-negative:0;flex-shrink:0;padding:10px 12px;position:relative}.Vlt-sidenav__block:after,.Vlt-sidenav__block:before{content:'';display:none;-ms-flex:0 0 100%;flex:0 0 100%;height:1px;left:20px;margin:0 auto;position:absolute;top:0;width:calc(100% - 40px)}.Vlt-sidenav__block:after{bottom:0;top:auto}.Vlt-sidenav__block img,.Vlt-sidenav__block svg{max-width:100%}.Vlt-sidenav__block--logo{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-bottom:5px;padding-bottom:15px;padding-top:15px}.Vlt-sidenav__block--logo:after{display:block;margin-top:15px}.Vlt-sidenav__block--logo .Vlt-sidenav__logo{-ms-flex:1;flex:1;margin-left:4px}.Vlt-sidenav__block--logo .Vlt-sidenav__logo svg{width:100%}.Vlt-sidenav__block--link{padding:0}.Vlt-sidenav__block--border-top:before{display:block}.Vlt-sidenav__block--border-bottom:after{display:block}.Vlt-sidenav__scroll{background-image:linear-gradient(to bottom,rgba(19,20,21,.1) 0,transparent 5px,transparent calc(100% - 5px),rgba(19,20,21,.1) calc(100% - 1px)),linear-gradient(to bottom,transparent calc(100% - 1px),rgba(255,255,255,.1) calc(100% - 1px),rgba(255,255,255,.1) 100%);background-position:20px 0;background-repeat:no-repeat;background-size:calc(100% - 40px) 100%,calc(100% - 40px) 100%,14px 100%,14px 100%;-ms-flex:auto;flex:auto;height:100%;overflow-y:auto;position:static}@media only screen and (max-width:575px){.Vlt-sidenav__scroll{-webkit-overflow-scrolling:touch;overflow-y:scroll}}.Vlt-sidenav .Vlt-sidemenu{list-style:none;margin:0;min-height:100%;padding:0 12px 10px}.Vlt-sidenav .Vlt-sidemenu ul{list-style:none;margin:0;padding:0}.Vlt-sidenav .Vlt-sidemenu .Vlt-sidemenu__title{margin-bottom:0;margin-left:0}.Vlt-sidenav .Vlt-sidemenu li{margin:0;padding:0;padding-top:3px}.Vlt-sidenav .Vlt-sidemenu li .Vlt-sidemenu__link,.Vlt-sidenav .Vlt-sidemenu li .Vlt-sidemenu__trigger{font-size:1.4rem;padding-left:10px;padding-right:35px}.Vlt-sidenav .Vlt-sidemenu li .Vlt-sidemenu__link+.Vlt-sidemenu__tooltip,.Vlt-sidenav .Vlt-sidemenu li .Vlt-sidemenu__trigger+.Vlt-sidemenu__tooltip{display:none}.Vlt-sidenav .Vlt-sidemenu li li:first-child{padding-top:0}.Vlt-sidenav .Vlt-sidemenu li li .Vlt-sidemenu__link,.Vlt-sidenav .Vlt-sidemenu li li .Vlt-sidemenu__trigger{margin-left:9px;padding-left:12px}.Vlt-sidenav .Vlt-sidemenu li li .Vlt-sidemenu__link svg,.Vlt-sidenav .Vlt-sidemenu li li .Vlt-sidemenu__trigger svg{display:none}.Vlt-sidenav .Vlt-sidemenu li li .Vlt-sidemenu__title{margin-left:11px}.Vlt-sidenav .Vlt-sidemenu__trigger+ul{border-left:1px solid #e1e2e6}.Vlt-sidenav .Vlt-sidemenu__trigger span:last-of-type:not(.Vlt-badge):after{background-image:url(data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.38326%207.96544C3.58628%207.68629%203.97717%207.62457%204.25632%207.82759L9.99983%2012.0047L15.7433%207.82759C16.0225%207.62457%2016.4134%207.68629%2016.6164%207.96544C16.8194%208.2446%2016.7577%208.63549%2016.4785%208.83851L10.3674%2013.283C10.1483%2013.4423%209.85138%2013.4423%209.63222%2013.283L3.52111%208.83851C3.24195%208.63549%203.18023%208.2446%203.38326%207.96544Z%22%20fill%3D%22%239b9da3%22%2F%3E%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';display:inline-block;height:20px;position:absolute;right:10px;top:8px;transition:transform .2s;width:16px}.Vlt-sidenav .Vlt-sidemenu__trigger_active span:last-of-type:not(.Vlt-badge):after{transform:rotate(180deg)}.Vlt-sidenav .Vlt-sidemenu__trigger_current:not(.Vlt-sidemenu__trigger_active){background:#e1e2e6}.Vlt-sidenav .Vlt-sidemenu__trigger__title{color:#616266;font-weight:400}.Vlt-sidenav .Vlt-sidemenu__trigger__title--border{border-top:1px solid #e1e2e6}.Vlt-sidenav .Vlt-sidemenu__link,.Vlt-sidenav .Vlt-sidemenu__trigger{-ms-flex-align:start;align-items:flex-start;border-radius:5px;color:#131415;cursor:pointer;display:-ms-flexbox;display:flex;-ms-flex-pack:left;justify-content:left;line-height:1.5;margin:0;padding:8px 10px;text-decoration:none;transition:background .2s}.Vlt-sidenav .Vlt-sidemenu__link:hover,.Vlt-sidenav .Vlt-sidemenu__trigger:hover{background:#e1e2e6;text-decoration:none}.Vlt-sidenav .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active),.Vlt-sidenav .Vlt-sidemenu__trigger_active:not(.Vlt-sidemenu__trigger_active){background:#fff;color:#131415;font-weight:600}.Vlt-sidenav .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg,.Vlt-sidenav .Vlt-sidemenu__trigger_active:not(.Vlt-sidemenu__trigger_active) svg{fill:#131415}.Vlt-sidenav .Vlt-sidemenu__link--disabled,.Vlt-sidenav .Vlt-sidemenu__trigger--disabled{cursor:default;pointer-events:none}.Vlt-sidenav .Vlt-sidemenu__link svg,.Vlt-sidenav .Vlt-sidemenu__trigger svg{fill:#131415;-ms-flex:0 0 17px;flex:0 0 17px;height:21px;margin-right:12px;vertical-align:middle;width:17px}.Vlt-sidenav .Vlt-sidemenu__link--disabled,.Vlt-sidenav .Vlt-sidemenu__trigger--disabled{color:#c2c4cc}.Vlt-sidenav .Vlt-sidemenu__link--disabled svg,.Vlt-sidenav .Vlt-sidemenu__trigger--disabled svg{fill:#c2c4cc}.Vlt-sidenav .Vlt-sidemenu__link .Vlt-badge,.Vlt-sidenav .Vlt-sidemenu__trigger .Vlt-badge{margin-left:8px;margin-top:1px;position:relative;z-index:2}.Vlt-sidenav .Vlt-sidemenu__link .Vlt-sidemenu__label .Vlt-badge,.Vlt-sidenav .Vlt-sidemenu__trigger .Vlt-sidemenu__label .Vlt-badge{margin-bottom:2px;margin-top:0}.Vlt-sidenav .Vlt-sidemenu__title{font-size:1.2rem;font-weight:400;margin:0;padding:8px 10px;text-transform:uppercase}.Vlt-sidenav .Vlt-sidemenu__title--border{margin-top:8px;padding-bottom:4px;padding-top:10px}.Vlt-sidenav .Vlt-sidemenu__trigger{position:relative}.Vlt-sidenav .Vlt-sidemenu__trigger:not(.Vlt-sidemenu__trigger_active)+ul{margin:0;opacity:0;padding:0;transition:opacity .1s,padding .2s,margin .2s}.Vlt-sidenav .Vlt-sidemenu__trigger:not(.Vlt-sidemenu__trigger_active)+ul *{border:0;font-size:0!important;line-height:0;margin-bottom:0!important;margin-top:0!important;opacity:0;padding-bottom:0!important;padding-top:0!important;transition:all .1s}.Vlt-sidenav .Vlt-sidemenu__trigger:not(.Vlt-sidemenu__trigger_active)+ul * .Vlt-badge,.Vlt-sidenav .Vlt-sidemenu__trigger:not(.Vlt-sidemenu__trigger_active)+ul * svg{height:0;transition:height .1s}.Vlt-sidenav .Vlt-sidemenu__trigger_active+ul{margin:2px 0 2px 18px;margin-bottom:0;margin-left:18px;margin-top:2px;transition:font-size .2s,margin .2s,opacity .2s,padding .2s}.Vlt-sidenav .Vlt-sidemenu__trigger_active+ul>*{opacity:1;transition:all .2s}.Vlt-sidenav .Vlt-sidemenu__trigger .Vlt-sidemenu__label{max-width:100%}.Vlt-sidenav .Vlt-sidemenu__list--compressed .Vlt-sidemenu__link,.Vlt-sidenav .Vlt-sidemenu__list--compressed .Vlt-sidemenu__trigger{padding:4px 10px}.Vlt-sidenav .Vlt-sidemenu__list--compressed .Vlt-sidemenu__trigger{margin-bottom:4px}.Vlt-sidenav__mobile{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;left:0;padding:10px;position:fixed;top:0;width:100%}@media only screen and (min-width:576px){.Vlt-sidenav__mobile{display:none}}.Vlt-sidenav__mobile__logo{height:34px}.Vlt-sidenav__mobile button{-ms-flex:0 0 40px;flex:0 0 40px;height:40px}.Vlt-sidenav__mobile button svg{height:24px;width:24px}.Vlt-template--header .Vlt-sidenav__mobile{padding-bottom:5px;padding-top:5px}.Vlt-sidenav hr{border-top:1px solid #e1e2e6}.Vlt-sidenav .Vlt-sidenav__link:hover{background:#e1e2e6}.Vlt-sidenav .Vlt-sidenav__scroll .Vlt-sidemenu{background:#f3f3f5}.Vlt-sidenav .Vlt-sidetabs--bottom{border-top:1px solid #e1e2e6}.Vlt-sidenav .Vlt-sidetabs--top{border-bottom:1px solid #e1e2e6}.Vlt-sidenav .Vlt-sidetabs .Vlt-js-tabs__link svg{fill:#9b9da3!important}.Vlt-sidenav .Vlt-sidetabs .Vlt-js-tabs__link:hover:after{background:#f3f3f5}.Vlt-sidenav .Vlt-sidetabs .Vlt-js-tabs__link:hover svg{fill:#616266!important}.Vlt-sidenav .Vlt-sidetabs .Vlt-js-tabs__link:active:after,.Vlt-sidenav .Vlt-sidetabs .Vlt-js-tabs__link_active:after{background:#131415}.Vlt-sidenav .Vlt-sidetabs .Vlt-js-tabs__link:active svg,.Vlt-sidenav .Vlt-sidetabs .Vlt-js-tabs__link_active svg{fill:#616266!important}.Vlt-sidenav .Vlt-sidenav__block:after,.Vlt-sidenav .Vlt-sidenav__block:before{background:#e1e2e6}.Vlt-sidenav .Vlt-sidenav__block--logo .Vlt-sidenav__collapse svg{fill:#9b9da3}@media only screen and (min-width:576px){.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__title{border-bottom:1px solid #e1e2e6}}.Vlt-sidenav.Vlt-sidenav--active-blue .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active),.Vlt-sidenav.Vlt-sidenav--active-green .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active),.Vlt-sidenav.Vlt-sidenav--active-indigo .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active),.Vlt-sidenav.Vlt-sidenav--active-orange .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active),.Vlt-sidenav.Vlt-sidenav--active-purple .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active),.Vlt-sidenav.Vlt-sidenav--active-purple-dark .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active),.Vlt-sidenav.Vlt-sidenav--active-red .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active),.Vlt-sidenav.Vlt-sidenav--active-yellow .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){color:#fff}.Vlt-sidenav.Vlt-sidenav--active-blue .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg,.Vlt-sidenav.Vlt-sidenav--active-green .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg,.Vlt-sidenav.Vlt-sidenav--active-indigo .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg,.Vlt-sidenav.Vlt-sidenav--active-orange .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg,.Vlt-sidenav.Vlt-sidenav--active-purple .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg,.Vlt-sidenav.Vlt-sidenav--active-purple-dark .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg,.Vlt-sidenav.Vlt-sidenav--active-red .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg,.Vlt-sidenav.Vlt-sidenav--active-yellow .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg{fill:#fff}.Vlt-sidenav.Vlt-sidenav--active-white .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){background:#fff}.Vlt-sidenav.Vlt-sidenav--active-grey .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){background:#e1e2e6}.Vlt-sidenav.Vlt-sidenav--active-blue .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){background:#669fc4}.Vlt-sidenav.Vlt-sidenav--active-green .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){background:#06ba77}.Vlt-sidenav.Vlt-sidenav--active-indigo .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){background:#d6219c}.Vlt-sidenav.Vlt-sidenav--active-orange .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){background:#fa7454}.Vlt-sidenav.Vlt-sidenav--active-purple .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){background:#b779ff}.Vlt-sidenav.Vlt-sidenav--active-purple-dark .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){background:#871fff}.Vlt-sidenav.Vlt-sidenav--active-red .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){background:#e84545}.Vlt-sidenav.Vlt-sidenav--active-yellow .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){background:#ffc100}@media only screen and (max-width:575px){body.Vlt-body--has-sidenav{padding-top:60px}body.Vlt-body--mobile-menu-open{overflow:hidden}}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs{margin-left:20px;margin-right:20px}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs ul{display:-ms-flexbox;display:flex;-ms-flex-negative:0;flex-shrink:0}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs ul li{-ms-flex:1;flex:1}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs__label{display:none}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs__trigger{display:none}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs .Vlt-js-tabs__link{-ms-flex-align:center;align-items:center;font-size:1.3rem;font-weight:400;height:45px;-ms-flex-pack:center;justify-content:center;position:relative;width:100%}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs .Vlt-js-tabs__link:after{content:'';height:3px;left:50%;position:absolute;transition:none;width:0}@media only screen and (min-width:768px){.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs .Vlt-js-tabs__link:hover:after{left:0;transition:all .2s;width:100%}}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs .Vlt-js-tabs__link:active:after,.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs .Vlt-js-tabs__link_active:after{left:0;width:100%}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs--bottom{padding-bottom:5px}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs--bottom .Vlt-sidetabs__link:after{top:0}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs--top{padding-top:5px}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs--top .Vlt-sidetabs__link:after{bottom:0}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs svg{height:24px;transition:fill .2s;width:24px}.Vlt-sidenav__elem--collapsed{display:none}.Vlt-sidenav__elem--full{display:inherit}.Vlt-sidenav__block--logo .Vlt-sidenav__collapse{cursor:pointer;-ms-flex:0 0 24px;flex:0 0 24px;height:24px;margin-left:20px;text-align:center;transition:opacity .2s}.Vlt-sidenav__block--logo .Vlt-sidenav__collapse:hover{opacity:.5}.Vlt-sidenav__block--logo .Vlt-sidenav__collapse svg{height:24px;width:16px}@media only screen and (min-width:576px){.Vlt-sidenav--collapsed .Vlt-sidenav__block--logo .Vlt-sidenav__collapse{margin-bottom:10px;margin-left:0}}@media only screen and (min-width:576px){.Vlt-sidenav--collapsed .Vlt-sidenav__block--logo .Vlt-sidenav__collapse__close{display:none}}.Vlt-sidenav__block--logo .Vlt-sidenav__collapse__open{display:none;-ms-flex-order:1;order:1}@media only screen and (min-width:576px){.Vlt-sidenav--collapsed .Vlt-sidenav__block--logo .Vlt-sidenav__collapse__open{display:block}}@media only screen and (min-width:576px){.Vlt-sidenav.Vlt-sidenav--collapsed{-ms-flex:0 0 68px;flex:0 0 68px;overflow:visible;position:relative;width:68px;z-index:650}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__elem--collapsed{display:inherit}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__elem--full{display:none}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block{left:0;padding:10px 0;text-align:center;width:100%}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block:after,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block:before{left:14px;width:40px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block+.Vlt-sidenav__block{margin-top:0}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block--link{margin:5px 0 0;padding:5px 0 0}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block--link .Vlt-sidenav__link{border-radius:4px;display:block;margin:0 10px;padding:8px 10px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block--logo{-ms-flex-flow:column;flex-flow:column;padding:10px 10px 15px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block--logo .Vlt-sidenav__collapse{-ms-flex-order:1;order:1}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block--logo .Vlt-sidenav__logo{-ms-flex:0 0 24px;flex:0 0 24px;margin:0;-ms-flex-order:2;order:2}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block--logo .Vlt-sidenav__logo img,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block--logo .Vlt-sidenav__logo svg{height:24px;width:27px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu.Vlt-sidemenu--rounded{padding:10px 0}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu li li[role=separator]{display:none}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__link,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__trigger{-ms-flex-align:center;align-items:center;border-radius:4px;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-flow:column;flex-flow:column;opacity:1;padding:8px 10px;position:static}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__link .Vlt-badge,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__trigger .Vlt-badge{margin-left:14px;margin-top:-4px;position:absolute}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__link svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__trigger svg{height:22px;margin:0;opacity:.8;width:22px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__link--disabled,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__trigger--disabled{cursor:default;pointer-events:none}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__link:hover .Vlt-sidemenu__label,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__trigger:hover .Vlt-sidemenu__label{display:block}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__link_active svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__trigger_active svg{opacity:1}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__link .Vlt-sidemenu__label,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__trigger .Vlt-sidemenu__label{background:#131415;border-radius:6px;color:#fff;cursor:default;font-size:1.4rem;font-weight:600;line-height:2.1rem;max-width:300px;padding:6px 12px;transition:display .2s;white-space:normal;width:-webkit-max-content;width:-moz-max-content;width:max-content;z-index:600;display:none;font-weight:400;left:100%;margin-left:10px;margin-top:-12px;position:absolute;text-align:left;white-space:nowrap;width:auto}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__link .Vlt-sidemenu__label:before,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__trigger .Vlt-sidemenu__label:before{border-color:transparent #131415 transparent transparent;border-style:solid;border-width:6px 6px 6px 0;content:'';left:-5px;margin-top:-5px;position:absolute;top:50%}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul{border-radius:6px;left:72px;margin-top:-36px;position:absolute;width:240px;z-index:650}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__title{margin-left:0}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger{border-radius:0;-ms-flex-pack:start;justify-content:flex-start;margin-left:0;padding-left:20px;padding-right:20px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link:after,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link:before,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger:after,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger:before{content:none}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link span,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger span,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger svg{transform:none!important}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul ul{left:244px;margin-top:-40px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul li{margin-left:0!important;padding-top:0}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul li:last-child>.Vlt-sidemenu__link,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul li:last-child>.Vlt-sidemenu__trigger{margin-bottom:0}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger_active+ul{box-shadow:0 2px 4px 0 rgba(19,20,21,.15);margin-left:0;overflow:visible}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger span:after{content:none!important}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__title{border-top:0;height:1px;margin:0 auto;overflow:hidden;padding:0;text-indent:-9999px;width:40px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidetabs{padding:10px 10px 0}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidetabs ul{display:block;margin-bottom:10px;max-height:0;overflow:hidden;top:auto!important}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidetabs__label{display:block;-ms-flex:1;flex:1}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidetabs .Vlt-js-tabs__link{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:0;outline:0;text-align:left;width:100%}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidetabs .Vlt-sidemenu__trigger{border-radius:4px;display:block;margin:0 0 10px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidetabs .Vlt-tooltip--js{display:none}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidetabs--bottom ul{bottom:0}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul{background:#fff;padding:5px 0 8px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger{color:#616266}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link svg[class*=Vlt-],.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger svg[class*=Vlt-]{fill:#616266!important}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link:hover,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link_active,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger:hover,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger_active{background:#f3f3f5;color:#131415}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link:hover svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link:hover svg[class*=Vlt-],.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link_active svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link_active svg[class*=Vlt-],.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger:hover svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger:hover svg[class*=Vlt-],.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger_active svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger_active svg[class*=Vlt-]{fill:#131415!important}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link--disabled,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger--disabled{color:#c2c4cc}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link--disabled svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link--disabled svg[class*=Vlt-],.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger--disabled svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger--disabled svg[class*=Vlt-]{fill:#c2c4cc!important}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__title{border-bottom:1px solid #e1e2e6;margin:5px 0}}.Vlt-sidenav .Vlt-sidemenu.Vlt-sidemenu--rounded{padding:10px}.Vlt-sidenav .Vlt-sidemenu.Vlt-sidemenu--rounded .Vlt-sidemenu__title{margin-left:0;padding-left:10px}.Vlt-sidenav .Vlt-sidemenu.Vlt-sidemenu--rounded li .Vlt-sidemenu__link,.Vlt-sidenav .Vlt-sidemenu.Vlt-sidemenu--rounded li .Vlt-sidemenu__trigger{padding-left:10px;padding-right:10px}.Vlt-sidenav .Vlt-sidemenu.Vlt-sidemenu--rounded li li{margin-left:28px}.Vlt-sidenav .Vlt-sidemenu.Vlt-sidemenu--rounded li li .Vlt-sidemenu__link,.Vlt-sidenav .Vlt-sidemenu.Vlt-sidemenu--rounded li li .Vlt-sidemenu__trigger{padding-left:10px}.Vlt-sidenav .Vlt-sidemenu.Vlt-sidemenu--rounded .Vlt-sidemenu__link,.Vlt-sidenav .Vlt-sidemenu.Vlt-sidemenu--rounded .Vlt-sidemenu__trigger{border-radius:4px;margin-bottom:5px}.Vlt-sidenav .Vlt-sidemenu.Vlt-sidemenu--rounded .Vlt-sidemenu__list--compressed .Vlt-sidemenu__link,.Vlt-sidenav .Vlt-sidemenu.Vlt-sidemenu--rounded .Vlt-sidemenu__list--compressed .Vlt-sidemenu__trigger{margin-bottom:0;padding:6px 10px}.Vlt-sidenav__mobile--aqua{background:#0070a1}.Vlt-sidenav__mobile--aqua button svg{fill:#fff}.Vlt-sidenav--aqua{background:linear-gradient(to bottom,#035879,#0085a8)}.Vlt-sidenav--aqua hr{border-top:1px solid rgba(255,255,255,.1)}.Vlt-sidenav--aqua .Vlt-sidenav__link:hover{background:rgba(255,255,255,.05)}.Vlt-sidenav--aqua .Vlt-sidenav__scroll .Vlt-sidemenu{background:linear-gradient(to bottom,#035c7e 10px,transparent 10px),linear-gradient(0deg,transparent calc(100% - 10px),#0085a8 calc(100% - 10px),#0085a8 100%)}.Vlt-sidenav--aqua .Vlt-sidemenu__link,.Vlt-sidenav--aqua .Vlt-sidemenu__trigger{color:#fff}.Vlt-sidenav--aqua .Vlt-sidemenu__link:hover,.Vlt-sidenav--aqua .Vlt-sidemenu__trigger:hover{background:rgba(255,255,255,.05)}.Vlt-sidenav--aqua .Vlt-sidemenu__link svg,.Vlt-sidenav--aqua .Vlt-sidemenu__trigger svg{fill:#00fff4}.Vlt-sidenav--aqua .Vlt-sidemenu__link_active{background:rgba(255,255,255,.1)}.Vlt-sidenav--aqua .Vlt-sidemenu__link_active svg{fill:#fff!important}.Vlt-sidenav--aqua .Vlt-sidemenu__link_active:hover{background:#0070a1}.Vlt-sidenav--aqua .Vlt-sidemenu__trigger:after{background-image:url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23FFF%22%20fill-rule%3D%22evenodd%22%20d%3D%22M10%2013.524L4.692%208.136a.667.667%200%201%201%20.951-.937L10%2011.62l4.357-4.422a.668.668%200%200%201%20.95.937L10%2013.524z%22%20opacity%3D%22.4%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-sidenav--aqua .Vlt-sidemenu__trigger_current:not(.Vlt-sidemenu__trigger_active){background:rgba(255,255,255,.05)}.Vlt-sidenav--aqua .Vlt-sidemenu__title{color:rgba(208,231,241,.8)}.Vlt-sidenav--aqua .Vlt-sidemenu__title--border{border-top:1px solid rgba(156,205,226,.2)}.Vlt-sidenav--aqua .Vlt-sidetabs--bottom{border-top:1px solid rgba(255,255,255,.1)}.Vlt-sidenav--aqua .Vlt-sidetabs--top{border-bottom:1px solid rgba(255,255,255,.1)}.Vlt-sidenav--aqua .Vlt-sidetabs .Vlt-js-tabs__link svg{fill:rgba(0,255,244,.8)!important}.Vlt-sidenav--aqua .Vlt-sidetabs .Vlt-js-tabs__link:hover:after{background:rgba(0,255,244,.4)}.Vlt-sidenav--aqua .Vlt-sidetabs .Vlt-js-tabs__link:hover svg{fill:#fff!important}.Vlt-sidenav--aqua .Vlt-sidetabs .Vlt-js-tabs__link:active:after,.Vlt-sidenav--aqua .Vlt-sidetabs .Vlt-js-tabs__link_active:after{background:rgba(0,255,244,.8)}.Vlt-sidenav--aqua .Vlt-sidetabs .Vlt-js-tabs__link:active svg,.Vlt-sidenav--aqua .Vlt-sidetabs .Vlt-js-tabs__link_active svg{fill:#fff!important}.Vlt-sidenav--aqua .Vlt-sidenav__block:after,.Vlt-sidenav--aqua .Vlt-sidenav__block:before{background:rgba(255,255,255,.1)}.Vlt-sidenav--aqua .Vlt-sidenav__block--logo:after{display:block}.Vlt-sidenav--aqua .Vlt-sidenav__block--logo .Vlt-sidenav__collapse svg{fill:#00fff4}@media only screen and (min-width:576px){.Vlt-sidenav--aqua.Vlt-sidenav--collapsed .Vlt-sidemenu__title{border-bottom:1px solid rgba(255,255,255,.1)}.Vlt-sidenav--aqua.Vlt-sidenav--collapsed li li .Vlt-sidemenu__link_active svg{fill:#9b9da3!important}.Vlt-sidenav--aqua.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger_active{background:#0070a1}}.Vlt-sidenav__mobile--light{background:#fff;box-shadow:1px 0 8px rgba(19,20,21,.2)}.Vlt-sidenav__mobile--light button svg{fill:#9b9da3}.Vlt-template--header .Vlt-sidenav__mobile--light{background:#fff;border-bottom:1px solid #e1e2e6;box-shadow:none}.Vlt-sidenav--light{background:#fff}.Vlt-sidenav--light hr{border-top:1px solid #e1e2e6}.Vlt-sidenav--light .Vlt-sidenav__link:hover{background:#e1e2e6}.Vlt-sidenav--light .Vlt-sidenav__scroll{background-image:#fff}.Vlt-sidenav--light .Vlt-sidenav__scroll .Vlt-sidemenu{background:#fff}.Vlt-sidenav--light .Vlt-sidemenu__link,.Vlt-sidenav--light .Vlt-sidemenu__trigger{color:#131415}.Vlt-sidenav--light .Vlt-sidemenu__link:hover,.Vlt-sidenav--light .Vlt-sidemenu__trigger:hover{background:#e1e2e6}.Vlt-sidenav--light .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active),.Vlt-sidenav--light .Vlt-sidemenu__trigger_active:not(.Vlt-sidemenu__trigger_active){background:#131415;color:#fff;font-weight:600}.Vlt-sidenav--light .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg,.Vlt-sidenav--light .Vlt-sidemenu__trigger_active:not(.Vlt-sidemenu__trigger_active) svg{fill:#fff}.Vlt-sidenav--light .Vlt-sidemenu__link svg,.Vlt-sidenav--light .Vlt-sidemenu__trigger svg{fill:#131415}.Vlt-sidenav--light .Vlt-sidemenu__link--disabled,.Vlt-sidenav--light .Vlt-sidemenu__trigger--disabled{color:#c2c4cc}.Vlt-sidenav--light .Vlt-sidemenu__link--disabled svg,.Vlt-sidenav--light .Vlt-sidemenu__trigger--disabled svg{fill:#c2c4cc}.Vlt-sidenav--light .Vlt-sidemenu__trigger+ul{border-left:1px solid #e1e2e6}.Vlt-sidenav--light .Vlt-sidemenu__trigger span:last-of-type:not(.Vlt-badge):after{background-image:url(data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.38326%207.96544C3.58628%207.68629%203.97717%207.62457%204.25632%207.82759L9.99983%2012.0047L15.7433%207.82759C16.0225%207.62457%2016.4134%207.68629%2016.6164%207.96544C16.8194%208.2446%2016.7577%208.63549%2016.4785%208.83851L10.3674%2013.283C10.1483%2013.4423%209.85138%2013.4423%209.63222%2013.283L3.52111%208.83851C3.24195%208.63549%203.18023%208.2446%203.38326%207.96544Z%22%20fill%3D%22%239b9da3%22%2F%3E%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-sidenav--light .Vlt-sidemenu__trigger_current:not(.Vlt-sidemenu__trigger_active){background:#e1e2e6}.Vlt-sidenav--light .Vlt-sidemenu__title{color:#616266;font-weight:400}.Vlt-sidenav--light .Vlt-sidemenu__title--border{border-top:1px solid #e1e2e6}.Vlt-sidenav--light .Vlt-sidetabs--bottom{border-top:1px solid #e1e2e6}.Vlt-sidenav--light .Vlt-sidetabs--top{border-bottom:1px solid #e1e2e6}.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link svg{fill:#9b9da3!important}.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link:hover:after{background:#f3f3f5}.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link:hover svg{fill:#616266!important}.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link:active:after,.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link_active:after{background:#131415}.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link:active svg,.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link_active svg{fill:#616266!important}.Vlt-sidenav--light .Vlt-sidenav__block:after,.Vlt-sidenav--light .Vlt-sidenav__block:before{background:#e1e2e6}.Vlt-sidenav--light .Vlt-sidenav__block--logo .Vlt-sidenav__collapse svg{fill:#9b9da3}@media only screen and (min-width:576px){.Vlt-sidenav--light.Vlt-sidenav--collapsed .Vlt-sidemenu__title{border-bottom:1px solid #e1e2e6}}.Vlt-sidenav__mobile--dark{background:#131415}.Vlt-sidenav__mobile--dark button svg{fill:#fff}.Vlt-sidenav--dark{background:#131415}.Vlt-sidenav--dark .Vlt-sidenav__scroll .Vlt-sidemenu{background:#131415}.Vlt-sidenav--dark hr{border-top:1px solid rgba(255,255,255,.1)}.Vlt-sidenav--dark .Vlt-sidenav__link:hover{background:rgba(255,255,255,.05)}.Vlt-sidenav--dark .Vlt-sidemenu__link,.Vlt-sidenav--dark .Vlt-sidemenu__trigger{color:#fff}.Vlt-sidenav--dark .Vlt-sidemenu__link:hover,.Vlt-sidenav--dark .Vlt-sidemenu__trigger:hover{background:rgba(97,98,102,.5)}.Vlt-sidenav--dark .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active),.Vlt-sidenav--dark .Vlt-sidemenu__trigger_active:not(.Vlt-sidemenu__trigger_active){background:#fff;color:#131415;font-weight:600}.Vlt-sidenav--dark .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg,.Vlt-sidenav--dark .Vlt-sidemenu__trigger_active:not(.Vlt-sidemenu__trigger_active) svg{fill:#131415}.Vlt-sidenav--dark .Vlt-sidemenu__link svg,.Vlt-sidenav--dark .Vlt-sidemenu__trigger svg{fill:#fff}.Vlt-sidenav--dark .Vlt-sidemenu__link--disabled,.Vlt-sidenav--dark .Vlt-sidemenu__trigger--disabled{color:#616266}.Vlt-sidenav--dark .Vlt-sidemenu__link--disabled svg,.Vlt-sidenav--dark .Vlt-sidemenu__trigger--disabled svg{fill:#616266}.Vlt-sidenav--dark .Vlt-sidemenu__trigger+ul{border-left:1px solid #616266}.Vlt-sidenav--dark .Vlt-sidemenu__trigger span:last-of-type:not(.Vlt-badge):after{background-image:url(data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.38326%207.96544C3.58628%207.68629%203.97717%207.62457%204.25632%207.82759L9.99983%2012.0047L15.7433%207.82759C16.0225%207.62457%2016.4134%207.68629%2016.6164%207.96544C16.8194%208.2446%2016.7577%208.63549%2016.4785%208.83851L10.3674%2013.283C10.1483%2013.4423%209.85138%2013.4423%209.63222%2013.283L3.52111%208.83851C3.24195%208.63549%203.18023%208.2446%203.38326%207.96544Z%22%20fill%3D%22%23616266%22%2F%3E%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-sidenav--dark .Vlt-sidemenu__trigger:hover span:last-of-type:not(.Vlt-badge):after{background-image:url(data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.38326%207.96544C3.58628%207.68629%203.97717%207.62457%204.25632%207.82759L9.99983%2012.0047L15.7433%207.82759C16.0225%207.62457%2016.4134%207.68629%2016.6164%207.96544C16.8194%208.2446%2016.7577%208.63549%2016.4785%208.83851L10.3674%2013.283C10.1483%2013.4423%209.85138%2013.4423%209.63222%2013.283L3.52111%208.83851C3.24195%208.63549%203.18023%208.2446%203.38326%207.96544Z%22%20fill%3D%22%23ffffff%22%2F%3E%0A%3C%2Fsvg%3E)}.Vlt-sidenav--dark .Vlt-sidemenu__trigger_current:not(.Vlt-sidemenu__trigger_active){background:#616266}.Vlt-sidenav--dark .Vlt-sidemenu__trigger_current span:last-of-type:not(.Vlt-badge):after{background-image:url(data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.38326%207.96544C3.58628%207.68629%203.97717%207.62457%204.25632%207.82759L9.99983%2012.0047L15.7433%207.82759C16.0225%207.62457%2016.4134%207.68629%2016.6164%207.96544C16.8194%208.2446%2016.7577%208.63549%2016.4785%208.83851L10.3674%2013.283C10.1483%2013.4423%209.85138%2013.4423%209.63222%2013.283L3.52111%208.83851C3.24195%208.63549%203.18023%208.2446%203.38326%207.96544Z%22%20fill%3D%22%23ffffff%22%2F%3E%0A%3C%2Fsvg%3E)}.Vlt-sidenav--dark .Vlt-sidemenu__title{color:#9b9da3}.Vlt-sidenav--dark .Vlt-sidemenu__title--border{border-top:1px solid rgba(255,255,255,.1)}.Vlt-sidenav--dark .Vlt-sidetabs--bottom{border-top:1px solid rgba(255,255,255,.1)}.Vlt-sidenav--dark .Vlt-sidetabs--top{border-bottom:1px solid rgba(255,255,255,.1)}.Vlt-sidenav--dark .Vlt-sidetabs .Vlt-js-tabs__link svg{fill:#c2c4cc!important}.Vlt-sidenav--dark .Vlt-sidetabs .Vlt-js-tabs__link:hover:after{background:#c2c4cc}.Vlt-sidenav--dark .Vlt-sidetabs .Vlt-js-tabs__link:hover svg{fill:#fff!important}.Vlt-sidenav--dark .Vlt-sidetabs .Vlt-js-tabs__link:active:after,.Vlt-sidenav--dark .Vlt-sidetabs .Vlt-js-tabs__link_active:after{background:#fff}.Vlt-sidenav--dark .Vlt-sidetabs .Vlt-js-tabs__link:active svg,.Vlt-sidenav--dark .Vlt-sidetabs .Vlt-js-tabs__link_active svg{fill:#131415!important}.Vlt-sidenav--dark .Vlt-sidenav__block:after,.Vlt-sidenav--dark .Vlt-sidenav__block:before{background:rgba(255,255,255,.1)}.Vlt-sidenav--dark .Vlt-sidenav__block--logo:after{display:block}.Vlt-sidenav--dark .Vlt-sidenav__block--logo .Vlt-sidenav__collapse svg{fill:#c2c4cc}@media only screen and (min-width:576px){.Vlt-sidenav--dark.Vlt-sidenav--collapsed .Vlt-sidemenu__title{border-bottom:1px solid rgba(255,255,255,.1)}.Vlt-sidenav--dark.Vlt-sidenav--collapsed li li .Vlt-sidemenu__link_active svg{fill:#fff!important}}.Vlt-card{background:#fff;border-radius:8px;box-shadow:0 1px 15px rgba(19,20,21,.2);display:block;margin-bottom:24px;padding:24px;position:relative;width:100%}.Vlt-card--border{box-shadow:inset 0 0 0 1px #e1e2e6}.Vlt-card--plain{box-shadow:none}.Vlt-card--lesspadding{padding:16px}.Vlt-card--lesspadding .Vlt-card__footer,.Vlt-card--lesspadding .Vlt-card__header{margin-left:0;margin-right:0}.Vlt-card--lesspadding .Vlt-card__header{padding-bottom:8px}.Vlt-card--lesspadding .Vlt-card__footer{padding-bottom:2px;padding-top:8px}.Vlt-card--lesspadding .Vlt-card__corner{right:16px;top:16px}.Vlt-card--lesspadding .Vlt-card__image{margin:-16px -17px 19px}.Vlt-card--lesspadding.Vlt-card--scrollable .Vlt-card__content{padding-bottom:8px;padding-top:8px}.Vlt-card__image{-ms-flex-align:center;align-items:center;background:#c2c4cc;border-top-left-radius:8px;border-top-right-radius:8px;color:#fff;display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column;height:90px;-ms-flex-pack:center;justify-content:center;margin:-24px -25px 24px;position:relative;text-align:center}.Vlt-card__image svg{fill:#fff}.Vlt-card__image *{max-height:100%;z-index:1}.Vlt-card__image--app:before,.Vlt-card__image--grid:before,.Vlt-card__image--tech:before{content:'';display:block;height:100%;left:0;opacity:.1;position:absolute;top:0;width:100%;z-index:1}.Vlt-card__image--app:before{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%20506.4%20190.8%22%20style%3D%22enable-background%3Anew%200%200%20506.4%20190.8%3B%22%20xml%3Aspace%3D%22preserve%22%20fill%3D%22%23ffffff%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M138.4%2C190.1c-0.7%2C0-1.3%2C0.3-1.6%2C0.7h1c0.2-0.1%2C0.4-0.1%2C0.6-0.1c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1h1.5%0D%0A%09%09c-0.4-0.3-0.8-0.5-1.3-0.6C139%2C190.1%2C138.7%2C190.1%2C138.4%2C190.1z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M138.4%2C189.6c-1%2C0-1.8%2C0.5-2.3%2C1.2h0.6c0.4-0.4%2C1-0.7%2C1.6-0.7c0.3%2C0%2C0.6%2C0%2C0.8%2C0.1c0.4%2C0.1%2C0.9%2C0.3%2C1.3%2C0.6%0D%0A%09%09h0.9c-0.6-0.5-1.2-0.9-1.9-1.1C139%2C189.6%2C138.7%2C189.6%2C138.4%2C189.6z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M137.8%2C190.8h1.2c-0.3-0.1-0.5-0.1-0.7-0.1C138.1%2C190.7%2C137.9%2C190.7%2C137.8%2C190.8z%22%2F%3E%0D%0A%09%3Cg%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M29.9%2C171.9c-1.1-0.6-2.5-0.4-3.5%2C0.3L1%2C190.8h2.1l24.1-17.6c0.6-0.5%2C1.5-0.6%2C2.2-0.2s1.2%2C1.1%2C1.2%2C1.9v15.9%0D%0A%09%09%09h1.2v-15.9C31.7%2C173.6%2C31%2C172.5%2C29.9%2C171.9z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M264.7%2C154c1.7%2C0%2C2.9-1.2%2C2.8-2.9c0-2-1.6-4.1-3.6-4.6c-0.4-0.1-0.7-0.1-1-0.1c-1.6%2C0-2.8%2C1.2-2.8%2C2.9%0D%0A%09%09%09c0%2C2%2C1.6%2C4.1%2C3.6%2C4.6C264.1%2C154%2C264.4%2C154%2C264.7%2C154z%20M261.2%2C149.2c0-1.3%2C1-2%2C2.3-1.6c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5%0D%0A%09%09%09c0.1%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1C262.5%2C152.3%2C261.2%2C150.7%2C261.2%2C149.2z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M250.7%2C151.6c0.4%2C0.1%2C0.9%2C0.2%2C1.3%2C0.2c2.2%2C0%2C3.8-1.6%2C3.8-3.9c0-2.7-2.2-5.5-4.9-6.2l-32.4-8.7%0D%0A%09%09%09c-0.4-0.1-0.9-0.2-1.3-0.2c-2.2%2C0-3.8%2C1.6-3.8%2C3.9c0%2C2.7%2C2.2%2C5.5%2C4.9%2C6.2L250.7%2C151.6z%20M214.6%2C136.7c0-1.6%2C1-2.7%2C2.6-2.7%0D%0A%09%09%09c0.3%2C0%2C0.6%2C0%2C1%2C0.1l32.4%2C8.7c2.2%2C0.6%2C4%2C2.9%2C4%2C5.1c0%2C1.6-1%2C2.7-2.6%2C2.7c-0.3%2C0-0.6%2C0-1-0.1l-32.4-8.7%0D%0A%09%09%09C216.4%2C141.2%2C214.6%2C138.9%2C214.6%2C136.7z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M294.3%2C133l-95.4-25.6c-2.4-0.6-4.7-0.3-6.5%2C0.8l-12.1%2C8.9l0.2%2C0.3c-0.8%2C0.5-1.4%2C1.2-1.9%2C2%0D%0A%09%09%09c-0.1%2C0.1-0.2%2C0.3-0.3%2C0.5c0%2C0%2C0%2C0.1-0.1%2C0.1c-0.1%2C0.2-0.2%2C0.4-0.3%2C0.6c0%2C0%2C0%2C0%2C0%2C0c-0.1%2C0.2-0.2%2C0.4-0.2%2C0.7c0%2C0%2C0%2C0%2C0%2C0%0D%0A%09%09%09c-0.1%2C0.2-0.1%2C0.4-0.1%2C0.7c0%2C0.1%2C0%2C0.1%2C0%2C0.2c0%2C0.2-0.1%2C0.4-0.1%2C0.6c0%2C0.3%2C0%2C0.5%2C0%2C0.8V140v50.8h0.6h0.6v-67.3%0D%0A%09%09%09c0-3.6%2C2.3-6.1%2C5.8-6.1c0.7%2C0%2C1.4%2C0.1%2C2.1%2C0.3l95.4%2C25.6c4.6%2C1.2%2C8.4%2C6%2C8.4%2C10.7v36.8h0.7h0.5v-20.2l0.1%2C0v-16.7%0D%0A%09%09%09c0-5.1-4.2-10.4-9.3-11.8L187%2C116.5c-1.2-0.3-2.4-0.4-3.5-0.3l8.7-6.3l0.4-0.3c1.6-1.2%2C3.7-1.5%2C6-0.9l95.4%2C25.6%0D%0A%09%09%09c4.8%2C1.3%2C8.7%2C6.2%2C8.7%2C11v45.5h1.1v-45.7C303.8%2C139.8%2C299.6%2C134.4%2C294.3%2C133z%22%2F%3E%0D%0A%09%09%3Cpolygon%20class%3D%22st0%22%20points%3D%22179.3%2C140.7%20289.9%2C170.4%20289.9%2C169.2%20179.3%2C139.5%20%09%09%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M187.1%2C100.8l0.3-0.2c1.7-1.3%2C4.1-1.7%2C6.6-1l62.9%2C16.9c0.2%2C1.9%2C1.7%2C3.7%2C3.6%2C4.1c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1%0D%0A%09%09%09c1.6%2C0%2C2.8-1.2%2C2.8-2.9c0-2-1.6-4.1-3.6-4.6c-0.4-0.1-0.7-0.1-1-0.1c-1.3%2C0-2.4%2C0.8-2.7%2C2.1l-62.7-16.8c-2.7-0.7-5.2-0.4-7.2%2C0.9%0D%0A%09%09%09l-1.5%2C1.1c-9.8%2C7.1-11.5%2C8.4-11.8%2C8.6c-2.1%2C1.5-3.3%2C4-3.3%2C6.9v74.9h1.3v-75c0-2.5%2C1-4.6%2C2.8-5.9c0.3-0.2%2C9-6.5%2C11.8-8.6%0D%0A%09%09%09L187.1%2C100.8z%20M260.3%2C114.3c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5c0%2C1-0.7%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5%0D%0A%09%09%09C258%2C114.6%2C259%2C113.9%2C260.3%2C114.3z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M351.6%2C153.3c-1-0.3-1.9-0.1-2.6%2C0.4c-0.6%2C0.5-1%2C1.3-1%2C2.2c0%2C1.9%2C1.5%2C3.7%2C3.3%2C4.2c0.3%2C0.1%2C0.6%2C0.1%2C0.9%2C0.1%0D%0A%09%09%09c0.6%2C0%2C1.2-0.1%2C1.7-0.5c0.6-0.5%2C1-1.3%2C1-2.2C354.9%2C155.6%2C353.4%2C153.8%2C351.6%2C153.3z%20M353.1%2C158.8c-0.4%2C0.3-0.9%2C0.4-1.5%2C0.2%0D%0A%09%09%09c-1.3-0.3-2.4-1.7-2.4-3c0-0.6%2C0.2-1%2C0.6-1.3c0.2-0.2%2C0.5-0.3%2C0.9-0.3c0.2%2C0%2C0.4%2C0%2C0.6%2C0.1c1.3%2C0.3%2C2.4%2C1.7%2C2.4%2C3%0D%0A%09%09%09C353.7%2C158.1%2C353.5%2C158.5%2C353.1%2C158.8z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M361.1%2C155.9c-1-0.3-1.9-0.1-2.6%2C0.4c-0.6%2C0.5-1%2C1.3-1%2C2.2c0%2C1.9%2C1.5%2C3.7%2C3.3%2C4.2c0.3%2C0.1%2C0.6%2C0.1%2C0.9%2C0.1%0D%0A%09%09%09c0.6%2C0%2C1.2-0.2%2C1.7-0.5c0.6-0.5%2C1-1.3%2C1-2.2C364.4%2C158.2%2C362.9%2C156.4%2C361.1%2C155.9z%20M362.6%2C161.3c-0.4%2C0.3-0.9%2C0.4-1.5%2C0.2%0D%0A%09%09%09c-1.3-0.3-2.4-1.7-2.4-3c0-0.6%2C0.2-1%2C0.6-1.3c0.2-0.2%2C0.5-0.3%2C0.9-0.3c0.2%2C0%2C0.4%2C0%2C0.6%2C0.1c1.3%2C0.3%2C2.4%2C1.7%2C2.4%2C3%0D%0A%09%09%09C363.2%2C160.6%2C363%2C161%2C362.6%2C161.3z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M370.5%2C158.4c-1-0.3-1.9-0.1-2.6%2C0.4c-0.6%2C0.5-1%2C1.3-1%2C2.2c0%2C1.9%2C1.5%2C3.7%2C3.3%2C4.2c0.3%2C0.1%2C0.6%2C0.1%2C0.9%2C0.1%0D%0A%09%09%09c0.7%2C0%2C1.3-0.2%2C1.7-0.5c0.6-0.5%2C1-1.3%2C1-2.2C373.8%2C160.7%2C372.3%2C158.9%2C370.5%2C158.4z%20M372.1%2C163.9c-0.4%2C0.3-0.9%2C0.4-1.5%2C0.2%0D%0A%09%09%09c-1.3-0.3-2.4-1.7-2.4-3c0-0.6%2C0.2-1%2C0.6-1.3c0.2-0.2%2C0.5-0.3%2C0.9-0.3c0.2%2C0%2C0.4%2C0%2C0.6%2C0.1c1.3%2C0.3%2C2.4%2C1.7%2C2.4%2C3%0D%0A%09%09%09C372.7%2C163.2%2C372.5%2C163.6%2C372.1%2C163.9z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M366.3%2C136.7c-6.8-1.8-13.2-1.2-17.7%2C1.8l-3.7%2C2.6c-0.8%2C0.4-1.6%2C0.9-2.3%2C1.4c-3.3%2C2.5-5.1%2C6.3-5.1%2C10.6%0D%0A%09%09%09c0%2C5.1%2C2.4%2C10.5%2C6.8%2C15.2c-0.4%2C4.3-2.7%2C7.4-4.1%2C8.9c-0.4%2C0.4-0.5%2C0.8-0.3%2C1.2c0.2%2C0.6%2C0.8%2C0.9%2C1.3%2C1c1%2C0.1%2C1.9%2C0.2%2C2.8%2C0.2%0D%0A%09%09%09c5%2C0%2C8-2.1%2C9.4-4.1c2.3%2C1.2%2C4.7%2C2.2%2C7.1%2C2.8c2.8%2C0.8%2C5.3%2C1.1%2C7.9%2C1c0.5%2C1.2%2C1.5%2C2.2%2C2.7%2C2.6v8.9h1.2v-8.6c0.1%2C0%2C0.2%2C0%2C0.3%2C0%0D%0A%09%09%09c1.6%2C0%2C2.8-1.2%2C2.8-2.9c0-0.4-0.1-0.8-0.2-1.2c1.5-0.6%2C2.8-1.3%2C4-2.2l0%2C0.1c0.2-0.1%2C4.9-2.9%2C6.8-5c2.3-2.4%2C3.5-5.5%2C3.5-9.1%0D%0A%09%09%09C389.5%2C151.4%2C379.1%2C140.1%2C366.3%2C136.7z%20M372.6%2C181c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7%0D%0A%09%09%09c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5C374.2%2C180.3%2C373.6%2C181%2C372.6%2C181z%20M374.8%2C177c-0.6-1.1-1.7-2-2.9-2.3%0D%0A%09%09%09c-0.4-0.1-0.7-0.1-1-0.1c-1.6%2C0-2.8%2C1.2-2.8%2C2.9c0%2C0.2%2C0%2C0.4%2C0.1%2C0.6c-2.3%2C0-4.7-0.3-7.2-0.9c-2.4-0.7-4.9-1.6-7.2-2.9l-0.4-0.2%0D%0A%09%09%09l-0.3%2C0.4c-2.5%2C3.2-6.5%2C4.5-11.7%2C3.8c-0.1%2C0-0.3-0.2-0.3-0.2c1.5-1.6%2C4.1-5.1%2C4.5-9.8V168l-0.2-0.2c-4.2-4.6-6.6-9.8-6.6-14.6%0D%0A%09%09%09c0-3.9%2C1.6-7.2%2C4.5-9.5l0%2C0l1.4-1c4.1-2.5%2C9.9-3%2C16.1-1.3c12.4%2C3.3%2C22.4%2C14%2C22.4%2C24C383.1%2C170.9%2C380.1%2C175.1%2C374.8%2C177z%0D%0A%09%09%09%20M385.3%2C170.1c-0.8%2C0.8-1.9%2C1.7-3.1%2C2.5c1.3-2.1%2C2.1-4.6%2C2.1-7.3c0-10.5-10.4-21.8-23.2-25.2c-4.3-1.1-8.3-1.3-11.9-0.6l0.1%2C0%0D%0A%09%09%09c4.2-2.8%2C10.3-3.4%2C16.7-1.7c12.4%2C3.3%2C22.4%2C14%2C22.4%2C24C388.4%2C165%2C387.4%2C167.9%2C385.3%2C170.1z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M251.6%2C16.5c-3.1-0.8-5.9-0.4-8.1%2C1.3c-2.1%2C1.6-3.2%2C4.1-3.2%2C7c0%2C6.1%2C4.9%2C12.4%2C11%2C14c1%2C0.3%2C2%2C0.4%2C2.9%2C0.4%0D%0A%09%09%09c1.9%2C0%2C3.7-0.6%2C5.2-1.7c2.1-1.6%2C3.2-4.1%2C3.2-7C262.6%2C24.4%2C257.7%2C18.1%2C251.6%2C16.5z%20M258.7%2C36.5c-1.9%2C1.4-4.4%2C1.8-7.1%2C1.1%0D%0A%09%09%09c-5.6-1.5-10.1-7.2-10.1-12.8c0-2.6%2C0.9-4.7%2C2.7-6.1c1.3-0.9%2C2.8-1.4%2C4.5-1.4c0.8%2C0%2C1.7%2C0.1%2C2.6%2C0.3c5.6%2C1.5%2C10.1%2C7.2%2C10.1%2C12.8%0D%0A%09%09%09C261.4%2C33%2C260.5%2C35.1%2C258.7%2C36.5z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M74.3%2C75.7c0.3%2C0.1%2C0.5%2C0.1%2C0.8%2C0.1c0.6%2C0%2C1.1-0.1%2C1.6-0.5c0.7-0.5%2C1-1.2%2C1-2.1c0-1.7-1.3-3.3-3-3.8%0D%0A%09%09%09c-0.9-0.2-1.8-0.1-2.4%2C0.4c-0.7%2C0.5-1%2C1.2-1%2C2.1C71.3%2C73.6%2C72.6%2C75.2%2C74.3%2C75.7z%20M73%2C70.8c0.2-0.2%2C0.5-0.3%2C0.8-0.3%0D%0A%09%09%09c0.1%2C0%2C0.3%2C0.1%2C0.5%2C0.1c1.1%2C0.3%2C2.1%2C1.6%2C2.1%2C2.7c0%2C0.5-0.2%2C0.9-0.5%2C1.1c-0.3%2C0.3-0.8%2C0.3-1.3%2C0.2c-1.1-0.3-2.1-1.6-2.1-2.7%0D%0A%09%09%09C72.5%2C71.4%2C72.7%2C71%2C73%2C70.8z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M44.8%2C109l24%2C6.4c0.2%2C0.1%2C0.4%2C0.1%2C0.6%2C0.1c0.4%2C0%2C0.8-0.1%2C1-0.3c0.1-0.1%2C0.2-0.2%2C0.2-0.3c4.3-3%2C4.3-3%2C4.2-3.1%0D%0A%09%09%09V93.6c0-0.6-0.2-1.2-0.6-1.7l-12-15.1c-0.9-1.1-2.2-1.4-3.1-0.8l-3.3%2C1.9c-0.2%2C0.1-0.3%2C0.1-0.4%2C0.2l-0.4%2C0.3l-0.2%2C0.1l0%2C0%0D%0A%09%09%09l-11.4%2C8.2c-0.4%2C0.3-0.7%2C0.9-0.7%2C1.5v18.2C42.7%2C107.5%2C43.6%2C108.7%2C44.8%2C109z%20M45.1%2C107.8c-0.1%2C0-0.2-0.1-0.3-0.1l8.8-6.6l6.6%2C1.8%0D%0A%09%09%09l8.7%2C11.3L45.1%2C107.8z%20M69.9%2C113.4l-8.6-10.9l8.6-6.5V113.4z%20M59.8%2C76.9c0.4-0.2%2C1-0.1%2C1.5%2C0.5l12%2C15.1c0.3%2C0.3%2C0.4%2C0.6%2C0.4%2C0.9%0D%0A%09%09%09v17.8c-0.3%2C0.2-1%2C0.7-2.6%2C1.9V95.6c0-0.6-0.2-1.2-0.6-1.7l-12-15.1c-0.2-0.3-0.5-0.5-0.8-0.7L59.8%2C76.9z%20M55.5%2C79.5l1-0.6%0D%0A%09%09%09c0%2C0%2C0.1%2C0%2C0.1%2C0c0.4%2C0%2C0.8%2C0.2%2C1%2C0.6l12%2C15.1c0%2C0%2C0.1%2C0.1%2C0.1%2C0.1l-9.2%2C6.9l-6.7-1.8l-9.6-12.3L55.5%2C79.5z%20M43.9%2C89.2l8.7%2C11.1%0D%0A%09%09%09l-8.6%2C6.5c-0.1-0.2-0.1-0.3-0.1-0.5V89.2z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M61.8%2C131.1l-5.8-1.5c-0.3-0.1-0.7%2C0-1%2C0.2c-0.2%2C0.2-0.4%2C0.5-0.4%2C0.9v3.2c0%2C0.7%2C0.4%2C1.3%2C1.1%2C1.5l5.8%2C1.5%0D%0A%09%09%09c0.1%2C0%2C0.2%2C0%2C0.3%2C0c0.3%2C0%2C0.5-0.1%2C0.7-0.2c0.2-0.2%2C0.4-0.5%2C0.4-0.9v-3.2C62.9%2C131.9%2C62.5%2C131.3%2C61.8%2C131.1z%20M61.8%2C135.6l-5.7-1.5%0D%0A%09%09%09c-0.2%2C0-0.3-0.2-0.3-0.3v-3.1l5.7%2C1.5c0.2%2C0%2C0.3%2C0.2%2C0.3%2C0.3V135.6z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M70.1%2C58.7c-0.6-0.1-1.1%2C0-1.5%2C0.3c-0.4%2C0.3-0.6%2C0.8-0.6%2C1.3c0%2C1%2C0.7%2C1.9%2C1.7%2C2.2c0.2%2C0.1%2C0.3%2C0.1%2C0.5%2C0.1%0D%0A%09%09%09c0.3%2C0%2C0.7-0.1%2C1-0.4c0.4-0.3%2C0.6-0.8%2C0.6-1.3C71.8%2C59.9%2C71.1%2C59%2C70.1%2C58.7z%20M70.5%2C61.4c-0.1%2C0-0.2%2C0-0.4%2C0%0D%0A%09%09%09c-0.5-0.2-0.9-0.7-0.9-1.1c0-0.1%2C0-0.2%2C0.1-0.3c0-0.1%2C0.1-0.1%2C0.2-0.1s0.1%2C0%2C0.2%2C0.1c0.5%2C0.2%2C0.9%2C0.7%2C0.9%2C1.1%0D%0A%09%09%09C70.6%2C61.2%2C70.6%2C61.3%2C70.5%2C61.4z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M63.9%2C56.9l-10-2.7c-0.6-0.1-1.2%2C0-1.6%2C0.3c-0.4%2C0.3-0.6%2C0.8-0.6%2C1.4c0%2C1.1%2C0.8%2C2.1%2C1.9%2C2.4l10%2C2.7%0D%0A%09%09%09c0.2%2C0.1%2C0.3%2C0.1%2C0.5%2C0.1c0.4%2C0%2C0.8-0.1%2C1.1-0.4c0.4-0.3%2C0.6-0.8%2C0.6-1.4C65.8%2C58.2%2C65%2C57.2%2C63.9%2C56.9z%20M64.4%2C59.8%0D%0A%09%09%09c-0.1%2C0.1-0.3%2C0.2-0.5%2C0.1l-10-2.7c-0.5-0.2-1-0.8-1-1.3c0-0.1%2C0.1-0.3%2C0.2-0.4c0.1-0.1%2C0.2-0.1%2C0.3-0.1c0.1%2C0%2C0.1%2C0%2C0.2%2C0l10%2C2.7%0D%0A%09%09%09c0.5%2C0.2%2C1%2C0.8%2C1%2C1.3C64.6%2C59.5%2C64.5%2C59.7%2C64.4%2C59.8z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M403%2C188.3c-0.4-0.1-0.7-0.1-1-0.1c-1.5%2C0-2.6%2C1.1-2.8%2C2.6h0.6h0.5c0.1-1%2C0.6-1.5%2C1.6-1.5%0D%0A%09%09%09c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c0.8%2C0.2%2C1.5%2C0.7%2C2%2C1.4h0.8h0.7C405.4%2C189.6%2C404.3%2C188.6%2C403%2C188.3z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M502.6%2C127.5c-0.4-0.1-0.7-0.1-1-0.1c-1.5%2C0-2.5%2C0.9-2.7%2C2.2l-20.3-5.4l-0.3%2C1.2l20.6%2C5.5%0D%0A%09%09%09c0.3%2C1.8%2C1.7%2C3.6%2C3.5%2C4.1c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.4%2C0%2C2.4-0.9%2C2.7-2.2l0.2%2C0.1v-1.3l-0.2-0.1c-0.1-0.6-0.3-1.2-0.6-1.8l0.8-0.6%0D%0A%09%09%09v-1.5l-1.6%2C1.2C504.2%2C128.2%2C503.5%2C127.7%2C502.6%2C127.5z%20M503.4%2C133.8c-0.2%2C0-0.4%2C0-0.6-0.1c-1.5-0.4-2.7-2-2.7-3.4%0D%0A%09%09%09c0-1.3%2C1-2%2C2.3-1.6c1.5%2C0.4%2C2.7%2C2%2C2.7%2C3.4C505%2C133.1%2C504.4%2C133.8%2C503.4%2C133.8z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M481.7%2C69.1L466.6%2C65c-0.2-1.7-1.4-3.4-3.1-4V40.3c0-3-2-5.6-4.9-6.4l-7.4-2c-2.4-0.6-4-2.8-4-5.2V0H446v26.6%0D%0A%09%09%09c0%2C3%2C2%2C5.6%2C4.9%2C6.4l7.4%2C2c2.4%2C0.6%2C4%2C2.8%2C4%2C5.2v20.5c-0.1%2C0-0.2%2C0-0.3%2C0c-1.4%2C0-2.6%2C1-2.8%2C2.4l-11.9-3.2c-1.9-0.6-4-0.2-5.6%2C1%0D%0A%09%09%09l-13.9%2C10.2c-0.5-0.5-1-0.8-1.6-1.1V57.6c0-3-2-5.6-4.9-6.4l-25.6-6.9c-2.4-0.6-4-2.8-4-5.2v-3.5c0.1%2C0%2C0.2%2C0%2C0.3%2C0%0D%0A%09%09%09c1.7%2C0%2C2.8-1.2%2C2.8-2.9c0-1.8-1.3-3.7-3.1-4.4v-1.7c0-1.7%2C0.8-3.3%2C2.2-4.3L424.5%2C0h-2l-29.2%2C21.4c-1.7%2C1.2-2.7%2C3.2-2.7%2C5.3V28%0D%0A%09%09%09c-0.1%2C0-0.2%2C0-0.3%2C0c-1.4%2C0-2.5%2C0.9-2.7%2C2.2l-28.2-7.5c-0.9-0.3-1.6-1.1-1.6-2.1V0h-1.2v20.6c0%2C1.5%2C1%2C2.8%2C2.5%2C3.2l28.5%2C7.6%0D%0A%09%09%09c0.2%2C1.7%2C1.5%2C3.3%2C3%2C3.9v3.8c0%2C3%2C2%2C5.6%2C4.9%2C6.4l25.6%2C6.9c2.4%2C0.6%2C4%2C2.8%2C4%2C5.2v12.1c-0.1%2C0-0.2%2C0-0.3%2C0c-1.6%2C0-2.8%2C1.2-2.8%2C2.9%0D%0A%09%09%09c0%2C0.8%2C0.2%2C1.6%2C0.7%2C2.3l-35.1%2C25.7c-0.6-0.6-1.3-1.1-2.2-1.3c-0.4-0.1-0.7-0.1-1-0.1c-1.3%2C0-2.3%2C0.8-2.7%2C2l-27-7.2l19.7-14.4%0D%0A%09%09%09c1-0.7%2C1.5-2%2C1.3-3.3c-0.2-1.2-1.2-2.3-2.4-2.6l-46.6-12.5c-0.3-1.8-1.7-3.5-3.5-4c-0.4-0.1-0.7-0.1-1-0.1c-1.6%2C0-2.8%2C1.2-2.8%2C2.9%0D%0A%09%09%09c0%2C0.8%2C0.3%2C1.6%2C0.7%2C2.3l-13.8%2C10.1c-0.6%2C0.5-1.5%2C0.6-2.2%2C0.2c-0.7-0.4-1.2-1.1-1.2-1.9V58.4c0.1%2C0%2C0.1%2C0%2C0.2%2C0%0D%0A%09%09%09c1.7%2C0%2C2.8-1.2%2C2.8-2.9c0-1.8-1.3-3.7-3.1-4.4V40.8c0.1%2C0%2C0.2%2C0%2C0.3%2C0c1.7%2C0%2C2.8-1.2%2C2.8-2.9c0-1.8-1.3-3.7-3.1-4.4V0h-1.2v33.2%0D%0A%09%09%09c-0.1%2C0-0.2%2C0-0.3%2C0c-1.3%2C0-2.4%2C0.9-2.7%2C2.1L271.2%2C28c-0.3-1.8-1.7-3.6-3.5-4c-0.3-0.1-0.6-0.1-0.9-0.1c-0.8-1.8-1.8-3.5-3-5%0D%0A%09%09%09c-5.2-6.5-12.6-9.7-18.8-8.7c6.4-4.1%2C15.9-1.3%2C22.1%2C6.6c2.3%2C2.9%2C3.9%2C6.3%2C4.5%2C9.7l1.2-0.3c-0.7-3.5-2.3-7.1-4.8-10.2%0D%0A%09%09%09c-6.8-8.6-17.5-11.4-24.3-6.4l-4.6%2C3.1l0.1%2C0.1c-2.5%2C2-4.2%2C4.9-4.7%2C8.4c-0.7%2C5.1%2C1%2C10.8%2C4.7%2C15.7c0.2%2C0.4%2C0.7%2C1.1%2C1.8%2C2.4%0D%0A%09%09%09l10.4%2C13.2l7.3-5.3c6.8-4.7%2C8.8-6.2%2C9.4-6.7v0.1c2.4-1.9%2C4.1-4.6%2C4.7-7.8l-1.2-0.2c-0.6%2C2.9-2%2C5.3-4.2%2C7c0%2C0-0.2%2C0.2-0.5%2C0.3%0D%0A%09%09%09c1.4-2.4%2C2-5.3%2C1.9-8.5c1.3-0.1%2C2.2-1%2C2.5-2.2l27.3%2C7.3c0.2%2C1.7%2C1.4%2C3.3%2C3.1%2C4v10.3c-0.1%2C0-0.2%2C0-0.3%2C0c-1.6%2C0-2.8%2C1.2-2.8%2C2.9%0D%0A%09%09%09c0%2C0.7%2C0.2%2C1.5%2C0.6%2C2.1l-20.8%2C15.3c-1.3%2C1-3%2C1.3-4.6%2C0.9l-36.2-9.7c-0.2-1.6-1.4-3.1-2.9-3.8V46c0-1.3-0.7-2.4-1.8-3%0D%0A%09%09%09c-1.1-0.6-2.5-0.4-3.5%2C0.3L191.4%2C71l-17.4-4.7V27.7v-0.6c0.1%2C0%2C0.1%2C0%2C0.2%2C0c1.3%2C0%2C2.2-0.9%2C2.2-2.3c0-1.8-1.4-3.6-3.2-4.1%0D%0A%09%09%09c-0.2-0.1-0.5-0.1-0.8-0.1c-1%2C0-1.8%2C0.6-2.1%2C1.5l-0.5-0.1l-20.2-5.4V0h-1.2v16.3L101.7%2C3.8c-1-0.2-2.1-0.1-2.9%2C0.6%0D%0A%09%09%09c-0.8%2C0.7-1.3%2C1.7-1.3%2C2.7v16.7c0%2C0.7-0.3%2C1.3-0.8%2C1.7c-0.6%2C0.4-1.3%2C0.6-1.9%2C0.4l-19.6-5.2c-0.4-1.7-1.8-3.2-3.5-3.7%0D%0A%09%09%09c-0.4-0.1-0.7-0.1-1-0.1c-1.3%2C0-2.3%2C0.8-2.7%2C2l-21.3-5.7c-0.2-1.7-1.4-3.4-3.1-4.1V0h-1.2v8.8c-0.1%2C0-0.2%2C0-0.3%2C0%0D%0A%09%09%09c-1.6%2C0-2.8%2C1.2-2.8%2C2.9c0%2C2%2C1.6%2C4.1%2C3.6%2C4.6c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.3%2C0%2C2.3-0.8%2C2.7-2L68%2C20.1c0.1%2C1.7%2C1.3%2C3.4%2C3%2C4.1v10.2%0D%0A%09%09%09c0%2C0.7-0.3%2C1.3-0.8%2C1.7c-0.6%2C0.4-1.3%2C0.6-1.9%2C0.4L24.5%2C24.8c-0.3-1.8-1.7-3.5-3.5-4c-0.4-0.1-0.7-0.1-1-0.1%0D%0A%09%09%09c-1.4%2C0-2.4%2C0.9-2.7%2C2.2L0.7%2C18.5v1.2l16.5%2C4.4c0.2%2C1.7%2C1.5%2C3.3%2C3.1%2C3.9v24c0%2C0.7-0.3%2C1.3-0.8%2C1.7c-0.6%2C0.4-1.3%2C0.6-1.9%2C0.4%0D%0A%09%09%09L0.7%2C49.7V51l16.5%2C4.4c0.3%2C0.1%2C0.6%2C0.1%2C0.9%2C0.1c0.7%2C0%2C1.5-0.3%2C2-0.7c0.8-0.7%2C1.3-1.7%2C1.3-2.7V28.3c0.1%2C0%2C0.2%2C0%2C0.3%2C0%0D%0A%09%09%09c1.5%2C0%2C2.5-0.9%2C2.8-2.2l43.4%2C11.7c0.3%2C0.1%2C0.6%2C0.1%2C0.9%2C0.1c0.7%2C0%2C1.5-0.3%2C2-0.7c0.8-0.7%2C1.3-1.7%2C1.3-2.7v-10c0.1%2C0%2C0.3%2C0%2C0.4%2C0%0D%0A%09%09%09c1.5%2C0%2C2.6-1.1%2C2.8-2.5l19.2%2C5.2c0.3%2C0.1%2C0.6%2C0.1%2C0.9%2C0.1c0.7%2C0%2C1.4-0.3%2C2-0.7c0.8-0.7%2C1.3-1.7%2C1.3-2.7V7.1c0-0.7%2C0.3-1.3%2C0.8-1.7%0D%0A%09%09%09c0.6-0.4%2C1.3-0.6%2C1.9-0.4l46.9%2C12.5v38.9c-0.1%2C0-0.2%2C0-0.3%2C0c-1.4%2C0-2.5%2C0.9-2.7%2C2.2l-15.6-4.1c-1-0.2-2.1%2C0-2.9%2C0.6%0D%0A%09%09%09c-0.8%2C0.7-1.3%2C1.7-1.3%2C2.7v54.6c-0.1%2C0-0.3%2C0-0.4%2C0c-1.3%2C0-2.4%2C0.8-2.7%2C2.1L84%2C104.2c-0.3-1.6-1.5-3.1-3-3.7V62.1%0D%0A%09%09%09c0-2.2-1.7-4.4-3.9-5l-36.2-9.6c-0.1%2C0-0.2%2C0-0.3%2C0l2.1-1.6c0-0.1%2C0.7-0.6%2C1.9-0.3l36.2%2C9.7c1.6%2C0.4%2C3%2C2.2%2C3%2C3.8v41.1h1.2V59.1%0D%0A%09%09%09c0-2.2-1.7-4.4-3.9-5l-36.1-9.7c-1.9-0.5-3%2C0.5-3%2C0.5l-4%2C3l0%2C0c0%2C0-0.1%2C0-0.1%2C0.1c-0.8%2C0.6-1.2%2C1.5-1.2%2C2.6v38c-0.1%2C0-0.2%2C0-0.3%2C0%0D%0A%09%09%09c-1.4%2C0-2.4%2C0.9-2.7%2C2.2L22%2C87.7c-0.1-2-1.6-4-3.6-4.4c-0.4-0.1-0.7-0.1-1-0.1c-1.5%2C0-2.6%2C1-2.8%2C2.6L0.7%2C81.9v1.2l14%2C3.8%0D%0A%09%09%09c0.4%2C1.5%2C1.5%2C2.9%2C3%2C3.5v44.3c0%2C1.8-0.8%2C3.4-2.2%2C4.4l-1.8%2C1.3c0.1%2C0.1%2C0.2%2C0.2%2C0.3%2C0.3c-0.1-0.1-0.2-0.2-0.3-0.3%0D%0A%09%09%09c-0.6-0.6-1.3-1-2.1-1.2c-0.4-0.1-0.7-0.1-1-0.1c-1.6%2C0-2.8%2C1.3-2.7%2C3c0%2C0.7%2C0.3%2C1.5%2C0.7%2C2.2l-7.8%2C5.7v1.5l8.5-6.2%0D%0A%09%09%09c-0.1-0.1-0.1-0.1-0.2-0.2c0.1%2C0.1%2C0.1%2C0.2%2C0.2%2C0.2c0.6%2C0.6%2C1.4%2C1.1%2C2.3%2C1.3c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.4%2C0%2C2.4-0.9%2C2.7-2.2%0D%0A%09%09%09l70.3%2C18.8c0.1%2C0.6%2C0.3%2C1.3%2C0.7%2C1.9l-9%2C6.6c-1%2C0.7-1.5%2C2-1.3%2C3.3c0.2%2C1.2%2C1.2%2C2.3%2C2.4%2C2.6l0.7%2C0.2c0.2%2C1.7%2C1.5%2C3.3%2C3.1%2C3.9v9.1%0D%0A%09%09%09h1.2V182c0.1%2C0%2C0.2%2C0%2C0.3%2C0c1.5%2C0%2C2.5-0.9%2C2.7-2.3l14.9%2C4c0.1%2C1.7%2C1.4%2C3.5%2C3.1%2C4.1v3h1.2v-2.7c0.1%2C0%2C0.2%2C0%2C0.3%2C0%0D%0A%09%09%09c1.5%2C0%2C2.6-1%2C2.8-2.4l19%2C5.1h4.6l-23.7-6.3c-0.3-1.7-1.8-3.4-3.5-3.9c-0.4-0.1-0.7-0.1-1-0.1c-1.3%2C0-2.3%2C0.8-2.7%2C2l-15-4%0D%0A%09%09%09c-0.3-1.8-1.7-3.5-3.5-4c-0.4-0.1-0.7-0.1-1-0.1c-1.4%2C0-2.4%2C0.9-2.7%2C2.2l-0.4-0.1c-0.8-0.2-1.4-0.9-1.6-1.7%0D%0A%09%09%09c-0.2-0.8%2C0.1-1.6%2C0.8-2.1l9-6.6c0.6%2C0.6%2C1.3%2C1%2C2.1%2C1.2c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.7%2C0%2C2.8-1.2%2C2.8-2.9c0-0.8-0.3-1.6-0.7-2.3%0D%0A%09%09%09l31.8-23.3c1.7-1.2%2C2.7-3.2%2C2.7-5.3V120c0.1%2C0%2C0.2%2C0%2C0.3%2C0c1.7%2C0%2C2.9-1.2%2C2.8-2.9c0-1.8-1.3-3.7-3-4.4c0-1.1%2C0-54.9%2C0-54.9%0D%0A%09%09%09c0-0.7%2C0.3-1.3%2C0.8-1.7c0.6-0.4%2C1.3-0.6%2C1.9-0.4l15.9%2C4.2c0.3%2C1.8%2C1.7%2C3.5%2C3.5%2C4c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.4%2C0%2C2.5-0.8%2C2.7-2.1%0D%0A%09%09%09l20.2%2C5.4v12.3c0%2C1.3%2C0.7%2C2.4%2C1.8%2C3c0.5%2C0.3%2C1%2C0.4%2C1.5%2C0.4c0.7%2C0%2C1.4-0.2%2C2-0.6l13.7-10l38.4%2C10.3c0.1%2C1.9%2C1.7%2C3.9%2C3.6%2C4.3%0D%0A%09%09%09c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.7%2C0%2C2.9-1.2%2C2.8-2.9c0-1.8-1.3-3.7-3.1-4.4v-14c0.1%2C0%2C0.2%2C0%2C0.3%2C0c1.5%2C0%2C2.5-0.9%2C2.8-2.2l35.8%2C9.6%0D%0A%09%09%09c0.6%2C0.1%2C1.1%2C0.2%2C1.7%2C0.2c1.4%2C0%2C2.7-0.5%2C3.9-1.3l20.8-15.3c0.5%2C0.6%2C1.2%2C1.1%2C1.9%2C1.3v12.5c0%2C1.3%2C0.7%2C2.4%2C1.8%2C3%0D%0A%09%09%09c0.5%2C0.3%2C1%2C0.4%2C1.5%2C0.4c0.7%2C0%2C1.4-0.2%2C2-0.7l13.8-10.1c0.6%2C0.6%2C1.3%2C1.1%2C2.2%2C1.3c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.5%2C0%2C2.5-0.9%2C2.7-2.2%0D%0A%09%09%09l46.2%2C12.4c0.8%2C0.2%2C1.4%2C0.9%2C1.6%2C1.7s-0.1%2C1.6-0.8%2C2.1l-20.5%2C14.9l-30-8c-1-0.2-2.1%2C0-2.9%2C0.6c-0.8%2C0.7-1.3%2C1.7-1.3%2C2.7v13.6%0D%0A%09%09%09c-0.1%2C0-0.2%2C0-0.3%2C0c-1.3%2C0-2.3%2C0.8-2.7%2C1.9c-0.1%2C0.3-0.2%2C0.6-0.2%2C1c0%2C0.1%2C0%2C0.2%2C0%2C0.3c0.1%2C1.9%2C1.6%2C3.8%2C3.5%2C4.3%0D%0A%09%09%09c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.5%2C0%2C2.6-1%2C2.8-2.4c0-0.2%2C0-0.3%2C0-0.5c0-0.3%2C0-0.5-0.1-0.8c-0.3-1.6-1.5-3-3-3.6c0%2C0%2C0%2C0%2C0%2C0V88.9%0D%0A%09%09%09c0-0.7%2C0.3-1.3%2C0.8-1.7c0.6-0.4%2C1.3-0.6%2C1.9-0.4l29.1%2C7.8l-7.2%2C5.3c-0.6-0.6-1.3-1.1-2.1-1.3c-0.4-0.1-0.7-0.1-1-0.1%0D%0A%09%09%09c-1.6%2C0-2.8%2C1.2-2.8%2C2.9c0%2C0.8%2C0.3%2C1.6%2C0.7%2C2.3l-4.9%2C3.6c-1.3%2C1-3%2C1.3-4.6%2C0.9l-6.8-1.8c0.1%2C0.3%2C0.1%2C0.5%2C0.1%2C0.8%0D%0A%09%09%09c0%2C0.2%2C0%2C0.3%2C0%2C0.5l6.4%2C1.7c0.6%2C0.1%2C1.1%2C0.2%2C1.7%2C0.2c1.4%2C0%2C2.7-0.5%2C3.9-1.3l4.9-3.6c0.5%2C0.5%2C1%2C0.8%2C1.6%2C1.1V134%0D%0A%09%09%09c0%2C1.8-0.8%2C3.4-2.2%2C4.4l-28%2C20.4c-0.5-0.6-1.2-1-1.9-1.2v-17.8c0-5.8-4.6-11.8-10.4-13.3l-12.8-3.5c-0.3-1.6-1.5-3.1-3-3.7V99.8%0D%0A%09%09%09c0-0.7%2C0.3-1.3%2C0.8-1.7c0.6-0.4%2C1.3-0.6%2C1.9-0.4l29.7%2C8c0-0.1%2C0-0.2%2C0-0.3c0-0.3%2C0.1-0.7%2C0.2-1l-29.6-7.9c-1-0.2-2.1%2C0-2.9%2C0.6%0D%0A%09%09%09c-0.8%2C0.7-1.3%2C1.7-1.3%2C2.7v19.3c-0.1%2C0-0.2%2C0-0.3%2C0c-1.6%2C0-2.8%2C1.2-2.8%2C2.9c0%2C2%2C1.6%2C4.1%2C3.6%2C4.6c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1%0D%0A%09%09%09c1.5%2C0%2C2.5-1%2C2.8-2.4l12.4%2C3.4c5.3%2C1.4%2C9.6%2C6.8%2C9.6%2C12.1v17.6c0%2C0-0.1%2C0-0.1%2C0c-1.6%2C0-2.8%2C1.2-2.8%2C2.9c0%2C1.8%2C1.2%2C3.6%2C2.9%2C4.4v26.1%0D%0A%09%09%09h1.2V165c0.2%2C0%2C0.3%2C0%2C0.5%2C0c1.6%2C0%2C2.8-1.2%2C2.8-2.9c0-0.8-0.3-1.6-0.7-2.4l27.9-20.4c1.7-1.2%2C2.7-3.2%2C2.7-5.3v-27.9%0D%0A%09%09%09c0.1%2C0%2C0.3%2C0%2C0.4%2C0c1.6%2C0%2C2.8-1.2%2C2.8-2.9c0-0.8-0.3-1.7-0.7-2.4l8-5.8l28.2%2C7.5c0.2%2C1.9%2C1.7%2C3.7%2C3.6%2C4.2c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1%0D%0A%09%09%09c1.5%2C0%2C2.6-1%2C2.8-2.4l15%2C4.1c2.4%2C0.6%2C4%2C2.8%2C4%2C5.2v25.5c0%2C3%2C2%2C5.6%2C4.9%2C6.4l0.5%2C0.1c0.3%2C1.8%2C1.7%2C3.5%2C3.5%2C4c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1%0D%0A%09%09%09c1.4%2C0%2C2.4-0.9%2C2.7-2.2l20.2%2C5.5c2.4%2C0.6%2C4%2C2.8%2C4%2C5.2v32.5h1.2v-32.5c0-3-2-5.6-4.9-6.4l-20.5-5.5c-0.1-0.6-0.3-1.2-0.6-1.8%0D%0A%09%09%09l18.8-13.8c0.6%2C0.6%2C1.3%2C1.1%2C2.2%2C1.3c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.4%2C0%2C2.5-0.9%2C2.7-2.2c1.9%2C0.5%2C3.7%2C0.8%2C5.3%2C0.8c2.4%2C0%2C4.3-0.6%2C5.7-1.6%0D%0A%09%09%09c0.1-0.1%2C0.2-0.2%2C0.2-0.2l3.8-2.4l0.3-0.2c2.5-1.8%2C3.8-5%2C3.8-9.6c0-7.5-2.1-11.2-9.3-19.9c-2.2-2.7-2.3-6.6-2.3-7.3%0D%0A%09%09%09c0-1.7-0.9-3-2.5-3.4c-0.4-0.1-0.8-0.1-1.2%2C0v-0.1l-5.4%2C3.2l0.1%2C0.2c-0.1%2C0.1-0.2%2C0.1-0.3%2C0.2c-0.9%2C0.7-2%2C2.3-2%2C6%0D%0A%09%09%09c0%2C1.8%2C0.3%2C3.1%2C0.7%2C4.2l-6.1-1.6c-0.9-0.3-1.8-0.2-2.5%2C0.2l-4.8%2C2.9l0%2C0.1c-0.1%2C0-0.2%2C0.1-0.2%2C0.1c-0.7%2C0.6-1.1%2C1.5-1.1%2C2.5%0D%0A%09%09%09c0%2C1.6%2C1%2C3.2%2C2.4%2C4.1c-0.7%2C0.5-1.1%2C1.4-1.1%2C2.4c0%2C1.5%2C0.8%2C3%2C2.1%2C3.9c-0.5%2C0.6-0.8%2C1.3-0.8%2C2.2c0%2C1.4%2C0.8%2C2.9%2C2%2C3.8%0D%0A%09%09%09c-0.6%2C0.5-0.9%2C1.3-0.9%2C2.2c0%2C2%2C1.6%2C4.1%2C3.6%2C4.6l3.3%2C0.8c0.1%2C0.6%2C0.3%2C1.2%2C0.6%2C1.7l-18.8%2C13.8c-0.6-0.6-1.4-1.1-2.2-1.3%0D%0A%09%09%09c-0.4-0.1-0.7-0.1-1-0.1c-1.4%2C0-2.5%2C0.9-2.7%2C2.2l-0.2%2C0c-2.4-0.6-4-2.8-4-5.2v-25.5c0-3-2-5.6-4.9-6.4l-15.4-4.2%0D%0A%09%09%09c-0.1-0.6-0.3-1.1-0.6-1.6l35.1-25.7c0.6%2C0.6%2C1.4%2C1.1%2C2.2%2C1.4c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.6%2C0%2C2.8-1.2%2C2.8-2.9c0-0.8-0.3-1.7-0.7-2.4%0D%0A%09%09%09l13.8-10.1c1.3-1%2C3-1.3%2C4.6-0.9l12.3%2C3.4c0.4%2C1.7%2C1.8%2C3.3%2C3.5%2C3.8c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.3%2C0%2C2.4-0.8%2C2.7-2.1l14.9%2C4L481.7%2C69.1%0D%0A%09%09%09z%20M388.5%2C30.8c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5c0%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1%0D%0A%09%09%09C389.8%2C33.9%2C388.5%2C32.3%2C388.5%2C30.8z%20M263%2C42.5c-0.2%2C0.1-2.4%2C1.7-5.1%2C3.7c-0.9%2C0.6-1.7%2C1.2-2.4%2C1.7l0%2C0c-1.4%2C1.1-2.9%2C2.1-4%2C3%0D%0A%09%09%09c-4.1-5.2-11.2-14.2-11.6-14.7c-3.6-4.6-5.2-10-4.5-14.8c0.5-3.3%2C2.1-6.1%2C4.6-7.9c6.4-4.6%2C16.3-1.9%2C22.7%2C6.2%0D%0A%09%09%09c1.1%2C1.3%2C2%2C2.8%2C2.8%2C4.4c-1%2C0.4-1.7%2C1.4-1.7%2C2.7c0%2C2%2C1.6%2C4.1%2C3.6%2C4.6c0%2C0%2C0%2C0%2C0.1%2C0C267.8%2C36.1%2C266.2%2C40.1%2C263%2C42.5z%20M268.4%2C30.3%0D%0A%09%09%09c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5%0D%0A%09%09%09C270%2C29.6%2C269.4%2C30.3%2C268.4%2C30.3z%20M44%2C15.2c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7%0D%0A%09%09%09c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5C45.6%2C14.6%2C45%2C15.2%2C44%2C15.2z%20M21.7%2C27.1c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5%0D%0A%09%09%09c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5C23.4%2C26.4%2C22.7%2C27.1%2C21.7%2C27.1z%20M72.5%2C23.3%0D%0A%09%09%09c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5%0D%0A%09%09%09C74.1%2C22.6%2C73.4%2C23.3%2C72.5%2C23.3z%20M12.5%2C145.5c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-1.9-2.9-3.4c0-1.1%2C0.6-1.7%2C1.6-1.7%0D%0A%09%09%09c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C1.9%2C2.9%2C3.4C14.1%2C144.8%2C13.5%2C145.5%2C12.5%2C145.5z%20M103.9%2C181.6c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1%0D%0A%09%09%09c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5c0%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5C102.3%2C182.2%2C102.9%2C181.6%2C103.9%2C181.6z%0D%0A%09%09%09%20M81.7%2C175.5c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5c0%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5%0D%0A%09%09%09C80.1%2C176.1%2C80.7%2C175.5%2C81.7%2C175.5z%20M82.8%2C104.9c0%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5%0D%0A%09%09%09c0-1.3%2C1-2%2C2.3-1.6C81.5%2C101.8%2C82.8%2C103.4%2C82.8%2C104.9z%20M37.8%2C50.6c0-0.7%2C0.2-1.3%2C0.7-1.7c0%2C0%2C0%2C0%2C0.1%2C0l0%2C0l0.3-0.2%0D%0A%09%09%09c0.4-0.2%2C1-0.2%2C1.6-0.1l36.2%2C9.7c1.6%2C0.4%2C3%2C2.2%2C3%2C3.8v5.3L37.8%2C56.2V50.6z%20M37.8%2C57.4l41.9%2C11.2v31.6c-0.1%2C0-0.2%2C0-0.3%2C0%0D%0A%09%09%09c-1.6%2C0-2.8%2C1.2-2.8%2C2.9c0%2C1.8%2C1.3%2C3.7%2C3.1%2C4.4v25.8l-41.9-11.2V96.2c0.1%2C0%2C0.2%2C0%2C0.3%2C0c1.7%2C0%2C2.8-1.2%2C2.8-2.9%0D%0A%09%09%09c0-1.8-1.3-3.7-3.1-4.4V57.4z%20M78.9%2C142c-0.5%2C0.3-1.1%2C0.4-1.8%2C0.2l-36.2-9.7c-1.6-0.4-3-2.2-3-3.8v-5.4l41.9%2C11.2v5.6%0D%0A%09%09%09c0%2C0.6-0.2%2C1.2-0.6%2C1.6C79%2C141.9%2C78.8%2C142%2C78.9%2C142L78.9%2C142z%20M36.2%2C89.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5%0D%0A%09%09%09c0%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5C34.6%2C90.3%2C35.2%2C89.7%2C36.2%2C89.7z%20M15.7%2C86%0D%0A%09%09%09c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5c0%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1%0D%0A%09%09%09C17%2C89.1%2C15.7%2C87.5%2C15.7%2C86z%20M90%2C166.2c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.3%2C1-2%2C2.3-1.6c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5%0D%0A%09%09%09C91.6%2C165.5%2C91%2C166.2%2C90%2C166.2z%20M125.4%2C133.6c0%2C1.7-0.8%2C3.3-2.2%2C4.3l-31.8%2C23.3c-0.6-0.6-1.3-1.1-2.2-1.3c-0.4-0.1-0.7-0.1-1-0.1%0D%0A%09%09%09c-1.4%2C0-2.5%2C0.9-2.7%2C2.2l-70.3-18.8c0%2C0%2C0-0.1%2C0-0.1c-0.1-0.6-0.4-1.2-0.7-1.8l1.8-1.3c1.7-1.2%2C2.7-3.2%2C2.7-5.3v-44%0D%0A%09%09%09c0.1%2C0%2C0.2%2C0%2C0.3%2C0c1.3%2C0%2C2.3-0.7%2C2.6-1.9L33.6%2C92c0.2%2C1.7%2C1.5%2C3.3%2C3.1%2C3.9v32.8c0%2C2.2%2C1.7%2C4.4%2C3.9%2C5l36.2%2C9.8%0D%0A%09%09%09c0.3%2C0.1%2C0.7%2C0.1%2C1%2C0.1c0.8%2C0%2C1.5-0.3%2C2-0.7c0.1-0.1%2C0.1-0.1%2C0.2-0.2c3.5-2.5%2C3.8-2.7%2C3.7-2.8c0.8-0.6%2C1.2-1.5%2C1.2-2.6V109h-1.2%0D%0A%09%09%09v28.3c0%2C0.7-0.2%2C1.3-0.7%2C1.7c0%2C0-1%2C0.8-2%2C1.5c0-0.1%2C0-0.1%2C0-0.2v-32.5c0.1%2C0%2C0.2%2C0%2C0.3%2C0c1.5%2C0%2C2.5-1%2C2.8-2.4l38.4%2C10.3%0D%0A%09%09%09c0.2%2C1.7%2C1.4%2C3.4%2C3.1%2C4V133.6z%20M128.5%2C117.1c0.1%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5%0D%0A%09%09%09c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1C127.2%2C114%2C128.5%2C115.6%2C128.5%2C117.1z%20M149.8%2C62.8c-0.2%2C0-0.4%2C0-0.7-0.1%0D%0A%09%09%09c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5C151.5%2C62.2%2C150.8%2C62.8%2C149.8%2C62.8z%0D%0A%09%09%09%20M172.7%2C27.5V66l-20.1-5.4c-0.2-1.7-1.4-3.3-3.1-4V17.9l20%2C5.4l0.6%2C0.2c0.2%2C1.4%2C1.2%2C2.8%2C2.6%2C3.4V27.5z%20M173.6%2C25.8%0D%0A%09%09%09c-1.2-0.3-2.3-1.7-2.3-2.9c0-0.7%2C0.3-1.1%2C1-1.1c0.2%2C0%2C0.4%2C0%2C0.5%2C0c1.2%2C0.3%2C2.3%2C1.7%2C2.3%2C2.9C175.1%2C25.6%2C174.5%2C26%2C173.6%2C25.8z%0D%0A%09%09%09%20M177.3%2C81.3c-0.6%2C0.5-1.5%2C0.6-2.2%2C0.2c-0.7-0.4-1.2-1.1-1.2-1.9v-12l16.2%2C4.3L177.3%2C81.3z%20M230.3%2C81.5l-37.3-10l37-27.1%0D%0A%09%09%09c0.6-0.5%2C1.5-0.6%2C2.2-0.2c0.7%2C0.4%2C1.2%2C1.1%2C1.2%2C1.9v12.1c-0.1%2C0-0.3%2C0-0.4%2C0c-1.6%2C0-2.8%2C1.2-2.8%2C2.9c0%2C1.8%2C1.3%2C3.7%2C3.1%2C4.4v14%0D%0A%09%09%09c-0.1%2C0-0.2%2C0-0.3%2C0C231.7%2C79.5%2C230.7%2C80.3%2C230.3%2C81.5z%20M236.3%2C84.2c0.1%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1%0D%0A%09%09%09c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1C235%2C81.1%2C236.3%2C82.7%2C236.3%2C84.2z%20M234.7%2C64.6%0D%0A%09%09%09c-0.1%2C0-0.2%2C0-0.3%2C0v-0.1H234c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5%0D%0A%09%09%09C236.4%2C63.9%2C235.7%2C64.6%2C234.7%2C64.6z%20M299.5%2C36c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5%0D%0A%09%09%09c0%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1C300.8%2C39.1%2C299.5%2C37.5%2C299.5%2C36z%20M302.3%2C57.1c-1.5-0.4-2.8-2-2.8-3.5%0D%0A%09%09%09c0-1.3%2C1-2%2C2.3-1.6c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5c0%2C1-0.6%2C1.7-1.6%2C1.7C302.8%2C57.2%2C302.6%2C57.2%2C302.3%2C57.1z%20M323.9%2C63.5%0D%0A%09%09%09c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5%0D%0A%09%09%09C325.5%2C62.8%2C324.9%2C63.5%2C323.9%2C63.5z%20M320.4%2C109.5c-0.2%2C0-0.5%2C0-0.8-0.1c-0.7-0.2-1.3-0.6-1.8-1c0.5%2C0.5%2C1.1%2C0.9%2C1.8%2C1%0D%0A%09%09%09C319.9%2C109.5%2C320.2%2C109.5%2C320.4%2C109.5c0.5%2C0%2C0.9-0.1%2C1.3-0.4C321.4%2C109.4%2C320.9%2C109.5%2C320.4%2C109.5z%20M322%2C107.2%0D%0A%09%09%09c0%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1%0D%0A%09%09%09C320.7%2C104.1%2C322%2C105.7%2C322%2C107.2z%20M321.6%2C104.5c-0.6-0.6-1.3-1.2-2.1-1.4c-0.3-0.1-0.5-0.1-0.8-0.1c-0.5%2C0-0.9%2C0.1-1.3%2C0.4%0D%0A%09%09%09c0.4-0.2%2C0.8-0.4%2C1.3-0.4c0.3%2C0%2C0.5%2C0%2C0.8%2C0.1C320.3%2C103.3%2C321%2C103.8%2C321.6%2C104.5z%20M283.7%2C125.5c-0.2%2C0-0.4%2C0-0.7-0.1%0D%0A%09%09%09c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5C285.3%2C124.8%2C284.7%2C125.5%2C283.7%2C125.5z%0D%0A%09%09%09%20M310.2%2C163.8c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5%0D%0A%09%09%09C311.8%2C163.1%2C311.2%2C163.8%2C310.2%2C163.8z%20M343.3%2C104.9c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7%0D%0A%09%09%09c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5C344.9%2C104.3%2C344.3%2C104.9%2C343.3%2C104.9z%20M386.1%2C105.6c-0.2%2C0-0.4%2C0-0.7-0.1%0D%0A%09%09%09c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5C387.8%2C104.9%2C387.1%2C105.6%2C386.1%2C105.6z%0D%0A%09%09%09%20M441.9%2C131c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5%0D%0A%09%09%09C443.6%2C130.4%2C442.9%2C131%2C441.9%2C131z%20M448.3%2C87.5h0.1c0.3-0.1%2C0.7-0.2%2C1-0.1c1.4%2C0.4%2C1.6%2C1.8%2C1.6%2C2.3c0%2C0.9%2C0.1%2C5.1%2C2.6%2C8.1%0D%0A%09%09%09c7%2C8.5%2C9%2C12%2C9%2C19.1c0%2C4.4-1.2%2C7.3-3.5%2C8.8l-1.3%2C0.8c0.9-1.8%2C1.3-4%2C1.3-6.7c0-7.5-2.1-11.2-9.3-19.9c-2.2-2.7-2.3-6.6-2.3-7.3%0D%0A%09%09%09c0-1.6-0.8-2.8-2.2-3.3L448.3%2C87.5z%20M433.5%2C99.6c0.5-0.2%2C1-0.3%2C1.6-0.1l7.2%2C1.9c0.3%2C0.5%2C0.6%2C0.9%2C0.9%2C1.3c0.3%2C0.4%2C0.6%2C0.8%2C0.8%2C1.2%0D%0A%09%09%09c0.3%2C0.5%2C0.3%2C0.7%2C0.3%2C0.7c-0.1%2C0-0.3%2C0-0.8-0.1l-12.6-3.4L433.5%2C99.6z%20M437.4%2C126.9l-3-0.8c-1.4-0.4-2.7-2-2.7-3.5%0D%0A%09%09%09c0-0.8%2C0.4-1.4%2C1-1.7l1.2-0.5l-1.2-0.6c-1.3-0.6-2.2-2-2.2-3.3c0-0.8%2C0.4-1.4%2C1-1.7l1.2-0.6l-1.2-0.5c-1.3-0.6-2.3-2-2.3-3.3%0D%0A%09%09%09c0-0.9%2C0.5-1.6%2C1.4-1.8v-1.2c-1.4-0.4-2.7-2-2.7-3.5c0-0.6%2C0.3-1.2%2C0.7-1.5c0%2C0%2C0%2C0%2C0.1%2C0l0%2C0l0.6-0.3c0.3-0.1%2C0.7-0.1%2C1.1%2C0%0D%0A%09%09%09l12.8%2C3.4c1.2%2C0.3%2C1.7%2C0%2C2-0.3c0.6-0.7%2C0.1-1.7-0.1-2c-0.2-0.5-0.6-0.9-0.9-1.4c-0.9-1.2-2.1-2.8-2.1-6.3c0-2.5%2C0.5-4.4%2C1.5-5.1%0D%0A%09%09%09c0.5-0.4%2C0.9-0.4%2C1.2-0.3c1.4%2C0.4%2C1.6%2C1.8%2C1.6%2C2.3c0%2C0.9%2C0.1%2C5.1%2C2.6%2C8.1c7%2C8.5%2C9%2C12%2C9%2C19.1c0%2C4.1-1.1%2C6.9-3.1%2C8.5%0D%0A%09%09%09c-2.2%2C1.7-5.6%2C1.9-10.1%2C0.7l-0.2%2C0c-0.3-1.8-1.7-3.6-3.5-4.1c-0.4-0.1-0.7-0.1-1-0.1C438.8%2C124.6%2C437.7%2C125.5%2C437.4%2C126.9z%0D%0A%09%09%09%20M416.6%2C143.4c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5c0%2C1.1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5%0D%0A%09%09%09C414.3%2C143.7%2C415.3%2C143%2C416.6%2C143.4z%20M426.5%2C76.1c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.2%2C0.9-1.9%2C2-1.7v0.1h0.3%0D%0A%09%09%09c0%2C0%2C0%2C0%2C0%2C0c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5C428.1%2C75.5%2C427.5%2C76.1%2C426.5%2C76.1z%20M463.8%2C67.1c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5%0D%0A%09%09%09c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5C465.4%2C66.4%2C464.8%2C67.1%2C463.8%2C67.1z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M489.2%2C5.8c-0.3-1.7-1.8-3.4-3.5-3.8c-0.4-0.1-0.7-0.1-1-0.1c-1.7%2C0-2.8%2C1.2-2.8%2C2.9c0%2C2%2C1.6%2C4.1%2C3.6%2C4.6%0D%0A%09%09%09c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.5%2C0%2C2.6-1%2C2.8-2.4l17.2%2C4.6v-1.2L489.2%2C5.8z%20M486.4%2C8.3c-0.2%2C0-0.4%2C0-0.6-0.1c-1.5-0.4-2.7-2-2.7-3.4%0D%0A%09%09%09c0-1.3%2C1-2%2C2.3-1.6c1.5%2C0.4%2C2.7%2C2%2C2.7%2C3.4C488.1%2C7.6%2C487.4%2C8.3%2C486.4%2C8.3z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M502.9%2C48.2L502.9%2C48.2c-0.1%2C0.2-0.3%2C0.3-0.4%2C0.4c-0.5%2C0.6-0.8%2C1.5-0.5%2C2.5l4.3%2C16.6v-4.1l-0.8-3.2l0.8%2C0.2%0D%0A%09%09%09v-1.2l-1.2-0.3l-2.1-8.1c-0.1-0.6%2C0-1.1%2C0.3-1.4c0.3-0.3%2C0.8-0.4%2C1.3-0.3l1.6%2C0.4v-1.3v-0.4v-1.3c-0.8%2C0.3-1.8%2C0.8-3%2C1.4%0D%0A%09%09%09L502.9%2C48.2z%22%2F%3E%0D%0A%09%3C%2Fg%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E%0D%0A);background-size:auto 180px}.Vlt-card__image--grid:before{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2047.2%2027%22%20style%3D%22enable-background%3Anew%200%200%2047.2%2027%3B%22%20xml%3Aspace%3D%22preserve%22%20fill%3D%22%23ffffff%22%3E%0D%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M24.6%2C0L24.6%2C0l-2%2C0l0%2C0L0%2C12.9l0%2C0v1.2l0%2C0L22.6%2C27h2h0l22.6-12.9v0v-1.2L24.6%2C0z%20M23.6%2C26.4L1%2C13.5L23.6%2C0.6%0D%0A%09l22.6%2C12.9L23.6%2C26.4z%22%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A);background-size:auto 27px}.Vlt-card__image--tech:before{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%20800%20250%22%20style%3D%22enable-background%3Anew%200%200%20800%20250%3B%22%20xml%3Aspace%3D%22preserve%22%20fill%3D%22%23ffffff%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M684.5%2C189.4c-0.1-0.1-0.3-0.2-0.5-0.2H453.6c-0.2%2C0-0.4%2C0.1-0.5%2C0.2l-35.5%2C37.1c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.5v6.2%0D%0A%09%09c-2.4%2C0.4-4.2%2C2.5-4.2%2C5.1c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1c2.7%2C0%2C4.9-2.3%2C4.9-5.1c0-2.6-1.8-4.7-4.2-5.1v-5.9l35-36.7h229.9l56.5%2C58.4%0D%0A%09%09c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h62.5v-1.5H741L684.5%2C189.4z%20M421.7%2C238.3c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7%0D%0A%09%09S421.7%2C236.2%2C421.7%2C238.3z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M683.8%2C199.4H457.5c-0.2%2C0-0.4%2C0.1-0.5%2C0.2l-28%2C29.3c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.5v4c-2%2C0.7-3.4%2C2.6-3.4%2C4.9%0D%0A%09%09c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1l0%2C0v-3.4l27.6-28.8h225.7l46.5%2C48.6h2.1l-47.7-49.9%0D%0A%09%09C684.2%2C199.5%2C684%2C199.4%2C683.8%2C199.4z%20M430.2%2C234.6c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7%0D%0A%09%09C426.7%2C236.2%2C428.3%2C234.6%2C430.2%2C234.6z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M680.8%2C214.6H473c-0.2%2C0-0.4%2C0.1-0.5%2C0.2l-16.6%2C17.3c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.5v10.7l-5.9%2C6.2h2.1l5.1-5.3%0D%0A%09%09c0.1-0.1%2C0.2-0.3%2C0.2-0.5V233l16.1-16.9h207.2l32%2C33.5h2.1l-33.3-34.8C681.2%2C214.6%2C681%2C214.6%2C680.8%2C214.6z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M676.7%2C223.5H478.5c-0.2%2C0-0.4%2C0.1-0.5%2C0.2l-13%2C13.6c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.5v10.3l-1.2%2C1.3h2.1l0.4-0.5%0D%0A%09%09c0.1-0.1%2C0.2-0.3%2C0.2-0.5v-10.3l12.6-13.2h197.5l23.4%2C24.5h2.1l-24.7-25.8C677%2C223.6%2C676.9%2C223.5%2C676.7%2C223.5z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M132.5%2C244.4c0-2.8-2.2-5.1-4.9-5.1c-1.2%2C0-2.3%2C0.5-3.1%2C1.2L111.6%2C227c-0.1-0.1-0.3-0.2-0.5-0.2H91.7%0D%0A%09%09c-0.2%2C0-0.4%2C0.1-0.5%2C0.2l-6.4%2C6.7h-6.1l-9-9.5c-0.1-0.1-0.3-0.2-0.5-0.2H39.3l-10.6-11c-0.1-0.1-0.3-0.2-0.5-0.2H-0.1v1.5h28%0D%0A%09%09l10.6%2C11.1c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h29.8l9%2C9.5c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2H85c0.2%2C0%2C0.4-0.1%2C0.5-0.2l6.4-6.7h18.8l12.7%2C13.3%0D%0A%09%09c-0.5%2C0.8-0.8%2C1.8-0.8%2C2.8c0%2C2.7%2C2.1%2C5%2C4.7%2C5.1h0.5C130.4%2C249.4%2C132.5%2C247.2%2C132.5%2C244.4z%20M127.6%2C248.2c-2%2C0-3.6-1.7-3.6-3.7%0D%0A%09%09c0-2.1%2C1.6-3.7%2C3.6-3.7c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7C131.1%2C246.5%2C129.5%2C248.2%2C127.6%2C248.2z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M60.4%2C247.4H23.3c-0.2%2C0-0.4%2C0.1-0.5%2C0.2l-1.8%2C1.9h2.1l0.6-0.6h36.5l0.6%2C0.6h2.1l-1.8-1.9%0D%0A%09%09C60.8%2C247.5%2C60.6%2C247.4%2C60.4%2C247.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M12%2C250.6c3.2%2C0.1%2C5.8-2.8%2C5.9-6.3c0.1-3.6-2.5-6.5-5.6-6.6c-2.9-0.1-5.3%2C2.3-5.8%2C5.4L0%2C243v1.9l6.5%2C0.1%0D%0A%09%09C6.7%2C248.1%2C9.1%2C250.5%2C12%2C250.6z%20M12.2%2C239.4c2.3%2C0%2C4.1%2C2.2%2C4.1%2C4.8c-0.1%2C2.6-2%2C4.6-4.3%2C4.6s-4.1-2.2-4.1-4.8%0D%0A%09%09C8%2C241.5%2C9.9%2C239.4%2C12.2%2C239.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M62.6%2C240.8H30.2l-9-9.4c-0.1-0.1-0.3-0.2-0.5-0.2H-0.1v1.5h20.5l9%2C9.4c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h32.4l6.9%2C7.2%0D%0A%09%09h2.1l-8.2-8.5C62.9%2C240.9%2C62.8%2C240.8%2C62.6%2C240.8z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M103.5%2C244.4c0-2.8-2.2-5.1-4.9-5.1c-2.5%2C0-4.5%2C1.9-4.8%2C4.4H76.4l-10.7-11.1c-0.1-0.1-0.3-0.2-0.5-0.2H33.7%0D%0A%09%09L24%2C222.3c-0.1-0.1-0.3-0.2-0.5-0.2H-0.1v1.5h23.4l9.7%2C10.1c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2H65L75.6%2C245c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h17.7%0D%0A%09%09c0.3%2C2.4%2C2.2%2C4.2%2C4.6%2C4.4h0.5C101.4%2C249.4%2C103.5%2C247.2%2C103.5%2C244.4z%20M98.6%2C248.2c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7%0D%0A%09%09s3.6%2C1.7%2C3.6%2C3.7C102.1%2C246.5%2C100.5%2C248.2%2C98.6%2C248.2z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M139.5%2C179.5l-6.6-6.9c-0.1-0.1-0.3-0.2-0.5-0.2H48.9c-0.2%2C0-0.4%2C0.1-0.5%2C0.2l-7.4%2C7.7H-0.1v1.5h41.4%0D%0A%09%09c0.2%2C0%2C0.4-0.1%2C0.5-0.2l7.4-7.7h82.9l6.2%2C6.5v69.2h1.5V180C139.7%2C179.8%2C139.6%2C179.6%2C139.5%2C179.5z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M147.1%2C176.8l-12.5-13c-0.1-0.1-0.3-0.2-0.5-0.2H36c-0.2%2C0-0.4%2C0.1-0.5%2C0.2l-8.2%2C8.6H-0.1v1.5h27.7%0D%0A%09%09c0.2%2C0%2C0.4-0.1%2C0.5-0.2l8.2-8.6h97.4l12%2C12.6v71.9h1.5v-72.2C147.3%2C177.2%2C147.2%2C177%2C147.1%2C176.8z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M153.8%2C170.5l-14.3-14.9c-0.1-0.1-0.3-0.2-0.5-0.2H7.6l-7.7-8v2.2l6.9%2C7.2c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h131.4%0D%0A%09%09l13.9%2C14.5v78.3h1.5V171C154%2C170.8%2C153.9%2C170.6%2C153.8%2C170.5z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M162%2C167.2L143.6%2C148c-0.1-0.1-0.3-0.2-0.5-0.2H14.6l-14.7-15.4v2.2l13.9%2C14.5c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h128.5%0D%0A%09%09l17.9%2C18.8v81.5h1.5v-81.9C162.2%2C167.5%2C162.1%2C167.3%2C162%2C167.2z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M9.1%2C113.4h143.2l9.6%2C10c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h23.4l12.4%2C13v100l-1.6%2C1.7c-0.9-1-2.2-1.7-3.6-1.7%0D%0A%09%09c-2.7%2C0-4.9%2C2.3-4.9%2C5.1s2.2%2C5.1%2C4.9%2C5.1s4.9-2.3%2C4.9-5.1c0-0.8-0.2-1.5-0.5-2.2l2-2.1c0.1-0.1%2C0.2-0.3%2C0.2-0.5V136.3%0D%0A%09%09c0-0.2-0.1-0.4-0.2-0.5l-12.9-13.5c-0.1-0.1-0.3-0.2-0.5-0.2h-23.4l-9.6-10c-0.1-0.1-0.3-0.2-0.5-0.2H9.4l-9.5-9.9v2.2l8.7%2C9.1%0D%0A%09%09C8.7%2C113.3%2C8.9%2C113.4%2C9.1%2C113.4z%20M193%2C245.5c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7%0D%0A%09%09C196.6%2C243.9%2C195%2C245.5%2C193%2C245.5z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M14%2C102.5h142.5l7.2%2C7.5c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h34.9l11.1%2C11.6v39c0%2C0.2%2C0.1%2C0.4%2C0.2%2C0.5l14.9%2C15.6v24.6%0D%0A%09%09c-2.4%2C0.4-4.2%2C2.5-4.2%2C5.1c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1s4.9-2.3%2C4.9-5.1c0-2.6-1.8-4.7-4.2-5.1v-24.9c0-0.2-0.1-0.4-0.2-0.5l-14.9-15.6%0D%0A%09%09v-39c0-0.2-0.1-0.4-0.2-0.5l-11.5-12.1c-0.1-0.1-0.3-0.2-0.5-0.2h-34.9l-7.2-7.5c-0.1-0.1-0.3-0.2-0.5-0.2H14.3L-0.1%2C85.9V88%0D%0A%09%09l13.6%2C14.2C13.6%2C102.4%2C13.8%2C102.5%2C14%2C102.5z%20M229.7%2C206.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7%0D%0A%09%09C228.1%2C202.9%2C229.7%2C204.6%2C229.7%2C206.7z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M6.6%2C29.5l43.6%2C45.6c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h106.1c0.4%2C2.5%2C2.4%2C4.4%2C4.8%2C4.4c2.7%2C0%2C4.9-2.3%2C4.9-5.1%0D%0A%09%09c0-2.8-2.2-5.1-4.9-5.1c-2.5%2C0-4.5%2C1.9-4.8%2C4.4H51L7.8%2C28.6V-0.7H6.3V29C6.3%2C29.2%2C6.4%2C29.4%2C6.6%2C29.5z%20M161.6%2C70.8%0D%0A%09%09c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7S159.6%2C70.8%2C161.6%2C70.8z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M19.7%2C24.2l36.9%2C38.6c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h102.2c0.2%2C0%2C0.4-0.1%2C0.5-0.2l6.6-6.9c0.7%2C0.4%2C1.5%2C0.6%2C2.3%2C0.6%0D%0A%09%09c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1s-4.9%2C2.3-4.9%2C5.1c0%2C1.4%2C0.5%2C2.7%2C1.4%2C3.6l-6.2%2C6.5H57.5L21%2C23.4V-0.7h-1.5v24.4%0D%0A%09%09C19.5%2C23.9%2C19.6%2C24.1%2C19.7%2C24.2z%20M165.2%2C51.4c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7%0D%0A%09%09C166.8%2C55.2%2C165.2%2C53.5%2C165.2%2C51.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M42.7%2C14.4c-0.8-0.5-1.6-0.8-2.6-0.8c-2.7%2C0-4.9%2C2.3-4.9%2C5.1s2.2%2C5.1%2C4.9%2C5.1s4.9-2.3%2C4.9-5.1%0D%0A%09%09c0-1.3-0.5-2.5-1.2-3.4l5.1-5.3c0.1-0.1%2C0.2-0.3%2C0.2-0.5V-0.7h-1.5v10L42.7%2C14.4z%20M40.1%2C22.5c-2%2C0-3.6-1.7-3.6-3.7%0D%0A%09%09c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7C43.7%2C20.8%2C42.1%2C22.5%2C40.1%2C22.5z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M57.5%2C10.9l4.5%2C4.8c-0.6%2C0.9-1%2C1.9-1%2C3c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1%0D%0A%09%09c-1.1%2C0-2.1%2C0.4-2.9%2C1l-4.3-4.5V-0.7h-1.5v11.1C57.3%2C10.6%2C57.4%2C10.8%2C57.5%2C10.9z%20M66%2C15c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7%0D%0A%09%09s-3.6-1.7-3.6-3.7S64%2C15%2C66%2C15z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M85.3%2C7l9.2%2C9.6c-0.3%2C0.6-0.4%2C1.3-0.4%2C2.1c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1%0D%0A%09%09c-1.5%2C0-2.8%2C0.7-3.7%2C1.8l-8.8-9.2v-6.9H85v7.2C85.1%2C6.7%2C85.2%2C6.9%2C85.3%2C7z%20M99%2C15c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7%0D%0A%09%09s-3.6-1.7-3.6-3.7S97%2C15%2C99%2C15z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M120.3%2C12.8l23.9%2C25c-0.3%2C0.7-0.5%2C1.4-0.5%2C2.3c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1s4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1%0D%0A%09%09c-1.4%2C0-2.7%2C0.6-3.6%2C1.6L121.5%2C12V-0.7H120v13C120.1%2C12.5%2C120.2%2C12.7%2C120.3%2C12.8z%20M148.6%2C36.4c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7%0D%0A%09%09c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7C145%2C38%2C146.6%2C36.4%2C148.6%2C36.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M133.3%2C12.7h10.4c0.4%2C2.5%2C2.4%2C4.4%2C4.8%2C4.4c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1c-2.5%2C0-4.5%2C1.9-4.8%2C4.4H134%0D%0A%09%09v-12h-1.5V12C132.6%2C12.4%2C132.9%2C12.7%2C133.3%2C12.7z%20M148.6%2C8.2c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7S145%2C14%2C145%2C11.9%0D%0A%09%09C145%2C9.9%2C146.6%2C8.2%2C148.6%2C8.2z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M288.9%2C222.1c0.1-0.1%2C0.2-0.3%2C0.2-0.5v-35.4c0-0.2-0.1-0.4-0.2-0.5l-81.1-84.9c-0.1-0.1-0.3-0.2-0.5-0.2h-39.8%0D%0A%09%09l-6.2-6.5c-0.1-0.1-0.3-0.2-0.5-0.2H19l-19.1-20V76l18.3%2C19.1c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h141.7l6.2%2C6.5c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h39.8%0D%0A%09%09l80.7%2C84.4v34.8l-25.7%2C26.9h-14c-0.2%2C0-0.4%2C0.1-0.5%2C0.2l-1.2%2C1.2h16.3c0.1%2C0%2C0.1-0.1%2C0.2-0.1L288.9%2C222.1z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M186.8%2C44.5l10.9%2C11.4c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2H213l2.9%2C3c-0.7%2C0.9-1.1%2C2-1.1%2C3.2c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1%0D%0A%09%09s4.9-2.3%2C4.9-5.1c0-2.8-2.2-5.1-4.9-5.1c-1%2C0-2%2C0.3-2.8%2C0.9l-3.1-3.3c-0.1-0.1-0.3-0.2-0.5-0.2h-14.8l-10.5-11V-0.7h-1.5V44%0D%0A%09%09C186.6%2C44.1%2C186.7%2C44.3%2C186.8%2C44.5z%20M219.8%2C58.6c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7%0D%0A%09%09C216.3%2C60.3%2C217.9%2C58.6%2C219.8%2C58.6z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M196.7%2C38.9l6.1%2C6.4c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h7.9c0.2%2C0%2C0.4-0.1%2C0.5-0.2l3-3.2c0.9%2C0.9%2C2.1%2C1.4%2C3.4%2C1.4%0D%0A%09%09c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1s-4.9%2C2.3-4.9%2C5.1c0%2C0.9%2C0.2%2C1.7%2C0.6%2C2.5l-3%2C3.1h-7.3l-5.7-6V-0.7h-1.5v39.1%0D%0A%09%09C196.5%2C38.5%2C196.6%2C38.7%2C196.7%2C38.9z%20M218.2%2C34.7c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7%0D%0A%09%09C214.6%2C36.4%2C216.2%2C34.7%2C218.2%2C34.7z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M243.2%2C74.8l31.9%2C33.4c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h48.5l5.7%2C6c-0.6%2C0.9-1%2C1.9-1%2C3.1c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1%0D%0A%09%09c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1c-1.1%2C0-2%2C0.4-2.9%2C1l-6-6.2c-0.1-0.1-0.3-0.2-0.5-0.2h-48.5l-31.5-32.9V-0.7h-1.5v75%0D%0A%09%09C242.9%2C74.4%2C243%2C74.6%2C243.2%2C74.8z%20M333.7%2C113.7c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7%0D%0A%09%09C330.1%2C115.4%2C331.7%2C113.7%2C333.7%2C113.7z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M254.9%2C69l22.8%2C23.8c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h50.7c0.4%2C2.5%2C2.4%2C4.4%2C4.8%2C4.4c2.7%2C0%2C4.9-2.3%2C4.9-5.1%0D%0A%09%09s-2.2-5.1-4.9-5.1c-2.5%2C0-4.5%2C1.9-4.8%2C4.4h-50.4l-22.4-23.4V-0.7h-1.5v69.2C254.7%2C68.7%2C254.7%2C68.8%2C254.9%2C69z%20M333.7%2C88.5%0D%0A%09%09c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7S331.7%2C88.5%2C333.7%2C88.5z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M273.1%2C44.8c0%2C0.2%2C0.1%2C0.4%2C0.2%2C0.5l17.4%2C18.2c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h7.3c0.2%2C2.6%2C2.3%2C4.7%2C4.9%2C4.7%0D%0A%09%09c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1c-2.4%2C0-4.3%2C1.7-4.8%2C4h-7l-16.9-17.7V-0.1l0.6-0.6h-2c0%2C0.1-0.1%2C0.2-0.1%2C0.3v45.2H273.1z%0D%0A%09%09%20M303.3%2C59.5c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7C299.8%2C61.2%2C301.4%2C59.5%2C303.3%2C59.5z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M281.6%2C5.8v33.4c0%2C0.2%2C0.1%2C0.4%2C0.2%2C0.5l7.8%2C8.2c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h8.3c0.4%2C2.5%2C2.4%2C4.4%2C4.8%2C4.4%0D%0A%09%09c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1c-2.5%2C0-4.5%2C1.9-4.8%2C4.4h-8l-7.4-7.8V6.1l6.5-6.8h-2.1l-5.7%2C6%0D%0A%09%09C281.7%2C5.4%2C281.6%2C5.6%2C281.6%2C5.8z%20M303.3%2C43.6c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7%0D%0A%09%09C299.8%2C45.3%2C301.4%2C43.6%2C303.3%2C43.6z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M314.3%2C37L328%2C51.3c-0.5%2C0.8-0.8%2C1.7-0.8%2C2.7c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1%0D%0A%09%09c-1.2%2C0-2.3%2C0.5-3.2%2C1.3l-13.4-14V-0.7H314v37.2C314.1%2C36.7%2C314.2%2C36.8%2C314.3%2C37z%20M332.2%2C50.3c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7%0D%0A%09%09c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7S330.2%2C50.3%2C332.2%2C50.3z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M323.3%2C21.5c0%2C0.2%2C0.1%2C0.4%2C0.2%2C0.5l3.7%2C3.9c-0.5%2C0.8-0.8%2C1.7-0.8%2C2.7c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1%0D%0A%09%09c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1c-1.2%2C0-2.3%2C0.5-3.2%2C1.3l-3.4-3.6V-0.3l0.4-0.4h-1.8c0%2C0%2C0%2C0%2C0%2C0.1L323.3%2C21.5L323.3%2C21.5z%0D%0A%09%09%20M331.4%2C24.9c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7C327.9%2C26.6%2C329.5%2C24.9%2C331.4%2C24.9z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M351.3%2C170.9c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.5v78.1h1.5v-77.8l69.6-72.8c0.1-0.1%2C0.2-0.3%2C0.2-0.5V-0.7H421v98.8%0D%0A%09%09L351.3%2C170.9z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M547.9%2C16.4v86.8c0%2C0.2%2C0.1%2C0.4%2C0.2%2C0.5l57.8%2C60.4c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2H699l13.9%2C14.5c-0.6%2C0.9-1%2C1.9-1%2C3%0D%0A%09%09c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1s4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1c-1.1%2C0-2.1%2C0.4-2.9%2C1L699.8%2C163c-0.1-0.1-0.3-0.2-0.5-0.2h-92.6l-57.3-60%0D%0A%09%09V16.7L566-0.7h-2.1l-15.8%2C16.6C548%2C16%2C547.9%2C16.2%2C547.9%2C16.4z%20M716.8%2C178.2c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7%0D%0A%09%09s-3.6-1.7-3.6-3.7C713.2%2C179.8%2C714.8%2C178.2%2C716.8%2C178.2z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M360.4%2C172.6c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.5v76.4h1.5v-76.1L477.5%2C52.3c0.1-0.1%2C0.2-0.3%2C0.2-0.5V-0.7h-1.5v52.2%0D%0A%09%09L360.4%2C172.6z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M393.3%2C56.1c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1c2.7%2C0%2C4.9-2.3%2C4.9-5.1c0-2.6-1.8-4.7-4.2-5.1V-0.7h-1.5v51.8%0D%0A%09%09C395.2%2C51.4%2C393.3%2C53.6%2C393.3%2C56.1z%20M401.8%2C56.1c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7%0D%0A%09%09S401.8%2C54.1%2C401.8%2C56.1z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M450.6%2C21.2c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1c-2.7%2C0-4.9%2C2.3-4.9%2C5.1S447.9%2C21.2%2C450.6%2C21.2z%0D%0A%09%09%20M450.6%2C12.3c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7S447%2C18%2C447%2C16C447.1%2C14%2C448.7%2C12.3%2C450.6%2C12.3z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M481.2%2C237.5c-2.7%2C0-4.9%2C2.3-4.9%2C5.1s2.2%2C5.1%2C4.9%2C5.1c2.7%2C0%2C4.9-2.3%2C4.9-5.1S483.9%2C237.5%2C481.2%2C237.5z%0D%0A%09%09%20M481.2%2C246.4c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7C484.8%2C244.7%2C483.2%2C246.4%2C481.2%2C246.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M515%2C237.5c-2.7%2C0-4.9%2C2.3-4.9%2C5.1s2.2%2C5.1%2C4.9%2C5.1s4.9-2.3%2C4.9-5.1S517.7%2C237.5%2C515%2C237.5z%20M515%2C246.4%0D%0A%09%09c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7S517%2C246.4%2C515%2C246.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M583.1%2C237.5c-2.7%2C0-4.9%2C2.3-4.9%2C5.1s2.2%2C5.1%2C4.9%2C5.1s4.9-2.3%2C4.9-5.1S585.8%2C237.5%2C583.1%2C237.5z%20M583.1%2C246.4%0D%0A%09%09c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7C586.7%2C244.7%2C585.1%2C246.4%2C583.1%2C246.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M382.3%2C86.2c2.7%2C0%2C4.9-2.3%2C4.9-5.1c0-2.8-2.2-5.1-4.9-5.1c-2.7%2C0-4.9%2C2.3-4.9%2C5.1%0D%0A%09%09C377.3%2C83.9%2C379.6%2C86.2%2C382.3%2C86.2z%20M382.3%2C77.4c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7%0D%0A%09%09C378.7%2C79%2C380.3%2C77.4%2C382.3%2C77.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M297.9%2C225.2v-63.8c0-0.2-0.1-0.4-0.2-0.5l-66.5-69.5c-0.1-0.1-0.3-0.2-0.5-0.2h-60l-5.9-6.2%0D%0A%09%09c-0.1-0.1-0.3-0.2-0.5-0.2H28.8L-0.1%2C54.4v2.2L28%2C86c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2H164l5.9%2C6.2c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h60l66%2C69.1v63.2%0D%0A%09%09l-23.6%2C24.7h2.1l22.8-23.8C297.9%2C225.6%2C297.9%2C225.4%2C297.9%2C225.2z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M366.7%2C4.8v131.5L311%2C194.5c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.5v54.5h1.5v-54.2l55.7-58.2c0.1-0.1%2C0.2-0.3%2C0.2-0.5V5.1%0D%0A%09%09l5.6-5.8h-2.1l-4.8%2C5C366.8%2C4.4%2C366.7%2C4.6%2C366.7%2C4.8z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M494.8%2C5.4V47L370.2%2C177.4c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.5v71.7h1.5v-71.3L496%2C47.9c0.1-0.1%2C0.2-0.3%2C0.2-0.5V5.8%0D%0A%09%09l6.2-6.5h-2.1L495%2C4.9C494.9%2C5%2C494.8%2C5.2%2C494.8%2C5.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M509.5%2C4.8v39.5l-131.9%2C138c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.5v66.7h1.5v-66.4l131.9-138c0.1-0.1%2C0.2-0.3%2C0.2-0.5V5.1%0D%0A%09%09l5.6-5.8h-2.1l-4.8%2C5C509.6%2C4.4%2C509.5%2C4.6%2C509.5%2C4.8z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M521%2C14.5v36.3L389.2%2C188.7c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.5v60.4h1.5v-60l131.8-138c0.1-0.1%2C0.2-0.3%2C0.2-0.5V14.8%0D%0A%09%09l14.9-15.5h-2.1l-14%2C14.7C521.1%2C14.1%2C521%2C14.3%2C521%2C14.5z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M169.8%2C149.6l-20.3-21.2c-0.1-0.1-0.3-0.2-0.5-0.2H91.2c-0.4-2.5-2.4-4.4-4.8-4.4c-2.7%2C0-4.9%2C2.3-4.9%2C5.1%0D%0A%09%09c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1c2.5%2C0%2C4.5-1.9%2C4.8-4.4h57.5l19.8%2C20.7v99.1h1.5V150C170%2C149.9%2C170%2C149.8%2C169.8%2C149.6z%20M86.4%2C132.7%0D%0A%09%09c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7S90%2C127%2C90%2C129S88.4%2C132.7%2C86.4%2C132.7z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M303.3%2C9.5c-2.7%2C0-4.9%2C2.3-4.9%2C5.1s2.2%2C5.1%2C4.9%2C5.1c2.7%2C0%2C4.9-2.3%2C4.9-5.1S306%2C9.5%2C303.3%2C9.5z%20M303.3%2C18.4%0D%0A%09%09c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7S305.3%2C18.4%2C303.3%2C18.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M210.3%2C9.5c-2.7%2C0-4.9%2C2.3-4.9%2C5.1s2.2%2C5.1%2C4.9%2C5.1s4.9-2.3%2C4.9-5.1S213%2C9.5%2C210.3%2C9.5z%20M210.3%2C18.4%0D%0A%09%09c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7C213.9%2C16.7%2C212.3%2C18.4%2C210.3%2C18.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M99%2C41.9c-2.7%2C0-4.9%2C2.3-4.9%2C5.1s2.2%2C5.1%2C4.9%2C5.1c2.7%2C0%2C4.9-2.3%2C4.9-5.1S101.7%2C41.9%2C99%2C41.9z%20M99%2C50.8%0D%0A%09%09c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7S101%2C50.8%2C99%2C50.8z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M175.9%2C144c0-0.2-0.1-0.4-0.2-0.5l-22.2-23.2c-0.1-0.1-0.3-0.2-0.5-0.2H75.4c-0.2%2C0-0.4%2C0.1-0.5%2C0.2l-11%2C11.5%0D%0A%09%09H14.3l-14.4-15.1v2.2l13.6%2C14.2c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h50.1c0.2%2C0%2C0.4-0.1%2C0.5-0.2l11-11.5h76.9l21.8%2C22.8V245%0D%0A%09%09c0%2C0.2%2C0.1%2C0.4%2C0.2%2C0.5l3.8%2C4h2.1l-4.7-4.9V144H175.9z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M641.2%2C109.2V54c0-0.2-0.1-0.4-0.2-0.5l-25.2-26.4c1-0.9%2C1.6-2.3%2C1.6-3.8c0-2.8-2.2-5.1-4.9-5.1%0D%0A%09%09s-4.9%2C2.3-4.9%2C5.1s2.2%2C5.1%2C4.9%2C5.1c0.7%2C0%2C1.4-0.2%2C2-0.5l25.2%2C26.4v55.1c0%2C0.2%2C0.1%2C0.4%2C0.2%2C0.5L662%2C133c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2%0D%0A%09%09h140.7v-1.5H662.9L641.2%2C109.2z%20M612.5%2C27c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7%0D%0A%09%09C616.1%2C25.4%2C614.5%2C27%2C612.5%2C27z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M612.5%2C4.9c0.9%2C0%2C1.8-0.3%2C2.5-0.7l45.1%2C47.1v50.5c0%2C0.2%2C0.1%2C0.4%2C0.2%2C0.5l19.9%2C20.8c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2%0D%0A%09%09h122.6v-1.5H681l-19.4-20.3V51c0-0.2-0.1-0.4-0.2-0.5L616.1%2C3.2c0.8-0.9%2C1.3-2.1%2C1.3-3.4c0-0.2%2C0-0.3%2C0-0.5H616c0%2C0.2%2C0%2C0.3%2C0%2C0.5%0D%0A%09%09c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7c0-0.2%2C0-0.3%2C0-0.5h-1.3c0%2C0.2%2C0%2C0.3%2C0%2C0.5C607.6%2C2.6%2C609.8%2C4.9%2C612.5%2C4.9z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M676.5%2C87.5l16.7%2C17.4c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h109.6v-1.5H693.9l-16.2-17V-0.7h-1.5V87%0D%0A%09%09C676.2%2C87.2%2C676.3%2C87.4%2C676.5%2C87.5z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M773.2%2C69.3c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1s4.9-2.3%2C4.9-5.1c0-2.6-1.8-4.7-4.2-5.1V-0.7h-1.5v64.9%0D%0A%09%09C775%2C64.6%2C773.2%2C66.7%2C773.2%2C69.3z%20M781.7%2C69.3c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7%0D%0A%09%09C780.1%2C65.5%2C781.7%2C67.2%2C781.7%2C69.3z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M737.1%2C43.8l17.5%2C18.3v19c-2.4%2C0.4-4.2%2C2.5-4.2%2C5.1c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1s4.9-2.3%2C4.9-5.1%0D%0A%09%09c0-2.6-1.8-4.7-4.2-5.1V61.8c0-0.2-0.1-0.4-0.2-0.5L738.3%2C43V-0.7h-1.5v44C736.9%2C43.4%2C737%2C43.6%2C737.1%2C43.8z%20M758.9%2C86.1%0D%0A%09%09c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7S758.9%2C84.1%2C758.9%2C86.1z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M725.9%2C72.8c-1.4%2C0-2.7%2C0.7-3.6%2C1.7l-13.4-14V16.7c2.4-0.4%2C4.2-2.5%2C4.2-5.1c0-2.8-2.2-5.1-4.9-5.1%0D%0A%09%09s-4.9%2C2.3-4.9%2C5.1c0%2C2.6%2C1.8%2C4.7%2C4.2%2C5.1v44.1c0%2C0.2%2C0.1%2C0.4%2C0.2%2C0.5l13.8%2C14.4c-0.3%2C0.7-0.5%2C1.4-0.5%2C2.2c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1%0D%0A%09%09s4.9-2.3%2C4.9-5.1C730.9%2C75.1%2C728.6%2C72.8%2C725.9%2C72.8z%20M704.6%2C11.6c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7%0D%0A%09%09C706.2%2C15.4%2C704.6%2C13.7%2C704.6%2C11.6z%20M725.9%2C81.7c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7%0D%0A%09%09S727.9%2C81.7%2C725.9%2C81.7z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M770.4%2C151.7l-18.3%2C19.2h-14.9L714%2C146.6c-0.1-0.1-0.3-0.2-0.5-0.2h-75.3l-52.8-55.3V49.9%0D%0A%09%09c2.5-0.2%2C4.6-2.4%2C4.6-5.1c0-2.8-2.2-5.1-4.9-5.1s-4.9%2C2.3-4.9%2C5.1c0%2C2.4%2C1.6%2C4.5%2C3.8%2C5v41.6c0%2C0.2%2C0.1%2C0.4%2C0.2%2C0.5l53.2%2C55.7%0D%0A%09%09c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h75.3l23.2%2C24.3c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h15.5c0.2%2C0%2C0.4-0.1%2C0.5-0.2l18.3-19.2h32v-1.5H771%0D%0A%09%09C770.8%2C151.5%2C770.6%2C151.6%2C770.4%2C151.7z%20M581.4%2C44.8c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7%0D%0A%09%09S581.4%2C46.8%2C581.4%2C44.8z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M612.8%2C86.9c2.7%2C0%2C4.9-2.3%2C4.9-5.1c0-2.8-2.2-5.1-4.9-5.1s-4.9%2C2.3-4.9%2C5.1C607.9%2C84.6%2C610.1%2C86.9%2C612.8%2C86.9z%0D%0A%09%09%20M612.8%2C78c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7S610.8%2C78%2C612.8%2C78z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M759.6%2C229.4c2.5%2C0%2C4.5-1.9%2C4.8-4.4h38.8v-1.5h-38.8c-0.4-2.5-2.4-4.4-4.8-4.4c-2.7%2C0-4.9%2C2.3-4.9%2C5.1%0D%0A%09%09C754.6%2C227.1%2C756.8%2C229.4%2C759.6%2C229.4z%20M759.6%2C220.6c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7%0D%0A%09%09C756%2C222.2%2C757.6%2C220.6%2C759.6%2C220.6z%22%2F%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E%0D%0A);background-size:auto 250px}.Vlt-card__image__icon{background:#fff;border-radius:4px;box-shadow:0 4px 4px 0 rgba(19,20,21,.14);height:60px;width:60px}.Vlt-card__image__icon img,.Vlt-card__image__icon svg{height:40px;margin:10px;width:40px}.Vlt-card__image--blue{background:linear-gradient(to right,#5685a4,#3b5c72)}.Vlt-card__image--blue .Vlt-card__image__icon svg{fill:#4d7793}.Vlt-card__image--blue-light{background:linear-gradient(to right,#78abcb,#4587b2)}.Vlt-card__image--blue-light .Vlt-card__image__icon svg{fill:#669fc4}.Vlt-card__image--red{background:linear-gradient(to right,#eb5c5c,#de1c1c)}.Vlt-card__image--red .Vlt-card__image__icon svg{fill:#e84545}.Vlt-card__image--orange{background:linear-gradient(to right,#fb9c86,#f9603b)}.Vlt-card__image--orange .Vlt-card__image__icon svg{fill:#fa7454}.Vlt-card__image--indigo{background:linear-gradient(to right,#df31a8,#aa1a7c)}.Vlt-card__image--indigo .Vlt-card__image__icon svg{fill:#d6219c}.Vlt-card__image--green{background:linear-gradient(to right,#07d387,#048957)}.Vlt-card__image--green .Vlt-card__image__icon svg{fill:#06ba77}.Vlt-card__image--purple{background:linear-gradient(to right,#c593ff,#9c46ff)}.Vlt-card__image--purple .Vlt-card__image__icon svg{fill:#b779ff}.Vlt-card__image--teal{background:linear-gradient(to right,#60cad7,#2facbc)}.Vlt-card__image--teal .Vlt-card__image__icon svg{fill:#4cc3d2}.Vlt-card__header{padding-bottom:16px}.Vlt-card__header .Vlt-btn,.Vlt-card__header .Vlt-dropdown__btn,.Vlt-card__header h1,.Vlt-card__header h2,.Vlt-card__header h3,.Vlt-card__header h4,.Vlt-card__header h5{margin:0!important}.Vlt-card__footer{border-top:1px solid rgba(19,20,21,.1);margin:16px -8px -8px;padding-top:16px}.Vlt-card__footer .Vlt-btn{margin-bottom:0;margin-top:0}.Vlt-card__footer--short{margin-bottom:-12px;margin-top:16px;padding-top:8px}.Vlt-card__footer--noborder{border:0;margin-top:0}.Vlt-card--scrollable{display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column}.Vlt-card--scrollable .Vlt-card__footer{-ms-flex-negative:0;flex-shrink:0;margin-top:0}.Vlt-card--scrollable .Vlt-card__header,.Vlt-card--scrollable .Vlt-card__image{-ms-flex-negative:0;flex-shrink:0;margin-bottom:0}.Vlt-card--scrollable .Vlt-card__header+.Vlt-card__content,.Vlt-card--scrollable .Vlt-card__image+.Vlt-card__content{padding-top:16px}.Vlt-card--scrollable .Vlt-card__content{-ms-flex:auto;flex:auto;overflow-y:auto;padding-bottom:16px}.Vlt-card--stretch{height:100%}.Vlt-card__cta{margin-bottom:-8px;text-align:center}.Vlt-card__content .Vlt-icon--larger:first-child,.Vlt-card__content .Vlt-icon--largest:first-child{margin-bottom:24px}.Vlt-card__corner{font-size:1.1rem;font-weight:600;line-height:1.8rem;padding-right:23px;position:absolute;right:24px;top:24px}.Vlt-card__corner>svg{height:18px;position:absolute;right:0;top:0;width:18px}.Vlt-card__corner .Vlt-btn{margin:0;margin-right:-23px}.Vlt-card--clickable,a.Vlt-card{cursor:pointer;transition:transform .1s}.Vlt-card--clickable:hover,a.Vlt-card:hover{transform:scale(1.022)}.Vlt-card--clickable:active,a.Vlt-card:active{transform:scale(1)}.Vlt-text-separator{display:block;line-height:1.6rem;margin:16px 0;overflow:hidden;text-align:center}.Vlt-text-separator span{color:#131415;font-size:1.2rem;font-weight:600;padding:0 8px;position:relative}.Vlt-text-separator span:after,.Vlt-text-separator span:before{background:#e1e2e6;content:'';display:block;height:1px;position:absolute;top:50%;width:100vw}.Vlt-text-separator span:before{right:100%}.Vlt-text-separator span:after{left:100%}.Vlt-text-separator--red span{color:#e84545;font-weight:600}.Vlt-text-separator--red span:after,.Vlt-text-separator--red span:before{background:#f79ca6}.Vlt-text-separator--big{line-height:2.1rem}.Vlt-text-separator--big span{font-size:1.4rem;font-weight:600}@keyframes scaleUp{0%{opacity:0;transform:scale(.8) translateY(1000px)}100%{opacity:1;transform:scale(1) translateY(0)}}@keyframes scaleDown{0%{opacity:1;transform:scale(1) translateY(0)}100%{opacity:0;transform:scale(.8) translateY(1000px)}}.Vlt-modal{-ms-flex-align:center;align-items:center;background:0 0;display:-ms-flexbox;display:flex;height:100vh;-ms-flex-pack:center;justify-content:center;left:0;position:fixed;top:0;transform:scale(0);transition:background .5s;width:100vw;z-index:99999999999}.Vlt-modal__panel{background:#fff;border-radius:6px;box-shadow:0 30px 40px rgba(19,20,21,.2);display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column;max-height:95vh;padding:32px;position:relative;width:calc(100vw - 20px)}@media only screen and (min-width:576px){.Vlt-modal__panel{width:400px}}@media only screen and (max-width:575px){.Vlt-modal__panel{margin-bottom:80px;margin-top:80px;max-height:calc(70vh)}}.Vlt-modal__panel p{color:#131415}.Vlt-modal__header{-ms-flex-negative:0;flex-shrink:0;padding-bottom:8px}.Vlt-modal__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:100%;border:0;box-shadow:none;cursor:pointer;height:24px;opacity:1;position:absolute;right:16px;top:16px;transition:opacity .2s;width:24px}.Vlt-modal__dismiss:hover{opacity:.6}.Vlt-modal__footer{-ms-flex-negative:0;flex-shrink:0;margin-bottom:-8px}.Vlt-modal__footer .Vlt-btn{margin-bottom:0;min-width:75px}.Vlt-modal_visible{background:rgba(19,20,21,.5);opacity:1;transform:scale(1) translateY(0)}.Vlt-modal_visible .Vlt-modal__panel{animation:scaleUp .5s cubic-bezier(.165,.84,.44,1) forwards}.Vlt-modal--out{background:0 0;opacity:0;transform:scale(0)}.Vlt-modal--out .Vlt-modal__panel{animation:scaleDown .5s cubic-bezier(.165,.84,.44,1) forwards}@media only screen and (min-width:576px){.Vlt-modal--large .Vlt-modal__panel{width:630px}}.Vlt-modal--message{text-align:center}.Vlt-modal--message .Vlt-modal__content{text-align:center}.Vlt-modal__content{-webkit-overflow-scrolling:touch;-ms-flex:auto;flex:auto;max-height:calc(95vh - 122px);overflow-x:hidden;overflow-y:auto;padding-bottom:24px}.Vlt-modal__content--message{text-align:center}.Vlt-modal--form{text-align:left}body.Vlt-body--modal-open{overflow:hidden}body.Vlt-body--modal-open main{overflow:hidden}.Vlt-accordion__content,.Vlt-js-accordion__content{height:0;overflow:hidden;transition:height .3s}.Vlt-accordion__content_open,.Vlt-js-accordion__content_open{height:auto;overflow:visible}.Vlt-js-accordion__trigger{cursor:pointer}.Vlt-accordion{border-bottom:1px solid #9b9da3}.Vlt-accordion__trigger{border-top:1px solid #9b9da3;cursor:pointer;display:-ms-flexbox;display:flex;font-size:1.8rem;font-weight:800;line-height:2.4rem;padding:15px 24px 15px 0;position:relative;text-align:left;transition:margin .2s;width:100%}.Vlt-accordion__trigger:first-child{border-top:0}.Vlt-accordion__trigger span{-ms-flex:1;flex:1}.Vlt-accordion__trigger svg{-ms-flex:0 0 24px;flex:0 0 24px;height:24px;margin-right:24px;width:24px}.Vlt-accordion__trigger:after,.Vlt-accordion__trigger:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2020%2020%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M3.38326%207.96544C3.58628%207.68629%203.97717%207.62457%204.25632%207.82759L9.99983%2012.0047L15.7433%207.82759C16.0225%207.62457%2016.4134%207.68629%2016.6164%207.96544C16.8194%208.2446%2016.7577%208.63549%2016.4785%208.83851L10.3674%2013.283C10.1483%2013.4423%209.85138%2013.4423%209.63222%2013.283L3.52111%208.83851C3.24195%208.63549%203.18023%208.2446%203.38326%207.96544Z%22%2F%3E%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:22px;content:'';display:block;-ms-flex:0 0 24px;flex:0 0 24px;height:24px;width:24px}.Vlt-accordion__trigger:after{position:absolute;right:0;transition:transform .2s}.Vlt-accordion__trigger:before{display:none}.Vlt-accordion__trigger_active+.Vlt-accordion__content+.Vlt-accordion__trigger{margin-top:23px}.Vlt-accordion__trigger_active:after,.Vlt-accordion__trigger_active:before{transform:rotate(180deg)}.Vlt-accordion__trigger--noborder+.Vlt-accordion__content{border-bottom:0}.Vlt-accordion--chevron-left .Vlt-accordion__content,.Vlt-accordion--icons .Vlt-accordion__content,.Vlt-accordion--plus-minus .Vlt-accordion__content{padding-left:48px}.Vlt-accordion--chevron-left .Vlt-accordion__trigger:before,.Vlt-accordion--plus-minus .Vlt-accordion__trigger:before{display:block;margin-right:24px}.Vlt-accordion--chevron-left .Vlt-accordion__trigger:after,.Vlt-accordion--plus-minus .Vlt-accordion__trigger:after{display:none}.Vlt-accordion--plus-minus .Vlt-accordion__trigger{-ms-flex-pack:left;justify-content:left}.Vlt-accordion--plus-minus .Vlt-accordion__trigger:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M12.75%203.5C12.75%203.08579%2012.4142%202.75%2012%202.75C11.5858%202.75%2011.25%203.08579%2011.25%203.5V11.25H3.5C3.08579%2011.25%202.75%2011.5858%202.75%2012C2.75%2012.4142%203.08579%2012.75%203.5%2012.75H11.25V20.5C11.25%2020.9141%2011.5858%2021.25%2012%2021.25C12.4142%2021.25%2012.75%2020.9141%2012.75%2020.5V12.75H20.5C20.9141%2012.75%2021.25%2012.4142%2021.25%2012C21.25%2011.5858%2020.9141%2011.25%2020.5%2011.25H12.75V3.5Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-accordion--plus-minus .Vlt-accordion__trigger_active:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M3.5%2011C3.08579%2011%202.75%2011.3358%202.75%2011.75C2.75%2012.1642%203.08579%2012.5%203.5%2012.5H20.5C20.9141%2012.5%2021.25%2012.1642%2021.25%2011.75C21.25%2011.3358%2020.9141%2011%2020.5%2011H3.5Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);transform:none}.Vlt-accordion__content:last-of-type.Vlt-accordion__content_open{padding-bottom:28px}.Vlt-accordion__content--noborder{border:0}.Vlt-accordion--large .Vlt-accordion__trigger{font-size:2rem;line-height:2.5rem;padding:19px 24px 20px 0}.Vlt-accordion--large .Vlt-accordion__trigger_active+.Vlt-accordion__content+.Vlt-accordion__trigger{margin-top:28px}.Vlt-spinner{display:inline-block;height:64px;margin:8px;position:relative;width:64px}.Vlt-spinner:after,.Vlt-spinner:before{animation:spinner 1.2s cubic-bezier(.5,0,.5,1) infinite;border:6px solid #131415;border-color:#131415 transparent transparent;border-radius:50%;box-sizing:border-box;content:'';display:block;height:75%;margin:6px;position:absolute;width:75%}.Vlt-spinner:after{animation-delay:-.1s}.Vlt-spinner--small{height:32px;width:32px}.Vlt-spinner--small:after,.Vlt-spinner--small:before{border-width:3px;margin:3px}.Vlt-spinner--smaller{height:20px;width:20px}.Vlt-spinner--smaller:after,.Vlt-spinner--smaller:before{border-width:2px;margin:2px}.Vlt-spinner--middle{vertical-align:middle}.Vlt-spinner--center{display:block;margin:0 auto}.Vlt-spinner--white:after,.Vlt-spinner--white:before{border-color:#fff transparent transparent}.Vlt-btn .Vlt-spinner{height:20px;margin:-3px 6px 0 0;vertical-align:middle;width:20px}.Vlt-btn .Vlt-spinner:after,.Vlt-btn .Vlt-spinner:before{border-width:2px;margin:2px}.Vlt-btn--large .Vlt-spinner{height:24px;width:24px}.Vlt-btn--small .Vlt-spinner{height:18px;margin-top:-4px;width:18px}@keyframes spinner{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.Vlt-empty{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;height:100%;-ms-flex-pack:center;justify-content:center;padding:16px 0;text-align:center;width:100%}.Vlt-empty:before{background-image:url(data:image/svg+xml,%3Csvg%20width%3D%22120%22%20height%3D%22120%22%20viewBox%3D%220%200%20120%20120%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Ccircle%20cx%3D%2260%22%20cy%3D%2260%22%20r%3D%2260%22%20fill%3D%22%23E1E2E6%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M42.75%2038.4375C42.75%2037.6436%2043.3936%2037%2044.1875%2037H75.812C76.606%2037%2077.25%2037.6436%2077.25%2038.4375C77.25%2039.2314%2076.606%2039.875%2075.812%2039.875H44.1875C43.3936%2039.875%2042.75%2039.2314%2042.75%2038.4375ZM49.938%2054.25C50.731%2054.25%2051.375%2054.8936%2051.375%2055.6875V60H68.625V55.6875C68.625%2054.8936%2069.269%2054.25%2070.062%2054.25C70.856%2054.25%2071.5%2054.8936%2071.5%2055.6875V61.438C71.5%2062.231%2070.856%2062.875%2070.062%2062.875H49.938C49.144%2062.875%2048.5%2062.231%2048.5%2061.438V55.6875C48.5%2054.8936%2049.144%2054.25%2049.938%2054.25ZM38.4375%2045.625C37.6436%2045.625%2037%2046.2686%2037%2047.0625V78.688C37%2079.481%2037.6436%2080.125%2038.4375%2080.125H81.562C82.356%2080.125%2083%2079.481%2083%2078.688V47.0625C83%2046.2686%2082.356%2045.625%2081.562%2045.625H38.4375ZM39.875%2077.25V48.5H80.125V77.25H39.875Z%22%20fill%3D%22%23131415%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';-ms-flex:0 0 100%;flex:0 0 100%;height:120px}.Vlt-empty__icon{background-color:#e1e2e6;border-radius:50%;display:block;height:120px;position:relative;width:120px}.Vlt-empty__icon svg{height:60px;left:30px;position:absolute;top:30px;width:60px}.Vlt-empty__header{-ms-flex:0 0 100%;flex:0 0 100%;font-size:1.6rem;font-weight:600;line-height:2.3rem;margin-bottom:-8px;margin-top:24px}.Vlt-empty__content{color:#131415;-ms-flex:0 0 100%;flex:0 0 100%;margin-top:16px}.Vlt-empty__content p{color:#131415}.Vlt-empty--search:before{background-image:url(data:image/svg+xml,%3Csvg%20width%3D%22120%22%20height%3D%22120%22%20viewBox%3D%220%200%20120%20120%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Ccircle%20cx%3D%2260%22%20cy%3D%2260%22%20r%3D%2260%22%20fill%3D%22%23E1E2E6%22%2F%3E%0A%3Cpath%20d%3D%22M39.875%2055.6875C39.875%2047.0625%2047.062%2039.875%2055.687%2039.875C64.312%2039.875%2071.5%2047.0625%2071.5%2055.6875C71.5%2064.312%2064.312%2071.5%2055.687%2071.5C47.062%2071.5%2039.875%2064.312%2039.875%2055.6875ZM55.687%2037C45.338%2037%2037%2045.3375%2037%2055.6875C37%2066.037%2045.338%2074.375%2055.687%2074.375C58.85%2074.375%2061.725%2073.512%2064.312%2072.075L74.663%2082.425C75.238%2083%2076.1%2083%2076.675%2082.425L82.425%2076.675C83%2076.1%2083%2075.238%2082.425%2074.663L72.075%2064.312C73.512%2061.725%2074.375%2058.85%2074.375%2055.6875C74.375%2045.3375%2066.037%2037%2055.687%2037Z%22%20fill%3D%22%23131415%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-empty--icon:before{display:none}.Vlt-steps{counter-reset:steps;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-pack:center;justify-content:center;list-style:none;margin:0;overflow:visible;padding:0}.Vlt-steps--black .Vlt-steps__item--selected:before,.Vlt-steps--black .Vlt-steps__item_selected:before{background:#131415;border-color:#131415}.Vlt-steps--grey .Vlt-steps__item--selected:before,.Vlt-steps--grey .Vlt-steps__item_selected:before{background:#c2c4cc;border-color:#c2c4cc}.Vlt-steps--white .Vlt-steps__item:before{border-color:#fff;color:#fff}.Vlt-steps--white .Vlt-steps__item--selected:before,.Vlt-steps--white .Vlt-steps__item_selected:before{background:#fff;color:#131415}.Vlt-steps--orange .Vlt-steps__item--selected:before,.Vlt-steps--orange .Vlt-steps__item_selected:before{background:#fa7454;border-color:#fa7454}.Vlt-steps--blue .Vlt-steps__item--selected:before,.Vlt-steps--blue .Vlt-steps__item_selected:before{background:#669fc4;border-color:#669fc4}.Vlt-steps--red .Vlt-steps__item--selected:before,.Vlt-steps--red .Vlt-steps__item_selected:before{background:#e84545;border-color:#e84545}.Vlt-steps--green .Vlt-steps__item--selected:before,.Vlt-steps--green .Vlt-steps__item_selected:before{background:#06ba77;border-color:#06ba77}.Vlt-steps--purple .Vlt-steps__item--selected:before,.Vlt-steps--purple .Vlt-steps__item_selected:before{background:#b779ff;border-color:#b779ff}.Vlt-steps--yellow .Vlt-steps__item--selected:before,.Vlt-steps--yellow .Vlt-steps__item_selected:before{background:#ffc100;border-color:#ffc100}.Vlt-steps--indigo .Vlt-steps__item--selected:before,.Vlt-steps--indigo .Vlt-steps__item_selected:before{background:#d6219c;border-color:#d6219c}.Vlt-steps__item{-ms-flex-align:center;align-items:center;color:#131415;counter-increment:steps;display:table;font-size:14px;font-weight:400;margin:0 65px 0 0;position:relative;text-align:center}@media only screen and (max-width:575px){.Vlt-steps__item{-ms-flex:1;flex:1;position:relative;text-align:center}}.Vlt-steps__item span{font-size:1.1rem;font-weight:400;left:50%;line-height:1.5rem;margin-top:4px;position:absolute;transform:translateX(-50%);white-space:nowrap}.Vlt-steps__item:first-child{margin-left:0}.Vlt-steps__item a{color:#131415}.Vlt-steps__item:before{-ms-flex-align:center;align-items:center;border:1px solid;border-color:#131415;border-radius:100%;color:#131415;content:counter(steps);display:-ms-flexbox;display:flex;-ms-flex:0 0 40px;flex:0 0 40px;font-size:14px;height:40px;-ms-flex-pack:center;justify-content:center;margin:0 auto;width:40px}.Vlt-steps__item:after{background-image:url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20clip-path%3D%22url(%23clip0)%22%3E%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M9.55892%204.05952C9.89391%203.81589%2010.363%203.88995%2010.6066%204.22494L15.9399%2011.5583C16.1312%2011.8213%2016.1312%2012.1775%2015.9399%2012.4405L10.6066%2019.7739C10.363%2020.1089%209.89391%2020.1829%209.55892%2019.9393C9.22393%2019.6957%209.14987%2019.2266%209.3935%2018.8916L14.406%2011.9994L9.3935%205.1072C9.14987%204.77221%209.22393%204.30315%209.55892%204.05952Z%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0%22%3E%0A%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%2216%22%20height%3D%2216%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E");background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';height:24px;position:absolute;right:-45px;top:8px;width:24px}.Vlt-steps__item:last-child{margin-right:0}.Vlt-steps__item:last-child:after{display:none}.Vlt-steps__item--selected:before,.Vlt-steps__item_selected:before{background:#131415;color:#fff;font-weight:400}.Vlt-steps__item_done:before{background-color:#c2c4cc;background-image:url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20%3E%3Cpath%20fill%3D%22%23fff%22%20fill-rule%3D%22nonzero%22%20d%3D%22M2.904%2012.11L1.5%2013.52%207.958%2020%2022.5%205.409%2021.096%204%207.958%2017.182z%22%2F%3E%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:20px 20px;border:0;content:''}.Vlt-steps__item_done:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23C4CDD5%3B%22%20d%3D%22M13.5%2C12l-5.2%2C5.4c-0.3%2C0.4-0.3%2C0.9%2C0%2C1.3c0.3%2C0.3%2C0.9%2C0.4%2C1.2%2C0c0%2C0%2C0%2C0%2C0%2C0L16%2C12L9.5%2C5.3%0D%0A%09c-0.3-0.3-0.9-0.4-1.2%2C0c0%2C0%2C0%2C0%2C0%2C0c-0.3%2C0.4-0.3%2C0.9%2C0%2C1.3L13.5%2C12z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-switch{height:30px;position:relative;width:50px}.Vlt-switch__slider{background-color:#b6babd;border-radius:30px;cursor:pointer;height:100%;left:0;position:absolute;top:0;transition:.4s;width:100%}.Vlt-switch__slider:before{background-color:#fff;border:solid .5px rgba(0,0,0,.1);border-radius:100%;box-shadow:0 3px 3px 0 rgba(0,0,0,.05),0 2px 2px 0 rgba(0,0,0,.1);content:'';height:28px;left:1px;position:absolute;top:1px;transition:.4s;width:28px}.Vlt-switch__slider:hover{background-color:#c4c7c9}.Vlt-switch input{-webkit-tap-highlight-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none;height:0;left:10px;overflow:hidden;position:absolute;top:10px;visibility:hidden;width:0}.Vlt-switch input:active,.Vlt-switch input:focus{-webkit-tap-highlight-color:transparent;box-shadow:none;outline:0}.Vlt-switch input:checked~.Vlt-switch__slider{background-color:#06ba77}.Vlt-switch input:checked~.Vlt-switch__slider:before{left:21px}.Vlt-switch.Vlt-switch--red input:checked~.Vlt-switch__slider{background-color:#e84545}.Vlt-switch--small{height:20px;position:relative;width:32px}.Vlt-switch--small .Vlt-switch__slider:before{height:18px;width:18px}.Vlt-switch--small input:checked~.Vlt-switch__slider:before{left:13px}.Vlt-dialpad{background:#131415;border-radius:8px;box-shadow:0 5px 10px 0 rgba(19,20,21,.25);margin:8px auto;max-width:100%;width:300px}.Vlt-dialpad__keypad{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;padding:8px 8px 24px}.Vlt-dialpad__key{-ms-flex-align:center;align-items:center;border-radius:6px;cursor:pointer;display:-ms-flexbox;display:flex;-ms-flex:0 0 33%;flex:0 0 33%;-ms-flex-flow:row wrap;flex-flow:row wrap;height:60px;-ms-flex-pack:center;justify-content:center;margin:2px 0;transition:background .4s}.Vlt-dialpad__key__main{-ms-flex-item-align:start;align-self:flex-start;color:#fff;-ms-flex:0 0 100%;flex:0 0 100%;font-size:3rem;font-weight:800;padding-bottom:2px;padding-top:10px;text-align:center}.Vlt-dialpad__key__sub{-ms-flex-item-align:start;align-self:flex-start;color:#9b9da3;-ms-flex:0 0 100%;flex:0 0 100%;font-size:1.2rem;font-weight:600;text-align:center;text-transform:uppercase}.Vlt-dialpad__key__sub-plus{font-size:2rem;font-weight:800}.Vlt-dialpad__key:hover{background:rgba(255,255,255,.15)}.Vlt-dialpad__key:active{background:rgba(255,255,255,.25)}.Vlt-dialpad__key svg{height:24px;width:24px}.Vlt-dialpad__key .Vlt-btn{margin:0}.Vlt-dialpad__key .Vlt-btn svg{height:24px;margin:0 -12px;width:24px}.Vlt-dialpad__key--nohover:hover{background:0 0}.Vlt-dialpad__header{color:#fff;font-size:1.2rem;padding:12px 32px;position:relative;text-align:center}.Vlt-dialpad__header__dismiss{background-color:transparent;background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:100%;border:0;box-shadow:none;cursor:pointer;height:24px;opacity:1;outline:0;position:absolute;right:8px;top:8px;transition:opacity .2s;width:24px}.Vlt-dialpad__header__dismiss svg{display:none}.Vlt-dialpad__header__dismiss:hover{opacity:.7}.Vlt-dialpad__strip{-ms-flex-align:center;align-items:center;background:rgba(255,255,255,.0625);display:-ms-flexbox;display:flex;height:52px;padding:8px 16px}.Vlt-dialpad__strip__icon{-ms-flex:0 0 28px;flex:0 0 28px;width:28px}.Vlt-dialpad__strip__backspace{cursor:pointer;-ms-flex:0 0 28px;flex:0 0 28px;transition:opacity .2s;width:28px}.Vlt-dialpad__strip__backspace:hover{opacity:.7}.Vlt-dialpad__strip__number{-ms-flex:1;flex:1;padding:0 4px}.Vlt-dialpad__strip__number input{background:0 0;border:0;color:#fff;direction:rtl;font-size:2.1rem;font-weight:800;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap;width:100%}.Vlt-dialpad__strip__number input:focus{direction:ltr;outline:0}.Vlt-dialpad--light{background:#fff;border:0}.Vlt-dialpad--light .Vlt-dialpad__key__main{color:#131415}.Vlt-dialpad--light .Vlt-dialpad__key__sub{color:#9b9da3}.Vlt-dialpad--light .Vlt-dialpad__key:hover{background:#f3f3f5}.Vlt-dialpad--light .Vlt-dialpad__key:active{background:#e1e2e6}.Vlt-dialpad--light .Vlt-dialpad__key--nohover:hover{background:0 0}.Vlt-dialpad--light .Vlt-dialpad__header{color:#616266}.Vlt-dialpad--light .Vlt-dialpad__header__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-dialpad--light .Vlt-dialpad__strip{background:#f3f3f5}.Vlt-dialpad--light .Vlt-dialpad__strip__number input{color:#616266}.Vlt-popup{display:inline-block;position:relative}.Vlt-popup__panel{max-height:0;overflow:hidden;position:absolute;width:250px;z-index:99999999}.Vlt-popup__panel--width2{min-width:200px}.Vlt-popup__panel--width3{min-width:300px}.Vlt-popup__panel__content{background:#fff;border-radius:8px;box-shadow:0 1px 20px rgba(19,20,21,.2)}.Vlt-popup__panel_open{max-height:100vh;overflow:visible}.Vlt-popup__panel_open .Vlt-popup__scroll{max-height:400px;overflow-y:auto}.Vlt-popup__header{background:#669fc4;border-top-left-radius:8px;border-top-right-radius:8px;color:#fff;font-size:1.5rem;font-weight:900;padding:8px 24px;text-align:left}.Vlt-popup__link{color:#131415;cursor:pointer;display:-ms-flexbox;display:flex;overflow:hidden;padding:12px 20px 0;position:relative;text-align:left}.Vlt-popup__link--noborder{margin-top:-4px}.Vlt-popup__link--noborder:before{display:none}.Vlt-popup__link--disabled,.Vlt-popup__link--selected{color:#9b9da3;cursor:default;pointer-events:none}.Vlt-popup__link--disabled .Vlt-popup__link__icon,.Vlt-popup__link--selected .Vlt-popup__link__icon{fill:#9b9da3}.Vlt-popup__link--highlighted{color:#669fc4}.Vlt-popup__link__icon{fill:#669fc4;-ms-flex:0 0 20px;flex:0 0 20px;height:20px;margin-right:10px;vertical-align:middle;width:20px}.Vlt-popup__link__content{-ms-flex:1;flex:1;padding-bottom:16px;position:relative}.Vlt-popup__link__content:after{background:#e1e2e6;bottom:0;content:'';display:block;height:1px;left:0;position:absolute;width:100%}.Vlt-popup__link__content h6{font-weight:600;margin-bottom:0!important}.Vlt-popup__link__content p{margin-top:8px}.Vlt-popup__link:hover{background:rgba(19,20,21,.05)}.Vlt-popup__link:active{background:rgba(19,20,21,.1)}.Vlt-popup__link--nohover:hover{background:0 0}.Vlt-popup__link:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.Vlt-popup__link:last-child .Vlt-popup__link__content:after{display:none}.Vlt-popup--top-left .Vlt-popup__panel{bottom:100%;right:0}.Vlt-popup--top-right .Vlt-popup__panel{bottom:100%;left:0}.Vlt-popup--bottom-left .Vlt-popup__panel{right:0;top:100%}.Vlt-popup--bottom-right .Vlt-popup__panel{left:0;top:100%}.Vlt-article h1,.Vlt-article h2{margin-bottom:24px}.Vlt-article h1:not(:first-child),.Vlt-article h2:not(:first-child){margin-top:32px;padding-top:0}.Vlt-article h3,.Vlt-article h4,.Vlt-article h5,.Vlt-article h6{margin-bottom:16px}.Vlt-article h3:not(:first-child),.Vlt-article h4:not(:first-child),.Vlt-article h5:not(:first-child),.Vlt-article h6:not(:first-child){margin-top:24px;padding-top:0}.Vlt-article .Vlt-box,.Vlt-article .Vlt-callout,.Vlt-article .Vlt-table,.Vlt-article pre[class*=language]{margin-bottom:16px}.Vlt-article .Vlt-box:not(:first-child),.Vlt-article .Vlt-callout:not(:first-child),.Vlt-article .Vlt-table:not(:first-child),.Vlt-article pre[class*=language]:not(:first-child){margin-top:16px}.Vlt-article .Vlt-list li{margin-bottom:16px}.Vlt-article p:not(.p-large){line-height:2rem}.Vlt-article figure{margin:32px auto;text-align:center}.Vlt-article .Vlt-box--fancy h1,.Vlt-article .Vlt-box--fancy h2,.Vlt-article .Vlt-box--fancy h3,.Vlt-article .Vlt-box--fancy h4,.Vlt-article .Vlt-box--fancy h5,.Vlt-article .Vlt-box--fancy h6,.Vlt-article .Vlt-callout h1,.Vlt-article .Vlt-callout h2,.Vlt-article .Vlt-callout h3,.Vlt-article .Vlt-callout h4,.Vlt-article .Vlt-callout h5,.Vlt-article .Vlt-callout h6,.Vlt-article .Vlt-modal h1,.Vlt-article .Vlt-modal h2,.Vlt-article .Vlt-modal h3,.Vlt-article .Vlt-modal h4,.Vlt-article .Vlt-modal h5,.Vlt-article .Vlt-modal h6,.Vlt-article .Vlt-sidenav h1,.Vlt-article .Vlt-sidenav h2,.Vlt-article .Vlt-sidenav h3,.Vlt-article .Vlt-sidenav h4,.Vlt-article .Vlt-sidenav h5,.Vlt-article .Vlt-sidenav h6,.Vlt-article--reverse h1,.Vlt-article--reverse h2,.Vlt-article--reverse h3,.Vlt-article--reverse h4,.Vlt-article--reverse h5,.Vlt-article--reverse h6{margin-bottom:8px;margin-top:0}.Vlt-article .Vlt-box--fancy h1:not(:first-child),.Vlt-article .Vlt-box--fancy h2:not(:first-child),.Vlt-article .Vlt-box--fancy h3:not(:first-child),.Vlt-article .Vlt-box--fancy h4:not(:first-child),.Vlt-article .Vlt-box--fancy h5:not(:first-child),.Vlt-article .Vlt-box--fancy h6:not(:first-child),.Vlt-article .Vlt-callout h1:not(:first-child),.Vlt-article .Vlt-callout h2:not(:first-child),.Vlt-article .Vlt-callout h3:not(:first-child),.Vlt-article .Vlt-callout h4:not(:first-child),.Vlt-article .Vlt-callout h5:not(:first-child),.Vlt-article .Vlt-callout h6:not(:first-child),.Vlt-article .Vlt-modal h1:not(:first-child),.Vlt-article .Vlt-modal h2:not(:first-child),.Vlt-article .Vlt-modal h3:not(:first-child),.Vlt-article .Vlt-modal h4:not(:first-child),.Vlt-article .Vlt-modal h5:not(:first-child),.Vlt-article .Vlt-modal h6:not(:first-child),.Vlt-article .Vlt-sidenav h1:not(:first-child),.Vlt-article .Vlt-sidenav h2:not(:first-child),.Vlt-article .Vlt-sidenav h3:not(:first-child),.Vlt-article .Vlt-sidenav h4:not(:first-child),.Vlt-article .Vlt-sidenav h5:not(:first-child),.Vlt-article .Vlt-sidenav h6:not(:first-child),.Vlt-article--reverse h1:not(:first-child),.Vlt-article--reverse h2:not(:first-child),.Vlt-article--reverse h3:not(:first-child),.Vlt-article--reverse h4:not(:first-child),.Vlt-article--reverse h5:not(:first-child),.Vlt-article--reverse h6:not(:first-child){margin-top:0}.Vlt-article .Vlt-box--fancy h1,.Vlt-article .Vlt-box--fancy h2,.Vlt-article .Vlt-callout h1,.Vlt-article .Vlt-callout h2,.Vlt-article .Vlt-modal h1,.Vlt-article .Vlt-modal h2,.Vlt-article .Vlt-sidenav h1,.Vlt-article .Vlt-sidenav h2,.Vlt-article--reverse h1,.Vlt-article--reverse h2{margin-bottom:16px}.Vlt-article .Vlt-box--fancy .Vlt-box,.Vlt-article .Vlt-box--fancy .Vlt-callout,.Vlt-article .Vlt-box--fancy .Vlt-table,.Vlt-article .Vlt-box--fancy pre[class*=language],.Vlt-article .Vlt-callout .Vlt-box,.Vlt-article .Vlt-callout .Vlt-callout,.Vlt-article .Vlt-callout .Vlt-table,.Vlt-article .Vlt-callout pre[class*=language],.Vlt-article .Vlt-modal .Vlt-box,.Vlt-article .Vlt-modal .Vlt-callout,.Vlt-article .Vlt-modal .Vlt-table,.Vlt-article .Vlt-modal pre[class*=language],.Vlt-article .Vlt-sidenav .Vlt-box,.Vlt-article .Vlt-sidenav .Vlt-callout,.Vlt-article .Vlt-sidenav .Vlt-table,.Vlt-article .Vlt-sidenav pre[class*=language],.Vlt-article--reverse .Vlt-box,.Vlt-article--reverse .Vlt-callout,.Vlt-article--reverse .Vlt-table,.Vlt-article--reverse pre[class*=language]{margin-bottom:8px;margin-top:0}.Vlt-article .Vlt-box--fancy .Vlt-box:not(:first-child),.Vlt-article .Vlt-box--fancy .Vlt-callout:not(:first-child),.Vlt-article .Vlt-box--fancy .Vlt-table:not(:first-child),.Vlt-article .Vlt-box--fancy pre[class*=language]:not(:first-child),.Vlt-article .Vlt-callout .Vlt-box:not(:first-child),.Vlt-article .Vlt-callout .Vlt-callout:not(:first-child),.Vlt-article .Vlt-callout .Vlt-table:not(:first-child),.Vlt-article .Vlt-callout pre[class*=language]:not(:first-child),.Vlt-article .Vlt-modal .Vlt-box:not(:first-child),.Vlt-article .Vlt-modal .Vlt-callout:not(:first-child),.Vlt-article .Vlt-modal .Vlt-table:not(:first-child),.Vlt-article .Vlt-modal pre[class*=language]:not(:first-child),.Vlt-article .Vlt-sidenav .Vlt-box:not(:first-child),.Vlt-article .Vlt-sidenav .Vlt-callout:not(:first-child),.Vlt-article .Vlt-sidenav .Vlt-table:not(:first-child),.Vlt-article .Vlt-sidenav pre[class*=language]:not(:first-child),.Vlt-article--reverse .Vlt-box:not(:first-child),.Vlt-article--reverse .Vlt-callout:not(:first-child),.Vlt-article--reverse .Vlt-table:not(:first-child),.Vlt-article--reverse pre[class*=language]:not(:first-child){margin-top:0}.Vlt-article .Vlt-box--fancy p:not(.p-large),.Vlt-article .Vlt-callout p:not(.p-large),.Vlt-article .Vlt-modal p:not(.p-large),.Vlt-article .Vlt-sidenav p:not(.p-large),.Vlt-article--reverse p:not(.p-large){line-height:2rem}.Vlt-article .Vlt-box--fancy .Vlt-list li,.Vlt-article .Vlt-callout .Vlt-list li,.Vlt-article .Vlt-modal .Vlt-list li,.Vlt-article .Vlt-sidenav .Vlt-list li,.Vlt-article--reverse .Vlt-list li{margin-bottom:.5em}.Vlt-article .Vlt-box--fancy figure,.Vlt-article .Vlt-callout figure,.Vlt-article .Vlt-modal figure,.Vlt-article .Vlt-sidenav figure,.Vlt-article--reverse figure{margin:16px auto;text-align:center}.Vlt-section{display:inline-block;margin:24px 0}.Vlt-inset{margin-left:32px}.Vlt-center{text-align:center!important}.Vlt-right{text-align:right!important}.Vlt-left{text-align:left!important}.Vlt-nowrap{white-space:nowrap!important}.Vlt-form__element--big .Vlt-custom-select__input,.Vlt-truncate{display:block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Vlt-truncate--inline{display:inline}hr{border-bottom:0;border-top:1px solid #e1e2e6;-ms-flex:0 0 100%;flex:0 0 100%;height:0;margin:24px 0}.hr--tall{margin:32px 0}.hr--short{margin:16px 0}.hr--shorter{margin:8px 0}.Vlt-icon{display:inline-block;height:24px;vertical-align:middle;width:24px}.Vlt-icon--18{height:18px;width:18px}.Vlt-icon--small{height:20px;width:20px}.Vlt-icon--smaller{height:16px;width:16px}.Vlt-icon--text-bottom{vertical-align:text-bottom}.Vlt-icon--large{height:32px;width:32px}.Vlt-icon--larger{height:40px;width:40px}.Vlt-icon--largest{height:48px;width:48px}.Vlt-container{max-width:1200px}@media only screen and (min-width:768px){.Vlt-margin--top0{margin-top:0!important}}@media only screen and (min-width:768px){.Vlt-margin--top1{margin-top:8px!important}}@media only screen and (min-width:768px){.Vlt-margin--top2{margin-top:16px!important}}@media only screen and (min-width:768px){.Vlt-margin--top3{margin-top:24px!important}}@media only screen and (min-width:768px){.Vlt-margin--top4{margin-top:32px!important}}@media only screen and (max-width:575px){.Vlt-margin--S-top0{margin-top:0!important}}@media only screen and (max-width:575px){.Vlt-margin--S-top1{margin-top:8px!important}}@media only screen and (max-width:575px){.Vlt-margin--S-top2{margin-top:16px!important}}@media only screen and (max-width:575px){.Vlt-margin--S-top3{margin-top:24px!important}}@media only screen and (max-width:575px){.Vlt-margin--S-top4{margin-top:32px!important}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-margin--M-top0{margin-top:0!important}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-margin--M-top1{margin-top:8px!important}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-margin--M-top2{margin-top:16px!important}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-margin--M-top3{margin-top:24px!important}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-margin--M-top4{margin-top:32px!important}}.Vlt-margin--A-top0{margin-top:0!important}.Vlt-margin--A-top1{margin-top:8px!important}.Vlt-margin--A-top2{margin-top:16px!important}.Vlt-margin--A-top3{margin-top:24px!important}.Vlt-margin--A-top4{margin-top:32px!important}@media only screen and (min-width:768px){.Vlt-margin--bottom0{margin-bottom:0!important}}@media only screen and (min-width:768px){.Vlt-margin--bottom1{margin-bottom:8px!important}}@media only screen and (min-width:768px){.Vlt-margin--bottom2{margin-bottom:16px!important}}@media only screen and (min-width:768px){.Vlt-margin--bottom3{margin-bottom:24px!important}}@media only screen and (min-width:768px){.Vlt-margin--bottom4{margin-bottom:32px!important}}@media only screen and (max-width:575px){.Vlt-margin--S-bottom0{margin-bottom:0!important}}@media only screen and (max-width:575px){.Vlt-margin--S-bottom1{margin-bottom:8px!important}}@media only screen and (max-width:575px){.Vlt-margin--S-bottom2{margin-bottom:16px!important}}@media only screen and (max-width:575px){.Vlt-margin--S-bottom3{margin-bottom:24px!important}}@media only screen and (max-width:575px){.Vlt-margin--S-bottom4{margin-bottom:32px!important}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-margin--M-bottom0{margin-bottom:0!important}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-margin--M-bottom1{margin-bottom:8px!important}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-margin--M-bottom2{margin-bottom:16px!important}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-margin--M-bottom3{margin-bottom:24px!important}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-margin--M-bottom4{margin-bottom:32px!important}}.Vlt-margin--A-bottom0{margin-bottom:0!important}.Vlt-margin--A-bottom1{margin-bottom:8px!important}.Vlt-margin--A-bottom2{margin-bottom:16px!important}.Vlt-margin--A-bottom3{margin-bottom:24px!important}.Vlt-margin--A-bottom4{margin-bottom:32px!important}
1
+ @charset "UTF-8";a,article,aside,audio,caption,dd,div,dl,dt,em,fieldset,footer,form,h1,h2,h3,h4,h5,h6,header,i,iframe,img,ins,label,li,mark,nav,ol,p,section,small,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,video{border:0;font:inherit;font-size:100%;margin:0;padding:0;vertical-align:baseline}html{box-sizing:border-box}body,html{margin:0;padding:0}*,:after,:before{box-sizing:inherit}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}main{display:block}a,h1,h2,h3,h4,h5,h6,p,span{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility}img{height:auto;max-width:100%}::-webkit-scrollbar-track{background:0 0}@media only screen and (min-width:576px){.Vlt-S-only{display:none!important}}@media only screen and (max-width:575px){.Vlt-M-only{display:none!important}}@media only screen and (min-width:768px){.Vlt-M-only{display:none!important}}@media only screen and (max-width:767px){.Vlt-L-plus{display:none!important}}@media only screen and (max-width:575px){.Vlt-M-plus{display:none!important}}@media only screen and (min-width:768px){.Vlt-M-less{display:none!important}}.Vlt-grid{-ms-flex-align:stretch;align-items:stretch;display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;margin-left:-16px;margin-right:-16px}.Vlt-grid--center{-ms-flex-pack:center;justify-content:center}.Vlt-grid--nowrap{-ms-flex-flow:row;flex-flow:row}.Vlt-grid--flush{margin-left:0;margin-right:0}.Vlt-grid--flush>.Vlt-col{padding-left:0;padding-right:0}@media only screen and (max-width:767px){.Vlt-grid--stack-flush .Vlt-col:not([class*=Vlt-col--A]),.Vlt-grid--stack-flush .Vlt-col:not([class*=Vlt-col--M]),.Vlt-grid--stack-flush .Vlt-col:not([class*=Vlt-col--S]){margin-bottom:0;margin-top:0}}@media only screen and (min-width:768px){.Vlt-grid--narrow{margin-left:-8px;margin-right:-8px}}@media only screen and (min-width:768px){.Vlt-grid--narrow .Vlt-col{padding-left:8px;padding-right:8px}}@media only screen and (max-width:767px){.Vlt-grid--narrow .Vlt-col:not([class*=Vlt-col--M]),.Vlt-grid--narrow .Vlt-col:not([class*=Vlt-col--S]){margin-bottom:4px;margin-top:4px}}.Vlt-grid__separator{-ms-flex:0 0 100%!important;flex:0 0 100%!important;max-width:100%!important}.Vlt-grid__separator--spaced{height:1.5rem}.Vlt-grid__separator--tall{height:2.5rem}.Vlt-grid--middle{-ms-flex-align:center;align-items:center}.Vlt-grid--bottom{-ms-flex-align:end;align-items:flex-end}.Vlt-grid--margin1{margin-bottom:8px;margin-top:8px}.Vlt-grid--margin2{margin-bottom:16px;margin-top:16px}.Vlt-grid--margin3{margin-bottom:24px;margin-top:24px}.Vlt-grid--margin4{margin-bottom:32px;margin-top:32px}.Vlt-grid--margin-top1{margin-top:8px}.Vlt-grid--margin-top2{margin-top:16px}.Vlt-grid--margin-top3{margin-top:24px}.Vlt-grid--margin-top4{margin-top:32px}.Vlt-grid--margin-bottom1{margin-bottom:8px}.Vlt-grid--margin-bottom2{margin-bottom:16px}.Vlt-grid--margin-bottom3{margin-bottom:24px}.Vlt-grid--margin-bottom4{margin-bottom:32px}.Vlt-col{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;max-width:100%;padding-left:16px;padding-right:16px;position:relative}@media print{.Vlt-col{display:inline-block}}@media only screen and (max-width:767px){.Vlt-col:not([class*=Vlt-col--A]):not([class*=Vlt-col--M]),.Vlt-col:not([class*=Vlt-col--A]):not([class*=Vlt-col--S]){-ms-flex:0 0 100%;flex:0 0 100%;max-width:100%}.Vlt-col:not([class*=Vlt-col--M]),.Vlt-col:not([class*=Vlt-col--S]){margin-bottom:8px;margin-top:8px}}.Vlt-col--full{-ms-flex:0 0 100%;flex:0 0 100%}@media only screen and (min-width:768px){.Vlt-col--1of2{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.Vlt-col--1of3{-ms-flex:0 0 33.33%;flex:0 0 33.33%;max-width:33.33%}.Vlt-col--2of3{-ms-flex:0 0 66.66%;flex:0 0 66.66%;max-width:66.66%}.Vlt-col--1of4{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.Vlt-col--2of4{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.Vlt-col--3of4{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.Vlt-col--center{text-align:center}.Vlt-col--right{text-align:right}.Vlt-col--left{text-align:left}}.Vlt-col--A{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1}.Vlt-col--A-1of2{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.Vlt-col--A-1of3{-ms-flex:0 0 33.33%;flex:0 0 33.33%;max-width:33.33%}.Vlt-col--A-2of3{-ms-flex:0 0 66.66%;flex:0 0 66.66%;max-width:66.66%}.Vlt-col--A-1of4{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.Vlt-col--A-2of4{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.Vlt-col--A-3of4{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.Vlt-col--A-center{text-align:center}.Vlt-col--A-right{text-align:right}.Vlt-col--A-left{text-align:left}@media only screen and (max-width:575px){.Vlt-col--S{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1}.Vlt-col--S-1of2{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.Vlt-col--S-1of3{-ms-flex:0 0 33.33%;flex:0 0 33.33%;max-width:33.33%}.Vlt-col--S-2of3{-ms-flex:0 0 66.66%;flex:0 0 66.66%;max-width:66.66%}.Vlt-col--S-1of4{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.Vlt-col--S-2of4{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.Vlt-col--S-3of4{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.Vlt-col--S-center{text-align:center}.Vlt-col--S-right{text-align:right}.Vlt-col--S-left{text-align:left}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-col--M{-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1}.Vlt-col--M-1of2{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.Vlt-col--M-1of3{-ms-flex:0 0 33.33%;flex:0 0 33.33%;max-width:33.33%}.Vlt-col--M-2of3{-ms-flex:0 0 66.66%;flex:0 0 66.66%;max-width:66.66%}.Vlt-col--M-1of4{-ms-flex:0 0 25%;flex:0 0 25%;max-width:25%}.Vlt-col--M-2of4{-ms-flex:0 0 50%;flex:0 0 50%;max-width:50%}.Vlt-col--M-3of4{-ms-flex:0 0 75%;flex:0 0 75%;max-width:75%}.Vlt-col--M-center{text-align:center}.Vlt-col--M-right{text-align:right}.Vlt-col--M-left{text-align:left}}.Vlt-row{clear:both;padding:10px 0}@font-face{font-family:Spezia;font-style:normal;font-weight:600;src:url(../../fonts/Spezia-SemiBold.eot?#iefix) format("embedded-opentype"),url(../../fonts/Spezia-SemiBold.woff2) format("woff2"),url(../../fonts/Spezia-SemiBold.woff) format("woff"),url(../../fonts/Spezia-SemiBold.ttf) format("truetype")}@font-face{font-family:Spezia;font-style:normal;font-weight:800;src:url(../../fonts/Spezia-WideMedium.eot?#iefix) format("embedded-opentype"),url(../../fonts/Spezia-WideMedium.woff2) format("woff2"),url(../../fonts/Spezia-WideMedium.woff) format("woff"),url(../../fonts/Spezia-WideMedium.ttf) format("truetype")}@font-face{font-family:Spezia;font-style:normal;font-weight:900;src:url(../../fonts/Spezia-WideMedium.eot?#iefix) format("embedded-opentype"),url(../../fonts/Spezia-WideMedium.woff2) format("woff2"),url(../../fonts/Spezia-WideMedium.woff) format("woff"),url(../../fonts/Spezia-WideMedium.ttf) format("truetype")}@font-face{font-family:Spezia;font-style:normal;font-weight:400;src:url(../../fonts/Spezia-Regular.eot?#iefix) format("embedded-opentype"),url(../../fonts/Spezia-Regular.woff2) format("woff2"),url(../../fonts/Spezia-Regular.woff) format("woff"),url(../../fonts/Spezia-Regular.ttf) format("truetype")}html{font-size:62.5%}body{color:#131415;font-family:spezia,sans-serif;font-size:1.4rem;line-height:2rem}*{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}button,input,select,textarea{font-family:inherit}a,button,label,li,p,td,th{font-size:1.4rem;font-weight:400;line-height:2rem}b,strong{font-weight:600}a{text-decoration:none}.Vlt-title,h1,h2,h3,h4,h5,h6{color:#131415}.Vlt-title a,h1 a,h2 a,h3 a,h4 a,h5 a,h6 a{color:inherit;font-size:inherit;font-weight:inherit;line-height:inherit}p{color:#131415;margin-bottom:8px}.p-large{font-size:1.6rem;line-height:2.3rem;margin-bottom:16px}.Vlt-title--icon{display:-ms-flexbox;display:flex}.Vlt-title--icon svg{fill:#131415;margin-right:8px}.Vlt-title--icon .Vlt-badge,.Vlt-title--icon code{margin:0 .3em}.Vlt-title--margin-top1{margin-top:8px}.Vlt-title--margin-top2{margin-top:16px}.Vlt-title--margin-top3{margin-top:24px}.Vlt-title--margin-top4{margin-top:32px}.Vlt-title--center{-ms-flex-pack:center;justify-content:center;text-align:center}.Vlt-title--nomargin{margin:0}.Vlt-title--h1,h1{font-size:3.1rem;font-weight:800;letter-spacing:-2px;line-height:3.6rem;margin-bottom:24px}@media only screen and (min-width:768px){.Vlt-title--h1,h1{font-size:3.9rem;line-height:4.3rem}}.Vlt-title--h1.Vlt-title--icon svg,h1.Vlt-title--icon svg{-ms-flex:0 0 25px;flex:0 0 25px;height:25px;margin-top:5px;width:25px}@media only screen and (min-width:768px){.Vlt-title--h1.Vlt-title--icon svg,h1.Vlt-title--icon svg{-ms-flex:0 0 30px;flex:0 0 30px;height:30px;width:30px}}.Vlt-title--h2,h2{font-size:2.7rem;font-weight:800;letter-spacing:-1.5px;line-height:3.1rem;margin-bottom:16px}@media only screen and (min-width:768px){.Vlt-title--h2,h2{font-size:2.9rem;line-height:3.4rem}}.Vlt-title--h2.Vlt-title--icon svg,h2.Vlt-title--icon svg{-ms-flex:0 0 21px;flex:0 0 21px;height:21px;margin-top:4px;width:21px}@media only screen and (min-width:768px){.Vlt-title--h2.Vlt-title--icon svg,h2.Vlt-title--icon svg{-ms-flex:0 0 25px;flex:0 0 25px;height:25px;width:25px}}.Vlt-title--h3,h3{font-size:2.3rem;font-weight:800;letter-spacing:-1px;line-height:2.6rem;margin-bottom:16px}@media only screen and (min-width:768px){.Vlt-title--h3,h3{font-size:2.3rem;line-height:2.6rem}}.Vlt-title--h3.Vlt-title--icon svg,h3.Vlt-title--icon svg{-ms-flex:0 0 21px;flex:0 0 21px;height:21px;margin-top:2px;width:21px}@media only screen and (min-width:768px){.Vlt-title--h3.Vlt-title--icon svg,h3.Vlt-title--icon svg{-ms-flex:0 0 21px;flex:0 0 21px;height:21px;width:21px}}.Vlt-title--h4,h4{font-size:1.9rem;font-weight:800;letter-spacing:-1px;line-height:2.3rem;margin-bottom:8px}@media only screen and (min-width:768px){.Vlt-title--h4,h4{font-size:2rem;line-height:2.5rem}}.Vlt-title--h4.Vlt-title--icon svg,h4.Vlt-title--icon svg{-ms-flex:0 0 16px;flex:0 0 16px;height:16px;margin-top:4px;width:16px}.Vlt-title--h5,h5{font-size:1.5rem;font-weight:600;letter-spacing:-.25px;line-height:2rem;margin-bottom:8px}.Vlt-title--h5.Vlt-title--icon svg,h5.Vlt-title--icon svg{-ms-flex:0 0 14px;flex:0 0 14px;height:14px;margin-top:3px;width:14px}small{font-size:1.2rem;font-weight:400;line-height:1.6rem}.Vlt-title small,.p-large small,h1 small,h2 small,h3 small,h4 small,h5 small{font-size:80%;font-weight:inherit;line-height:inherit}code{background-color:#f3f3f5;border-radius:4px;color:#c85e43;font-family:monospace,monospace;font-size:inherit;line-height:inherit;padding:3px 4px}p+.Vlt-title,p+h1,p+h2,p+h3,p+h4,ul+.Vlt-title,ul+h1,ul+h2,ul+h3,ul+h4{padding-top:16px}.Vlt-text--large{font-size:1.6rem}.Vlt-text--larger{font-size:2.3rem}.Vlt-text--largest{font-size:3.5rem}.Vlt-white{color:#fff!important;fill:#fff!important}.Vlt-bg-white{background-color:#fff!important}.Vlt-orange-lighter{color:#fee3dd!important;fill:#fee3dd!important}.Vlt-bg-orange-lighter{background-color:#fee3dd!important}.Vlt-orange-light{color:#fcac98!important;fill:#fcac98!important}.Vlt-bg-orange-light{background-color:#fcac98!important}.Vlt-orange{color:#fa7454!important;fill:#fa7454!important}.Vlt-bg-orange{background-color:#fa7454!important}.Vlt-orange-dark{color:#c85e43!important;fill:#c85e43!important}.Vlt-bg-orange-dark{background-color:#c85e43!important}.Vlt-orange-darker{color:#642f22!important;fill:#642f22!important}.Vlt-bg-orange-darker{background-color:#642f22!important}.Vlt-blue-lighter{color:#d9eefc!important;fill:#d9eefc!important}.Vlt-bg-blue-lighter{background-color:#d9eefc!important}.Vlt-blue-light{color:#80c7f5!important;fill:#80c7f5!important}.Vlt-bg-blue-light{background-color:#80c7f5!important}.Vlt-blue{color:#669fc4!important;fill:#669fc4!important}.Vlt-bg-blue{background-color:#669fc4!important}.Vlt-blue-dark{color:#4d7793!important;fill:#4d7793!important}.Vlt-bg-blue-dark{background-color:#4d7793!important}.Vlt-blue-darker{color:#335062!important;fill:#335062!important}.Vlt-bg-blue-darker{background-color:#335062!important}.Vlt-blue-text{color:#3e4e57!important;fill:#3e4e57!important}.Vlt-bg-blue-text{background-color:#3e4e57!important}.Vlt-green-lighter{color:#d7f2e8!important;fill:#d7f2e8!important}.Vlt-bg-green-lighter{background-color:#d7f2e8!important}.Vlt-green-light{color:#86d8b9!important;fill:#86d8b9!important}.Vlt-bg-green-light{background-color:#86d8b9!important}.Vlt-green{color:#06ba77!important;fill:#06ba77!important}.Vlt-bg-green{background-color:#06ba77!important}.Vlt-green-dark{color:#2d966f!important;fill:#2d966f!important}.Vlt-bg-green-dark{background-color:#2d966f!important}.Vlt-green-darker{color:#173630!important;fill:#173630!important}.Vlt-bg-green-darker{background-color:#173630!important}.Vlt-green-text{color:#414f3e!important;fill:#414f3e!important}.Vlt-bg-green-text{background-color:#414f3e!important}.Vlt-purple-lighter{color:#f3e9ff!important;fill:#f3e9ff!important}.Vlt-bg-purple-lighter{background-color:#f3e9ff!important}.Vlt-purple-light{color:#cfa5ff!important;fill:#cfa5ff!important}.Vlt-bg-purple-light{background-color:#cfa5ff!important}.Vlt-purple{color:#b779ff!important;fill:#b779ff!important}.Vlt-bg-purple{background-color:#b779ff!important}.Vlt-purple-dark{color:#871fff!important;fill:#871fff!important}.Vlt-bg-purple-dark{background-color:#871fff!important}.Vlt-purple-darker{color:#441080!important;fill:#441080!important}.Vlt-bg-purple-darker{background-color:#441080!important}.Vlt-purple-text{color:#50495a!important;fill:#50495a!important}.Vlt-bg-purple-text{background-color:#50495a!important}.Vlt-teal-lighter{color:#dbf3f6!important;fill:#dbf3f6!important}.Vlt-bg-teal-lighter{background-color:#dbf3f6!important}.Vlt-teal-light{color:#94dbe4!important;fill:#94dbe4!important}.Vlt-bg-teal-light{background-color:#94dbe4!important}.Vlt-teal{color:#4cc3d2!important;fill:#4cc3d2!important}.Vlt-bg-teal{background-color:#4cc3d2!important}.Vlt-teal-dark{color:#00848e!important;fill:#00848e!important}.Vlt-bg-teal-dark{background-color:#00848e!important}.Vlt-teal-darker{color:#003136!important;fill:#003136!important}.Vlt-bg-teal-darker{background-color:#003136!important}.Vlt-teal-text{color:#405352!important;fill:#405352!important}.Vlt-bg-teal-text{background-color:#405352!important}.Vlt-yellow-lighter{color:#fff8c0!important;fill:#fff8c0!important}.Vlt-bg-yellow-lighter{background-color:#fff8c0!important}.Vlt-yellow-light{color:#ffe82e!important;fill:#ffe82e!important}.Vlt-bg-yellow-light{background-color:#ffe82e!important}.Vlt-yellow{color:#ffc100!important;fill:#ffc100!important}.Vlt-bg-yellow{background-color:#ffc100!important}.Vlt-yellow-dark{color:#9d7005!important;fill:#9d7005!important}.Vlt-bg-yellow-dark{background-color:#9d7005!important}.Vlt-yellow-darker{color:#583b00!important;fill:#583b00!important}.Vlt-bg-yellow-darker{background-color:#583b00!important}.Vlt-yellow-text{color:#595130!important;fill:#595130!important}.Vlt-bg-yellow-text{background-color:#595130!important}.Vlt-indigo-lighter{color:#f7d3ec!important;fill:#f7d3ec!important}.Vlt-bg-indigo-lighter{background-color:#f7d3ec!important}.Vlt-indigo-light{color:#eb90ce!important;fill:#eb90ce!important}.Vlt-bg-indigo-light{background-color:#eb90ce!important}.Vlt-indigo{color:#d6219c!important;fill:#d6219c!important}.Vlt-bg-indigo{background-color:#d6219c!important}.Vlt-indigo-dark{color:#ab197d!important;fill:#ab197d!important}.Vlt-bg-indigo-dark{background-color:#ab197d!important}.Vlt-indigo-darker{color:#560d3d!important;fill:#560d3d!important}.Vlt-bg-indigo-darker{background-color:#560d3d!important}.Vlt-indigo-text{color:#3e4155!important;fill:#3e4155!important}.Vlt-bg-indigo-text{background-color:#3e4155!important}.Vlt-grey-lighter{color:#f3f3f5!important;fill:#f3f3f5!important}.Vlt-bg-grey-lighter{background-color:#f3f3f5!important}.Vlt-grey-light{color:#e1e2e6!important;fill:#e1e2e6!important}.Vlt-bg-grey-light{background-color:#e1e2e6!important}.Vlt-grey{color:#c2c4cc!important;fill:#c2c4cc!important}.Vlt-bg-grey{background-color:#c2c4cc!important}.Vlt-grey-dark{color:#9b9da3!important;fill:#9b9da3!important}.Vlt-bg-grey-dark{background-color:#9b9da3!important}.Vlt-grey-darker{color:#616266!important;fill:#616266!important}.Vlt-bg-grey-darker{background-color:#616266!important}.Vlt-black{color:#131415!important;fill:#131415!important}.Vlt-bg-black{background-color:#131415!important}.Vlt-red-lighter{color:#fdecec!important;fill:#fdecec!important}.Vlt-bg-red-lighter{background-color:#fdecec!important}.Vlt-red-light{color:#f79ca6!important;fill:#f79ca6!important}.Vlt-bg-red-light{background-color:#f79ca6!important}.Vlt-red{color:#e84545!important;fill:#e84545!important}.Vlt-bg-red{background-color:#e84545!important}.Vlt-red-dark{color:#ba3737!important;fill:#ba3737!important}.Vlt-bg-red-dark{background-color:#ba3737!important}.Vlt-red-darker{color:#5d1b1b!important;fill:#5d1b1b!important}.Vlt-bg-red-darker{background-color:#5d1b1b!important}.Vlt-red-text{color:#583c35!important;fill:#583c35!important}.Vlt-bg-red-text{background-color:#583c35!important}.Vlt-aqua-lighter{color:#d0e7f1!important;fill:#d0e7f1!important}.Vlt-bg-aqua-lighter{background-color:#d0e7f1!important}.Vlt-aqua-light{color:#9ccde2!important;fill:#9ccde2!important}.Vlt-bg-aqua-light{background-color:#9ccde2!important}.Vlt-aqua{color:#3298c4!important;fill:#3298c4!important}.Vlt-bg-aqua{background-color:#3298c4!important}.Vlt-aqua-dark{color:#0070a1!important;fill:#0070a1!important}.Vlt-bg-aqua-dark{background-color:#0070a1!important}.Vlt-aqua-darker{color:#035879!important;fill:#035879!important}.Vlt-bg-aqua-darker{background-color:#035879!important}.Vlt-aqua-text{color:#004059!important;fill:#004059!important}.Vlt-bg-aqua-text{background-color:#004059!important}.Vlt-gradient--blue{background:linear-gradient(to right,#5685a4,#3b5c72)!important}.Vlt-gradient--blue-light{background:linear-gradient(to right,#78abcb,#4587b2)!important}.Vlt-gradient--red{background:linear-gradient(to right,#eb5c5c,#de1c1c)!important}.Vlt-gradient--orange{background:linear-gradient(to right,#fb9c86,#f9603b)!important}.Vlt-gradient--indigo{background:linear-gradient(to right,#df31a8,#aa1a7c)!important}.Vlt-gradient--green{background:linear-gradient(to right,#07d387,#048957)!important}.Vlt-gradient--purple{background:linear-gradient(to right,#c593ff,#9c46ff)!important}.Vlt-gradient--teal{background:linear-gradient(to right,#60cad7,#2facbc)!important}.Vlt-gradient--blue-to-pink{background:linear-gradient(to right,#7fc6f4,#d5279b)!important}.Vlt-gradient--blue-to-purple{background:linear-gradient(to right,#7fc6f4,#8728fb)!important}.Vlt-gradient--pink-to-blue{background:linear-gradient(to right,#d5279b,#7fc6f4)!important}.Vlt-gradient--pink-to-peach{background:linear-gradient(to right,#d5279b,#fea18c)!important}.Vlt-gradient--purple-to-peach{background:linear-gradient(to right,#8728fb,#fea18c)!important}.Vlt-gradient--gumdrops1{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3EGumdrops%201%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2213.3144563%25%22%20y1%3D%2234.7953338%25%22%20x2%3D%2250%25%22%20y2%3D%2266.5343565%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%237FC8F5%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2289.0050238%25%22%20y1%3D%2234.3360213%25%22%20x2%3D%2250%25%22%20y2%3D%2267.4497767%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA68C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%237FC8F5%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%220%22%20y%3D%221267%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-264.000000%2C%20-1527.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Gumdrops-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--gumdrops2{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3EGumdrops%202%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2217.1215089%25%22%20y1%3D%2236.5604745%25%22%20x2%3D%2250%25%22%20y2%3D%2264.0645185%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA68C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2286.1918852%25%22%20y1%3D%2235.5961581%25%22%20x2%3D%2236.8815991%25%22%20y2%3D%2276.4527216%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%237FC8F5%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%22549%22%20y%3D%221267%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-813.000000%2C%20-1527.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Gumdrops-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--gumdrops3{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3EGumdrops%203%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2214.549983%25%22%20y1%3D%2236.9106736%25%22%20x2%3D%2250%25%22%20y2%3D%2267.2917158%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%237FC8F5%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA68C%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2289.0050238%25%22%20y1%3D%2234.3360213%25%22%20x2%3D%2250%25%22%20y2%3D%2267.1626569%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA68C%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%221098%22%20y%3D%221267%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-1362.000000%2C%20-1527.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Gumdrops-3%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--lovehearts1{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3ELovehearts%201%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2213.3144563%25%22%20y1%3D%2234.7953338%25%22%20x2%3D%2250%25%22%20y2%3D%2266.5343565%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA68C%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2289.0050238%25%22%20y1%3D%2234.3360213%25%22%20x2%3D%2250%25%22%20y2%3D%2267.4497767%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA68C%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%220%22%20y%3D%22868%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-264.000000%2C%20-1128.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Lovehearts-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--lovehearts2{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3ELovehearts%202%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2213.3312755%25%22%20y1%3D%2235.0197434%25%22%20x2%3D%2250%25%22%20y2%3D%2268.0240162%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2289.6436478%25%22%20y1%3D%2234.4795812%25%22%20x2%3D%2224.3581829%25%22%20y2%3D%2283.1645088%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA68C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%22549%22%20y%3D%22868%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-813.000000%2C%20-1128.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Lovehearts-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--lovehearts3{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3ELovehearts%203%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2213.3312755%25%22%20y1%3D%2235.0197434%25%22%20x2%3D%2250%25%22%20y2%3D%2268.0240162%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA68C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2289.0050238%25%22%20y1%3D%2234.3360213%25%22%20x2%3D%2250%25%22%20y2%3D%2267.4497767%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%221098%22%20y%3D%22868%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-1362.000000%2C%20-1128.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Lovehearts-3%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--skittles1{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3ESkittles%201%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2213.3312755%25%22%20y1%3D%2235.0197434%25%22%20x2%3D%2250%25%22%20y2%3D%2268.0240162%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA78C%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2289.0050238%25%22%20y1%3D%2234.3360213%25%22%20x2%3D%2250%25%22%20y2%3D%2267.4497767%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%2380C7F5%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA78C%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%220%22%20y%3D%220%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-264.000000%2C%20-260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Skittles-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--skittles2{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3ERectangle%20Copy%209%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2213.3312755%25%22%20y1%3D%2235.0197434%25%22%20x2%3D%2250%25%22%20y2%3D%2268.0240162%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%2380C7F5%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2289.0050238%25%22%20y1%3D%2234.3360213%25%22%20x2%3D%2250%25%22%20y2%3D%2267.4497767%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA78C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%22549%22%20y%3D%220%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-813.000000%2C%20-260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Rectangle-Copy-9%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--skittles3{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3ESkittles%203%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2213.3312755%25%22%20y1%3D%2235.0197434%25%22%20x2%3D%2250%25%22%20y2%3D%2268.0240162%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23FFA78C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%2380C7F5%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2289.0050238%25%22%20y1%3D%2234.3360213%25%22%20x2%3D%2250%25%22%20y2%3D%2267.4497767%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%2380C7F5%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%221098%22%20y%3D%220%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-1362.000000%2C%20-260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Skittles-3%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--twizzlers1{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3ETwizzlers%201%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2213.3144563%25%22%20y1%3D%2234.7953338%25%22%20x2%3D%2250%25%22%20y2%3D%2266.5343565%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%2380C7F5%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2289.0050238%25%22%20y1%3D%2234.3360213%25%22%20x2%3D%2250%25%22%20y2%3D%2267.4497767%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%2380C7F5%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%220%22%20y%3D%22428%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-264.000000%2C%20-688.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Twizzlers-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--twizzlers2{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3ETwizzlers%202%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2213.3312755%25%22%20y1%3D%2235.0197434%25%22%20x2%3D%2250%25%22%20y2%3D%2268.0240162%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2289.6436478%25%22%20y1%3D%2234.4795812%25%22%20x2%3D%2224.3581829%25%22%20y2%3D%2283.1645088%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%2380C7F5%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%22549%22%20y%3D%22428%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-813.000000%2C%20-688.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Twizzlers-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-gradient--twizzlers3{background:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%22367px%22%20height%3D%22250px%22%20preserveAspectRatio%3D%22none%22%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%3E%0A%20%20%20%20%3C!--%20Generator%3A%20Sketch%2056.3%20(81716)%20-%20https%3A%2F%2Fsketch.com%20--%3E%0A%20%20%20%20%3Ctitle%3ETwizzlers%203%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2213.5473433%25%22%20y1%3D%2234.8769086%25%22%20x2%3D%2250%25%22%20y2%3D%2265.6074248%25%22%20id%3D%22linearGradient-1%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%2380C7F5%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3ClinearGradient%20x1%3D%2284.1887347%25%22%20y1%3D%2238.7711517%25%22%20x2%3D%2250%25%22%20y2%3D%2267.4497767%25%22%20id%3D%22linearGradient-2%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23871FFF%22%20offset%3D%220%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cstop%20stop-color%3D%22%23D6219C%22%20stop-opacity%3D%220%22%20offset%3D%22100%25%22%3E%3C%2Fstop%3E%0A%20%20%20%20%20%20%20%20%3C%2FlinearGradient%3E%0A%20%20%20%20%20%20%20%20%3Crect%20id%3D%22path-3%22%20x%3D%221098%22%20y%3D%22428%22%20width%3D%22367%22%20height%3D%22250%22%3E%3C%2Frect%3E%0A%20%20%20%20%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Components%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22gradients%22%20transform%3D%22translate(-1362.000000%2C%20-688.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-2%22%20transform%3D%22translate(264.000000%2C%20260.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Twizzlers-3%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-1)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cuse%20fill%3D%22url(%23linearGradient-2)%22%20xlink%3Ahref%3D%22%23path-3%22%3E%3C%2Fuse%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E") 0 0/100% 100%!important}.Vlt-btn,.Vlt-btn-group .Vlt-btn,.Vlt-callout__cta,.Vlt-dropdown__btn,.Vlt-native-dropdown select{-ms-flex-align:center;align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;border:0;border-radius:48px;cursor:pointer;display:inline-block;font-size:1.4rem;font-weight:600;-ms-flex-pack:center;justify-content:center;line-height:2.4rem;margin:8px 0;min-height:40px;min-width:40px;outline:0;padding:8px 14px;text-align:center;transition:all .3s;vertical-align:middle;white-space:nowrap}.Vlt-btn:focus,.Vlt-callout__cta:focus,.Vlt-dropdown__btn:focus,.Vlt-native-dropdown select:focus{outline:0}.Vlt-btn:active,.Vlt-callout__cta:active,.Vlt-dropdown__btn:active,.Vlt-native-dropdown select:active{outline:0}.Vlt-btn svg,.Vlt-btn-group .Vlt-btn svg,.Vlt-callout__cta svg,.Vlt-dropdown__btn svg,.Vlt-native-dropdown select svg{display:inline-block;fill:#fff;height:18px;margin-right:8px;margin-top:-2px;vertical-align:middle;width:18px}.Vlt-native-dropdown .vlt-btn--large select svg,.vlt-btn--large .Vlt-btn svg,.vlt-btn--large .Vlt-callout__cta svg,.vlt-btn--large .Vlt-dropdown__btn svg,.vlt-btn--large .Vlt-native-dropdown select svg{margin-right:10px}.Vlt-btn--block{width:100%}.Vlt-btn+.Vlt-btn{margin-left:8px}.Vlt-btn--nomargin{margin:0}.Vlt-btn--app,.Vlt-callout__cta,.Vlt-card__cta .Vlt-btn,.Vlt-composite__append .Vlt-btn,.Vlt-composite__append .Vlt-dropdown__btn,.Vlt-composite__append .Vlt-native-dropdown select,.Vlt-composite__prepend .Vlt-btn,.Vlt-composite__prepend .Vlt-dropdown__btn,.Vlt-composite__prepend .Vlt-native-dropdown select,.Vlt-modal__footer .Vlt-btn,.Vlt-table .Vlt-btn{border-radius:6px}.Vlt-btn--small.Vlt-btn--app,.Vlt-btn--small.Vlt-callout__cta,.Vlt-card__cta .Vlt-btn--small.Vlt-btn,.Vlt-composite__append .Vlt-btn--small.Vlt-btn,.Vlt-composite__append .Vlt-btn--small.Vlt-dropdown__btn,.Vlt-composite__append .Vlt-native-dropdown select.Vlt-btn--small,.Vlt-composite__prepend .Vlt-btn--small.Vlt-btn,.Vlt-composite__prepend .Vlt-btn--small.Vlt-dropdown__btn,.Vlt-composite__prepend .Vlt-native-dropdown select.Vlt-btn--small,.Vlt-modal__footer .Vlt-btn--small.Vlt-btn,.Vlt-table .Vlt-btn--small.Vlt-btn{border-radius:5px}.Vlt-btn--small,.Vlt-btn-group--small .Vlt-btn,.Vlt-callout--banner .Vlt-btn,.Vlt-callout--banner .Vlt-callout__cta,.Vlt-callout__cta,.Vlt-dropdown__btn--small,.Vlt-table .Vlt-btn{font-size:1.2rem;line-height:1.6rem;min-height:32px;min-width:32px;padding:8px 12px}.Vlt-btn--small svg,.Vlt-btn-group--small .Vlt-btn svg,.Vlt-callout--banner .Vlt-btn svg,.Vlt-callout--banner .Vlt-callout__cta svg,.Vlt-callout__cta svg,.Vlt-dropdown__btn--small svg,.Vlt-table .Vlt-btn svg{height:16px;width:16px}.Vlt-btn--large,.Vlt-btn-group--large .Vlt-btn,.Vlt-dropdown__btn--large,.Vlt-form__element--big .Vlt-composite__append .Vlt-btn,.Vlt-form__element--big .Vlt-composite__append .Vlt-dropdown__btn,.Vlt-form__element--big .Vlt-composite__append .Vlt-native-dropdown select,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-btn,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-dropdown__btn,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-native-dropdown select,.Vlt-native-dropdown--large select{font-size:1.6rem;line-height:2.4rem;margin:8px 0 16px;min-height:48px;min-width:48px;padding:12px 24px}.Vlt-btn--large svg,.Vlt-btn-group--large .Vlt-btn svg,.Vlt-dropdown__btn--large svg,.Vlt-form__element--big .Vlt-composite__append .Vlt-btn svg,.Vlt-form__element--big .Vlt-composite__append .Vlt-dropdown__btn svg,.Vlt-form__element--big .Vlt-composite__append .Vlt-native-dropdown select svg,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-btn svg,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-dropdown__btn svg,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-native-dropdown select svg,.Vlt-native-dropdown--large select svg{height:20px;margin-right:14px;margin-top:-3px;width:20px}.Vlt-btn--large svg span,.Vlt-btn-group--large .Vlt-btn svg span,.Vlt-dropdown__btn--large svg span,.Vlt-form__element--big .Vlt-composite__append .Vlt-btn svg span,.Vlt-form__element--big .Vlt-composite__append .Vlt-dropdown__btn svg span,.Vlt-form__element--big .Vlt-composite__append .Vlt-native-dropdown select svg span,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-btn svg span,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-dropdown__btn svg span,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-native-dropdown select svg span,.Vlt-native-dropdown--large select svg span{margin-left:8px}.Vlt-btn--icon svg,.Vlt-btn-group--icon .Vlt-btn svg,.Vlt-form__element--big .Vlt-composite__append .Vlt-btn.Vlt-btn--icon svg,.Vlt-form__element--big .Vlt-composite__append .Vlt-dropdown__btn.Vlt-btn--icon svg,.Vlt-form__element--big .Vlt-composite__append .Vlt-native-dropdown select.Vlt-btn--icon svg,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-btn.Vlt-btn--icon svg,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-dropdown__btn.Vlt-btn--icon svg,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-native-dropdown select.Vlt-btn--icon svg{margin-left:-10px;margin-right:-10px}.Vlt-btn--icon-right svg{margin-left:8px;margin-right:0}.Vlt-btn--large.Vlt-btn--icon-right svg{margin-left:14px}.Vlt-btn--primary,.Vlt-dropdown__btn--primary{background:#871fff;color:#fff}.Vlt-btn--primary svg,.Vlt-dropdown__btn--primary svg{fill:#fff}.Vlt-btn--primary:hover,.Vlt-btn--primary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-dropdown__btn--primary:hover,.Vlt-dropdown__btn--primary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#6d00eb}.Vlt-btn--primary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--primary,.Vlt-btn_active.Vlt-dropdown__btn--primary,.Vlt-dropdown__btn--primary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active{background:#6100d2}.Vlt-btn--outline.Vlt-btn--primary,.Vlt-btn--outline.Vlt-dropdown__btn--primary{color:#871fff}.Vlt-btn--outline.Vlt-btn--primary svg,.Vlt-btn--outline.Vlt-dropdown__btn--primary svg{fill:#871fff}.Vlt-btn--outline.Vlt-btn--primary:hover,.Vlt-btn--outline.Vlt-btn--primary:not(.Vlt-btn--no-focus):focus,.Vlt-btn--outline.Vlt-dropdown__btn--primary:hover,.Vlt-btn--outline.Vlt-dropdown__btn--primary:not(.Vlt-btn--no-focus):focus{background:rgba(135,31,255,.1)}.Vlt-btn--outline.Vlt-btn--primary:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--primary,.Vlt-btn--outline.Vlt-btn_active.Vlt-dropdown__btn--primary,.Vlt-btn--outline.Vlt-dropdown__btn--primary:not(.Vlt-btn--no-focus):active{background:rgba(135,31,255,.2)}.Vlt-btn--secondary,.Vlt-callout__cta,.Vlt-dropdown__btn--secondary,.Vlt-native-dropdown select{background:#131415;color:#fff}.Vlt-btn--secondary svg,.Vlt-callout__cta svg,.Vlt-dropdown__btn--secondary svg,.Vlt-native-dropdown select svg{fill:#fff}.Vlt-btn--secondary:hover,.Vlt-btn--secondary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-callout__cta:hover,.Vlt-callout__cta:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-dropdown__btn--secondary:hover,.Vlt-dropdown__btn--secondary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-native-dropdown select:hover,.Vlt-native-dropdown select:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#43474b}.Vlt-btn--secondary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--secondary,.Vlt-btn_active.Vlt-callout__cta,.Vlt-btn_active.Vlt-dropdown__btn--secondary,.Vlt-callout__cta:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-dropdown__btn--secondary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-native-dropdown select.Vlt-btn_active,.Vlt-native-dropdown select:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active{background:#5c6165}.Vlt-btn--outline.Vlt-btn--secondary,.Vlt-btn--outline.Vlt-callout__cta,.Vlt-btn--outline.Vlt-dropdown__btn--secondary,.Vlt-native-dropdown select.Vlt-btn--outline{color:#131415}.Vlt-btn--outline.Vlt-btn--secondary svg,.Vlt-btn--outline.Vlt-callout__cta svg,.Vlt-btn--outline.Vlt-dropdown__btn--secondary svg,.Vlt-native-dropdown select.Vlt-btn--outline svg{fill:#131415}.Vlt-btn--outline.Vlt-btn--secondary:hover,.Vlt-btn--outline.Vlt-btn--secondary:not(.Vlt-btn--no-focus):focus,.Vlt-btn--outline.Vlt-callout__cta:hover,.Vlt-btn--outline.Vlt-callout__cta:not(.Vlt-btn--no-focus):focus,.Vlt-btn--outline.Vlt-dropdown__btn--secondary:hover,.Vlt-btn--outline.Vlt-dropdown__btn--secondary:not(.Vlt-btn--no-focus):focus,.Vlt-native-dropdown select.Vlt-btn--outline:hover,.Vlt-native-dropdown select.Vlt-btn--outline:not(.Vlt-btn--no-focus):focus{background:rgba(19,20,21,.1)}.Vlt-btn--outline.Vlt-btn--secondary:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--secondary,.Vlt-btn--outline.Vlt-btn_active.Vlt-callout__cta,.Vlt-btn--outline.Vlt-btn_active.Vlt-dropdown__btn--secondary,.Vlt-btn--outline.Vlt-callout__cta:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-dropdown__btn--secondary:not(.Vlt-btn--no-focus):active,.Vlt-native-dropdown select.Vlt-btn--outline.Vlt-btn_active,.Vlt-native-dropdown select.Vlt-btn--outline:not(.Vlt-btn--no-focus):active{background:rgba(19,20,21,.2)}.Vlt-btn--tertiary,.Vlt-btn-group .Vlt-btn,.Vlt-composite__append .Vlt-btn:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white),.Vlt-composite__append .Vlt-dropdown__btn,.Vlt-composite__append .Vlt-native-dropdown select,.Vlt-composite__prepend .Vlt-btn:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white),.Vlt-composite__prepend .Vlt-dropdown__btn,.Vlt-composite__prepend .Vlt-native-dropdown select,.Vlt-dropdown__btn:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white){background:#e1e2e6;color:#131415}.Vlt-btn--tertiary svg,.Vlt-btn-group .Vlt-btn svg,.Vlt-composite__append .Vlt-btn:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white) svg,.Vlt-composite__append .Vlt-dropdown__btn svg,.Vlt-composite__append .Vlt-native-dropdown select svg,.Vlt-composite__prepend .Vlt-btn:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white) svg,.Vlt-composite__prepend .Vlt-dropdown__btn svg,.Vlt-composite__prepend .Vlt-native-dropdown select svg,.Vlt-dropdown__btn:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white) svg{fill:#131415}.Vlt-btn--tertiary:hover,.Vlt-btn--tertiary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-btn-group .Vlt-btn:hover,.Vlt-btn-group .Vlt-btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-composite__append .Vlt-btn:hover:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white),.Vlt-composite__append .Vlt-btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white),.Vlt-composite__append .Vlt-dropdown__btn:hover,.Vlt-composite__append .Vlt-dropdown__btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-composite__append .Vlt-native-dropdown select:hover,.Vlt-composite__append .Vlt-native-dropdown select:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-composite__prepend .Vlt-btn:hover:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white),.Vlt-composite__prepend .Vlt-btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white),.Vlt-composite__prepend .Vlt-dropdown__btn:hover,.Vlt-composite__prepend .Vlt-dropdown__btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-composite__prepend .Vlt-native-dropdown select:hover,.Vlt-composite__prepend .Vlt-native-dropdown select:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-dropdown__btn:hover:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white),.Vlt-dropdown__btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white){background:#d0d2d8}.Vlt-btn--tertiary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn-group .Vlt-btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn-group .Vlt-btn_active.Vlt-btn,.Vlt-btn_active.Vlt-btn--tertiary,.Vlt-btn_active.Vlt-dropdown__btn:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white),.Vlt-composite__append .Vlt-btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white),.Vlt-composite__append .Vlt-btn_active.Vlt-btn:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white),.Vlt-composite__append .Vlt-btn_active.Vlt-dropdown__btn,.Vlt-composite__append .Vlt-dropdown__btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-composite__append .Vlt-native-dropdown select.Vlt-btn_active,.Vlt-composite__append .Vlt-native-dropdown select:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-composite__prepend .Vlt-btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white),.Vlt-composite__prepend .Vlt-btn_active.Vlt-btn:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white),.Vlt-composite__prepend .Vlt-btn_active.Vlt-dropdown__btn,.Vlt-composite__prepend .Vlt-dropdown__btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-composite__prepend .Vlt-native-dropdown select.Vlt-btn_active,.Vlt-composite__prepend .Vlt-native-dropdown select:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-dropdown__btn:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white){background:#c2c4cc}.Vlt-btn--outline.Vlt-btn--tertiary,.Vlt-btn--outline.Vlt-dropdown__btn:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white),.Vlt-btn-group .Vlt-btn--outline.Vlt-btn,.Vlt-composite__append .Vlt-btn--outline.Vlt-btn:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white),.Vlt-composite__append .Vlt-btn--outline.Vlt-dropdown__btn,.Vlt-composite__append .Vlt-native-dropdown select.Vlt-btn--outline,.Vlt-composite__prepend .Vlt-btn--outline.Vlt-btn:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white),.Vlt-composite__prepend .Vlt-btn--outline.Vlt-dropdown__btn,.Vlt-composite__prepend .Vlt-native-dropdown select.Vlt-btn--outline{color:#e1e2e6}.Vlt-btn--outline.Vlt-btn--tertiary svg,.Vlt-btn--outline.Vlt-dropdown__btn:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white) svg,.Vlt-btn-group .Vlt-btn--outline.Vlt-btn svg,.Vlt-composite__append .Vlt-btn--outline.Vlt-btn:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white) svg,.Vlt-composite__append .Vlt-btn--outline.Vlt-dropdown__btn svg,.Vlt-composite__append .Vlt-native-dropdown select.Vlt-btn--outline svg,.Vlt-composite__prepend .Vlt-btn--outline.Vlt-btn:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white) svg,.Vlt-composite__prepend .Vlt-btn--outline.Vlt-dropdown__btn svg,.Vlt-composite__prepend .Vlt-native-dropdown select.Vlt-btn--outline svg{fill:#e1e2e6}.Vlt-btn--outline.Vlt-btn--tertiary:hover,.Vlt-btn--outline.Vlt-btn--tertiary:not(.Vlt-btn--no-focus):focus,.Vlt-btn--outline.Vlt-dropdown__btn:hover:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white),.Vlt-btn--outline.Vlt-dropdown__btn:not(.Vlt-btn--no-focus):focus:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white),.Vlt-btn-group .Vlt-btn--outline.Vlt-btn:hover,.Vlt-btn-group .Vlt-btn--outline.Vlt-btn:not(.Vlt-btn--no-focus):focus,.Vlt-composite__append .Vlt-btn--outline.Vlt-btn:hover:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white),.Vlt-composite__append .Vlt-btn--outline.Vlt-btn:not(.Vlt-btn--no-focus):focus:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white),.Vlt-composite__append .Vlt-btn--outline.Vlt-dropdown__btn:hover,.Vlt-composite__append .Vlt-btn--outline.Vlt-dropdown__btn:not(.Vlt-btn--no-focus):focus,.Vlt-composite__append .Vlt-native-dropdown select.Vlt-btn--outline:hover,.Vlt-composite__append .Vlt-native-dropdown select.Vlt-btn--outline:not(.Vlt-btn--no-focus):focus,.Vlt-composite__prepend .Vlt-btn--outline.Vlt-btn:hover:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white),.Vlt-composite__prepend .Vlt-btn--outline.Vlt-btn:not(.Vlt-btn--no-focus):focus:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white),.Vlt-composite__prepend .Vlt-btn--outline.Vlt-dropdown__btn:hover,.Vlt-composite__prepend .Vlt-btn--outline.Vlt-dropdown__btn:not(.Vlt-btn--no-focus):focus,.Vlt-composite__prepend .Vlt-native-dropdown select.Vlt-btn--outline:hover,.Vlt-composite__prepend .Vlt-native-dropdown select.Vlt-btn--outline:not(.Vlt-btn--no-focus):focus{background:rgba(194,196,204,.1)}.Vlt-btn--outline.Vlt-btn--tertiary:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--tertiary,.Vlt-btn--outline.Vlt-btn_active.Vlt-dropdown__btn:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white),.Vlt-btn--outline.Vlt-dropdown__btn:not(.Vlt-btn--no-focus):active:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white),.Vlt-btn-group .Vlt-btn--outline.Vlt-btn:not(.Vlt-btn--no-focus):active,.Vlt-btn-group .Vlt-btn--outline.Vlt-btn_active.Vlt-btn,.Vlt-composite__append .Vlt-btn--outline.Vlt-btn:not(.Vlt-btn--no-focus):active:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white),.Vlt-composite__append .Vlt-btn--outline.Vlt-btn_active.Vlt-btn:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white),.Vlt-composite__append .Vlt-btn--outline.Vlt-btn_active.Vlt-dropdown__btn,.Vlt-composite__append .Vlt-btn--outline.Vlt-dropdown__btn:not(.Vlt-btn--no-focus):active,.Vlt-composite__append .Vlt-native-dropdown select.Vlt-btn--outline.Vlt-btn_active,.Vlt-composite__append .Vlt-native-dropdown select.Vlt-btn--outline:not(.Vlt-btn--no-focus):active,.Vlt-composite__prepend .Vlt-btn--outline.Vlt-btn:not(.Vlt-btn--no-focus):active:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white),.Vlt-composite__prepend .Vlt-btn--outline.Vlt-btn_active.Vlt-btn:not(.Vlt-btn--primary):not(.Vlt-btn--secondary):not(.Vlt-btn--quaternary):not(.Vlt-btn--destructive):not(.Vlt-btn--indigo):not(.Vlt-btn--orange):not(.Vlt-btn--white),.Vlt-composite__prepend .Vlt-btn--outline.Vlt-btn_active.Vlt-dropdown__btn,.Vlt-composite__prepend .Vlt-btn--outline.Vlt-dropdown__btn:not(.Vlt-btn--no-focus):active,.Vlt-composite__prepend .Vlt-native-dropdown select.Vlt-btn--outline.Vlt-btn_active,.Vlt-composite__prepend .Vlt-native-dropdown select.Vlt-btn--outline:not(.Vlt-btn--no-focus):active{background:rgba(194,196,204,.2)}.Vlt-btn--destructive,.Vlt-dropdown__btn--destructive{background:#e84545;color:#fff}.Vlt-btn--destructive svg,.Vlt-dropdown__btn--destructive svg{fill:#fff}.Vlt-btn--destructive:hover,.Vlt-btn--destructive:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-dropdown__btn--destructive:hover,.Vlt-dropdown__btn--destructive:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#de1c1c}.Vlt-btn--destructive:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--destructive,.Vlt-btn_active.Vlt-dropdown__btn--destructive,.Vlt-dropdown__btn--destructive:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active{background:#c81919}.Vlt-btn--outline.Vlt-btn--destructive,.Vlt-btn--outline.Vlt-dropdown__btn--destructive{color:#e84545}.Vlt-btn--outline.Vlt-btn--destructive svg,.Vlt-btn--outline.Vlt-dropdown__btn--destructive svg{fill:#e84545}.Vlt-btn--outline.Vlt-btn--destructive:hover,.Vlt-btn--outline.Vlt-btn--destructive:not(.Vlt-btn--no-focus):focus,.Vlt-btn--outline.Vlt-dropdown__btn--destructive:hover,.Vlt-btn--outline.Vlt-dropdown__btn--destructive:not(.Vlt-btn--no-focus):focus{background:rgba(232,69,69,.1)}.Vlt-btn--outline.Vlt-btn--destructive:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--destructive,.Vlt-btn--outline.Vlt-btn_active.Vlt-dropdown__btn--destructive,.Vlt-btn--outline.Vlt-dropdown__btn--destructive:not(.Vlt-btn--no-focus):active{background:rgba(232,69,69,.2)}.Vlt-btn--quaternary,.Vlt-dropdown__btn--quaternary{background:#06ba77;color:#fff}.Vlt-btn--quaternary svg,.Vlt-dropdown__btn--quaternary svg{fill:#fff}.Vlt-btn--quaternary:hover,.Vlt-btn--quaternary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus,.Vlt-dropdown__btn--quaternary:hover,.Vlt-dropdown__btn--quaternary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#059c64}.Vlt-btn--quaternary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--quaternary,.Vlt-btn_active.Vlt-dropdown__btn--quaternary,.Vlt-dropdown__btn--quaternary:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active{background:#048957}.Vlt-btn--outline.Vlt-btn--quaternary,.Vlt-btn--outline.Vlt-dropdown__btn--quaternary{color:#06ba77}.Vlt-btn--outline.Vlt-btn--quaternary svg,.Vlt-btn--outline.Vlt-dropdown__btn--quaternary svg{fill:#06ba77}.Vlt-btn--outline.Vlt-btn--quaternary:hover,.Vlt-btn--outline.Vlt-btn--quaternary:not(.Vlt-btn--no-focus):focus,.Vlt-btn--outline.Vlt-dropdown__btn--quaternary:hover,.Vlt-btn--outline.Vlt-dropdown__btn--quaternary:not(.Vlt-btn--no-focus):focus{background:rgba(6,186,119,.1)}.Vlt-btn--outline.Vlt-btn--quaternary:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--quaternary,.Vlt-btn--outline.Vlt-btn_active.Vlt-dropdown__btn--quaternary,.Vlt-btn--outline.Vlt-dropdown__btn--quaternary:not(.Vlt-btn--no-focus):active{background:rgba(6,186,119,.2)}.Vlt-btn--indigo{background:#d6219c;color:#fff}.Vlt-btn--indigo svg{fill:#fff}.Vlt-btn--indigo:hover,.Vlt-btn--indigo:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#bb1d89}.Vlt-btn--indigo:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--indigo{background:#aa1a7c}.Vlt-btn--outline.Vlt-btn--indigo{color:#d6219c}.Vlt-btn--outline.Vlt-btn--indigo svg{fill:#d6219c}.Vlt-btn--outline.Vlt-btn--indigo:hover,.Vlt-btn--outline.Vlt-btn--indigo:not(.Vlt-btn--no-focus):focus{background:rgba(214,33,156,.1)}.Vlt-btn--outline.Vlt-btn--indigo:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--indigo{background:rgba(214,33,156,.2)}.Vlt-btn--orange{background:#fa7454;color:#fff}.Vlt-btn--orange svg{fill:#fff}.Vlt-btn--orange:hover,.Vlt-btn--orange:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#f95c36}.Vlt-btn--orange:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--orange{background:#f94c22}.Vlt-btn--outline.Vlt-btn--orange{color:#fa7454}.Vlt-btn--outline.Vlt-btn--orange svg{fill:#fa7454}.Vlt-btn--outline.Vlt-btn--orange:hover,.Vlt-btn--outline.Vlt-btn--orange:not(.Vlt-btn--no-focus):focus{background:rgba(250,116,84,.1)}.Vlt-btn--outline.Vlt-btn--orange:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--orange{background:rgba(250,116,84,.2)}.Vlt-btn--white{background:#fff;color:#131415}.Vlt-btn--white svg{fill:#131415}.Vlt-btn--white:hover,.Vlt-btn--white:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):focus{background:#e1e2e6}.Vlt-btn--white:not(.Vlt-btn--no-focus):not(.Vlt-btn--outline):active,.Vlt-btn_active.Vlt-btn--white{background:#c2c4cc}.Vlt-btn--outline.Vlt-btn--white{color:#fff}.Vlt-btn--outline.Vlt-btn--white svg{fill:#fff}.Vlt-btn--outline.Vlt-btn--white:hover,.Vlt-btn--outline.Vlt-btn--white:not(.Vlt-btn--no-focus):focus{background:rgba(255,255,255,.1)}.Vlt-btn--outline.Vlt-btn--white:not(.Vlt-btn--no-focus):active,.Vlt-btn--outline.Vlt-btn_active.Vlt-btn--white{background:rgba(255,255,255,.2)}.Vlt-btn--outline{background-color:transparent;box-shadow:inset 0 0 0 1px}.Vlt-btn--outline .Vlt-spinner:after,.Vlt-btn--outline .Vlt-spinner:before{border-color:currentColor transparent transparent}.Vlt-btn--link,.Vlt-callout--banner .Vlt-callout__link,.Vlt-text-btn{border-radius:0;box-shadow:none;cursor:pointer;font-size:1.5rem;padding:0;white-space:nowrap}.Vlt-btn--link svg,.Vlt-callout--banner .Vlt-callout__link svg,.Vlt-text-btn svg{fill:#871fff}.Vlt-btn--link:hover,.Vlt-callout--banner .Vlt-callout__link:hover,.Vlt-text-btn:hover{text-decoration:underline;transform:none}.Vlt-btn--link:active,.Vlt-callout--banner .Vlt-callout__link:active,.Vlt-text-btn:active{box-shadow:none}.Vlt-btn--link.Vlt-btn--disabled,.Vlt-btn--link.Vlt-btn_disabled,.Vlt-btn--link:disabled,.Vlt-callout--banner .Vlt-btn--disabled.Vlt-callout__link,.Vlt-callout--banner .Vlt-btn_disabled.Vlt-callout__link,.Vlt-callout--banner .Vlt-callout__link:disabled,.Vlt-text-btn.Vlt-btn--disabled,.Vlt-text-btn.Vlt-btn_disabled,.Vlt-text-btn:disabled{background:0 0!important}.Vlt-btn-group{display:-ms-flexbox;display:flex}.Vlt-btn-group:not(.Vlt-btn-group--app) .Vlt-btn:first-child{min-width:44px;padding-left:20px}.Vlt-btn-group:not(.Vlt-btn-group--app) .Vlt-btn:last-child{min-width:44px;padding-right:20px}.Vlt-btn-group .Vlt-btn{margin-left:0;margin-right:0}.Vlt-btn-group .Vlt-btn:not(:first-child){border-bottom-left-radius:0;border-left:0;border-top-left-radius:0}.Vlt-btn-group .Vlt-btn:not(:last-child){border-bottom-right-radius:0;border-top-right-radius:0}.Vlt-btn-group .Vlt-btn:not(.Vlt-btn--no-focus):focus{z-index:2}.Vlt-btn-group--app .Vlt-btn{background:#e1e2e6!important;position:relative;z-index:1}.Vlt-btn-group--app .Vlt-btn:before{border-radius:5px;bottom:2px;content:'';left:1px;position:absolute;right:1px;top:2px;transition:background .3s;z-index:-1}.Vlt-btn-group--app .Vlt-btn:hover:before{background:#c2c4cc}.Vlt-btn-group--app .Vlt-btn.Vlt-btn_active{color:#fff!important}.Vlt-btn-group--app .Vlt-btn.Vlt-btn_active svg{fill:#fff!important}.Vlt-btn-group--app .Vlt-btn.Vlt-btn_active:before{background:#131415}.Vlt-btn-group--app .Vlt-btn:first-child{border-bottom-left-radius:6px;border-top-left-radius:6px}.Vlt-btn-group--app .Vlt-btn:first-child:before{left:2px}.Vlt-btn-group--app .Vlt-btn:last-child{border-bottom-right-radius:6px;border-top-right-radius:6px}.Vlt-btn-group--app .Vlt-btn:last-child:before{right:2px}.Vlt-btn-group--small:not(.Vlt-btn-group--app) .Vlt-btn:first-child{min-width:36px;padding-left:16px}.Vlt-btn-group--small:not(.Vlt-btn-group--app) .Vlt-btn:last-child{min-width:36px;padding-right:16px}.Vlt-btn-group--large:not(.Vlt-btn-group--app) .Vlt-btn:first-child{min-width:52px;padding-left:28px}.Vlt-btn-group--large:not(.Vlt-btn-group--app) .Vlt-btn:last-child{min-width:52px;padding-right:28px}.Vlt-btn-group--hover{border:0!important;margin-top:-1px;opacity:0;padding:0!important;position:absolute;right:16px;transition:all .3s;z-index:-1}.Vlt-btn-group--inline{display:-ms-inline-flexbox;display:inline-flex}.Vlt-btn-on-hover{position:relative}.Vlt-btn-on-hover:hover .Vlt-btn-group--hover{background-color:transparent;opacity:1;z-index:2}.Vlt-btn-on-hover:not(tr):not(td):not(table) .Vlt-btn-group--hover{margin-top:0;top:-16px}.Vlt-btn--link,.Vlt-callout--banner .Vlt-callout__link,.Vlt-text-btn,.Vlt-text-link,label a:not([class]),li a:not([class]),nav a:not([class]),p a:not([class]),small a:not([class]),span a:not([class]),td a:not([class]),th a:not([class]){color:#871fff;cursor:pointer;font-size:inherit;font-weight:inherit;line-height:inherit}.Vlt-btn--link:hover,.Vlt-callout--banner .Vlt-callout__link:hover,.Vlt-text-btn:hover,.Vlt-text-link:hover,label a:hover:not([class]),li a:hover:not([class]),nav a:hover:not([class]),p a:hover:not([class]),small a:hover:not([class]),span a:hover:not([class]),td a:hover:not([class]),th a:hover:not([class]){color:#441080;text-decoration:underline}.Vlt-btn--link:active,.Vlt-callout--banner .Vlt-callout__link:active,.Vlt-text-btn:active,.Vlt-text-link:active,label a:active:not([class]),li a:active:not([class]),nav a:active:not([class]),p a:active:not([class]),small a:active:not([class]),span a:active:not([class]),td a:active:not([class]),th a:active:not([class]){color:#441080}.Vlt-btn--link:visited,.Vlt-callout--banner .Vlt-callout__link:visited,.Vlt-text-btn:visited,.Vlt-text-link:visited,label a:visited:not([class]),li a:visited:not([class]),nav a:visited:not([class]),p a:visited:not([class]),small a:visited:not([class]),span a:visited:not([class]),td a:visited:not([class]),th a:visited:not([class]){color:#871fff}.Vlt-btn--link:visited:hover,.Vlt-callout--banner .Vlt-callout__link:visited:hover,.Vlt-text-btn:visited:hover,.Vlt-text-link:visited:hover,label a:visited:hover:not([class]),li a:visited:hover:not([class]),nav a:visited:hover:not([class]),p a:visited:hover:not([class]),small a:visited:hover:not([class]),span a:visited:hover:not([class]),td a:visited:hover:not([class]),th a:visited:hover:not([class]){color:#441080}.Vlt-black.Vlt-btn--link,.Vlt-black.Vlt-text-btn,.Vlt-callout--banner .Vlt-black.Vlt-callout__link,.Vlt-text-link.Vlt-black,label a.Vlt-black:not([class]),li a.Vlt-black:not([class]),nav a.Vlt-black:not([class]),p a.Vlt-black:not([class]),small a.Vlt-black:not([class]),span a.Vlt-black:not([class]),td a.Vlt-black:not([class]),th a.Vlt-black:not([class]){color:#131415;font-weight:600;position:relative}.Vlt-black.Vlt-btn--link:after,.Vlt-black.Vlt-text-btn:after,.Vlt-callout--banner .Vlt-black.Vlt-callout__link:after,.Vlt-text-link.Vlt-black:after,label a.Vlt-black:not([class]):after,li a.Vlt-black:not([class]):after,nav a.Vlt-black:not([class]):after,p a.Vlt-black:not([class]):after,small a.Vlt-black:not([class]):after,span a.Vlt-black:not([class]):after,td a.Vlt-black:not([class]):after,th a.Vlt-black:not([class]):after{background-color:#131415;bottom:-2px;content:'';height:1px;left:0;position:absolute;width:100%}.Vlt-black.Vlt-btn--link:hover,.Vlt-black.Vlt-text-btn:hover,.Vlt-callout--banner .Vlt-black.Vlt-callout__link:hover,.Vlt-text-link.Vlt-black:hover,label a.Vlt-black:hover:not([class]),li a.Vlt-black:hover:not([class]),nav a.Vlt-black:hover:not([class]),p a.Vlt-black:hover:not([class]),small a.Vlt-black:hover:not([class]),span a.Vlt-black:hover:not([class]),td a.Vlt-black:hover:not([class]),th a.Vlt-black:hover:not([class]){color:#616266;text-decoration:none}.Vlt-black.Vlt-btn--link:hover:after,.Vlt-black.Vlt-text-btn:hover:after,.Vlt-callout--banner .Vlt-black.Vlt-callout__link:hover:after,.Vlt-text-link.Vlt-black:hover:after,label a.Vlt-black:not([class]):hover:after,li a.Vlt-black:not([class]):hover:after,nav a.Vlt-black:not([class]):hover:after,p a.Vlt-black:not([class]):hover:after,small a.Vlt-black:not([class]):hover:after,span a.Vlt-black:not([class]):hover:after,td a.Vlt-black:not([class]):hover:after,th a.Vlt-black:not([class]):hover:after{background-color:#616266}.Vlt-black.Vlt-btn--link:active,.Vlt-black.Vlt-text-btn:active,.Vlt-callout--banner .Vlt-black.Vlt-callout__link:active,.Vlt-text-link.Vlt-black:active,label a.Vlt-black:active:not([class]),li a.Vlt-black:active:not([class]),nav a.Vlt-black:active:not([class]),p a.Vlt-black:active:not([class]),small a.Vlt-black:active:not([class]),span a.Vlt-black:active:not([class]),td a.Vlt-black:active:not([class]),th a.Vlt-black:active:not([class]){color:#616266}.Vlt-black.Vlt-btn--link:visited,.Vlt-black.Vlt-text-btn:visited,.Vlt-callout--banner .Vlt-black.Vlt-callout__link:visited,.Vlt-text-link.Vlt-black:visited,label a.Vlt-black:visited:not([class]),li a.Vlt-black:visited:not([class]),nav a.Vlt-black:visited:not([class]),p a.Vlt-black:visited:not([class]),small a.Vlt-black:visited:not([class]),span a.Vlt-black:visited:not([class]),td a.Vlt-black:visited:not([class]),th a.Vlt-black:visited:not([class]){color:#131415}.Vlt-accordion__trigger,.Vlt-badge__dismiss,.Vlt-btn--link,.Vlt-callout--banner .Vlt-callout__link,.Vlt-callout__dismiss,.Vlt-dialpad__key,.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs .Vlt-js-tabs__link,.Vlt-sidenav__mobile button,.Vlt-text-btn,.reset-button{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:0;outline:0;padding:0}.Vlt-btn--disabled.Vlt-btn,.Vlt-btn--disabled.Vlt-callout__cta,.Vlt-btn--disabled.Vlt-dropdown__btn,.Vlt-btn--link.Vlt-btn--disabled,.Vlt-btn--link.Vlt-btn_disabled,.Vlt-btn--link:disabled,.Vlt-btn:disabled,.Vlt-btn_disabled.Vlt-btn,.Vlt-btn_disabled.Vlt-callout__cta,.Vlt-btn_disabled.Vlt-dropdown__btn,.Vlt-callout--banner .Vlt-btn--disabled.Vlt-callout__link,.Vlt-callout--banner .Vlt-btn_disabled.Vlt-callout__link,.Vlt-callout--banner .Vlt-callout__link:disabled,.Vlt-callout__cta:disabled,.Vlt-dropdown__btn:disabled,.Vlt-native-dropdown select.Vlt-btn--disabled,.Vlt-native-dropdown select.Vlt-btn_disabled,.Vlt-native-dropdown select:disabled,.Vlt-text-btn.Vlt-btn--disabled,.Vlt-text-btn.Vlt-btn_disabled,.Vlt-text-btn:disabled{background:rgba(194,196,204,.5);border:0;box-shadow:none;color:#9b9da3;pointer-events:none}.Vlt-btn--disabled.Vlt-btn svg,.Vlt-btn--disabled.Vlt-callout__cta svg,.Vlt-btn--disabled.Vlt-dropdown__btn svg,.Vlt-btn--link.Vlt-btn--disabled svg,.Vlt-btn--link.Vlt-btn_disabled svg,.Vlt-btn--link:disabled svg,.Vlt-btn:disabled svg,.Vlt-btn_disabled.Vlt-btn svg,.Vlt-btn_disabled.Vlt-callout__cta svg,.Vlt-btn_disabled.Vlt-dropdown__btn svg,.Vlt-callout--banner .Vlt-btn--disabled.Vlt-callout__link svg,.Vlt-callout--banner .Vlt-btn_disabled.Vlt-callout__link svg,.Vlt-callout--banner .Vlt-callout__link:disabled svg,.Vlt-callout__cta:disabled svg,.Vlt-dropdown__btn:disabled svg,.Vlt-native-dropdown select.Vlt-btn--disabled svg,.Vlt-native-dropdown select.Vlt-btn_disabled svg,.Vlt-native-dropdown select:disabled svg,.Vlt-text-btn.Vlt-btn--disabled svg,.Vlt-text-btn.Vlt-btn_disabled svg,.Vlt-text-btn:disabled svg{fill:#9b9da3}.Vlt-blockquote{display:block;padding-left:14px;position:relative}.Vlt-blockquote:after{background-color:currentColor;border-radius:1px;content:'';height:100%;left:0;position:absolute;top:0;width:2px}.Vlt-blockquote strong:first-child{color:currentColor;display:block;line-height:21px}.Vlt-blockquote p:last-child{margin-bottom:0}.Vlt-custom-select:after,.Vlt-select:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';height:20px;margin-top:-10px;pointer-events:none;position:absolute;right:14px;top:50%;width:20px}.Vlt-label{display:block;font-size:1.4rem;line-height:1.5;margin-bottom:4px;text-align:left}.Vlt-label label{font-size:1.4rem}.Vlt-label+.Vlt-checkbox,.Vlt-label+.Vlt-form__element,.Vlt-label+.Vlt-radio{margin-top:4px}.Vlt-input input:-webkit-autofill,.Vlt-input input:-webkit-autofill:focus,.Vlt-input input:-webkit-autofill:hover{box-shadow:0 0 0 1000px #f3e9ff inset}.Vlt-input.Vlt-input--round input{border-radius:46px}.Vlt-select.Vlt-select--round select{border-radius:46px}.Vlt-custom-select,.Vlt-input,.Vlt-select,.Vlt-textarea{max-width:100%;position:relative}.Vlt-custom-select__input,.Vlt-input input,.Vlt-select select,.Vlt-textarea textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fff;border:1px solid #c2c4cc;border-radius:5px;box-shadow:none;color:#131415;display:block;font-size:1.4rem;height:40px;padding-left:12px;transition:background-color .5s,border-color .5s;width:100%}.Vlt-custom-select__input:hover,.Vlt-input input:hover,.Vlt-select select:hover,.Vlt-textarea textarea:hover{border-color:#131415}.Vlt-custom-select__input:disabled,.Vlt-input input:disabled,.Vlt-select select:disabled,.Vlt-textarea textarea:disabled{color:#9b9da3;cursor:default}.Vlt-composite{display:-ms-flexbox!important;display:flex!important;-ms-flex-flow:row;flex-flow:row;position:relative}.Vlt-composite .Vlt-composite{-ms-flex:1;flex:1}.Vlt-composite .Vlt-input,.Vlt-composite .Vlt-select{-ms-flex:1;flex:1;position:relative}.Vlt-form__element--elastic .Vlt-composite .Vlt-input,.Vlt-form__element--elastic .Vlt-composite .Vlt-select{-ms-flex:0;flex:0;-ms-flex-preferred-size:auto;flex-basis:auto}.Vlt-composite--appendedicon .Vlt-input input,.Vlt-composite--appendedicon .Vlt-select select{padding-right:40px}.Vlt-composite .Vlt-composite:first-child .Vlt-input input,.Vlt-composite:not(.Vlt-composite--appendedicon) .Vlt-input:first-child input,.Vlt-composite:not(.Vlt-composite--appendedicon) .Vlt-select:first-child select{border-bottom-right-radius:0;border-right:0;border-top-right-radius:0}.Vlt-composite__append .Vlt-btn,.Vlt-composite__append .Vlt-dropdown__btn,.Vlt-composite__append .Vlt-native-dropdown select,.Vlt-composite__prepend .Vlt-btn,.Vlt-composite__prepend .Vlt-dropdown__btn,.Vlt-composite__prepend .Vlt-native-dropdown select{border:1px solid #c2c4cc;margin:0!important;padding-bottom:7px;padding-top:7px}.Vlt-composite__append .Vlt-btn:hover,.Vlt-composite__append .Vlt-dropdown__btn:hover,.Vlt-composite__append .Vlt-native-dropdown select:hover,.Vlt-composite__prepend .Vlt-btn:hover,.Vlt-composite__prepend .Vlt-dropdown__btn:hover,.Vlt-composite__prepend .Vlt-native-dropdown select:hover{transform:scale(1)}.Vlt-form__element--big .Vlt-composite__append .Vlt-btn,.Vlt-form__element--big .Vlt-composite__append .Vlt-dropdown__btn,.Vlt-form__element--big .Vlt-composite__append .Vlt-native-dropdown select,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-btn,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-dropdown__btn,.Vlt-form__element--big .Vlt-composite__prepend .Vlt-native-dropdown select{padding:10px 24px}.Vlt-composite__append .Vlt-btn--destructive,.Vlt-composite__append .Vlt-btn--indigo,.Vlt-composite__append .Vlt-btn--orange,.Vlt-composite__append .Vlt-btn--primary,.Vlt-composite__append .Vlt-btn--quaternary,.Vlt-composite__append .Vlt-btn--secondary,.Vlt-composite__append .Vlt-native-dropdown select,.Vlt-composite__prepend .Vlt-btn--destructive,.Vlt-composite__prepend .Vlt-btn--indigo,.Vlt-composite__prepend .Vlt-btn--orange,.Vlt-composite__prepend .Vlt-btn--primary,.Vlt-composite__prepend .Vlt-btn--quaternary,.Vlt-composite__prepend .Vlt-btn--secondary,.Vlt-composite__prepend .Vlt-native-dropdown select,.Vlt-native-dropdown .Vlt-composite__append select,.Vlt-native-dropdown .Vlt-composite__prepend select{border:0}.Vlt-composite__append .Vlt-dropdown__btn:after,.Vlt-composite__append .Vlt-native-dropdown:after,.Vlt-composite__prepend .Vlt-dropdown__btn:after,.Vlt-composite__prepend .Vlt-native-dropdown:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-composite__append{position:relative;z-index:2}.Vlt-composite__append .Vlt-btn,.Vlt-composite__append .Vlt-dropdown__btn,.Vlt-composite__append .Vlt-native-dropdown select{border-bottom-left-radius:0;border-top-left-radius:0}.Vlt-composite__append--icon{height:100%;padding:11px 12px;position:absolute;right:0;width:42px}.Vlt-composite__append--icon svg{fill:#9b9da3;height:18px;position:relative;width:18px}.Vlt-composite__prepend{position:relative;z-index:2}.Vlt-composite__prepend .Vlt-btn,.Vlt-composite__prepend .Vlt-dropdown__btn,.Vlt-composite__prepend .Vlt-native-dropdown select{border-bottom-right-radius:0;border-top-right-radius:0}.Vlt-composite__prepend:not(.Vlt-composite__prepend--icon)+.Vlt-input input,.Vlt-composite__prepend:not(.Vlt-composite__prepend--icon)+.Vlt-select select{border-bottom-left-radius:0;border-left:0;border-top-left-radius:0}.Vlt-composite__prepend--icon{height:100%;padding:11px 12px;position:absolute;width:42px}.Vlt-composite__prepend--icon svg{fill:#131415;height:18px;width:18px}.Vlt-composite__prepend--icon+.Vlt-input input,.Vlt-composite__prepend--icon+.Vlt-select select{padding-left:42px}.Vlt-composite .Vlt-btn,.Vlt-composite .Vlt-dropdown__btn .Vlt-native-dropdown select{margin:0}.Vlt-composite .Vlt-input input:disabled,.Vlt-composite .Vlt-input input[readonly]{border-color:#c2c4cc}.Vlt-textarea textarea{height:auto;padding-bottom:8px;padding-top:8px;resize:vertical}.Vlt-custom-select__input,.Vlt-select select{-webkit-appearance:none;-moz-appearance:none;appearance:none;cursor:pointer;padding-right:42px;text-indent:1px;text-overflow:''}.Vlt-custom-select__input::-ms-expand,.Vlt-select select::-ms-expand{display:none}.Vlt-form__group{-ms-flex-align:end;align-items:flex-end;display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.Vlt-form__group .Vlt-form__element{margin-right:16px}.Vlt-form__group .Vlt-form__element:last-child{margin-right:0}.Vlt-form__group>.Vlt-btn{margin-bottom:8px}.Vlt-form__group>.Vlt-form__element__error,.Vlt-form__group>.Vlt-form__element__hint{-ms-flex:0 0 100%;flex:0 0 100%;margin-bottom:4px}.Vlt-form__group+.Vlt-form__element,.Vlt-form__group+.Vlt-form__group{margin-top:0}@media only screen and (max-width:575px){.Vlt-form__group--M-plus{display:block}}.Vlt-form__group--inline{display:-ms-inline-flexbox;display:inline-flex}.Vlt-form__group--stretch .Vlt-form__element{-ms-flex:auto;flex:auto}.Vlt-form__element{padding:8px 0}.Vlt-form__element h1,.Vlt-form__element h2,.Vlt-form__element h3,.Vlt-form__element h4{margin:0}.Vlt-form__element__error,.Vlt-form__element__hint{display:block;-ms-flex:0 0 100%;flex:0 0 100%;font-size:1.2rem;line-height:1.33;margin-top:6px;text-align:left}.Vlt-form__element__hint{color:#616266}.Vlt-form__element__error{color:#e84545}.Vlt-form__element__error:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23e84545%3B%22%20d%3D%22M8%200C3.6%200%200%203.6%200%208C0%2012.4%203.6%2016%208%2016C12.4%2016%2016%2012.4%2016%208C16%203.6%2012.4%200%208%200ZM8%2012C7.4%2012%207%2011.6%207%2011C7%2010.4%207.4%2010%208%2010C8.6%2010%209%2010.4%209%2011C9%2011.6%208.6%2012%208%2012ZM9%209H7V4H9V9Z%22%2F%3E%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';display:inline-block;height:16px;margin-right:6px;vertical-align:bottom;width:16px}.Vlt-form__element--error .Vlt-checkbox{color:#e84545}.Vlt-form__element--error .Vlt-checkbox input:not(:checked)+.Vlt-checkbox__icon{background:#fff!important}.Vlt-form__element--error.Vlt-form__element--big label{color:#e84545}.Vlt-form__element--error.Vlt-form__element--big .Vlt-textarea textarea:not(:focus)+*{background-color:#fdecec}.Vlt-form__element--elastic .Vlt-input,.Vlt-form__element--elastic .Vlt-select,.Vlt-form__element--elastic input,.Vlt-form__element--elastic select{display:inline-block;margin-left:0;margin-right:0;width:auto}.Vlt-form__element--elastic .Vlt-input+.Vlt-input,.Vlt-form__element--elastic .Vlt-input+.Vlt-select,.Vlt-form__element--elastic .Vlt-input+input,.Vlt-form__element--elastic .Vlt-input+select,.Vlt-form__element--elastic .Vlt-select+.Vlt-input,.Vlt-form__element--elastic .Vlt-select+.Vlt-select,.Vlt-form__element--elastic .Vlt-select+input,.Vlt-form__element--elastic .Vlt-select+select,.Vlt-form__element--elastic input+.Vlt-input,.Vlt-form__element--elastic input+.Vlt-select,.Vlt-form__element--elastic input+input,.Vlt-form__element--elastic input+select,.Vlt-form__element--elastic select+.Vlt-input,.Vlt-form__element--elastic select+.Vlt-select,.Vlt-form__element--elastic select+input,.Vlt-form__element--elastic select+select{margin-left:16px}.Vlt-form__element--elastic .Vlt-textarea,.Vlt-form__element--elastic textarea{display:inline-block;width:auto}.Vlt-form__element--inline-content .Vlt-checkbox,.Vlt-form__element--inline-content .Vlt-radio{display:inline-block;margin-bottom:16px;margin-right:16px;margin-top:4px!important}.Vlt-form__element .Vlt-dropdown__btn{margin:0}.Vlt-checkbox,.Vlt-radio{position:relative}.Vlt-checkbox input,.Vlt-radio input{-webkit-appearance:none;-moz-appearance:none;appearance:none;height:0;opacity:0;overflow:hidden;position:absolute;width:0}.Vlt-checkbox input:active,.Vlt-checkbox input:focus,.Vlt-radio input:active,.Vlt-radio input:focus{box-shadow:none;outline:0}.Vlt-checkbox input:disabled:active+.Vlt-checkbox__icon,.Vlt-checkbox input:disabled:active+.Vlt-radio__icon,.Vlt-radio input:disabled:active+.Vlt-checkbox__icon,.Vlt-radio input:disabled:active+.Vlt-radio__icon{box-shadow:none}.Vlt-checkbox input:invalid:focus+.Vlt-checkbox__icon,.Vlt-checkbox input:invalid:focus+.Vlt-radio__icon,.Vlt-radio input:invalid:focus+.Vlt-checkbox__icon,.Vlt-radio input:invalid:focus+.Vlt-radio__icon{box-shadow:0 0 5px rgba(232,69,69,.5)}.Vlt-checkbox label,.Vlt-radio label{-ms-flex-align:start;align-items:flex-start;display:-ms-flexbox;display:flex;text-align:left}.Vlt-checkbox__button,.Vlt-radio__button{display:block;-ms-flex:0 0 22px;flex:0 0 22px;height:22px;margin-right:10px;margin-top:-1px;position:relative;width:22px}.Vlt-checkbox__icon,.Vlt-radio__icon{border:2px solid #c2c4cc;display:block;height:100%;transition:all .2s;width:100%}.Vlt-checkbox__icon:after,.Vlt-radio__icon:after{content:'';display:block;position:absolute;transform:scale(.1,.1);transition:transform .2s ease-out}.Vlt-checkbox:hover .Vlt-checkbox__icon,.Vlt-checkbox:hover .Vlt-radio__icon,.Vlt-radio:hover .Vlt-checkbox__icon,.Vlt-radio:hover .Vlt-radio__icon{border-color:#131415}.Vlt-checkbox+.Vlt-checkbox,.Vlt-checkbox+.Vlt-form__element__error,.Vlt-checkbox+.Vlt-form__element__hint,.Vlt-checkbox+.Vlt-radio,.Vlt-radio+.Vlt-checkbox,.Vlt-radio+.Vlt-form__element__error,.Vlt-radio+.Vlt-form__element__hint,.Vlt-radio+.Vlt-radio{margin-top:16px}.Vlt-checkbox--inline,.Vlt-radio--inline{display:inline-block;margin-bottom:16px;margin-right:16px;margin-top:4px!important}.Vlt-radio__icon{border-radius:100%;transition:all .2s}.Vlt-radio__icon:after{border-radius:100%;height:10px;left:50%;margin-left:-5px;margin-top:-5px;top:50%;width:10px}.Vlt-radio__button input:checked~.Vlt-radio__icon:after{background:#131415;transform:scale(1,1)}.Vlt-checkbox--error .Vlt-checkbox input:not(:checked)+.Vlt-checkbox__icon{background-color:#fff}.Vlt-checkbox__icon{background-color:#fff;border:1px solid #c2c4cc;border-radius:4px}.Vlt-checkbox__icon:after{background-position:center center;background-repeat:no-repeat;background-size:14px 14px;content:'';height:100%;left:0;top:0;transform:scale(1,1);width:100%}.Vlt-checkbox__button input:hover:not(:checked)~.Vlt-checkbox__icon{border-color:#9b9da3}.Vlt-checkbox__button input:focus~.Vlt-checkbox__icon{border-color:#131415}.Vlt-checkbox__button input:checked:disabled~.Vlt-checkbox__icon,.Vlt-checkbox__button input:checked~.Vlt-checkbox__icon{background-color:#131415;border-color:#131415}.Vlt-checkbox__button input:checked:disabled~.Vlt-checkbox__icon:after,.Vlt-checkbox__button input:checked~.Vlt-checkbox__icon:after{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M21.45%203.45L7.5%2017.4L2.55%2012.45C1.95%2011.85%201.05%2011.85%200.45%2012.45C-0.15%2013.05%20-0.15%2013.95%200.45%2014.55L6.45%2020.55C6.75%2020.85%207.05%2021%207.5%2021C7.95%2021%208.25%2020.85%208.55%2020.55L23.55%205.55C24.15%204.95%2024.15%204.05%2023.55%203.45C22.95%202.85%2022.05%202.85%2021.45%203.45Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-checkbox__button input:hover:not(:checked):disabled~.Vlt-checkbox__icon,.Vlt-checkbox__button input:not(:checked):disabled~.Vlt-checkbox__icon{background-color:#f3f3f5;border-color:#e1e2e6}.Vlt-checkbox__button input:checked:disabled~.Vlt-checkbox__icon,.Vlt-checkbox__button input:hover:checked:disabled~.Vlt-checkbox__icon{opacity:.3}.Vlt-checkbox--partial .Vlt-checkbox__button input:checked~.Vlt-checkbox__icon,.Vlt-checkbox--partial .Vlt-checkbox__button input:disabled~.Vlt-checkbox__icon,.Vlt-checkbox--partial .Vlt-checkbox__button input:hover:disabled~.Vlt-checkbox__icon,.Vlt-checkbox--partial .Vlt-checkbox__button input:hover~.Vlt-checkbox__icon,.Vlt-checkbox--partial .Vlt-checkbox__button input~.Vlt-checkbox__icon{background-color:#131415;border-color:#131415}.Vlt-checkbox--partial .Vlt-checkbox__button input:disabled~.Vlt-checkbox__icon,.Vlt-checkbox--partial .Vlt-checkbox__button input:hover:disabled~.Vlt-checkbox__icon{opacity:.3}.Vlt-checkbox--partial .Vlt-checkbox__icon:after{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M15%207H1C0.4%207%200%207.4%200%208C0%208.6%200.4%209%201%209H15C15.6%209%2016%208.6%2016%208C16%207.4%2015.6%207%2015%207Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-checkbox input:invalid+.Vlt-checkbox__icon,.Vlt-checkbox input:invalid+.Vlt-radio__icon,.Vlt-custom-select__input:invalid,.Vlt-form-error-style,.Vlt-form__element--error .Vlt-checkbox input:not(:checked)+.Vlt-checkbox__icon,.Vlt-form__element--error .Vlt-radio input:not(:checked)+.Vlt-radio__icon,.Vlt-form__element--error input,.Vlt-form__element--error select,.Vlt-form__element--error textarea,.Vlt-input input:invalid,.Vlt-radio input:invalid+.Vlt-checkbox__icon,.Vlt-radio input:invalid+.Vlt-radio__icon,.Vlt-select select:invalid,.Vlt-textarea textarea:invalid{background:#fdecec;border-color:#e84545}.Vlt-checkbox input:invalid+.Vlt-checkbox__icon:hover,.Vlt-checkbox input:invalid+.Vlt-radio__icon:hover,.Vlt-custom-select__input:hover:invalid,.Vlt-form-error-style:hover,.Vlt-form__element--error .Vlt-checkbox input:not(:checked)+.Vlt-checkbox__icon:hover,.Vlt-form__element--error .Vlt-radio input:not(:checked)+.Vlt-radio__icon:hover,.Vlt-form__element--error input:hover,.Vlt-form__element--error select:hover,.Vlt-form__element--error textarea:hover,.Vlt-input input:hover:invalid,.Vlt-radio input:invalid+.Vlt-checkbox__icon:hover,.Vlt-radio input:invalid+.Vlt-radio__icon:hover,.Vlt-select select:hover:invalid,.Vlt-textarea textarea:hover:invalid{border-color:#e84545}.Vlt-form-valid-style,.Vlt-form__element--valid input,.Vlt-form__element--valid select,.Vlt-form__element--valid textarea{border-color:#06ba77}.Vlt-form-valid-style:hover,.Vlt-form__element--valid input:hover,.Vlt-form__element--valid select:hover,.Vlt-form__element--valid textarea:hover{border-color:#06ba77}.Vlt-checkbox input:active+.Vlt-radio__icon,.Vlt-checkbox input:focus+.Vlt-radio__icon,.Vlt-custom-select__input:focus,.Vlt-form-focus-style,.Vlt-input input:focus,.Vlt-radio input:active+.Vlt-radio__icon,.Vlt-radio input:focus+.Vlt-radio__icon,.Vlt-select select:focus,.Vlt-textarea textarea:focus{background:#fff;border-color:#131415;outline:0}.Vlt-checkbox input:active+.Vlt-radio__icon:hover,.Vlt-checkbox input:focus+.Vlt-radio__icon:hover,.Vlt-custom-select__input:hover:focus,.Vlt-form-focus-style:hover,.Vlt-input input:hover:focus,.Vlt-radio input:active+.Vlt-radio__icon:hover,.Vlt-radio input:focus+.Vlt-radio__icon:hover,.Vlt-select select:hover:focus,.Vlt-textarea textarea:hover:focus{border-color:#131415}.Vlt-checkbox input:disabled+.Vlt-radio__icon,.Vlt-custom-select__input:disabled,.Vlt-custom-select__input[readonly],.Vlt-form-disabled-readonly-style,.Vlt-input input:disabled,.Vlt-input input[readonly],.Vlt-radio input:disabled+.Vlt-radio__icon,.Vlt-select select:disabled,.Vlt-select select[readonly],.Vlt-textarea textarea:disabled,.Vlt-textarea textarea[readonly]{background:#f3f3f5;border-color:#e1e2e6;box-shadow:none}.Vlt-checkbox input:disabled+.Vlt-radio__icon:hover,.Vlt-custom-select__input:hover:disabled,.Vlt-custom-select__input:hover[readonly],.Vlt-form-disabled-readonly-style:hover,.Vlt-input input:hover:disabled,.Vlt-input input:hover[readonly],.Vlt-radio input:disabled+.Vlt-radio__icon:hover,.Vlt-select select:hover:disabled,.Vlt-select select:hover[readonly],.Vlt-textarea textarea:hover:disabled,.Vlt-textarea textarea:hover[readonly]{border-color:#e1e2e6}.Vlt-form__element--big{display:block;position:relative}.Vlt-form__element--big label{color:#616266;cursor:text;font-size:1.2rem;left:14px;line-height:1.6rem;opacity:1;pointer-events:none;position:absolute;top:7px;transition:all .2s,background-color .5s}.Vlt-form__element--big textarea{width:100%}.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input,.Vlt-form__element--big .Vlt-custom-select input,.Vlt-form__element--big .Vlt-custom-select select,.Vlt-form__element--big .Vlt-custom-select textarea,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input,.Vlt-form__element--big .Vlt-input input,.Vlt-form__element--big .Vlt-input select,.Vlt-form__element--big .Vlt-input textarea,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input,.Vlt-form__element--big .Vlt-select input,.Vlt-form__element--big .Vlt-select select,.Vlt-form__element--big .Vlt-select textarea,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input,.Vlt-form__element--big .Vlt-textarea input,.Vlt-form__element--big .Vlt-textarea select,.Vlt-form__element--big .Vlt-textarea textarea{border-radius:6px;height:4.8rem;padding:20px 14px 6px}.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input:-ms-input-placeholder,.Vlt-form__element--big .Vlt-custom-select input:-ms-input-placeholder,.Vlt-form__element--big .Vlt-custom-select select:-ms-input-placeholder,.Vlt-form__element--big .Vlt-custom-select textarea:-ms-input-placeholder,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input:-ms-input-placeholder,.Vlt-form__element--big .Vlt-input input:-ms-input-placeholder,.Vlt-form__element--big .Vlt-input select:-ms-input-placeholder,.Vlt-form__element--big .Vlt-input textarea:-ms-input-placeholder,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input:-ms-input-placeholder,.Vlt-form__element--big .Vlt-select input:-ms-input-placeholder,.Vlt-form__element--big .Vlt-select select:-ms-input-placeholder,.Vlt-form__element--big .Vlt-select textarea:-ms-input-placeholder,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input:-ms-input-placeholder,.Vlt-form__element--big .Vlt-textarea input:-ms-input-placeholder,.Vlt-form__element--big .Vlt-textarea select:-ms-input-placeholder,.Vlt-form__element--big .Vlt-textarea textarea:-ms-input-placeholder{color:#c2c4cc;opacity:1;transition:all .2s}.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input::placeholder,.Vlt-form__element--big .Vlt-custom-select input::placeholder,.Vlt-form__element--big .Vlt-custom-select select::placeholder,.Vlt-form__element--big .Vlt-custom-select textarea::placeholder,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input::placeholder,.Vlt-form__element--big .Vlt-input input::placeholder,.Vlt-form__element--big .Vlt-input select::placeholder,.Vlt-form__element--big .Vlt-input textarea::placeholder,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input::placeholder,.Vlt-form__element--big .Vlt-select input::placeholder,.Vlt-form__element--big .Vlt-select select::placeholder,.Vlt-form__element--big .Vlt-select textarea::placeholder,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input::placeholder,.Vlt-form__element--big .Vlt-textarea input::placeholder,.Vlt-form__element--big .Vlt-textarea select::placeholder,.Vlt-form__element--big .Vlt-textarea textarea::placeholder{color:#c2c4cc;opacity:1;transition:all .2s}.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-custom-select input:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-custom-select select:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-custom-select textarea:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-input input:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-input select:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-input textarea:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-select input:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-select select:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-select textarea:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-textarea input:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-textarea select:placeholder-shown:not(:focus):-ms-input-placeholder,.Vlt-form__element--big .Vlt-textarea textarea:placeholder-shown:not(:focus):-ms-input-placeholder{opacity:0}.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-custom-select input:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-custom-select select:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-custom-select textarea:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-input input:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-input select:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-input textarea:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-select input:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-select select:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-select textarea:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-textarea input:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-textarea select:placeholder-shown:not(:focus)::placeholder,.Vlt-form__element--big .Vlt-textarea textarea:placeholder-shown:not(:focus)::placeholder{opacity:0}.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-custom-select input:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-custom-select select:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-custom-select textarea:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-input input:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-input select:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-input textarea:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-select input:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-select select:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-select textarea:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-textarea input:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-textarea select:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-textarea textarea:placeholder-shown:not(:focus)+*{font-size:1.6rem;margin-top:-.8rem;top:50%}.Vlt-form__element--big .Vlt-custom-select select,.Vlt-form__element--big .Vlt-input select,.Vlt-form__element--big .Vlt-select select,.Vlt-form__element--big .Vlt-textarea select{padding-right:50px}.Vlt-form__element--big .Vlt-custom-select textarea,.Vlt-form__element--big .Vlt-input textarea,.Vlt-form__element--big .Vlt-select textarea,.Vlt-form__element--big .Vlt-textarea textarea{height:auto;min-height:4.8rem}.Vlt-form__element--big .Vlt-custom-select textarea+*,.Vlt-form__element--big .Vlt-input textarea+*,.Vlt-form__element--big .Vlt-select textarea+*,.Vlt-form__element--big .Vlt-textarea textarea+*{background-color:#fff;border-top-right-radius:6px;padding-top:6px;right:14px;top:1px}.Vlt-form__element--big .Vlt-custom-select textarea:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-input textarea:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-select textarea:placeholder-shown:not(:focus)+*,.Vlt-form__element--big .Vlt-textarea textarea:placeholder-shown:not(:focus)+*{margin-top:0;top:1rem}.Vlt-form__element--big .Vlt-custom-select textarea:disabled+*,.Vlt-form__element--big .Vlt-custom-select textarea[readonly]+*,.Vlt-form__element--big .Vlt-input textarea:disabled+*,.Vlt-form__element--big .Vlt-input textarea[readonly]+*,.Vlt-form__element--big .Vlt-select textarea:disabled+*,.Vlt-form__element--big .Vlt-select textarea[readonly]+*,.Vlt-form__element--big .Vlt-textarea textarea:disabled+*,.Vlt-form__element--big .Vlt-textarea textarea[readonly]+*{background-color:#f3f3f5}.Vlt-form__element--big .Vlt-custom-select:after,.Vlt-form__element--big .Vlt-select:after{height:24px;margin-top:-12px;width:24px}.Vlt-form__element--big .Vlt-custom-select__input{text-align:left}.Vlt-form__element--big .Vlt-form__element__error,.Vlt-form__element--big .Vlt-form__element__hint{margin-top:8px}.Vlt-dropdown .Vlt-composite{-ms-flex:1;flex:1;z-index:2}.Vlt-dropdown .Vlt-composite:first-child{margin-bottom:-1px}.Vlt-dropdown .Vlt-composite .Vlt-composite__append .Vlt-btn{transition:border-bottom-right-radius 0s}.Vlt-dropdown .Vlt-composite+.Vlt-dropdown__panel{z-index:1}.Vlt-dropdown .Vlt-composite+.Vlt-dropdown__panel .Vlt-dropdown__panel__content{border:1px solid #c2c4cc;border-top-left-radius:0;border-top-right-radius:0;box-shadow:0 4px 8px rgba(19,20,21,.15)}.Vlt-dropdown--expanded .Vlt-composite .Vlt-input input{border-bottom-left-radius:0;transition:border-bottom-left-radius 0s}.Vlt-dropdown--expanded .Vlt-composite .Vlt-composite__append .Vlt-btn{border-bottom-right-radius:0}.Vlt-dropdown{display:inline-block;position:relative}.Vlt-dropdown__header,.Vlt-dropdown__title{background:#871fff;border-top-left-radius:8px;border-top-right-radius:8px;color:#fff;font-size:1.5rem;font-weight:600;margin-top:-8px;padding:5px 16px;text-align:left}.Vlt-dropdown__label{-ms-flex:1;flex:1}.Vlt-dropdown__block,.Vlt-dropdown__link{color:#131415;overflow:hidden;padding:5px 16px;position:relative;text-align:left}.Vlt-dropdown__block--border-top,.Vlt-dropdown__link--border-top{margin-top:3px;padding-bottom:8px;padding-top:8px}.Vlt-dropdown__block--border-top:before,.Vlt-dropdown__link--border-top:before{background-color:#e1e2e6;content:'';height:1px;left:0;position:absolute;right:0;top:0}.Vlt-dropdown__block--disabled,.Vlt-dropdown__block_disabled,.Vlt-dropdown__link--disabled,.Vlt-dropdown__link_disabled{color:#9b9da3;cursor:default;pointer-events:none}.Vlt-dropdown__block--highlighted,.Vlt-dropdown__link--highlighted{color:#669fc4}.Vlt-dropdown__block__icon,.Vlt-dropdown__link__icon{-ms-flex:0 0 20px;flex:0 0 20px;height:20px;margin-bottom:-3px;margin-right:10px;vertical-align:middle;width:20px}.Vlt-dropdown__block__label,.Vlt-dropdown__link__label{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;-ms-flex:1;flex:1}.Vlt-dropdown__link{cursor:pointer;display:-ms-flexbox;display:flex;font-size:1.4rem;white-space:nowrap}.Vlt-dropdown__link:focus,.Vlt-dropdown__link:hover{background:rgba(19,20,21,.05)}.Vlt-dropdown__link:focus{outline:0}.Vlt-dropdown__link:active{background:rgba(19,20,21,.1)}.Vlt-dropdown__link--nohover:hover{background:0 0}.Vlt-dropdown__link--selected,.Vlt-dropdown__link_selected{font-size:1.5rem;font-weight:600;padding-right:40px}.Vlt-dropdown__link--selected:after,.Vlt-dropdown__link_selected:after{background:url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cpath%20fill%3D%22%23131415%22%20fill-rule%3D%22nonzero%22%20d%3D%22M2.904%2012.11L1.5%2013.52%207.958%2020%2022.5%205.409%2021.096%204%207.958%2017.182z%22%2F%3E%3C%2Fsvg%3E) no-repeat right center;background-size:contain;content:'';height:16px;position:absolute;right:16px;top:9px;width:16px}.Vlt-dropdown__block--nowrap{white-space:nowrap}.Vlt-dropdown__block--center{text-align:center}.Vlt-btn+.Vlt-dropdown,.Vlt-dropdown+.Vlt-btn{margin-left:8px}.Vlt-dropdown--full-width{display:-ms-flexbox;display:flex}.Vlt-dropdown--full-width .Vlt-dropdown__trigger{width:100%}.Vlt-dropdown--full-width .Vlt-dropdown__trigger .Vlt-btn{text-align:left;width:100%}.Vlt-dropdown__trigger{display:inline-block}.Vlt-dropdown__trigger--btn .Vlt-btn:hover{transform:none}.Vlt-dropdown__trigger--btn .Vlt-btn:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';display:inline-block;float:right;height:24px;margin-left:5px;vertical-align:middle;width:20px}.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--secondary.Vlt-btn--outline:after,.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--tertiary:after,.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--white:after,.Vlt-dropdown__trigger--btn .Vlt-native-dropdown select.Vlt-btn.Vlt-btn--outline:after,.Vlt-native-dropdown .Vlt-dropdown__trigger--btn select.Vlt-btn.Vlt-btn--outline:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--outline.Vlt-btn--primary:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23b779ff%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--outline.Vlt-btn--tertiary:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23e1e2e6%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--outline.Vlt-btn--quaternary:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%2306ba77%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--outline.Vlt-btn--indigo:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23d6219c%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--outline.Vlt-btn--orange:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23fa7454%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--outline.Vlt-btn--destructive:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23e84545%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--outline.Vlt-btn--white:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-dropdown__trigger--btn .Vlt-btn.Vlt-btn--link:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23117bb8%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-dropdown__trigger--btn+.Vlt-dropdown__panel{margin-top:-4px}.Vlt-dropdown__trigger--block{width:100%}.Vlt-dropdown__trigger--block .Vlt-btn{text-align:left;width:100%}.Vlt-dropdown__btn{margin-bottom:0;margin-top:0}.Vlt-dropdown__btn:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';display:inline-block;height:20px;margin-bottom:-1px;margin-left:5px;margin-top:-2px;vertical-align:middle;width:20px}.Vlt-dropdown__btn:hover{transform:none}.Vlt-dropdown__btn:active{transform:none}.Vlt-dropdown__btn:not(.Vlt-dropdown__btn--primary):not(.Vlt-dropdown__btn--secondary):not(.Vlt-dropdown__btn--tertiary):not(.Vlt-dropdown__btn--quaternary):not(.Vlt-dropdown__btn--destructive):not(.Vlt-dropdown__btn--indigo):not(.Vlt-dropdown__btn--orange):not(.Vlt-dropdown__btn--white):after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-dropdown__btn--large:after{height:24px;margin-left:8px;width:24px}.Vlt-dropdown__btn--small:after{margin:-4px -5px -3px 5px}.Vlt-dropdown__btn--app{border-radius:6px}.Vlt-dropdown__btn--app.Vlt-btn--small{border-radius:5px}.Vlt-form__element .Vlt-dropdown__btn{margin-bottom:0;margin-top:0}.Vlt-native-dropdown{display:-ms-inline-flexbox;display:inline-flex;position:relative;width:-webkit-fit-content;width:-moz-fit-content;width:fit-content}.Vlt-native-dropdown select{margin-bottom:0;margin-top:0;padding-right:38px}.Vlt-native-dropdown select::-ms-expand{display:none}.Vlt-native-dropdown select:hover{transform:none}.Vlt-native-dropdown select:active{transform:none}.Vlt-native-dropdown:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2020%2020%22%20style%3D%22enable-background%3Anew%200%200%2020%2020%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M7%2C7.8C6.7%2C7.5%2C6.2%2C7.6%2C5.9%2C7.9S5.7%2C8.7%2C6%2C9l4%2C3.4l4-3.4c0.3-0.3%2C0.3-0.8%2C0-1.1%0D%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';display:inline-block;height:20px;margin-left:5px;margin-top:-10px;pointer-events:none;position:absolute;right:12px;top:50%;width:20px}.Vlt-form__element--big .Vlt-native-dropdown:after,.Vlt-native-dropdown--large:after{right:25px}.Vlt-form__element--big .Vlt-native-dropdown select,.Vlt-native-dropdown--large select{margin-bottom:0;margin-top:0;padding-right:50px!important}.Vlt-btn+.Vlt-native-dropdown,.Vlt-native-dropdown+.Vlt-btn{margin-left:8px}.Vlt-native-dropdown--app select{border-radius:6px}.Vlt-native-dropdown--app select.Vlt-btn--small{border-radius:5px}.Vlt-dropdown__panel{max-height:0;min-width:100%;overflow:hidden;position:absolute;top:100%;z-index:99999999}.Vlt-dropdown__panel__content{background:#fff;border-radius:8px;box-shadow:inset 0 0 0 1px #e1e2e6,0 2px 5px rgba(19,20,21,.15);font-size:1.5rem;margin-bottom:4px;padding:8px 0}@media only screen and (max-width:767px){.Vlt-dropdown__panel__content{-webkit-overflow-scrolling:touch;overflow-y:scroll}}.Vlt-dropdown__panel__content li:not([class]){display:block}.Vlt-dropdown__panel--left{right:0}.Vlt-dropdown__panel--width2{min-width:200px}.Vlt-dropdown__panel--width3{min-width:300px}.Vlt-dropdown__panel--nomaxheight{max-height:none}.Vlt-dropdown__panel .Vlt-btn{margin-bottom:0;margin-top:0}.Vlt-dropdown__scroll{-ms-flex:auto;flex:auto;overflow-y:auto}.Vlt-dropdown--expanded .Vlt-dropdown__panel,.Vlt-dropdown__panel_open,.Vlt-dropdown_expanded .Vlt-dropdown__panel{max-height:100vh;overflow:visible;transition:.3s}.Vlt-dropdown--expanded .Vlt-dropdown__panel .Vlt-dropdown__panel__content,.Vlt-dropdown__panel_open .Vlt-dropdown__panel__content,.Vlt-dropdown_expanded .Vlt-dropdown__panel .Vlt-dropdown__panel__content{max-height:400px;overflow-y:auto}.Vlt-dropdown--expanded .Vlt-dropdown__panel .Vlt-dropdown__panel__content--scroll-area,.Vlt-dropdown__panel_open .Vlt-dropdown__panel__content--scroll-area,.Vlt-dropdown_expanded .Vlt-dropdown__panel .Vlt-dropdown__panel__content--scroll-area{display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column;overflow-y:hidden}.Vlt-dropdown--expanded .Vlt-dropdown__panel .Vlt-dropdown__panel__content--scroll-area .Vlt-dropdown__block,.Vlt-dropdown--expanded .Vlt-dropdown__panel .Vlt-dropdown__panel__content--scroll-area .Vlt-dropdown__link,.Vlt-dropdown__panel_open .Vlt-dropdown__panel__content--scroll-area .Vlt-dropdown__block,.Vlt-dropdown__panel_open .Vlt-dropdown__panel__content--scroll-area .Vlt-dropdown__link,.Vlt-dropdown_expanded .Vlt-dropdown__panel .Vlt-dropdown__panel__content--scroll-area .Vlt-dropdown__block,.Vlt-dropdown_expanded .Vlt-dropdown__panel .Vlt-dropdown__panel__content--scroll-area .Vlt-dropdown__link{-ms-flex-negative:0;flex-shrink:0}.Vlt-badge{background:rgba(135,31,255,.2);border-radius:13px;color:#871fff;display:inline-block;-ms-flex-negative:0;flex-shrink:0;font-size:1.2rem;font-weight:600;line-height:1.6rem;margin:0;padding:5px 12px;vertical-align:bottom;white-space:nowrap}.Vlt-badge--black{background:#131415;color:#fff}.Vlt-badge--black.Vlt-badge--outline,.Vlt-badge--black.Vlt-badge--transparent{background:rgba(19,20,21,.2);color:#131415}.Vlt-badge--grey{background:#c2c4cc;color:#131415}.Vlt-badge--grey.Vlt-badge--outline,.Vlt-badge--grey.Vlt-badge--transparent{background:rgba(194,196,204,.2);color:#616266}.Vlt-badge--white{background:#fff;color:#131415}.Vlt-badge--white.Vlt-badge--outline,.Vlt-badge--white.Vlt-badge--transparent{background:rgba(255,255,255,.2);color:#fff}.Vlt-badge--purple{background:#871fff;color:#fff}.Vlt-badge--purple.Vlt-badge--outline,.Vlt-badge--purple.Vlt-badge--transparent{background:rgba(135,31,255,.2);color:#871fff}.Vlt-badge--indigo{background:#d6219c;color:#fff}.Vlt-badge--indigo.Vlt-badge--outline,.Vlt-badge--indigo.Vlt-badge--transparent{background:rgba(214,33,156,.2);color:#d6219c}.Vlt-badge--red{background:#e84545;color:#fff}.Vlt-badge--red.Vlt-badge--outline,.Vlt-badge--red.Vlt-badge--transparent{background:rgba(232,69,69,.2);color:#e84545}.Vlt-badge--yellow{background:#ffc100;color:#fff}.Vlt-badge--yellow.Vlt-badge--outline,.Vlt-badge--yellow.Vlt-badge--transparent{background:rgba(255,193,0,.2);color:#ffc100}.Vlt-badge--orange{background:#fa7454;color:#fff}.Vlt-badge--orange.Vlt-badge--outline,.Vlt-badge--orange.Vlt-badge--transparent{background:rgba(250,116,84,.2);color:#fa7454}.Vlt-badge--green{background:#06ba77;color:#fff}.Vlt-badge--green.Vlt-badge--outline,.Vlt-badge--green.Vlt-badge--transparent{background:rgba(6,186,119,.2);color:#06ba77}.Vlt-badge--blue{background:#669fc4;color:#fff}.Vlt-badge--blue.Vlt-badge--outline,.Vlt-badge--blue.Vlt-badge--transparent{background:rgba(102,159,196,.2);color:#669fc4}.Vlt-badge--outline{background:0 0!important;box-shadow:inset 0 0 0 1px}.Vlt-badge--large{border-radius:15px;font-size:1.3rem;line-height:1.6rem;padding:7px 14px}.Vlt-badge--large .Vlt-badge__dismiss{margin-left:8px}.Vlt-badge--small{border-radius:10px;font-size:1.1rem;line-height:1.4rem;padding:2px 8px}p .Vlt-badge{margin:0 5px}.Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23871fff%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center;background-repeat:no-repeat;background-size:contain;cursor:pointer;height:16px;margin-left:6px;margin-right:-4px;margin-top:-1px;transition:opacity .2s;vertical-align:middle;width:16px}.Vlt-badge:not(.Vlt-badge--outline):not(.Vlt-badge--transparent) .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--grey:not(.Vlt-badge--outline):not(.Vlt-badge--transparent) .Vlt-badge__dismiss,.Vlt-badge--white:not(.Vlt-badge--outline):not(.Vlt-badge--transparent) .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--white.Vlt-badge--outline .Vlt-badge__dismiss,.Vlt-badge--white.Vlt-badge--transparent .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--black.Vlt-badge--outline .Vlt-badge__dismiss,.Vlt-badge--black.Vlt-badge--transparent .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--grey.Vlt-badge--outline .Vlt-badge__dismiss,.Vlt-badge--grey.Vlt-badge--transparent .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23c2c4cc%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--purple.Vlt-badge--outline .Vlt-badge__dismiss,.Vlt-badge--purple.Vlt-badge--transparent .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23871fff%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--indigo.Vlt-badge--outline .Vlt-badge__dismiss,.Vlt-badge--indigo.Vlt-badge--transparent .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23d6219c%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--red.Vlt-badge--outline .Vlt-badge__dismiss,.Vlt-badge--red.Vlt-badge--transparent .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23e84545%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--yellow.Vlt-badge--outline .Vlt-badge__dismiss,.Vlt-badge--yellow.Vlt-badge--transparent .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23ffc100%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--orange.Vlt-badge--outline .Vlt-badge__dismiss,.Vlt-badge--orange.Vlt-badge--transparent .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23fa7454%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--green.Vlt-badge--outline .Vlt-badge__dismiss,.Vlt-badge--green.Vlt-badge--transparent .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%2306ba77%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge--blue.Vlt-badge--outline .Vlt-badge__dismiss,.Vlt-badge--blue.Vlt-badge--transparent .Vlt-badge__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23669fc4%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-badge__dismiss:hover{opacity:.6}.Vlt-badge--dismissed{border:0!important;height:0;opacity:0;overflow:hidden;padding:0}.Vlt-badge-combined{display:-ms-flexbox;display:flex}.Vlt-badge-combined .Vlt-badge:first-child{border-bottom-right-radius:0;border-top-right-radius:0;margin-right:0}.Vlt-badge-combined .Vlt-badge:last-child{border-bottom-left-radius:0;border-top-left-radius:0;margin-left:0}.Vlt-badge-combined--app .Vlt-badge{border-radius:4px}.Vlt-badge+.Vlt-badge{margin-left:8px}.Vlt-badge--margin{margin-bottom:8px;margin-top:8px}.Vlt-badge--margin-left{margin-left:8px}.Vlt-badge--middle{vertical-align:middle}.Vlt-badge--app{border-radius:4px}.Vlt-badge-group .Vlt-badge{margin-bottom:4px;margin-right:8px;margin-top:4px}.Vlt-badge-group .Vlt-badge.Vlt-badge--large{margin:7px 14px}.Vlt-badge-group .Vlt-badge+.Vlt-badge{margin-left:0}.Vlt-badge-group--app .Vlt-badge{border-radius:4px}.Vlt-callout{background-color:#fff;border-radius:6px;box-shadow:inset 0 0 0 1px #9b9da3;display:-ms-flexbox;display:flex;margin-bottom:16px;opacity:1;overflow:hidden;padding:20px;padding-left:21px;position:relative;text-align:left;transition:all .3s ease-out}.Vlt-callout:before{bottom:0;content:'';left:0;position:absolute;top:0;width:5px}.Vlt-callout i{background-size:23px 23px!important;-ms-flex:0 0 23px;flex:0 0 23px;height:23px;margin-right:12px;width:23px}.Vlt-callout__icon{-ms-flex:0 0 23px;flex:0 0 23px;height:23px;margin-right:12px;width:23px}.Vlt-callout__icon svg{height:23px;width:23px}.Vlt-callout h4{font-size:1.6rem;font-weight:600;letter-spacing:-.5px;line-height:2.2rem;margin-bottom:2px}.Vlt-callout p{color:#131415;line-height:1.5;margin-bottom:0}.Vlt-callout p+p,.Vlt-callout p+ul{margin-top:8px}.Vlt-callout__content{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;-ms-flex:2;flex:2;margin-left:4px;word-break:break-word}.Vlt-callout__dismiss{background-position:center;background-size:contain;cursor:pointer;-ms-flex:0 0 22px;flex:0 0 22px;height:22px;margin-left:12px;margin-right:-2px;margin-top:-2px;transition:opacity .2s;width:22px}.Vlt-callout__dismiss:hover{opacity:.6}.Vlt-callout .Vlt-btn{margin-top:16px}.Vlt-callout__cta{line-height:1.6rem;margin-bottom:0;margin-top:10px;min-height:30px}.Vlt-callout--dismissed{border:0!important;height:0;opacity:0;overflow:hidden;padding:0}.Vlt-callout--bottom{margin-bottom:0;margin-top:16px}.Vlt-callout--warning:before{background-color:#ffc100}.Vlt-callout--warning .Vlt-callout__icon svg{fill:#ffc100}.Vlt-callout--warning i{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23ffc100%3B%22%20d%3D%22M23.8055%2020.7941L13.443%201.36628C12.8278%200.211242%2011.1722%200.211242%2010.5554%201.36628L0.194435%2020.7941C-0.386353%2021.8837%200.403847%2023.2007%201.63905%2023.2007H22.3626C23.5961%2023.2007%2024.3863%2021.8837%2023.8055%2020.7941ZM12%2019.9286C11.0969%2019.9286%2010.364%2019.1957%2010.364%2018.2926C10.364%2017.3895%2011.0969%2016.6566%2012%2016.6566C12.9031%2016.6566%2013.636%2017.3895%2013.636%2018.2926C13.636%2019.1957%2012.9031%2019.9286%2012%2019.9286ZM13.636%2015.0205H10.364V8.47644H13.636V15.0205Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--warning .Vlt-callout__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%0D%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M12%2012.7223L18.2777%2019L19%2018.2777L12.7223%2012L19%205.72229L18.2777%205L12%2011.2777L5.72229%205L5%205.72229L11.2777%2012L5%2018.2777L5.72229%2019L12%2012.7223Z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--critical:before{background-color:#e84545}.Vlt-callout--critical .Vlt-callout__icon svg{fill:#e84545}.Vlt-callout--critical i{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23e84545%3B%22%20d%3D%22M8%200C3.6%200%200%203.6%200%208C0%2012.4%203.6%2016%208%2016C12.4%2016%2016%2012.4%2016%208C16%203.6%2012.4%200%208%200ZM9%2012H7V7H9V12ZM8%206C7.4%206%207%205.6%207%205C7%204.4%207.4%204%208%204C8.6%204%209%204.4%209%205C9%205.6%208.6%206%208%206Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain;transform:rotate(180deg)}.Vlt-callout--critical .Vlt-callout__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%0D%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M12%2012.7223L18.2777%2019L19%2018.2777L12.7223%2012L19%205.72229L18.2777%205L12%2011.2777L5.72229%205L5%205.72229L11.2777%2012L5%2018.2777L5.72229%2019L12%2012.7223Z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--good:before{background-color:#06ba77}.Vlt-callout--good .Vlt-callout__icon svg{fill:#06ba77}.Vlt-callout--good i{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%2306ba77%3B%22%20d%3D%22M8%200C3.6%200%200%203.6%200%208C0%2012.4%203.6%2016%208%2016C12.4%2016%2016%2012.4%2016%208C16%203.6%2012.4%200%208%200ZM7%2011.4L3.6%208L5%206.6L7%208.6L11%204.6L12.4%206L7%2011.4Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--good .Vlt-callout__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%0D%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M12%2012.7223L18.2777%2019L19%2018.2777L12.7223%2012L19%205.72229L18.2777%205L12%2011.2777L5.72229%205L5%205.72229L11.2777%2012L5%2018.2777L5.72229%2019L12%2012.7223Z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--shoutout:before{background-color:#d6219c}.Vlt-callout--shoutout .Vlt-callout__icon svg{fill:#d6219c}.Vlt-callout--shoutout i{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cg%3E%0A%09%3Cpath%20style%3D%22fill%3A%23d6219c%3B%22%20d%3D%22M17.9%2C0.2C18.3%2C0.1%2C18.6%2C0%2C19%2C0c2.9%2C0%2C5%2C3.9%2C5%2C9s-2.1%2C9-5%2C9c-0.4%2C0-0.7-0.1-1-0.2L2.7%2C13%0A%09%09c-0.8-0.3-1.6-0.8-2-1.5C0.2%2C10.7-0.1%2C9.9%2C0%2C9c-0.1-0.9%2C0.2-1.7%2C0.7-2.5C1.2%2C5.8%2C1.9%2C5.3%2C2.7%2C5L17.9%2C0.2z%20M16%2C9c0%2C4%2C1.6%2C7%2C3%2C7%0A%09%09c1.4%2C0%2C3-3%2C3-7s-1.6-7-3-7C17.6%2C2%2C16%2C5%2C16%2C9z%20M20%2C9c0-0.7-0.3-1.4-0.8-2c-0.5-0.5-1.2-0.9-1.9-1C17.1%2C7%2C17%2C8%2C17%2C9c0%2C1%2C0.1%2C2%2C0.3%2C3%0A%09%09c0.7-0.1%2C1.4-0.4%2C1.9-1C19.7%2C10.4%2C20%2C9.7%2C20%2C9z%20M11.7%2C17.9l-5.8-1.8l2.6%2C6.5c0.1%2C0.3%2C0.3%2C0.5%2C0.5%2C0.8c0.2%2C0.2%2C0.5%2C0.4%2C0.8%2C0.5%0A%09%09c0.3%2C0.1%2C0.6%2C0.2%2C0.9%2C0.2c0.3%2C0%2C0.6-0.1%2C0.9-0.2s0.5-0.3%2C0.8-0.5c0.2-0.2%2C0.4-0.5%2C0.5-0.8c0.1-0.3%2C0.2-0.6%2C0.2-0.9%0A%09%09c0-0.3-0.1-0.6-0.2-0.9L11.7%2C17.9z%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--shoutout .Vlt-callout__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%0D%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M12%2012.7223L18.2777%2019L19%2018.2777L12.7223%2012L19%205.72229L18.2777%205L12%2011.2777L5.72229%205L5%205.72229L11.2777%2012L5%2018.2777L5.72229%2019L12%2012.7223Z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--tip:before{background-color:#871fff}.Vlt-callout--tip .Vlt-callout__icon svg{fill:#871fff}.Vlt-callout--tip i{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23871fff%3B%22%20d%3D%22M8%200C3.6%200%200%203.6%200%208C0%2012.4%203.6%2016%208%2016C12.4%2016%2016%2012.4%2016%208C16%203.6%2012.4%200%208%200ZM9%2012H7V7H9V12ZM8%206C7.4%206%207%205.6%207%205C7%204.4%207.4%204%208%204C8.6%204%209%204.4%209%205C9%205.6%208.6%206%208%206Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--tip .Vlt-callout__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%0D%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M12%2012.7223L18.2777%2019L19%2018.2777L12.7223%2012L19%205.72229L18.2777%205L12%2011.2777L5.72229%205L5%205.72229L11.2777%2012L5%2018.2777L5.72229%2019L12%2012.7223Z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--banner{-ms-flex-align:start;align-items:start;border-radius:0;box-shadow:none;-ms-flex-pack:center;justify-content:center;margin:0!important;padding:16px;padding-right:54px;text-align:center}.Vlt-callout--banner i{background-size:20px 20px!important;-ms-flex:0 0 20px;flex:0 0 20px;height:20px;margin-top:5px;width:20px}.Vlt-callout--banner .Vlt-callout__icon{-ms-flex:0 0 20px;flex:0 0 20px;height:20px;margin-top:5px;width:20px}.Vlt-callout--banner .Vlt-callout__icon svg{height:20px;width:20px}.Vlt-callout--banner .Vlt-callout__link,.Vlt-callout--banner p{font-size:1.4rem;font-weight:600;line-height:2.2rem}.Vlt-callout--banner:before{display:none}.Vlt-callout--banner.Vlt-callout--critical{background-color:#e84545}.Vlt-callout--banner.Vlt-callout--critical .Vlt-callout__link,.Vlt-callout--banner.Vlt-callout--critical p{color:#fff}.Vlt-callout--banner.Vlt-callout--critical i{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M8%200C3.6%200%200%203.6%200%208C0%2012.4%203.6%2016%208%2016C12.4%2016%2016%2012.4%2016%208C16%203.6%2012.4%200%208%200ZM9%2012H7V7H9V12ZM8%206C7.4%206%207%205.6%207%205C7%204.4%207.4%204%208%204C8.6%204%209%204.4%209%205C9%205.6%208.6%206%208%206Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);transform:rotate(180deg)}.Vlt-callout--banner.Vlt-callout--critical .Vlt-callout__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%0D%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M12%2012.7223L18.2777%2019L19%2018.2777L12.7223%2012L19%205.72229L18.2777%205L12%2011.2777L5.72229%205L5%205.72229L11.2777%2012L5%2018.2777L5.72229%2019L12%2012.7223Z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-callout--banner.Vlt-callout--good{background-color:#86d8b9}.Vlt-callout--banner.Vlt-callout--good i{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M8%200C3.6%200%200%203.6%200%208C0%2012.4%203.6%2016%208%2016C12.4%2016%2016%2012.4%2016%208C16%203.6%2012.4%200%208%200ZM7%2011.4L3.6%208L5%206.6L7%208.6L11%204.6L12.4%206L7%2011.4Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-callout--banner.Vlt-callout--shoutout{background-color:#d6219c}.Vlt-callout--banner.Vlt-callout--shoutout .Vlt-callout__link,.Vlt-callout--banner.Vlt-callout--shoutout p{color:#fff}.Vlt-callout--banner.Vlt-callout--shoutout i{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3Csvg%20version%3D%221.1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cg%3E%0A%09%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M17.9%2C0.2C18.3%2C0.1%2C18.6%2C0%2C19%2C0c2.9%2C0%2C5%2C3.9%2C5%2C9s-2.1%2C9-5%2C9c-0.4%2C0-0.7-0.1-1-0.2L2.7%2C13%0A%09%09c-0.8-0.3-1.6-0.8-2-1.5C0.2%2C10.7-0.1%2C9.9%2C0%2C9c-0.1-0.9%2C0.2-1.7%2C0.7-2.5C1.2%2C5.8%2C1.9%2C5.3%2C2.7%2C5L17.9%2C0.2z%20M16%2C9c0%2C4%2C1.6%2C7%2C3%2C7%0A%09%09c1.4%2C0%2C3-3%2C3-7s-1.6-7-3-7C17.6%2C2%2C16%2C5%2C16%2C9z%20M20%2C9c0-0.7-0.3-1.4-0.8-2c-0.5-0.5-1.2-0.9-1.9-1C17.1%2C7%2C17%2C8%2C17%2C9c0%2C1%2C0.1%2C2%2C0.3%2C3%0A%09%09c0.7-0.1%2C1.4-0.4%2C1.9-1C19.7%2C10.4%2C20%2C9.7%2C20%2C9z%20M11.7%2C17.9l-5.8-1.8l2.6%2C6.5c0.1%2C0.3%2C0.3%2C0.5%2C0.5%2C0.8c0.2%2C0.2%2C0.5%2C0.4%2C0.8%2C0.5%0A%09%09c0.3%2C0.1%2C0.6%2C0.2%2C0.9%2C0.2c0.3%2C0%2C0.6-0.1%2C0.9-0.2s0.5-0.3%2C0.8-0.5c0.2-0.2%2C0.4-0.5%2C0.5-0.8c0.1-0.3%2C0.2-0.6%2C0.2-0.9%0A%09%09c0-0.3-0.1-0.6-0.2-0.9L11.7%2C17.9z%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-callout--banner.Vlt-callout--shoutout .Vlt-callout__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%0D%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M12%2012.7223L18.2777%2019L19%2018.2777L12.7223%2012L19%205.72229L18.2777%205L12%2011.2777L5.72229%205L5%205.72229L11.2777%2012L5%2018.2777L5.72229%2019L12%2012.7223Z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-callout--banner.Vlt-callout--tip{background-color:#871fff}.Vlt-callout--banner.Vlt-callout--tip .Vlt-callout__link,.Vlt-callout--banner.Vlt-callout--tip p{color:#fff}.Vlt-callout--banner.Vlt-callout--tip i{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M8%200C3.6%200%200%203.6%200%208C0%2012.4%203.6%2016%208%2016C12.4%2016%2016%2012.4%2016%208C16%203.6%2012.4%200%208%200ZM9%2012H7V7H9V12ZM8%206C7.4%206%207%205.6%207%205C7%204.4%207.4%204%208%204C8.6%204%209%204.4%209%205C9%205.6%208.6%206%208%206Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-callout--banner.Vlt-callout--tip .Vlt-callout__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20%0D%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M12%2012.7223L18.2777%2019L19%2018.2777L12.7223%2012L19%205.72229L18.2777%205L12%2011.2777L5.72229%205L5%205.72229L11.2777%2012L5%2018.2777L5.72229%2019L12%2012.7223Z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-callout--banner.Vlt-callout--warning{background-color:#ffc100}.Vlt-callout--banner.Vlt-callout--warning i{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M23.8055%2020.7941L13.443%201.36628C12.8278%200.211242%2011.1722%200.211242%2010.5554%201.36628L0.194435%2020.7941C-0.386353%2021.8837%200.403847%2023.2007%201.63905%2023.2007H22.3626C23.5961%2023.2007%2024.3863%2021.8837%2023.8055%2020.7941ZM12%2019.9286C11.0969%2019.9286%2010.364%2019.1957%2010.364%2018.2926C10.364%2017.3895%2011.0969%2016.6566%2012%2016.6566C12.9031%2016.6566%2013.636%2017.3895%2013.636%2018.2926C13.636%2019.1957%2012.9031%2019.9286%2012%2019.9286ZM13.636%2015.0205H10.364V8.47644H13.636V15.0205Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-callout--banner.Vlt-callout--good .Vlt-callout__icon svg,.Vlt-callout--banner.Vlt-callout--warning .Vlt-callout__icon svg{fill:#131415}.Vlt-callout--banner.Vlt-callout--critical .Vlt-callout__icon svg,.Vlt-callout--banner.Vlt-callout--shoutout .Vlt-callout__icon svg,.Vlt-callout--banner.Vlt-callout--tip .Vlt-callout__icon svg{fill:#fff}.Vlt-callout--banner .Vlt-callout__content{-ms-flex:inherit;flex:inherit;margin:4px 0}.Vlt-callout--banner .Vlt-btn,.Vlt-callout--banner .Vlt-callout__cta{-ms-flex:none;flex:none;margin:0 0 0 16px}.Vlt-callout--banner .Vlt-callout__link{color:#131415;margin-left:4px;margin-top:4px;text-decoration:underline}.Vlt-callout--banner .Vlt-callout__dismiss{position:absolute;right:22px;top:22px}.Vlt-flash{box-shadow:inset 0 0 0 1px #c2c4cc,0 4px 10px rgba(0,0,0,.2);left:50%;margin-left:-45%;position:fixed;top:-100%;transition:top .3s;width:90%;z-index:10000000}.Vlt-flash.Vlt-flash_visible{top:20px}.Vlt-flash--bottom{bottom:-100%;top:auto;transition:bottom .3s}.Vlt-flash--bottom.Vlt-flash_visible{bottom:20px;top:auto}@media only screen and (min-width:768px){.Vlt-flash--small{margin-left:-25%;width:50%}}@media only screen and (min-width:768px){.Vlt-table .Vlt-table__row:hover .Vlt-table__cell,.Vlt-table table tbody tr:hover>td{background-color:#f3f3f5}}.Vlt-table{display:-ms-flexbox;display:flex;margin-bottom:8px;overflow-x:auto;overflow-y:hidden;position:relative;width:100%;z-index:1}.Vlt-table table tr{position:relative}.Vlt-table__cell{display:table-cell}.Vlt-table .Vlt-table__row--noline .Vlt-table__cell,.Vlt-table .Vlt-table__row--noline>td{border-bottom:0}.Vlt-table .Vlt-table__row--nohighlight:hover .Vlt-table__cell,.Vlt-table .Vlt-table__row--nohighlight:hover>td{background-color:transparent}.Vlt-table--nowrap .Vlt-table__cell,.Vlt-table--nowrap td,.Vlt-table--nowrap th{white-space:nowrap}@media only screen and (min-width:576px){.Vlt-table--fixed table{table-layout:fixed}}.Vlt-table--nohighlight .Vlt-table__row:hover .Vlt-table__cell{background-color:transparent}.Vlt-table--nohighlight table tbody tr:hover>td{background-color:transparent}.Vlt-table--bordered{border-bottom:1px solid #e1e2e6;border-left:1px solid #e1e2e6;border-radius:2px 2px 4px 4px;border-right:1px solid #e1e2e6;border-top:1px solid #e1e2e6}table tbody .Vlt-table__cell--number,table tfoot .Vlt-table__cell--number{text-align:right}table tbody .Vlt-table__cell--neg,table tfoot .Vlt-table__cell--neg{color:#e84545}table tbody .Vlt-table__cell--pos,table tfoot .Vlt-table__cell--pos{color:#06ba77}table tbody .Vlt-table__cell--avg,table tfoot .Vlt-table__cell--avg{color:#ffc100}table tbody .Vlt-table__cell--nowrap,table tfoot .Vlt-table__cell--nowrap{white-space:nowrap}.Vlt-table .Vlt-btn{margin-bottom:-4px;margin-top:-4px}.Vlt-table__pagination{padding:8px;text-align:center}.Vlt-table__pagination ul{display:-ms-inline-flexbox;display:inline-flex;-ms-flex-flow:row wrap;flex-flow:row wrap}.Vlt-table__pagination ul li{border-radius:8px;font-size:1.2rem;line-height:2.4rem;margin-left:4px;min-width:24px;text-align:center}.Vlt-table__pagination ul li:first-child{margin-left:0}.Vlt-table__pagination ul li a{border-radius:8px;color:#131415;line-height:1.6rem;padding:4px}.Vlt-table__pagination ul li a,.Vlt-table__pagination ul li a:visited{color:#131415;display:block;height:100%;width:100%}.Vlt-table__pagination ul li a:hover,.Vlt-table__pagination ul li a:visited:hover{background:rgba(19,20,21,.12);color:#131415;font-weight:600;text-decoration:none}.Vlt-table__pagination ul li.Vlt-table__pagination__next a:hover,.Vlt-table__pagination ul li.Vlt-table__pagination__prev a:hover{background:0 0;color:#871fff;font-weight:400}.Vlt-table__pagination ul li.Vlt-table__pagination__prev{margin-right:8px}.Vlt-table__pagination ul li.Vlt-table__pagination__next{margin-left:12px}.Vlt-table__pagination__current{background:rgba(19,20,21,.05);font-weight:600}@media only screen and (max-width:575px){.Vlt-table--mobile-stack,.Vlt-table--mobile-stack.Vlt-table--data{background:0 0}.Vlt-table--mobile-stack table,.Vlt-table--mobile-stack.Vlt-table--data table{background:0 0;display:-ms-flexbox;display:flex;max-width:100%;min-width:100%;overflow:hidden;white-space:nowrap;width:auto}.Vlt-table--mobile-stack table thead,.Vlt-table--mobile-stack.Vlt-table--data table thead{display:-ms-flexbox;display:flex;-ms-flex-negative:0;flex-shrink:0;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content}.Vlt-table--mobile-stack table thead th,.Vlt-table--mobile-stack.Vlt-table--data table thead th{border-bottom:1px solid #e1e2e6;border-top:0;font-size:1.5rem;height:auto;min-height:3.6rem;padding:13px 16px 10px}.Vlt-table--mobile-stack table tr,.Vlt-table--mobile-stack.Vlt-table--data table tr{display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column;-ms-flex-negative:0;flex-shrink:0;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content}.Vlt-table--mobile-stack table tbody,.Vlt-table--mobile-stack.Vlt-table--data table tbody{background:linear-gradient(90deg,rgba(19,20,21,.1) 0,transparent 30%),linear-gradient(90deg,transparent 70%,rgba(19,20,21,.1) 100%) 100% 0;background-repeat:no-repeat;background-size:40px 100%,40px 100%,14px 100%,14px 100%;display:-ms-flexbox;display:flex;overflow-x:auto;overflow-y:hidden;position:relative}.Vlt-table--mobile-stack table tbody tr:first-child,.Vlt-table--mobile-stack.Vlt-table--data table tbody tr:first-child{background:linear-gradient(90deg,#fff 20px,transparent 20px)}.Vlt-table--mobile-stack table tbody tr:last-child,.Vlt-table--mobile-stack.Vlt-table--data table tbody tr:last-child{background:linear-gradient(90deg,transparent calc(100% - 20px),#fff calc(100% - 20px)) 100% 0}.Vlt-table--mobile-stack table td,.Vlt-table--mobile-stack table th,.Vlt-table--mobile-stack.Vlt-table--data table td,.Vlt-table--mobile-stack.Vlt-table--data table th{border-left:0;border-right:0;display:block;white-space:nowrap}.Vlt-table--mobile-stack table .Vlt-table__cell--number,.Vlt-table--mobile-stack.Vlt-table--data table .Vlt-table__cell--number{text-align:left}.Vlt-table--mobile-stack table tfoot,.Vlt-table--mobile-stack.Vlt-table--data table tfoot{display:none}.Vlt-table--mobile-stack.Vlt-table--data:not(.Vlt-table--data) table thead th,.Vlt-table--mobile-stack:not(.Vlt-table--data) table thead th{border-right:1px solid #e1e2e6;padding-left:0;padding-right:16px}.Vlt-table--mobile-stack.Vlt-table--data:not(.Vlt-table--data) table tbody td,.Vlt-table--mobile-stack:not(.Vlt-table--data) table tbody td{padding-left:16px;padding-right:16px}}.Vlt-table__col--sortable{cursor:pointer;padding-left:16px;position:relative}.Vlt-table__col--sortable:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%206%2010%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M2.37873%200.265338L0%202.71856L1.24253%204L3%202.1875L4.75747%204L6%202.71856L3.62127%200.265338C3.45648%200.0954422%203.23301%200%203%200C2.76699%200%202.54352%200.0954422%202.37873%200.265338V0.265338Z%22%2F%3E%0A%3Cpath%20d%3D%22M3%207.8125L1.24253%206L0%207.28144L2.37873%209.73466C2.54352%209.90456%202.76699%2010%203%2010C3.23301%2010%203.45648%209.90456%203.62127%209.73466L6%207.28144L4.75747%206L3%207.8125Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';display:inline-block;height:10px;left:5px;margin-top:-5px;opacity:.6;position:absolute;top:50%;width:6px}.Vlt-table__col--ascending,.Vlt-table__col--descending{color:#131415;font-weight:600}.Vlt-table__col--descending:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%206%2010%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M3%207.8125L1.24253%206L0%207.28144L2.37873%209.73466C2.54352%209.90456%202.76699%2010%203%2010C3.23301%2010%203.45648%209.90456%203.62127%209.73466L6%207.28144L4.75747%206L3%207.8125Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-table__col--ascending:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%206%2010%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M2.37873%200.265338L0%202.71856L1.24253%204L3%202.1875L4.75747%204L6%202.71856L3.62127%200.265338C3.45648%200.0954422%203.23301%200%203%200C2.76699%200%202.54352%200.0954422%202.37873%200.265338Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-table td:not(.Vlt-btn-group) .Vlt-btn+.Vlt-btn{margin-left:4px}.Vlt-table td.Vlt-btn-group{min-height:0}.Vlt-table[data-sortable] th:not([data-sortable=false]){cursor:pointer;padding-left:16px;position:relative;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.Vlt-table[data-sortable] th:not([data-sortable=false]):before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%206%2010%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M2.37873%200.265338L0%202.71856L1.24253%204L3%202.1875L4.75747%204L6%202.71856L3.62127%200.265338C3.45648%200.0954422%203.23301%200%203%200C2.76699%200%202.54352%200.0954422%202.37873%200.265338V0.265338Z%22%2F%3E%0A%3Cpath%20d%3D%22M3%207.8125L1.24253%206L0%207.28144L2.37873%209.73466C2.54352%209.90456%202.76699%2010%203%2010C3.23301%2010%203.45648%209.90456%203.62127%209.73466L6%207.28144L4.75747%206L3%207.8125Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';display:inline-block;height:10px;left:5px;margin-top:-4px;opacity:.6;position:absolute;top:50%;width:6px}.Vlt-table[data-sortable] th[data-sorted=true]{color:#131415;font-weight:600}.Vlt-table[data-sortable] th[data-sorted-direction=descending]:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%206%2010%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M3%207.8125L1.24253%206L0%207.28144L2.37873%209.73466C2.54352%209.90456%202.76699%2010%203%2010C3.23301%2010%203.45648%209.90456%203.62127%209.73466L6%207.28144L4.75747%206L3%207.8125Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain;opacity:1}.Vlt-table[data-sortable] th[data-sorted-direction=ascending]:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%206%2010%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M2.37873%200.265338L0%202.71856L1.24253%204L3%202.1875L4.75747%204L6%202.71856L3.62127%200.265338C3.45648%200.0954422%203.23301%200%203%200C2.76699%200%202.54352%200.0954422%202.37873%200.265338Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain;opacity:1}.Vlt-table--cols .Vlt-table__cell:not(:first-child),.Vlt-table--cols td:not(:first-child),.Vlt-table--cols th:not(:first-child){border-left:1px solid rgba(19,20,21,.1)}.Vlt-table--data .Vlt-table__inner,.Vlt-table--data table{font-size:1.4rem;width:100%}.Vlt-table--data--cols .Vlt-table__cell:not(:first-child),.Vlt-table--data--cols td:not(:first-child),.Vlt-table--data--cols th:not(:first-child){border-left:1px solid rgba(19,20,21,.1)}.Vlt-table--data.Vlt-table--data--teal.Vlt-table--bordered{border-bottom:1px solid #dbf3f6;border-left:1px solid #dbf3f6;border-right:1px solid #dbf3f6}.Vlt-table--data.Vlt-table--data--orange.Vlt-table--bordered{border-bottom:1px solid #fee3dd;border-left:1px solid #fee3dd;border-right:1px solid #fee3dd}.Vlt-table table thead th,.Vlt-table__header .Vlt-table__cell{border-bottom:1px solid #131415;color:#131415;font-size:1.4rem;font-weight:600;padding:10px 16px 7px}.Vlt-table table td,.Vlt-table table th,.Vlt-table__cell,.Vlt-table__header .Vlt-table__cell{background-clip:padding-box;border-bottom:1px solid #e1e2e6;min-height:3.6rem;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;padding:13px 16px 10px;text-align:left;vertical-align:middle}.Vlt-table--data .Vlt-table__header .Vlt-table__cell,.Vlt-table--data table thead th{background-color:#f3f3f5;border-bottom:1px solid #131415;color:#131415;font-size:1.4rem;height:3.6rem;padding:10px 16px 7px}.Vlt-table--data.Vlt-table--data--dark .Vlt-table__header .Vlt-table__cell,.Vlt-table--data.Vlt-table--data--dark table thead th{background-color:#e1e2e6;border-bottom-color:#131415;color:#131415}.Vlt-table--data.Vlt-table--data--dark.Vlt-table--cols .Vlt-table__header .Vlt-table__cell:not(:first-child),.Vlt-table--data.Vlt-table--data--dark.Vlt-table--cols thead th+th,.Vlt-table--data.Vlt-table--data--dark.Vlt-table--data--cols .Vlt-table__header .Vlt-table__cell:not(:first-child),.Vlt-table--data.Vlt-table--data--dark.Vlt-table--data--cols thead th+th{border-left-color:#c2c4cc}.Vlt-table--data.Vlt-table--data--teal .Vlt-table__header .Vlt-table__cell,.Vlt-table--data.Vlt-table--data--teal table thead th{background-color:#dbf3f6;border-bottom-color:#4cc3d2;color:#405352}.Vlt-table--data.Vlt-table--data--teal.Vlt-table--cols .Vlt-table__header .Vlt-table__cell:not(:first-child),.Vlt-table--data.Vlt-table--data--teal.Vlt-table--cols thead th+th,.Vlt-table--data.Vlt-table--data--teal.Vlt-table--data--cols .Vlt-table__header .Vlt-table__cell:not(:first-child),.Vlt-table--data.Vlt-table--data--teal.Vlt-table--data--cols thead th+th{border-left-color:#94dbe4}.Vlt-table--data.Vlt-table--data--orange .Vlt-table__header .Vlt-table__cell,.Vlt-table--data.Vlt-table--data--orange table thead th{background-color:#fee3dd;border-bottom-color:#fa7454;color:#594430}.Vlt-table--data.Vlt-table--data--orange.Vlt-table--cols .Vlt-table__header .Vlt-table__cell:not(:first-child),.Vlt-table--data.Vlt-table--data--orange.Vlt-table--cols thead th+th,.Vlt-table--data.Vlt-table--data--orange.Vlt-table--data--cols .Vlt-table__header .Vlt-table__cell:not(:first-child),.Vlt-table--data.Vlt-table--data--orange.Vlt-table--data--cols thead th+th{border-left-color:#fcac98}.Vlt-table tfoot td,.Vlt-table__footer .Vlt-table__cell{border-bottom:0;font-weight:700}.Vlt-table table,.Vlt-table__inner{font-size:1.5rem;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;width:100%}.Vlt-table--tall .Vlt-table__cell,.Vlt-table--tall table td{padding-bottom:16px;padding-top:16px}.Vlt-table--short .Vlt-table__cell,.Vlt-table--short table td{padding-bottom:4px;padding-top:4px}.Vlt-list{margin-bottom:16px;padding-left:16px}.Vlt-list ol,.Vlt-list ul{margin-top:8px;padding-left:24px}.Vlt-list li{margin-bottom:.5em;position:relative}.Vlt-list--simple>li:before{color:#131415}.Vlt-list--simple>li>ol>li:before,.Vlt-list--simple>li>ul>li:before{color:#616266}.Vlt-list--simple>li>ol>li>ol>li:before,.Vlt-list--simple>li>ol>li>ul>li:before,.Vlt-list--simple>li>ul>li>ol>li:before,.Vlt-list--simple>li>ul>li>ul>li:before{color:#131415}ul.Vlt-list--simple>li:before{content:'•';left:-16px;position:absolute;top:0}ol.Vlt-list--simple{counter-reset:list;padding-left:20px}ol.Vlt-list--simple ol{counter-reset:list}ol.Vlt-list--simple>li:before{content:counter(list) ".";counter-increment:list;font-weight:600;left:-20px;position:absolute;top:0}.Vlt-list--square>li{margin-bottom:30px;padding-left:30px;position:relative}.Vlt-list--square>li:before{background:#4d7793;border-radius:2px;content:'';height:10px;left:5px;position:absolute;top:.6em;width:10px}.Vlt-list--square>li>li:before{color:inherit;content:inherit}.Vlt-list--icon{padding-left:0}.Vlt-list--icon>li{margin-bottom:16px;padding-left:30px;position:relative}.Vlt-list--icon>li:before{display:none}.Vlt-list--icon>li>svg{background:0 0;height:20px;left:0;position:absolute;top:0;width:20px}.Vlt-big-number,.Vlt-list--big-number ol>li,.Vlt-list--big-number>li{margin-top:8px;min-height:40px;padding-left:50px;padding-top:4px;position:relative}.Vlt-big-number:before,.Vlt-list--big-number ol>li:before,.Vlt-list--big-number>li:before{-ms-flex-align:center;align-items:center;background:#9b9da3;border-radius:50px;color:#fff;content:attr(data-index);display:-ms-flexbox;display:flex;font-size:1.5rem;font-weight:700;height:30px;-ms-flex-pack:center;justify-content:center;left:5px;position:absolute;top:0;width:30px}.Vlt-big-number--h3:before{top:0}.Vlt-big-number__inset{margin-left:48px}.Vlt-list--big-number{counter-reset:list}.Vlt-list--big-number ol>li,.Vlt-list--big-number>li{counter-increment:list;padding-left:24px}.Vlt-list--big-number ol>li:before,.Vlt-list--big-number>li:before{content:counter(list);left:-16px;top:0}.Vlt-bg-blue .Vlt-list--big-number ol>li:before,.Vlt-bg-blue .Vlt-list--big-number>li:before{background:#669fc4}.Vlt-list--big-number-black ol>li:before,.Vlt-list--big-number-black>li:before{background:#131415}.Vlt-list--big-number-grey ol>li:before,.Vlt-list--big-number-grey>li:before{background:#c2c4cc}.Vlt-list--big-number-white ol>li:before,.Vlt-list--big-number-white>li:before{background:#fff;color:#131415}.Vlt-list--big-number-orange ol>li:before,.Vlt-list--big-number-orange>li:before{background:#fa7454}.Vlt-list--big-number-blue ol>li:before,.Vlt-list--big-number-blue>li:before{background:#669fc4}.Vlt-list--big-number-red ol>li:before,.Vlt-list--big-number-red>li:before{background:#e84545}.Vlt-list--big-number-green ol>li:before,.Vlt-list--big-number-green>li:before{background:#06ba77}.Vlt-list--big-number-purple ol>li:before,.Vlt-list--big-number-purple>li:before{background:#b779ff}.Vlt-list--big-number-yellow ol>li:before,.Vlt-list--big-number-yellow>li:before{background:#ffc100}.Vlt-list--big-number-indigo ol>li:before,.Vlt-list--big-number-indigo>li:before{background:#d6219c}.Vlt-number{-ms-flex-align:center;align-items:center;background:#9b9da3;border-radius:50px;color:#fff;display:-ms-inline-flexbox;display:inline-flex;font-size:1.5rem;font-weight:700;height:30px;-ms-flex-pack:center;justify-content:center;margin:4px;width:30px}.Vlt-number:before{content:attr(data-index)}.Vlt-number--dialer{background:#f3f3f5;border-radius:8px;color:#131415;-ms-flex-flow:column;flex-flow:column;font-weight:400;height:36px;line-height:1;width:36px}.Vlt-number--dialer small{font-size:1rem;line-height:1rem}.Vlt-list-item{display:-ms-flexbox;display:flex;-ms-flex:1;flex:1;position:relative}.Vlt-list-item__meta{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;color:#616266;font-size:1.2rem}.Vlt-list-item__icon,.Vlt-list-item__icon svg{-ms-flex-align:center;align-items:center;border-radius:100%;display:-ms-inline-flexbox;display:inline-flex;-ms-flex:0 0 32px;flex:0 0 32px;height:32px;margin-right:12px;position:relative;width:32px}.Vlt-list-item__icon svg.Vlt-icon--smaller{height:16px;margin-bottom:0}.Vlt-list-item__icon .Vlt-status{bottom:-2px;right:-2px}.Vlt-list-item__text{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;-ms-flex:1;flex:1}.Vlt-list-item.Vlt-list-item--large{margin-bottom:0;padding:12px 0 13px}.Vlt-list-item.Vlt-list-item--large:after{background-color:#e1e2e6;bottom:0;content:'';height:1px;left:64px;position:absolute;right:0}.Vlt-list-item.Vlt-list-item--large-noborder:after{display:none}.Vlt-list-item.Vlt-list-item--large .Vlt-list-item__icon,.Vlt-list-item.Vlt-list-item--large .Vlt-list-item__icon svg{-ms-flex:0 0 48px;flex:0 0 48px;height:48px;margin-right:16px;width:48px}.Vlt-list-item.Vlt-list-item--large .Vlt-list-item__icon .Vlt-status{bottom:1px;right:1px}.Vlt-list-item.Vlt-list-item--large .Vlt-list-item__text{font-size:1.6rem;font-weight:600;line-height:2.3rem}.Vlt-list-item.Vlt-list-item--large .Vlt-list-item__text span{display:block;font-size:1.4rem;font-weight:400;line-height:2.1rem;margin-top:4px}.Vlt-list-item.Vlt-list-item--large .Vlt-list-item__text+.Vlt-btn{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center;height:20px;min-height:20px;min-width:20px;padding:0;width:20px}.Vlt-list-item.Vlt-list-item--large .Vlt-list-item__text+.Vlt-btn svg{height:8px;width:8px}.Vlt-js-tabs__panel,.Vlt-tabs__panel{display:none;height:100%;left:0;position:absolute;top:0;width:100%}.Vlt-js-tabs__panel_active,.Vlt-tabs__panel_active{display:block;position:static}.Vlt-tabs__link{background:0 0;border:0;border-radius:0;color:#616266;cursor:pointer;display:inline-block;font-size:1.5rem;font-weight:400;margin:0 20px 0 0;outline:0;padding:14px 0;position:relative}.Vlt-tabs__link svg{height:20px;margin-bottom:-4px;vertical-align:baseline;width:20px}.Vlt-tabs__link svg+span{margin-left:8px}.Vlt-tabs__link:after{background:#e1e2e6;bottom:0;content:'';height:3px;left:50%;position:absolute;transition:none;width:0}@media only screen and (min-width:768px){.Vlt-tabs__link:hover:not(.Vlt-tabs__link_active){background:0 0;color:#131415}.Vlt-tabs__link:hover:not(.Vlt-tabs__link_active):after{left:0;transition:all .2s;width:100%}}.Vlt-tabs__header--bordered .Vlt-tabs__link{border-top-left-radius:8px;border-top-right-radius:8px;margin:0;padding-left:16px;padding-right:16px;transition:background .2s}.Vlt-tabs__header--bordered .Vlt-tabs__link:after{background:#e1e2e6;content:'';display:block;height:60%;left:0;position:absolute;top:20%;width:1px!important}.Vlt-tabs__header--bordered .Vlt-tabs__link:first-child:after{display:none}@media only screen and (min-width:768px){.Vlt-tabs__header--bordered .Vlt-tabs__link:hover:not(.Vlt-tabs__link_active){background:rgba(19,20,21,.05)}}.Vlt-tabs__link_active{background:0 0;color:#131415;font-weight:600}.Vlt-tabs__link_active:after{background:#131415;left:0;width:100%}@media only screen and (max-width:767px){.Vlt-tabs__link_active:after{transition:all .2s}}.Vlt-tabs__header--bordered .Vlt-tabs__link_active{border:1px solid #c2c4cc;border-bottom:0}.Vlt-tabs__header--bordered .Vlt-tabs__link_active:after{display:none}.Vlt-tabs__header--bordered .Vlt-tabs__link_active:before{background:#fff;bottom:0;content:'';height:1px;left:0;position:absolute;width:100%}.Vlt-tabs__header{border-bottom:1px solid #c2c4cc;display:-ms-flexbox;display:flex;margin:0;overflow-x:auto;white-space:nowrap}.Vlt-tabs__header--bordered{border-bottom:0;box-shadow:inset 0 -1px 0 #c2c4cc;margin-top:8px}.Vlt-tabs__header--bordered .Vlt-tabs__link{margin-top:4px}.Vlt-tabs__header--bordered .Vlt-tabs__link:first-child{margin-left:8px}.Vlt-tabs__header--shadow:not(.Vlt-tabs__header--icons){background:linear-gradient(90deg,rgba(19,20,21,.1) 0,transparent 10px),linear-gradient(90deg,transparent calc(100% - 10px),rgba(19,20,21,.1) 100%) 100% 0;background-color:#fff;background-repeat:no-repeat;background-size:20px 100%,20px 100%,14px 100%,14px 100%}.Vlt-tabs__header--shadow:not(.Vlt-tabs__header--icons) .Vlt-tabs__header__wrapper{background:linear-gradient(90deg,#fff 20px,transparent 20px),linear-gradient(90deg,transparent calc(100% - 20px),#fff calc(100% - 20px)) 100% 0;display:-ms-flexbox;display:flex;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;width:100%}.Vlt-tabs__header--spaced{display:-ms-flexbox;display:flex;-ms-flex-pack:space-evenly;justify-content:space-evenly}.Vlt-tabs__header--bordered .Vlt-tabs__link_active+.Vlt-tabs__link:after{display:none}.Vlt-tabs__header--bordered .Vlt-tabs__link_disabled:hover{background:0 0!important}.Vlt-tabs__header--icons{-ms-flex-flow:row wrap;flex-flow:row wrap;overflow-x:visible;white-space:normal}.Vlt-tabs__header--icons .Vlt-tabs__link{display:inline-block}.Vlt-tabs__header--icons .Vlt-tabs__link_disabled{pointer-events:inherit}.Vlt-tabs__header--icons .Vlt-tabs__link .Vlt-tooltip--js[x-placement^=bottom]{margin-top:15px}.Vlt-tabs__header--icons:not(.Vlt-tabs__header--bordered) .Vlt-tabs__link{padding:8px 4px}.Vlt-tabs__link svg{fill:#131415}.Vlt-tabs__link:focus{background:0 0}.Vlt-tabs__link_disabled{background:0 0;color:#c2c4cc;cursor:default;pointer-events:none}.Vlt-tabs__link_disabled:after{display:none}.Vlt-tabs__content{margin-top:16px;position:relative}.Vlt-tabs__content--flush{margin-top:0}.Vlt-js-tabs__link{cursor:pointer}.Vlt-tooltip{display:-ms-inline-flexbox;display:inline-flex;position:relative}span.Vlt-tooltip{margin-left:4px;vertical-align:bottom}.Vlt-tooltip__content a,.Vlt-tooltip__content a.Vlt-text-link,.Vlt-tooltip__content a.Vlt-text-link:visited,.Vlt-tooltip__content a:visited,.Vlt-tooltip__content label a:not([class]),.Vlt-tooltip__content label a:visited:not([class]),.Vlt-tooltip__content li a:not([class]),.Vlt-tooltip__content li a:visited:not([class]),.Vlt-tooltip__content nav a:not([class]),.Vlt-tooltip__content nav a:visited:not([class]),.Vlt-tooltip__content p a:not([class]),.Vlt-tooltip__content p a:visited:not([class]),.Vlt-tooltip__content small a:not([class]),.Vlt-tooltip__content small a:visited:not([class]),.Vlt-tooltip__content span a:not([class]),.Vlt-tooltip__content span a:visited:not([class]),.Vlt-tooltip__content td a:not([class]),.Vlt-tooltip__content td a:visited:not([class]),.Vlt-tooltip__content th a:not([class]),.Vlt-tooltip__content th a:visited:not([class]),label .Vlt-tooltip__content a:not([class]),label .Vlt-tooltip__content a:visited:not([class]),li .Vlt-tooltip__content a:not([class]),li .Vlt-tooltip__content a:visited:not([class]),nav .Vlt-tooltip__content a:not([class]),nav .Vlt-tooltip__content a:visited:not([class]),p .Vlt-tooltip__content a:not([class]),p .Vlt-tooltip__content a:visited:not([class]),small .Vlt-tooltip__content a:not([class]),small .Vlt-tooltip__content a:visited:not([class]),span .Vlt-tooltip__content a:not([class]),span .Vlt-tooltip__content a:visited:not([class]),td .Vlt-tooltip__content a:not([class]),td .Vlt-tooltip__content a:visited:not([class]),th .Vlt-tooltip__content a:not([class]),th .Vlt-tooltip__content a:visited:not([class]){color:#cfa5ff;font-weight:600}.Vlt-tooltip__content a.Vlt-text-link:hover,.Vlt-tooltip__content a.Vlt-text-link:visited:hover,.Vlt-tooltip__content a:hover,.Vlt-tooltip__content a:visited:hover,.Vlt-tooltip__content label a:hover:not([class]),.Vlt-tooltip__content label a:visited:hover:not([class]),.Vlt-tooltip__content li a:hover:not([class]),.Vlt-tooltip__content li a:visited:hover:not([class]),.Vlt-tooltip__content nav a:hover:not([class]),.Vlt-tooltip__content nav a:visited:hover:not([class]),.Vlt-tooltip__content p a:hover:not([class]),.Vlt-tooltip__content p a:visited:hover:not([class]),.Vlt-tooltip__content small a:hover:not([class]),.Vlt-tooltip__content small a:visited:hover:not([class]),.Vlt-tooltip__content span a:hover:not([class]),.Vlt-tooltip__content span a:visited:hover:not([class]),.Vlt-tooltip__content td a:hover:not([class]),.Vlt-tooltip__content td a:visited:hover:not([class]),.Vlt-tooltip__content th a:hover:not([class]),.Vlt-tooltip__content th a:visited:hover:not([class]),label .Vlt-tooltip__content a:hover:not([class]),label .Vlt-tooltip__content a:visited:hover:not([class]),li .Vlt-tooltip__content a:hover:not([class]),li .Vlt-tooltip__content a:visited:hover:not([class]),nav .Vlt-tooltip__content a:hover:not([class]),nav .Vlt-tooltip__content a:visited:hover:not([class]),p .Vlt-tooltip__content a:hover:not([class]),p .Vlt-tooltip__content a:visited:hover:not([class]),small .Vlt-tooltip__content a:hover:not([class]),small .Vlt-tooltip__content a:visited:hover:not([class]),span .Vlt-tooltip__content a:hover:not([class]),span .Vlt-tooltip__content a:visited:hover:not([class]),td .Vlt-tooltip__content a:hover:not([class]),td .Vlt-tooltip__content a:visited:hover:not([class]),th .Vlt-tooltip__content a:hover:not([class]),th .Vlt-tooltip__content a:visited:hover:not([class]){color:#b779ff}.Vlt-tooltip--js{z-index:600}.Vlt-tooltip--js.Vlt-tooltip--large .Vlt-tooltip__content{padding:16px 24px}.Vlt-tooltip--js[x-placement^=bottom] .Vlt-tooltip__arrow,.Vlt-tooltip--js[x-placement^=left] .Vlt-tooltip__arrow,.Vlt-tooltip--js[x-placement^=right] .Vlt-tooltip__arrow,.Vlt-tooltip--js[x-placement^=top] .Vlt-tooltip__arrow,.tooltip-arrow{border-style:solid;position:absolute}.Vlt-tooltip--js[x-placement^=bottom] .Vlt-tooltip__arrow,.arrow-bottom-mixin{border-color:transparent transparent #131415;border-width:0 6px 6px;top:3px}.Vlt-tooltip--js[x-placement^=top] .Vlt-tooltip__arrow,.arrow-top-mixin{border-color:#131415 transparent transparent;border-width:6px 6px 0;bottom:3px}.Vlt-tooltip--js[x-placement^=right] .Vlt-tooltip__arrow,.arrow-right-mixin{border-color:transparent #131415 transparent transparent;border-width:6px 6px 6px 0;left:3px}.Vlt-tooltip--js[x-placement^=left] .Vlt-tooltip__arrow,.arrow-left-mixin{border-color:transparent transparent transparent #131415;border-width:6px 0 6px 6px;right:3px}.Vlt-tooltip--js[x-placement^=bottom] .Vlt-tooltip__content,.tooltip-bottom-mixin{margin-top:9px;text-align:center}.Vlt-tooltip--js[x-placement^=top] .Vlt-tooltip__content,.tooltip-top-mixin{margin-bottom:9px;text-align:center}.Vlt-tooltip--js[x-placement^=right] .Vlt-tooltip__content,.tooltip-right-mixin{margin-left:9px;text-align:left}.Vlt-tooltip--js[x-placement^=left] .Vlt-tooltip__content,.tooltip-left-mixin{margin-right:9px;text-align:left}.Vlt-tooltip__content{background:#131415;border-radius:6px;color:#fff;cursor:default;font-size:1.4rem;font-weight:600;line-height:2.1rem;max-width:300px;padding:6px 12px;transition:display .2s;white-space:normal;width:-webkit-max-content;width:-moz-max-content;width:max-content;z-index:600}.Vlt-sidenav{background:#f3f3f5;display:-ms-flexbox;display:flex;-ms-flex:0 0 270px;flex:0 0 270px;-ms-flex-flow:column;flex-flow:column;font-weight:600;height:100vh;padding-bottom:10px;width:270px}@media only screen and (max-width:575px){.Vlt-sidenav{height:100vh;left:0;padding-top:5px;position:fixed;top:0;transform:translate(-100vw,0);transition:transform .2s;width:80vw;z-index:800}.Vlt-sidenav_visible{box-shadow:4px 0 12px rgba(19,20,21,.15),20vw 0 0 rgba(19,20,21,.15);transform:translate(0,0)}}.Vlt-sidenav--animate{transition:width .2s,flex-basis .2s;transition:width .2s,flex-basis .2s,-ms-flex-preferred-size .2s}.Vlt-sidenav__mobile-trigger{display:none}@media only screen and (max-width:575px){.Vlt-sidenav__mobile-trigger{display:block}}.Vlt-sidenav__block{-ms-flex-negative:0;flex-shrink:0;padding:10px 12px;position:relative}.Vlt-sidenav__block:after,.Vlt-sidenav__block:before{content:'';display:none;-ms-flex:0 0 100%;flex:0 0 100%;height:1px;left:20px;margin:0 auto;position:absolute;top:0;width:calc(100% - 40px)}.Vlt-sidenav__block:after{bottom:0;top:auto}.Vlt-sidenav__block img,.Vlt-sidenav__block svg{max-width:100%}.Vlt-sidenav__block--logo{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;padding-bottom:15px;padding-top:15px}.Vlt-sidenav__block--logo .Vlt-sidenav__logo{-ms-flex:1;flex:1;margin-left:4px}.Vlt-sidenav__block--logo .Vlt-sidenav__logo svg{width:100%}.Vlt-sidenav__block--link{padding:0}.Vlt-sidenav__block--border-top:before{display:block}.Vlt-sidenav__block--border-bottom:after{display:block}.Vlt-sidenav__scroll{background-image:linear-gradient(to bottom,rgba(19,20,21,.05) 0,transparent 4px),linear-gradient(to bottom,transparent calc(100% - 4px),rgba(19,20,21,.05) 100%);background-position:20px 0;background-repeat:no-repeat;background-size:calc(100% - 40px) 100%,calc(100% - 40px) 100%,14px 100%,14px 100%;-ms-flex:auto;flex:auto;height:100%;overflow-y:auto;position:static}@media only screen and (max-width:575px){.Vlt-sidenav__scroll{-webkit-overflow-scrolling:touch;overflow-y:scroll}}.Vlt-sidenav__scroll .Vlt-sidemenu{background:linear-gradient(0deg,#f3f3f5 10px,transparent 10px),linear-gradient(0deg,transparent calc(100% - 10px),#f3f3f5 calc(100% - 10px)) 100% 0}.Vlt-sidenav .Vlt-sidemenu{list-style:none;margin:0;min-height:100%;padding:0 12px 10px}.Vlt-sidenav .Vlt-sidemenu ul{list-style:none;margin:0;padding:0}.Vlt-sidenav .Vlt-sidemenu .Vlt-sidemenu__title{margin-bottom:0;margin-left:0}.Vlt-sidenav .Vlt-sidemenu li{margin:0;padding:0;padding-top:3px}.Vlt-sidenav .Vlt-sidemenu li .Vlt-sidemenu__link,.Vlt-sidenav .Vlt-sidemenu li .Vlt-sidemenu__trigger{font-size:1.4rem;padding-left:10px;padding-right:35px}.Vlt-sidenav .Vlt-sidemenu li .Vlt-sidemenu__link+.Vlt-sidemenu__tooltip,.Vlt-sidenav .Vlt-sidemenu li .Vlt-sidemenu__trigger+.Vlt-sidemenu__tooltip{display:none}.Vlt-sidenav .Vlt-sidemenu li li:first-child{padding-top:0}.Vlt-sidenav .Vlt-sidemenu li li .Vlt-sidemenu__link,.Vlt-sidenav .Vlt-sidemenu li li .Vlt-sidemenu__trigger{margin-left:9px;padding-left:12px}.Vlt-sidenav .Vlt-sidemenu li li .Vlt-sidemenu__link svg,.Vlt-sidenav .Vlt-sidemenu li li .Vlt-sidemenu__trigger svg{display:none}.Vlt-sidenav .Vlt-sidemenu li li .Vlt-sidemenu__title{padding-left:21px}.Vlt-sidenav .Vlt-sidemenu__trigger+ul{border-left:1px solid #e1e2e6}.Vlt-sidenav .Vlt-sidemenu__trigger span:last-of-type:not(.Vlt-badge):after{background-image:url(data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.38326%207.96544C3.58628%207.68629%203.97717%207.62457%204.25632%207.82759L9.99983%2012.0047L15.7433%207.82759C16.0225%207.62457%2016.4134%207.68629%2016.6164%207.96544C16.8194%208.2446%2016.7577%208.63549%2016.4785%208.83851L10.3674%2013.283C10.1483%2013.4423%209.85138%2013.4423%209.63222%2013.283L3.52111%208.83851C3.24195%208.63549%203.18023%208.2446%203.38326%207.96544Z%22%20fill%3D%22%239b9da3%22%2F%3E%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';display:inline-block;height:20px;position:absolute;right:10px;top:8px;transition:transform .2s;width:16px}.Vlt-sidenav .Vlt-sidemenu__trigger_active span:last-of-type:not(.Vlt-badge):after{transform:rotate(180deg)}.Vlt-sidenav .Vlt-sidemenu__trigger_current:not(.Vlt-sidemenu__trigger_active){background:#e1e2e6}.Vlt-sidenav .Vlt-sidemenu__link,.Vlt-sidenav .Vlt-sidemenu__trigger{-ms-flex-align:start;align-items:flex-start;border-radius:5px;color:#131415;cursor:pointer;display:-ms-flexbox;display:flex;-ms-flex-pack:left;justify-content:left;line-height:1.5;margin:0;padding:8px 10px;text-decoration:none;transition:background .2s}.Vlt-sidenav .Vlt-sidemenu__link:hover,.Vlt-sidenav .Vlt-sidemenu__trigger:hover{background:#e1e2e6;text-decoration:none}.Vlt-sidenav .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active),.Vlt-sidenav .Vlt-sidemenu__trigger_active:not(.Vlt-sidemenu__trigger_active){background:#fff;color:#131415;font-weight:600}.Vlt-sidenav .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg,.Vlt-sidenav .Vlt-sidemenu__trigger_active:not(.Vlt-sidemenu__trigger_active) svg{fill:#131415}.Vlt-sidenav .Vlt-sidemenu__link--disabled,.Vlt-sidenav .Vlt-sidemenu__trigger--disabled{cursor:default;pointer-events:none}.Vlt-sidenav .Vlt-sidemenu__link svg,.Vlt-sidenav .Vlt-sidemenu__trigger svg{fill:#131415;-ms-flex:0 0 17px;flex:0 0 17px;height:21px;margin-right:12px;vertical-align:middle;width:17px}.Vlt-sidenav .Vlt-sidemenu__link--disabled,.Vlt-sidenav .Vlt-sidemenu__trigger--disabled{color:#c2c4cc}.Vlt-sidenav .Vlt-sidemenu__link--disabled svg,.Vlt-sidenav .Vlt-sidemenu__trigger--disabled svg{fill:#c2c4cc}.Vlt-sidenav .Vlt-sidemenu__link .Vlt-badge,.Vlt-sidenav .Vlt-sidemenu__trigger .Vlt-badge{margin-left:8px;margin-top:1px;position:relative;z-index:2}.Vlt-sidenav .Vlt-sidemenu__link .Vlt-sidemenu__label .Vlt-badge,.Vlt-sidenav .Vlt-sidemenu__trigger .Vlt-sidemenu__label .Vlt-badge{margin-bottom:2px;margin-top:0}.Vlt-sidenav .Vlt-sidemenu__title{color:#616266;font-size:1.2rem;font-weight:600;margin:0;padding:8px 10px;text-transform:uppercase}.Vlt-sidenav .Vlt-sidemenu__title--border{border-top:1px solid #e1e2e6;margin-top:8px;padding-top:19px}.Vlt-sidenav .Vlt-sidemenu__trigger{position:relative}.Vlt-sidenav .Vlt-sidemenu__trigger:not(.Vlt-sidemenu__trigger_active)+ul{margin:0;opacity:0;padding:0;transition:opacity .1s,padding .2s,margin .2s}.Vlt-sidenav .Vlt-sidemenu__trigger:not(.Vlt-sidemenu__trigger_active)+ul *{border:0;font-size:0!important;line-height:0;margin-bottom:0!important;margin-top:0!important;opacity:0;padding-bottom:0!important;padding-top:0!important;transition:all .1s}.Vlt-sidenav .Vlt-sidemenu__trigger:not(.Vlt-sidemenu__trigger_active)+ul * .Vlt-badge,.Vlt-sidenav .Vlt-sidemenu__trigger:not(.Vlt-sidemenu__trigger_active)+ul * svg{height:0;transition:height .1s}.Vlt-sidenav .Vlt-sidemenu__trigger_active+ul{margin:2px 0 2px 18px;margin-bottom:0;margin-left:18px;margin-top:2px;transition:font-size .2s,margin .2s,opacity .2s,padding .2s}.Vlt-sidenav .Vlt-sidemenu__trigger_active+ul>*{opacity:1;transition:all .2s}.Vlt-sidenav .Vlt-sidemenu__trigger .Vlt-sidemenu__label{max-width:100%}.Vlt-sidenav .Vlt-sidemenu__list--compressed .Vlt-sidemenu__link,.Vlt-sidenav .Vlt-sidemenu__list--compressed .Vlt-sidemenu__trigger{padding:4px 10px}.Vlt-sidenav .Vlt-sidemenu__list--compressed .Vlt-sidemenu__trigger{margin-bottom:4px}.Vlt-sidenav__mobile{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;left:0;padding:10px;position:fixed;top:0;width:100%}@media only screen and (min-width:576px){.Vlt-sidenav__mobile{display:none}}.Vlt-sidenav__mobile__logo{height:34px}.Vlt-sidenav__mobile button{-ms-flex:0 0 40px;flex:0 0 40px;height:40px}.Vlt-sidenav__mobile button svg{height:24px;width:24px}.Vlt-template--header .Vlt-sidenav__mobile{padding-bottom:5px;padding-top:5px}.Vlt-sidenav hr{border-top:1px solid #e1e2e6}.Vlt-sidenav .Vlt-sidenav__link:hover{background:#e1e2e6}.Vlt-sidenav .Vlt-sidetabs--bottom{border-top:1px solid #e1e2e6}.Vlt-sidenav .Vlt-sidetabs--top{border-bottom:1px solid #e1e2e6}.Vlt-sidenav .Vlt-sidetabs .Vlt-js-tabs__link svg{fill:#9b9da3!important}.Vlt-sidenav .Vlt-sidetabs .Vlt-js-tabs__link:hover:after{background:#f3f3f5}.Vlt-sidenav .Vlt-sidetabs .Vlt-js-tabs__link:hover svg{fill:#616266!important}.Vlt-sidenav .Vlt-sidetabs .Vlt-js-tabs__link:active:after,.Vlt-sidenav .Vlt-sidetabs .Vlt-js-tabs__link_active:after{background:#131415}.Vlt-sidenav .Vlt-sidetabs .Vlt-js-tabs__link:active svg,.Vlt-sidenav .Vlt-sidetabs .Vlt-js-tabs__link_active svg{fill:#616266!important}.Vlt-sidenav .Vlt-sidenav__block:after,.Vlt-sidenav .Vlt-sidenav__block:before{background:#e1e2e6}.Vlt-sidenav .Vlt-sidenav__block--logo .Vlt-sidenav__collapse svg{fill:#9b9da3}@media only screen and (min-width:576px){.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__title{border-bottom:1px solid #e1e2e6}}.Vlt-sidenav.Vlt-sidenav--rounded,.Vlt-sidenav.Vlt-sidenav--rounded .Vlt-sidenav__scroll{border-radius:0 16px 16px 0}.Vlt-sidenav.Vlt-sidenav--active-blue .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active),.Vlt-sidenav.Vlt-sidenav--active-green .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active),.Vlt-sidenav.Vlt-sidenav--active-indigo .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active),.Vlt-sidenav.Vlt-sidenav--active-orange .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active),.Vlt-sidenav.Vlt-sidenav--active-purple .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active),.Vlt-sidenav.Vlt-sidenav--active-purple-dark .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active),.Vlt-sidenav.Vlt-sidenav--active-red .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active),.Vlt-sidenav.Vlt-sidenav--active-yellow .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){color:#fff}.Vlt-sidenav.Vlt-sidenav--active-blue .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg,.Vlt-sidenav.Vlt-sidenav--active-green .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg,.Vlt-sidenav.Vlt-sidenav--active-indigo .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg,.Vlt-sidenav.Vlt-sidenav--active-orange .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg,.Vlt-sidenav.Vlt-sidenav--active-purple .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg,.Vlt-sidenav.Vlt-sidenav--active-purple-dark .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg,.Vlt-sidenav.Vlt-sidenav--active-red .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg,.Vlt-sidenav.Vlt-sidenav--active-yellow .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg{fill:#fff}.Vlt-sidenav.Vlt-sidenav--active-white .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){background:#fff}.Vlt-sidenav.Vlt-sidenav--active-grey .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){background:#e1e2e6}.Vlt-sidenav.Vlt-sidenav--active-blue .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){background:#669fc4}.Vlt-sidenav.Vlt-sidenav--active-green .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){background:#06ba77}.Vlt-sidenav.Vlt-sidenav--active-indigo .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){background:#d6219c}.Vlt-sidenav.Vlt-sidenav--active-orange .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){background:#fa7454}.Vlt-sidenav.Vlt-sidenav--active-purple .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){background:#b779ff}.Vlt-sidenav.Vlt-sidenav--active-purple-dark .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){background:#871fff}.Vlt-sidenav.Vlt-sidenav--active-red .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){background:#e84545}.Vlt-sidenav.Vlt-sidenav--active-yellow .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active){background:#ffc100}@media only screen and (max-width:575px){body.Vlt-body--has-sidenav{padding-top:60px}body.Vlt-body--mobile-menu-open{overflow:hidden}}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs{margin-left:20px;margin-right:20px}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs ul{display:-ms-flexbox;display:flex;-ms-flex-negative:0;flex-shrink:0}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs ul li{-ms-flex:1;flex:1}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs__label{display:none}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs__trigger{display:none}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs .Vlt-js-tabs__link{-ms-flex-align:center;align-items:center;font-size:1.3rem;font-weight:400;height:45px;-ms-flex-pack:center;justify-content:center;position:relative;width:100%}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs .Vlt-js-tabs__link:after{content:'';height:3px;left:50%;position:absolute;transition:none;width:0}@media only screen and (min-width:768px){.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs .Vlt-js-tabs__link:hover:after{left:0;transition:all .2s;width:100%}}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs .Vlt-js-tabs__link:active:after,.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs .Vlt-js-tabs__link_active:after{left:0;width:100%}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs--bottom{padding-bottom:5px}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs--bottom .Vlt-sidetabs__link:after{top:0}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs--top{padding-top:5px}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs--top .Vlt-sidetabs__link:after{bottom:0}.Vlt-sidenav:not(.Vlt-sidenav--collapsed) .Vlt-sidetabs svg{height:24px;transition:fill .2s;width:24px}.Vlt-sidenav__elem--collapsed{display:none}.Vlt-sidenav__elem--full{display:inherit}.Vlt-sidenav__block--logo .Vlt-sidenav__collapse{cursor:pointer;-ms-flex:0 0 24px;flex:0 0 24px;height:24px;margin-left:20px;text-align:center;transition:opacity .2s}.Vlt-sidenav__block--logo .Vlt-sidenav__collapse:hover{opacity:.5}.Vlt-sidenav__block--logo .Vlt-sidenav__collapse svg{height:24px;width:16px}@media only screen and (min-width:576px){.Vlt-sidenav--collapsed .Vlt-sidenav__block--logo .Vlt-sidenav__collapse{margin-bottom:10px;margin-left:0}}@media only screen and (min-width:576px){.Vlt-sidenav--collapsed .Vlt-sidenav__block--logo .Vlt-sidenav__collapse__close{display:none}}.Vlt-sidenav__block--logo .Vlt-sidenav__collapse__open{display:none;-ms-flex-order:1;order:1}@media only screen and (min-width:576px){.Vlt-sidenav--collapsed .Vlt-sidenav__block--logo .Vlt-sidenav__collapse__open{display:block}}@media only screen and (min-width:576px){.Vlt-sidenav.Vlt-sidenav--collapsed{-ms-flex:0 0 68px;flex:0 0 68px;overflow:visible;position:relative;width:68px;z-index:650}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__elem--collapsed{display:inherit}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__elem--full{display:none}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block{left:0;padding:10px 0;text-align:center;width:100%}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block:after,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block:before{left:14px;width:40px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block+.Vlt-sidenav__block{margin-top:0}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block--link{margin:5px 0 0;padding:5px 0 0}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block--link .Vlt-sidenav__link{border-radius:4px;display:block;margin:0 10px;padding:8px 10px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block--logo{-ms-flex-flow:column;flex-flow:column;padding:10px 10px 15px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block--logo .Vlt-sidenav__collapse{-ms-flex-order:1;order:1}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block--logo .Vlt-sidenav__logo{-ms-flex:0 0 24px;flex:0 0 24px;margin:0;-ms-flex-order:2;order:2}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block--logo .Vlt-sidenav__logo img,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidenav__block--logo .Vlt-sidenav__logo svg{height:24px;width:27px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu li li[role=separator]{display:none}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__link,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__trigger{-ms-flex-align:center;align-items:center;border-radius:4px;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-flow:column;flex-flow:column;opacity:1;padding:8px 10px;position:static}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__link .Vlt-badge,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__trigger .Vlt-badge{margin-left:14px;margin-top:-4px;position:absolute}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__link svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__trigger svg{height:22px;margin:0;opacity:.8;width:22px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__link--disabled,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__trigger--disabled{cursor:default;pointer-events:none}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__link:hover .Vlt-sidemenu__label,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__trigger:hover .Vlt-sidemenu__label{display:block}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__link_active svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__trigger_active svg{opacity:1}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__link .Vlt-sidemenu__label,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__trigger .Vlt-sidemenu__label{background:#131415;border-radius:6px;color:#fff;cursor:default;font-size:1.4rem;font-weight:600;line-height:2.1rem;max-width:300px;padding:6px 12px;transition:display .2s;white-space:normal;width:-webkit-max-content;width:-moz-max-content;width:max-content;z-index:600;display:none;font-weight:400;left:100%;margin-left:10px;margin-top:-12px;position:absolute;text-align:left;white-space:nowrap;width:auto}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__link .Vlt-sidemenu__label:before,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__trigger .Vlt-sidemenu__label:before{border-color:transparent #131415 transparent transparent;border-style:solid;border-width:6px 6px 6px 0;content:'';left:-5px;margin-top:-5px;position:absolute;top:50%}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul{border-radius:6px;left:72px;margin-top:-36px;position:absolute;width:240px;z-index:650}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__title{margin-left:0}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger{border-radius:0;-ms-flex-pack:start;justify-content:flex-start;margin-left:0;padding-left:20px;padding-right:20px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link:after,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link:before,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger:after,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger:before{content:none}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link span,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger span,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger svg{transform:none!important}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul ul{left:244px;margin-top:-40px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul li{margin-left:0!important;padding-top:0}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul li:last-child>.Vlt-sidemenu__link,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul li:last-child>.Vlt-sidemenu__trigger{margin-bottom:0}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger_active+ul{box-shadow:0 2px 4px 0 rgba(19,20,21,.15);margin-left:0;overflow:visible}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger span:after{content:none!important}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__title{border-top:0;height:1px;margin:0 auto;overflow:hidden;padding:0;text-indent:-9999px;width:40px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidetabs{padding:10px 10px 0}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidetabs ul{display:block;margin-bottom:10px;max-height:0;overflow:hidden;top:auto!important}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidetabs__label{display:block;-ms-flex:1;flex:1}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidetabs .Vlt-js-tabs__link{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:0;outline:0;text-align:left;width:100%}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidetabs .Vlt-sidemenu__trigger{border-radius:4px;display:block;margin:0 0 10px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidetabs .Vlt-tooltip--js{display:none}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidetabs--bottom ul{bottom:0}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul{background:#fff;padding:5px 0 8px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger{color:#616266}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link svg[class*=Vlt-],.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger svg[class*=Vlt-]{fill:#616266!important}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link:hover,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link_active,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger:hover,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger_active{background:#f3f3f5;color:#131415}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link:hover svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link:hover svg[class*=Vlt-],.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link_active svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link_active svg[class*=Vlt-],.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger:hover svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger:hover svg[class*=Vlt-],.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger_active svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger_active svg[class*=Vlt-]{fill:#131415!important}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link--disabled,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger--disabled{color:#c2c4cc}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link--disabled svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__link--disabled svg[class*=Vlt-],.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger--disabled svg,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__trigger--disabled svg[class*=Vlt-]{fill:#c2c4cc!important}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__title{border-bottom:1px solid #e1e2e6;margin:5px 0}}.Vlt-sidenav__mobile--aqua{background:#0070a1}.Vlt-sidenav__mobile--aqua button svg{fill:#fff}.Vlt-sidenav--aqua{background:linear-gradient(to bottom,#035879,#0085a8)}.Vlt-sidenav--aqua hr{border-top:1px solid rgba(255,255,255,.1)}.Vlt-sidenav--aqua .Vlt-sidenav__link:hover{background:rgba(255,255,255,.05)}.Vlt-sidenav--aqua .Vlt-sidenav__scroll .Vlt-sidemenu{background:linear-gradient(to bottom,#035c7e 10px,transparent 10px),linear-gradient(0deg,transparent calc(100% - 10px),#0085a8 calc(100% - 10px),#0085a8 100%)}.Vlt-sidenav--aqua .Vlt-sidemenu__link,.Vlt-sidenav--aqua .Vlt-sidemenu__trigger{color:#fff}.Vlt-sidenav--aqua .Vlt-sidemenu__link:hover,.Vlt-sidenav--aqua .Vlt-sidemenu__trigger:hover{background:rgba(255,255,255,.05)}.Vlt-sidenav--aqua .Vlt-sidemenu__link svg,.Vlt-sidenav--aqua .Vlt-sidemenu__trigger svg{fill:#00fff4}.Vlt-sidenav--aqua .Vlt-sidemenu__link_active{background:rgba(255,255,255,.1)}.Vlt-sidenav--aqua .Vlt-sidemenu__link_active svg{fill:#fff!important}.Vlt-sidenav--aqua .Vlt-sidemenu__link_active:hover{background:#0070a1}.Vlt-sidenav--aqua .Vlt-sidemenu__trigger:after{background-image:url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23FFF%22%20fill-rule%3D%22evenodd%22%20d%3D%22M10%2013.524L4.692%208.136a.667.667%200%201%201%20.951-.937L10%2011.62l4.357-4.422a.668.668%200%200%201%20.95.937L10%2013.524z%22%20opacity%3D%22.4%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-sidenav--aqua .Vlt-sidemenu__trigger_current:not(.Vlt-sidemenu__trigger_active){background:rgba(255,255,255,.05)}.Vlt-sidenav--aqua .Vlt-sidemenu__title{color:rgba(208,231,241,.8)}.Vlt-sidenav--aqua .Vlt-sidemenu__title--border{border-top:1px solid rgba(156,205,226,.2)}.Vlt-sidenav--aqua .Vlt-sidetabs--bottom{border-top:1px solid rgba(255,255,255,.1)}.Vlt-sidenav--aqua .Vlt-sidetabs--top{border-bottom:1px solid rgba(255,255,255,.1)}.Vlt-sidenav--aqua .Vlt-sidetabs .Vlt-js-tabs__link svg{fill:rgba(0,255,244,.8)!important}.Vlt-sidenav--aqua .Vlt-sidetabs .Vlt-js-tabs__link:hover:after{background:rgba(0,255,244,.4)}.Vlt-sidenav--aqua .Vlt-sidetabs .Vlt-js-tabs__link:hover svg{fill:#fff!important}.Vlt-sidenav--aqua .Vlt-sidetabs .Vlt-js-tabs__link:active:after,.Vlt-sidenav--aqua .Vlt-sidetabs .Vlt-js-tabs__link_active:after{background:rgba(0,255,244,.8)}.Vlt-sidenav--aqua .Vlt-sidetabs .Vlt-js-tabs__link:active svg,.Vlt-sidenav--aqua .Vlt-sidetabs .Vlt-js-tabs__link_active svg{fill:#fff!important}.Vlt-sidenav--aqua .Vlt-sidenav__block:after,.Vlt-sidenav--aqua .Vlt-sidenav__block:before{background:rgba(255,255,255,.1)}.Vlt-sidenav--aqua .Vlt-sidenav__block--logo:after{display:block}.Vlt-sidenav--aqua .Vlt-sidenav__block--logo .Vlt-sidenav__collapse svg{fill:#00fff4}@media only screen and (min-width:576px){.Vlt-sidenav--aqua.Vlt-sidenav--collapsed .Vlt-sidemenu__title{border-bottom:1px solid rgba(255,255,255,.1)}.Vlt-sidenav--aqua.Vlt-sidenav--collapsed li li .Vlt-sidemenu__link_active svg{fill:#9b9da3!important}.Vlt-sidenav--aqua.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger_active{background:#0070a1}}.Vlt-sidenav__mobile--light{background:#fff;box-shadow:1px 0 8px rgba(19,20,21,.2)}.Vlt-sidenav__mobile--light button svg{fill:#9b9da3}.Vlt-template--header .Vlt-sidenav__mobile--light{background:#fff;border-bottom:1px solid #e1e2e6;box-shadow:none}.Vlt-sidenav--light{background:#fff}.Vlt-sidenav--light hr{border-top:1px solid #e1e2e6}.Vlt-sidenav--light .Vlt-sidenav__link:hover{background:#e1e2e6}.Vlt-sidenav--light .Vlt-sidemenu__link,.Vlt-sidenav--light .Vlt-sidemenu__trigger{color:#131415}.Vlt-sidenav--light .Vlt-sidemenu__link:hover,.Vlt-sidenav--light .Vlt-sidemenu__trigger:hover{background:#e1e2e6}.Vlt-sidenav--light .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active),.Vlt-sidenav--light .Vlt-sidemenu__trigger_active:not(.Vlt-sidemenu__trigger_active){background:#131415;color:#fff;font-weight:600}.Vlt-sidenav--light .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg,.Vlt-sidenav--light .Vlt-sidemenu__trigger_active:not(.Vlt-sidemenu__trigger_active) svg{fill:#fff}.Vlt-sidenav--light .Vlt-sidemenu__link svg,.Vlt-sidenav--light .Vlt-sidemenu__trigger svg{fill:#131415}.Vlt-sidenav--light .Vlt-sidemenu__link--disabled,.Vlt-sidenav--light .Vlt-sidemenu__trigger--disabled{color:#c2c4cc}.Vlt-sidenav--light .Vlt-sidemenu__link--disabled svg,.Vlt-sidenav--light .Vlt-sidemenu__trigger--disabled svg{fill:#c2c4cc}.Vlt-sidenav--light .Vlt-sidemenu__trigger+ul{border-left:1px solid #e1e2e6}.Vlt-sidenav--light .Vlt-sidemenu__trigger span:last-of-type:not(.Vlt-badge):after{background-image:url(data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.38326%207.96544C3.58628%207.68629%203.97717%207.62457%204.25632%207.82759L9.99983%2012.0047L15.7433%207.82759C16.0225%207.62457%2016.4134%207.68629%2016.6164%207.96544C16.8194%208.2446%2016.7577%208.63549%2016.4785%208.83851L10.3674%2013.283C10.1483%2013.4423%209.85138%2013.4423%209.63222%2013.283L3.52111%208.83851C3.24195%208.63549%203.18023%208.2446%203.38326%207.96544Z%22%20fill%3D%22%239b9da3%22%2F%3E%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-sidenav--light .Vlt-sidemenu__trigger_current:not(.Vlt-sidemenu__trigger_active){background:#e1e2e6}.Vlt-sidenav--light .Vlt-sidemenu__title{color:#616266}.Vlt-sidenav--light .Vlt-sidemenu__title--border{border-top:1px solid #e1e2e6}.Vlt-sidenav--light .Vlt-sidetabs--bottom{border-top:1px solid #e1e2e6}.Vlt-sidenav--light .Vlt-sidetabs--top{border-bottom:1px solid #e1e2e6}.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link svg{fill:#9b9da3!important}.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link:hover:after{background:#f3f3f5}.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link:hover svg{fill:#616266!important}.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link:active:after,.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link_active:after{background:#131415}.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link:active svg,.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link_active svg{fill:#616266!important}.Vlt-sidenav--light .Vlt-sidenav__block:after,.Vlt-sidenav--light .Vlt-sidenav__block:before{background:#e1e2e6}.Vlt-sidenav--light .Vlt-sidenav__block--logo .Vlt-sidenav__collapse svg{fill:#9b9da3}@media only screen and (min-width:576px){.Vlt-sidenav--light.Vlt-sidenav--collapsed .Vlt-sidemenu__title{border-bottom:1px solid #e1e2e6}}.Vlt-sidenav--light .Vlt-sidenav__scroll .Vlt-sidemenu{background:linear-gradient(0deg,#fff 10px,transparent 10px),linear-gradient(0deg,transparent calc(100% - 10px),#fff calc(100% - 10px)) 100% 0}.Vlt-sidenav__mobile--dark{background:#131415}.Vlt-sidenav__mobile--dark button svg{fill:#fff}.Vlt-sidenav--dark{background:#131415}.Vlt-sidenav--dark hr{border-top:1px solid rgba(255,255,255,.1)}.Vlt-sidenav--dark .Vlt-sidenav__link:hover{background:rgba(255,255,255,.05)}.Vlt-sidenav--dark .Vlt-sidemenu__link,.Vlt-sidenav--dark .Vlt-sidemenu__trigger{color:#fff}.Vlt-sidenav--dark .Vlt-sidemenu__link:hover,.Vlt-sidenav--dark .Vlt-sidemenu__trigger:hover{background:rgba(97,98,102,.5)}.Vlt-sidenav--dark .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active),.Vlt-sidenav--dark .Vlt-sidemenu__trigger_active:not(.Vlt-sidemenu__trigger_active){background:#fff;color:#131415;font-weight:600}.Vlt-sidenav--dark .Vlt-sidemenu__link_active:not(.Vlt-sidemenu__trigger_active) svg,.Vlt-sidenav--dark .Vlt-sidemenu__trigger_active:not(.Vlt-sidemenu__trigger_active) svg{fill:#131415}.Vlt-sidenav--dark .Vlt-sidemenu__link svg,.Vlt-sidenav--dark .Vlt-sidemenu__trigger svg{fill:#fff}.Vlt-sidenav--dark .Vlt-sidemenu__link--disabled,.Vlt-sidenav--dark .Vlt-sidemenu__trigger--disabled{color:#616266}.Vlt-sidenav--dark .Vlt-sidemenu__link--disabled svg,.Vlt-sidenav--dark .Vlt-sidemenu__trigger--disabled svg{fill:#616266}.Vlt-sidenav--dark .Vlt-sidemenu__trigger+ul{border-left:1px solid #616266}.Vlt-sidenav--dark .Vlt-sidemenu__trigger span:last-of-type:not(.Vlt-badge):after{background-image:url(data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.38326%207.96544C3.58628%207.68629%203.97717%207.62457%204.25632%207.82759L9.99983%2012.0047L15.7433%207.82759C16.0225%207.62457%2016.4134%207.68629%2016.6164%207.96544C16.8194%208.2446%2016.7577%208.63549%2016.4785%208.83851L10.3674%2013.283C10.1483%2013.4423%209.85138%2013.4423%209.63222%2013.283L3.52111%208.83851C3.24195%208.63549%203.18023%208.2446%203.38326%207.96544Z%22%20fill%3D%22%23616266%22%2F%3E%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-sidenav--dark .Vlt-sidemenu__trigger:hover span:last-of-type:not(.Vlt-badge):after{background-image:url(data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.38326%207.96544C3.58628%207.68629%203.97717%207.62457%204.25632%207.82759L9.99983%2012.0047L15.7433%207.82759C16.0225%207.62457%2016.4134%207.68629%2016.6164%207.96544C16.8194%208.2446%2016.7577%208.63549%2016.4785%208.83851L10.3674%2013.283C10.1483%2013.4423%209.85138%2013.4423%209.63222%2013.283L3.52111%208.83851C3.24195%208.63549%203.18023%208.2446%203.38326%207.96544Z%22%20fill%3D%22%23ffffff%22%2F%3E%0A%3C%2Fsvg%3E)}.Vlt-sidenav--dark .Vlt-sidemenu__trigger_current:not(.Vlt-sidemenu__trigger_active){background:#616266}.Vlt-sidenav--dark .Vlt-sidemenu__trigger_current span:last-of-type:not(.Vlt-badge):after{background-image:url(data:image/svg+xml,%3Csvg%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M3.38326%207.96544C3.58628%207.68629%203.97717%207.62457%204.25632%207.82759L9.99983%2012.0047L15.7433%207.82759C16.0225%207.62457%2016.4134%207.68629%2016.6164%207.96544C16.8194%208.2446%2016.7577%208.63549%2016.4785%208.83851L10.3674%2013.283C10.1483%2013.4423%209.85138%2013.4423%209.63222%2013.283L3.52111%208.83851C3.24195%208.63549%203.18023%208.2446%203.38326%207.96544Z%22%20fill%3D%22%23ffffff%22%2F%3E%0A%3C%2Fsvg%3E)}.Vlt-sidenav--dark .Vlt-sidemenu__title{color:#9b9da3}.Vlt-sidenav--dark .Vlt-sidemenu__title--border{border-top:1px solid #616266}.Vlt-sidenav--dark .Vlt-sidetabs--bottom{border-top:1px solid rgba(255,255,255,.1)}.Vlt-sidenav--dark .Vlt-sidetabs--top{border-bottom:1px solid rgba(255,255,255,.1)}.Vlt-sidenav--dark .Vlt-sidetabs .Vlt-js-tabs__link svg{fill:#c2c4cc!important}.Vlt-sidenav--dark .Vlt-sidetabs .Vlt-js-tabs__link:hover:after{background:#c2c4cc}.Vlt-sidenav--dark .Vlt-sidetabs .Vlt-js-tabs__link:hover svg{fill:#fff!important}.Vlt-sidenav--dark .Vlt-sidetabs .Vlt-js-tabs__link:active:after,.Vlt-sidenav--dark .Vlt-sidetabs .Vlt-js-tabs__link_active:after{background:#fff}.Vlt-sidenav--dark .Vlt-sidetabs .Vlt-js-tabs__link:active svg,.Vlt-sidenav--dark .Vlt-sidetabs .Vlt-js-tabs__link_active svg{fill:#131415!important}.Vlt-sidenav--dark .Vlt-sidenav__block:after,.Vlt-sidenav--dark .Vlt-sidenav__block:before{background:rgba(255,255,255,.1)}.Vlt-sidenav--dark .Vlt-sidenav__block--logo .Vlt-sidenav__collapse svg{fill:#c2c4cc}@media only screen and (min-width:576px){.Vlt-sidenav--dark.Vlt-sidenav--collapsed .Vlt-sidemenu__title{border-bottom:1px solid rgba(255,255,255,.1)}.Vlt-sidenav--dark.Vlt-sidenav--collapsed li li .Vlt-sidemenu__link_active svg{fill:#fff!important}}.Vlt-sidenav--dark .Vlt-sidenav__scroll{background-image:linear-gradient(to bottom,rgba(255,255,255,.15) 0,transparent 4px),linear-gradient(to bottom,transparent calc(100% - 4px),rgba(255,255,255,.15) 100%)}.Vlt-sidenav--dark .Vlt-sidenav__scroll .Vlt-sidemenu{background:linear-gradient(0deg,#131415 10px,transparent 10px),linear-gradient(0deg,transparent calc(100% - 10px),#131415 calc(100% - 10px)) 100% 0}.Vlt-card{background:#fff;border-radius:8px;box-shadow:0 4px 20px rgba(19,20,21,.1);display:block;margin-bottom:24px;padding:24px;position:relative;width:100%}.Vlt-card--border{box-shadow:inset 0 0 0 1px #e1e2e6}.Vlt-card[class*=Vlt-card--border-top-]{overflow:hidden;padding:23px 24px 16px}.Vlt-card[class*=Vlt-card--border-top-]::before{border-top-left-radius:8px;border-top-right-radius:8px;content:'';height:7px;left:0;position:absolute;top:0;width:100%}.Vlt-card--border-top-blue::before{background-color:#669fc4}.Vlt-card--border-top-green::before{background-color:#06ba77}.Vlt-card--border-top-indigo::before{background-color:#d6219c}.Vlt-card--border-top-orange::before{background-color:#fa7454}.Vlt-card--border-top-purple::before{background-color:#b779ff}.Vlt-card--border-top-red::before{background-color:#e84545}.Vlt-card--border-top-teal::before{background-color:#4cc3d2}.Vlt-card--border-top-yellow::before{background-color:#ffc100}.Vlt-card--gradient-wrapper{border-radius:8px;margin-bottom:24px;padding:1px;position:relative;width:100%}.Vlt-card--gradient-wrapper .Vlt-card{box-shadow:inset 0 0 0 0;margin-bottom:0}.Vlt-card--plain{box-shadow:none}.Vlt-card--lesspadding{padding:16px}.Vlt-card--lesspadding .Vlt-card__footer,.Vlt-card--lesspadding .Vlt-card__header{margin-left:0;margin-right:0}.Vlt-card--lesspadding .Vlt-card__header{padding-bottom:8px}.Vlt-card--lesspadding .Vlt-card__footer{padding-bottom:2px;padding-top:8px}.Vlt-card--lesspadding .Vlt-card__corner{right:16px;top:16px}.Vlt-card--lesspadding .Vlt-card__image{margin:-16px -17px 19px}.Vlt-card--lesspadding.Vlt-card--scrollable .Vlt-card__content{padding-bottom:8px;padding-top:8px}.Vlt-card__image{-ms-flex-align:center;align-items:center;background:#c2c4cc;border-top-left-radius:8px;border-top-right-radius:8px;color:#fff;display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column;height:90px;-ms-flex-pack:center;justify-content:center;margin:-24px -24px 24px;position:relative;text-align:center}.Vlt-card__image svg{fill:#fff}.Vlt-card__image *{max-height:100%;z-index:1}.Vlt-card__image--app:before,.Vlt-card__image--grid:before,.Vlt-card__image--tech:before{content:'';display:block;height:100%;left:0;opacity:.1;position:absolute;top:0;width:100%;z-index:1}.Vlt-card__image--app:before{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%20506.4%20190.8%22%20style%3D%22enable-background%3Anew%200%200%20506.4%20190.8%3B%22%20xml%3Aspace%3D%22preserve%22%20fill%3D%22%23ffffff%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M138.4%2C190.1c-0.7%2C0-1.3%2C0.3-1.6%2C0.7h1c0.2-0.1%2C0.4-0.1%2C0.6-0.1c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1h1.5%0D%0A%09%09c-0.4-0.3-0.8-0.5-1.3-0.6C139%2C190.1%2C138.7%2C190.1%2C138.4%2C190.1z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M138.4%2C189.6c-1%2C0-1.8%2C0.5-2.3%2C1.2h0.6c0.4-0.4%2C1-0.7%2C1.6-0.7c0.3%2C0%2C0.6%2C0%2C0.8%2C0.1c0.4%2C0.1%2C0.9%2C0.3%2C1.3%2C0.6%0D%0A%09%09h0.9c-0.6-0.5-1.2-0.9-1.9-1.1C139%2C189.6%2C138.7%2C189.6%2C138.4%2C189.6z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M137.8%2C190.8h1.2c-0.3-0.1-0.5-0.1-0.7-0.1C138.1%2C190.7%2C137.9%2C190.7%2C137.8%2C190.8z%22%2F%3E%0D%0A%09%3Cg%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M29.9%2C171.9c-1.1-0.6-2.5-0.4-3.5%2C0.3L1%2C190.8h2.1l24.1-17.6c0.6-0.5%2C1.5-0.6%2C2.2-0.2s1.2%2C1.1%2C1.2%2C1.9v15.9%0D%0A%09%09%09h1.2v-15.9C31.7%2C173.6%2C31%2C172.5%2C29.9%2C171.9z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M264.7%2C154c1.7%2C0%2C2.9-1.2%2C2.8-2.9c0-2-1.6-4.1-3.6-4.6c-0.4-0.1-0.7-0.1-1-0.1c-1.6%2C0-2.8%2C1.2-2.8%2C2.9%0D%0A%09%09%09c0%2C2%2C1.6%2C4.1%2C3.6%2C4.6C264.1%2C154%2C264.4%2C154%2C264.7%2C154z%20M261.2%2C149.2c0-1.3%2C1-2%2C2.3-1.6c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5%0D%0A%09%09%09c0.1%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1C262.5%2C152.3%2C261.2%2C150.7%2C261.2%2C149.2z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M250.7%2C151.6c0.4%2C0.1%2C0.9%2C0.2%2C1.3%2C0.2c2.2%2C0%2C3.8-1.6%2C3.8-3.9c0-2.7-2.2-5.5-4.9-6.2l-32.4-8.7%0D%0A%09%09%09c-0.4-0.1-0.9-0.2-1.3-0.2c-2.2%2C0-3.8%2C1.6-3.8%2C3.9c0%2C2.7%2C2.2%2C5.5%2C4.9%2C6.2L250.7%2C151.6z%20M214.6%2C136.7c0-1.6%2C1-2.7%2C2.6-2.7%0D%0A%09%09%09c0.3%2C0%2C0.6%2C0%2C1%2C0.1l32.4%2C8.7c2.2%2C0.6%2C4%2C2.9%2C4%2C5.1c0%2C1.6-1%2C2.7-2.6%2C2.7c-0.3%2C0-0.6%2C0-1-0.1l-32.4-8.7%0D%0A%09%09%09C216.4%2C141.2%2C214.6%2C138.9%2C214.6%2C136.7z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M294.3%2C133l-95.4-25.6c-2.4-0.6-4.7-0.3-6.5%2C0.8l-12.1%2C8.9l0.2%2C0.3c-0.8%2C0.5-1.4%2C1.2-1.9%2C2%0D%0A%09%09%09c-0.1%2C0.1-0.2%2C0.3-0.3%2C0.5c0%2C0%2C0%2C0.1-0.1%2C0.1c-0.1%2C0.2-0.2%2C0.4-0.3%2C0.6c0%2C0%2C0%2C0%2C0%2C0c-0.1%2C0.2-0.2%2C0.4-0.2%2C0.7c0%2C0%2C0%2C0%2C0%2C0%0D%0A%09%09%09c-0.1%2C0.2-0.1%2C0.4-0.1%2C0.7c0%2C0.1%2C0%2C0.1%2C0%2C0.2c0%2C0.2-0.1%2C0.4-0.1%2C0.6c0%2C0.3%2C0%2C0.5%2C0%2C0.8V140v50.8h0.6h0.6v-67.3%0D%0A%09%09%09c0-3.6%2C2.3-6.1%2C5.8-6.1c0.7%2C0%2C1.4%2C0.1%2C2.1%2C0.3l95.4%2C25.6c4.6%2C1.2%2C8.4%2C6%2C8.4%2C10.7v36.8h0.7h0.5v-20.2l0.1%2C0v-16.7%0D%0A%09%09%09c0-5.1-4.2-10.4-9.3-11.8L187%2C116.5c-1.2-0.3-2.4-0.4-3.5-0.3l8.7-6.3l0.4-0.3c1.6-1.2%2C3.7-1.5%2C6-0.9l95.4%2C25.6%0D%0A%09%09%09c4.8%2C1.3%2C8.7%2C6.2%2C8.7%2C11v45.5h1.1v-45.7C303.8%2C139.8%2C299.6%2C134.4%2C294.3%2C133z%22%2F%3E%0D%0A%09%09%3Cpolygon%20class%3D%22st0%22%20points%3D%22179.3%2C140.7%20289.9%2C170.4%20289.9%2C169.2%20179.3%2C139.5%20%09%09%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M187.1%2C100.8l0.3-0.2c1.7-1.3%2C4.1-1.7%2C6.6-1l62.9%2C16.9c0.2%2C1.9%2C1.7%2C3.7%2C3.6%2C4.1c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1%0D%0A%09%09%09c1.6%2C0%2C2.8-1.2%2C2.8-2.9c0-2-1.6-4.1-3.6-4.6c-0.4-0.1-0.7-0.1-1-0.1c-1.3%2C0-2.4%2C0.8-2.7%2C2.1l-62.7-16.8c-2.7-0.7-5.2-0.4-7.2%2C0.9%0D%0A%09%09%09l-1.5%2C1.1c-9.8%2C7.1-11.5%2C8.4-11.8%2C8.6c-2.1%2C1.5-3.3%2C4-3.3%2C6.9v74.9h1.3v-75c0-2.5%2C1-4.6%2C2.8-5.9c0.3-0.2%2C9-6.5%2C11.8-8.6%0D%0A%09%09%09L187.1%2C100.8z%20M260.3%2C114.3c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5c0%2C1-0.7%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5%0D%0A%09%09%09C258%2C114.6%2C259%2C113.9%2C260.3%2C114.3z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M351.6%2C153.3c-1-0.3-1.9-0.1-2.6%2C0.4c-0.6%2C0.5-1%2C1.3-1%2C2.2c0%2C1.9%2C1.5%2C3.7%2C3.3%2C4.2c0.3%2C0.1%2C0.6%2C0.1%2C0.9%2C0.1%0D%0A%09%09%09c0.6%2C0%2C1.2-0.1%2C1.7-0.5c0.6-0.5%2C1-1.3%2C1-2.2C354.9%2C155.6%2C353.4%2C153.8%2C351.6%2C153.3z%20M353.1%2C158.8c-0.4%2C0.3-0.9%2C0.4-1.5%2C0.2%0D%0A%09%09%09c-1.3-0.3-2.4-1.7-2.4-3c0-0.6%2C0.2-1%2C0.6-1.3c0.2-0.2%2C0.5-0.3%2C0.9-0.3c0.2%2C0%2C0.4%2C0%2C0.6%2C0.1c1.3%2C0.3%2C2.4%2C1.7%2C2.4%2C3%0D%0A%09%09%09C353.7%2C158.1%2C353.5%2C158.5%2C353.1%2C158.8z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M361.1%2C155.9c-1-0.3-1.9-0.1-2.6%2C0.4c-0.6%2C0.5-1%2C1.3-1%2C2.2c0%2C1.9%2C1.5%2C3.7%2C3.3%2C4.2c0.3%2C0.1%2C0.6%2C0.1%2C0.9%2C0.1%0D%0A%09%09%09c0.6%2C0%2C1.2-0.2%2C1.7-0.5c0.6-0.5%2C1-1.3%2C1-2.2C364.4%2C158.2%2C362.9%2C156.4%2C361.1%2C155.9z%20M362.6%2C161.3c-0.4%2C0.3-0.9%2C0.4-1.5%2C0.2%0D%0A%09%09%09c-1.3-0.3-2.4-1.7-2.4-3c0-0.6%2C0.2-1%2C0.6-1.3c0.2-0.2%2C0.5-0.3%2C0.9-0.3c0.2%2C0%2C0.4%2C0%2C0.6%2C0.1c1.3%2C0.3%2C2.4%2C1.7%2C2.4%2C3%0D%0A%09%09%09C363.2%2C160.6%2C363%2C161%2C362.6%2C161.3z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M370.5%2C158.4c-1-0.3-1.9-0.1-2.6%2C0.4c-0.6%2C0.5-1%2C1.3-1%2C2.2c0%2C1.9%2C1.5%2C3.7%2C3.3%2C4.2c0.3%2C0.1%2C0.6%2C0.1%2C0.9%2C0.1%0D%0A%09%09%09c0.7%2C0%2C1.3-0.2%2C1.7-0.5c0.6-0.5%2C1-1.3%2C1-2.2C373.8%2C160.7%2C372.3%2C158.9%2C370.5%2C158.4z%20M372.1%2C163.9c-0.4%2C0.3-0.9%2C0.4-1.5%2C0.2%0D%0A%09%09%09c-1.3-0.3-2.4-1.7-2.4-3c0-0.6%2C0.2-1%2C0.6-1.3c0.2-0.2%2C0.5-0.3%2C0.9-0.3c0.2%2C0%2C0.4%2C0%2C0.6%2C0.1c1.3%2C0.3%2C2.4%2C1.7%2C2.4%2C3%0D%0A%09%09%09C372.7%2C163.2%2C372.5%2C163.6%2C372.1%2C163.9z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M366.3%2C136.7c-6.8-1.8-13.2-1.2-17.7%2C1.8l-3.7%2C2.6c-0.8%2C0.4-1.6%2C0.9-2.3%2C1.4c-3.3%2C2.5-5.1%2C6.3-5.1%2C10.6%0D%0A%09%09%09c0%2C5.1%2C2.4%2C10.5%2C6.8%2C15.2c-0.4%2C4.3-2.7%2C7.4-4.1%2C8.9c-0.4%2C0.4-0.5%2C0.8-0.3%2C1.2c0.2%2C0.6%2C0.8%2C0.9%2C1.3%2C1c1%2C0.1%2C1.9%2C0.2%2C2.8%2C0.2%0D%0A%09%09%09c5%2C0%2C8-2.1%2C9.4-4.1c2.3%2C1.2%2C4.7%2C2.2%2C7.1%2C2.8c2.8%2C0.8%2C5.3%2C1.1%2C7.9%2C1c0.5%2C1.2%2C1.5%2C2.2%2C2.7%2C2.6v8.9h1.2v-8.6c0.1%2C0%2C0.2%2C0%2C0.3%2C0%0D%0A%09%09%09c1.6%2C0%2C2.8-1.2%2C2.8-2.9c0-0.4-0.1-0.8-0.2-1.2c1.5-0.6%2C2.8-1.3%2C4-2.2l0%2C0.1c0.2-0.1%2C4.9-2.9%2C6.8-5c2.3-2.4%2C3.5-5.5%2C3.5-9.1%0D%0A%09%09%09C389.5%2C151.4%2C379.1%2C140.1%2C366.3%2C136.7z%20M372.6%2C181c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7%0D%0A%09%09%09c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5C374.2%2C180.3%2C373.6%2C181%2C372.6%2C181z%20M374.8%2C177c-0.6-1.1-1.7-2-2.9-2.3%0D%0A%09%09%09c-0.4-0.1-0.7-0.1-1-0.1c-1.6%2C0-2.8%2C1.2-2.8%2C2.9c0%2C0.2%2C0%2C0.4%2C0.1%2C0.6c-2.3%2C0-4.7-0.3-7.2-0.9c-2.4-0.7-4.9-1.6-7.2-2.9l-0.4-0.2%0D%0A%09%09%09l-0.3%2C0.4c-2.5%2C3.2-6.5%2C4.5-11.7%2C3.8c-0.1%2C0-0.3-0.2-0.3-0.2c1.5-1.6%2C4.1-5.1%2C4.5-9.8V168l-0.2-0.2c-4.2-4.6-6.6-9.8-6.6-14.6%0D%0A%09%09%09c0-3.9%2C1.6-7.2%2C4.5-9.5l0%2C0l1.4-1c4.1-2.5%2C9.9-3%2C16.1-1.3c12.4%2C3.3%2C22.4%2C14%2C22.4%2C24C383.1%2C170.9%2C380.1%2C175.1%2C374.8%2C177z%0D%0A%09%09%09%20M385.3%2C170.1c-0.8%2C0.8-1.9%2C1.7-3.1%2C2.5c1.3-2.1%2C2.1-4.6%2C2.1-7.3c0-10.5-10.4-21.8-23.2-25.2c-4.3-1.1-8.3-1.3-11.9-0.6l0.1%2C0%0D%0A%09%09%09c4.2-2.8%2C10.3-3.4%2C16.7-1.7c12.4%2C3.3%2C22.4%2C14%2C22.4%2C24C388.4%2C165%2C387.4%2C167.9%2C385.3%2C170.1z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M251.6%2C16.5c-3.1-0.8-5.9-0.4-8.1%2C1.3c-2.1%2C1.6-3.2%2C4.1-3.2%2C7c0%2C6.1%2C4.9%2C12.4%2C11%2C14c1%2C0.3%2C2%2C0.4%2C2.9%2C0.4%0D%0A%09%09%09c1.9%2C0%2C3.7-0.6%2C5.2-1.7c2.1-1.6%2C3.2-4.1%2C3.2-7C262.6%2C24.4%2C257.7%2C18.1%2C251.6%2C16.5z%20M258.7%2C36.5c-1.9%2C1.4-4.4%2C1.8-7.1%2C1.1%0D%0A%09%09%09c-5.6-1.5-10.1-7.2-10.1-12.8c0-2.6%2C0.9-4.7%2C2.7-6.1c1.3-0.9%2C2.8-1.4%2C4.5-1.4c0.8%2C0%2C1.7%2C0.1%2C2.6%2C0.3c5.6%2C1.5%2C10.1%2C7.2%2C10.1%2C12.8%0D%0A%09%09%09C261.4%2C33%2C260.5%2C35.1%2C258.7%2C36.5z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M74.3%2C75.7c0.3%2C0.1%2C0.5%2C0.1%2C0.8%2C0.1c0.6%2C0%2C1.1-0.1%2C1.6-0.5c0.7-0.5%2C1-1.2%2C1-2.1c0-1.7-1.3-3.3-3-3.8%0D%0A%09%09%09c-0.9-0.2-1.8-0.1-2.4%2C0.4c-0.7%2C0.5-1%2C1.2-1%2C2.1C71.3%2C73.6%2C72.6%2C75.2%2C74.3%2C75.7z%20M73%2C70.8c0.2-0.2%2C0.5-0.3%2C0.8-0.3%0D%0A%09%09%09c0.1%2C0%2C0.3%2C0.1%2C0.5%2C0.1c1.1%2C0.3%2C2.1%2C1.6%2C2.1%2C2.7c0%2C0.5-0.2%2C0.9-0.5%2C1.1c-0.3%2C0.3-0.8%2C0.3-1.3%2C0.2c-1.1-0.3-2.1-1.6-2.1-2.7%0D%0A%09%09%09C72.5%2C71.4%2C72.7%2C71%2C73%2C70.8z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M44.8%2C109l24%2C6.4c0.2%2C0.1%2C0.4%2C0.1%2C0.6%2C0.1c0.4%2C0%2C0.8-0.1%2C1-0.3c0.1-0.1%2C0.2-0.2%2C0.2-0.3c4.3-3%2C4.3-3%2C4.2-3.1%0D%0A%09%09%09V93.6c0-0.6-0.2-1.2-0.6-1.7l-12-15.1c-0.9-1.1-2.2-1.4-3.1-0.8l-3.3%2C1.9c-0.2%2C0.1-0.3%2C0.1-0.4%2C0.2l-0.4%2C0.3l-0.2%2C0.1l0%2C0%0D%0A%09%09%09l-11.4%2C8.2c-0.4%2C0.3-0.7%2C0.9-0.7%2C1.5v18.2C42.7%2C107.5%2C43.6%2C108.7%2C44.8%2C109z%20M45.1%2C107.8c-0.1%2C0-0.2-0.1-0.3-0.1l8.8-6.6l6.6%2C1.8%0D%0A%09%09%09l8.7%2C11.3L45.1%2C107.8z%20M69.9%2C113.4l-8.6-10.9l8.6-6.5V113.4z%20M59.8%2C76.9c0.4-0.2%2C1-0.1%2C1.5%2C0.5l12%2C15.1c0.3%2C0.3%2C0.4%2C0.6%2C0.4%2C0.9%0D%0A%09%09%09v17.8c-0.3%2C0.2-1%2C0.7-2.6%2C1.9V95.6c0-0.6-0.2-1.2-0.6-1.7l-12-15.1c-0.2-0.3-0.5-0.5-0.8-0.7L59.8%2C76.9z%20M55.5%2C79.5l1-0.6%0D%0A%09%09%09c0%2C0%2C0.1%2C0%2C0.1%2C0c0.4%2C0%2C0.8%2C0.2%2C1%2C0.6l12%2C15.1c0%2C0%2C0.1%2C0.1%2C0.1%2C0.1l-9.2%2C6.9l-6.7-1.8l-9.6-12.3L55.5%2C79.5z%20M43.9%2C89.2l8.7%2C11.1%0D%0A%09%09%09l-8.6%2C6.5c-0.1-0.2-0.1-0.3-0.1-0.5V89.2z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M61.8%2C131.1l-5.8-1.5c-0.3-0.1-0.7%2C0-1%2C0.2c-0.2%2C0.2-0.4%2C0.5-0.4%2C0.9v3.2c0%2C0.7%2C0.4%2C1.3%2C1.1%2C1.5l5.8%2C1.5%0D%0A%09%09%09c0.1%2C0%2C0.2%2C0%2C0.3%2C0c0.3%2C0%2C0.5-0.1%2C0.7-0.2c0.2-0.2%2C0.4-0.5%2C0.4-0.9v-3.2C62.9%2C131.9%2C62.5%2C131.3%2C61.8%2C131.1z%20M61.8%2C135.6l-5.7-1.5%0D%0A%09%09%09c-0.2%2C0-0.3-0.2-0.3-0.3v-3.1l5.7%2C1.5c0.2%2C0%2C0.3%2C0.2%2C0.3%2C0.3V135.6z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M70.1%2C58.7c-0.6-0.1-1.1%2C0-1.5%2C0.3c-0.4%2C0.3-0.6%2C0.8-0.6%2C1.3c0%2C1%2C0.7%2C1.9%2C1.7%2C2.2c0.2%2C0.1%2C0.3%2C0.1%2C0.5%2C0.1%0D%0A%09%09%09c0.3%2C0%2C0.7-0.1%2C1-0.4c0.4-0.3%2C0.6-0.8%2C0.6-1.3C71.8%2C59.9%2C71.1%2C59%2C70.1%2C58.7z%20M70.5%2C61.4c-0.1%2C0-0.2%2C0-0.4%2C0%0D%0A%09%09%09c-0.5-0.2-0.9-0.7-0.9-1.1c0-0.1%2C0-0.2%2C0.1-0.3c0-0.1%2C0.1-0.1%2C0.2-0.1s0.1%2C0%2C0.2%2C0.1c0.5%2C0.2%2C0.9%2C0.7%2C0.9%2C1.1%0D%0A%09%09%09C70.6%2C61.2%2C70.6%2C61.3%2C70.5%2C61.4z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M63.9%2C56.9l-10-2.7c-0.6-0.1-1.2%2C0-1.6%2C0.3c-0.4%2C0.3-0.6%2C0.8-0.6%2C1.4c0%2C1.1%2C0.8%2C2.1%2C1.9%2C2.4l10%2C2.7%0D%0A%09%09%09c0.2%2C0.1%2C0.3%2C0.1%2C0.5%2C0.1c0.4%2C0%2C0.8-0.1%2C1.1-0.4c0.4-0.3%2C0.6-0.8%2C0.6-1.4C65.8%2C58.2%2C65%2C57.2%2C63.9%2C56.9z%20M64.4%2C59.8%0D%0A%09%09%09c-0.1%2C0.1-0.3%2C0.2-0.5%2C0.1l-10-2.7c-0.5-0.2-1-0.8-1-1.3c0-0.1%2C0.1-0.3%2C0.2-0.4c0.1-0.1%2C0.2-0.1%2C0.3-0.1c0.1%2C0%2C0.1%2C0%2C0.2%2C0l10%2C2.7%0D%0A%09%09%09c0.5%2C0.2%2C1%2C0.8%2C1%2C1.3C64.6%2C59.5%2C64.5%2C59.7%2C64.4%2C59.8z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M403%2C188.3c-0.4-0.1-0.7-0.1-1-0.1c-1.5%2C0-2.6%2C1.1-2.8%2C2.6h0.6h0.5c0.1-1%2C0.6-1.5%2C1.6-1.5%0D%0A%09%09%09c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c0.8%2C0.2%2C1.5%2C0.7%2C2%2C1.4h0.8h0.7C405.4%2C189.6%2C404.3%2C188.6%2C403%2C188.3z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M502.6%2C127.5c-0.4-0.1-0.7-0.1-1-0.1c-1.5%2C0-2.5%2C0.9-2.7%2C2.2l-20.3-5.4l-0.3%2C1.2l20.6%2C5.5%0D%0A%09%09%09c0.3%2C1.8%2C1.7%2C3.6%2C3.5%2C4.1c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.4%2C0%2C2.4-0.9%2C2.7-2.2l0.2%2C0.1v-1.3l-0.2-0.1c-0.1-0.6-0.3-1.2-0.6-1.8l0.8-0.6%0D%0A%09%09%09v-1.5l-1.6%2C1.2C504.2%2C128.2%2C503.5%2C127.7%2C502.6%2C127.5z%20M503.4%2C133.8c-0.2%2C0-0.4%2C0-0.6-0.1c-1.5-0.4-2.7-2-2.7-3.4%0D%0A%09%09%09c0-1.3%2C1-2%2C2.3-1.6c1.5%2C0.4%2C2.7%2C2%2C2.7%2C3.4C505%2C133.1%2C504.4%2C133.8%2C503.4%2C133.8z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M481.7%2C69.1L466.6%2C65c-0.2-1.7-1.4-3.4-3.1-4V40.3c0-3-2-5.6-4.9-6.4l-7.4-2c-2.4-0.6-4-2.8-4-5.2V0H446v26.6%0D%0A%09%09%09c0%2C3%2C2%2C5.6%2C4.9%2C6.4l7.4%2C2c2.4%2C0.6%2C4%2C2.8%2C4%2C5.2v20.5c-0.1%2C0-0.2%2C0-0.3%2C0c-1.4%2C0-2.6%2C1-2.8%2C2.4l-11.9-3.2c-1.9-0.6-4-0.2-5.6%2C1%0D%0A%09%09%09l-13.9%2C10.2c-0.5-0.5-1-0.8-1.6-1.1V57.6c0-3-2-5.6-4.9-6.4l-25.6-6.9c-2.4-0.6-4-2.8-4-5.2v-3.5c0.1%2C0%2C0.2%2C0%2C0.3%2C0%0D%0A%09%09%09c1.7%2C0%2C2.8-1.2%2C2.8-2.9c0-1.8-1.3-3.7-3.1-4.4v-1.7c0-1.7%2C0.8-3.3%2C2.2-4.3L424.5%2C0h-2l-29.2%2C21.4c-1.7%2C1.2-2.7%2C3.2-2.7%2C5.3V28%0D%0A%09%09%09c-0.1%2C0-0.2%2C0-0.3%2C0c-1.4%2C0-2.5%2C0.9-2.7%2C2.2l-28.2-7.5c-0.9-0.3-1.6-1.1-1.6-2.1V0h-1.2v20.6c0%2C1.5%2C1%2C2.8%2C2.5%2C3.2l28.5%2C7.6%0D%0A%09%09%09c0.2%2C1.7%2C1.5%2C3.3%2C3%2C3.9v3.8c0%2C3%2C2%2C5.6%2C4.9%2C6.4l25.6%2C6.9c2.4%2C0.6%2C4%2C2.8%2C4%2C5.2v12.1c-0.1%2C0-0.2%2C0-0.3%2C0c-1.6%2C0-2.8%2C1.2-2.8%2C2.9%0D%0A%09%09%09c0%2C0.8%2C0.2%2C1.6%2C0.7%2C2.3l-35.1%2C25.7c-0.6-0.6-1.3-1.1-2.2-1.3c-0.4-0.1-0.7-0.1-1-0.1c-1.3%2C0-2.3%2C0.8-2.7%2C2l-27-7.2l19.7-14.4%0D%0A%09%09%09c1-0.7%2C1.5-2%2C1.3-3.3c-0.2-1.2-1.2-2.3-2.4-2.6l-46.6-12.5c-0.3-1.8-1.7-3.5-3.5-4c-0.4-0.1-0.7-0.1-1-0.1c-1.6%2C0-2.8%2C1.2-2.8%2C2.9%0D%0A%09%09%09c0%2C0.8%2C0.3%2C1.6%2C0.7%2C2.3l-13.8%2C10.1c-0.6%2C0.5-1.5%2C0.6-2.2%2C0.2c-0.7-0.4-1.2-1.1-1.2-1.9V58.4c0.1%2C0%2C0.1%2C0%2C0.2%2C0%0D%0A%09%09%09c1.7%2C0%2C2.8-1.2%2C2.8-2.9c0-1.8-1.3-3.7-3.1-4.4V40.8c0.1%2C0%2C0.2%2C0%2C0.3%2C0c1.7%2C0%2C2.8-1.2%2C2.8-2.9c0-1.8-1.3-3.7-3.1-4.4V0h-1.2v33.2%0D%0A%09%09%09c-0.1%2C0-0.2%2C0-0.3%2C0c-1.3%2C0-2.4%2C0.9-2.7%2C2.1L271.2%2C28c-0.3-1.8-1.7-3.6-3.5-4c-0.3-0.1-0.6-0.1-0.9-0.1c-0.8-1.8-1.8-3.5-3-5%0D%0A%09%09%09c-5.2-6.5-12.6-9.7-18.8-8.7c6.4-4.1%2C15.9-1.3%2C22.1%2C6.6c2.3%2C2.9%2C3.9%2C6.3%2C4.5%2C9.7l1.2-0.3c-0.7-3.5-2.3-7.1-4.8-10.2%0D%0A%09%09%09c-6.8-8.6-17.5-11.4-24.3-6.4l-4.6%2C3.1l0.1%2C0.1c-2.5%2C2-4.2%2C4.9-4.7%2C8.4c-0.7%2C5.1%2C1%2C10.8%2C4.7%2C15.7c0.2%2C0.4%2C0.7%2C1.1%2C1.8%2C2.4%0D%0A%09%09%09l10.4%2C13.2l7.3-5.3c6.8-4.7%2C8.8-6.2%2C9.4-6.7v0.1c2.4-1.9%2C4.1-4.6%2C4.7-7.8l-1.2-0.2c-0.6%2C2.9-2%2C5.3-4.2%2C7c0%2C0-0.2%2C0.2-0.5%2C0.3%0D%0A%09%09%09c1.4-2.4%2C2-5.3%2C1.9-8.5c1.3-0.1%2C2.2-1%2C2.5-2.2l27.3%2C7.3c0.2%2C1.7%2C1.4%2C3.3%2C3.1%2C4v10.3c-0.1%2C0-0.2%2C0-0.3%2C0c-1.6%2C0-2.8%2C1.2-2.8%2C2.9%0D%0A%09%09%09c0%2C0.7%2C0.2%2C1.5%2C0.6%2C2.1l-20.8%2C15.3c-1.3%2C1-3%2C1.3-4.6%2C0.9l-36.2-9.7c-0.2-1.6-1.4-3.1-2.9-3.8V46c0-1.3-0.7-2.4-1.8-3%0D%0A%09%09%09c-1.1-0.6-2.5-0.4-3.5%2C0.3L191.4%2C71l-17.4-4.7V27.7v-0.6c0.1%2C0%2C0.1%2C0%2C0.2%2C0c1.3%2C0%2C2.2-0.9%2C2.2-2.3c0-1.8-1.4-3.6-3.2-4.1%0D%0A%09%09%09c-0.2-0.1-0.5-0.1-0.8-0.1c-1%2C0-1.8%2C0.6-2.1%2C1.5l-0.5-0.1l-20.2-5.4V0h-1.2v16.3L101.7%2C3.8c-1-0.2-2.1-0.1-2.9%2C0.6%0D%0A%09%09%09c-0.8%2C0.7-1.3%2C1.7-1.3%2C2.7v16.7c0%2C0.7-0.3%2C1.3-0.8%2C1.7c-0.6%2C0.4-1.3%2C0.6-1.9%2C0.4l-19.6-5.2c-0.4-1.7-1.8-3.2-3.5-3.7%0D%0A%09%09%09c-0.4-0.1-0.7-0.1-1-0.1c-1.3%2C0-2.3%2C0.8-2.7%2C2l-21.3-5.7c-0.2-1.7-1.4-3.4-3.1-4.1V0h-1.2v8.8c-0.1%2C0-0.2%2C0-0.3%2C0%0D%0A%09%09%09c-1.6%2C0-2.8%2C1.2-2.8%2C2.9c0%2C2%2C1.6%2C4.1%2C3.6%2C4.6c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.3%2C0%2C2.3-0.8%2C2.7-2L68%2C20.1c0.1%2C1.7%2C1.3%2C3.4%2C3%2C4.1v10.2%0D%0A%09%09%09c0%2C0.7-0.3%2C1.3-0.8%2C1.7c-0.6%2C0.4-1.3%2C0.6-1.9%2C0.4L24.5%2C24.8c-0.3-1.8-1.7-3.5-3.5-4c-0.4-0.1-0.7-0.1-1-0.1%0D%0A%09%09%09c-1.4%2C0-2.4%2C0.9-2.7%2C2.2L0.7%2C18.5v1.2l16.5%2C4.4c0.2%2C1.7%2C1.5%2C3.3%2C3.1%2C3.9v24c0%2C0.7-0.3%2C1.3-0.8%2C1.7c-0.6%2C0.4-1.3%2C0.6-1.9%2C0.4%0D%0A%09%09%09L0.7%2C49.7V51l16.5%2C4.4c0.3%2C0.1%2C0.6%2C0.1%2C0.9%2C0.1c0.7%2C0%2C1.5-0.3%2C2-0.7c0.8-0.7%2C1.3-1.7%2C1.3-2.7V28.3c0.1%2C0%2C0.2%2C0%2C0.3%2C0%0D%0A%09%09%09c1.5%2C0%2C2.5-0.9%2C2.8-2.2l43.4%2C11.7c0.3%2C0.1%2C0.6%2C0.1%2C0.9%2C0.1c0.7%2C0%2C1.5-0.3%2C2-0.7c0.8-0.7%2C1.3-1.7%2C1.3-2.7v-10c0.1%2C0%2C0.3%2C0%2C0.4%2C0%0D%0A%09%09%09c1.5%2C0%2C2.6-1.1%2C2.8-2.5l19.2%2C5.2c0.3%2C0.1%2C0.6%2C0.1%2C0.9%2C0.1c0.7%2C0%2C1.4-0.3%2C2-0.7c0.8-0.7%2C1.3-1.7%2C1.3-2.7V7.1c0-0.7%2C0.3-1.3%2C0.8-1.7%0D%0A%09%09%09c0.6-0.4%2C1.3-0.6%2C1.9-0.4l46.9%2C12.5v38.9c-0.1%2C0-0.2%2C0-0.3%2C0c-1.4%2C0-2.5%2C0.9-2.7%2C2.2l-15.6-4.1c-1-0.2-2.1%2C0-2.9%2C0.6%0D%0A%09%09%09c-0.8%2C0.7-1.3%2C1.7-1.3%2C2.7v54.6c-0.1%2C0-0.3%2C0-0.4%2C0c-1.3%2C0-2.4%2C0.8-2.7%2C2.1L84%2C104.2c-0.3-1.6-1.5-3.1-3-3.7V62.1%0D%0A%09%09%09c0-2.2-1.7-4.4-3.9-5l-36.2-9.6c-0.1%2C0-0.2%2C0-0.3%2C0l2.1-1.6c0-0.1%2C0.7-0.6%2C1.9-0.3l36.2%2C9.7c1.6%2C0.4%2C3%2C2.2%2C3%2C3.8v41.1h1.2V59.1%0D%0A%09%09%09c0-2.2-1.7-4.4-3.9-5l-36.1-9.7c-1.9-0.5-3%2C0.5-3%2C0.5l-4%2C3l0%2C0c0%2C0-0.1%2C0-0.1%2C0.1c-0.8%2C0.6-1.2%2C1.5-1.2%2C2.6v38c-0.1%2C0-0.2%2C0-0.3%2C0%0D%0A%09%09%09c-1.4%2C0-2.4%2C0.9-2.7%2C2.2L22%2C87.7c-0.1-2-1.6-4-3.6-4.4c-0.4-0.1-0.7-0.1-1-0.1c-1.5%2C0-2.6%2C1-2.8%2C2.6L0.7%2C81.9v1.2l14%2C3.8%0D%0A%09%09%09c0.4%2C1.5%2C1.5%2C2.9%2C3%2C3.5v44.3c0%2C1.8-0.8%2C3.4-2.2%2C4.4l-1.8%2C1.3c0.1%2C0.1%2C0.2%2C0.2%2C0.3%2C0.3c-0.1-0.1-0.2-0.2-0.3-0.3%0D%0A%09%09%09c-0.6-0.6-1.3-1-2.1-1.2c-0.4-0.1-0.7-0.1-1-0.1c-1.6%2C0-2.8%2C1.3-2.7%2C3c0%2C0.7%2C0.3%2C1.5%2C0.7%2C2.2l-7.8%2C5.7v1.5l8.5-6.2%0D%0A%09%09%09c-0.1-0.1-0.1-0.1-0.2-0.2c0.1%2C0.1%2C0.1%2C0.2%2C0.2%2C0.2c0.6%2C0.6%2C1.4%2C1.1%2C2.3%2C1.3c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.4%2C0%2C2.4-0.9%2C2.7-2.2%0D%0A%09%09%09l70.3%2C18.8c0.1%2C0.6%2C0.3%2C1.3%2C0.7%2C1.9l-9%2C6.6c-1%2C0.7-1.5%2C2-1.3%2C3.3c0.2%2C1.2%2C1.2%2C2.3%2C2.4%2C2.6l0.7%2C0.2c0.2%2C1.7%2C1.5%2C3.3%2C3.1%2C3.9v9.1%0D%0A%09%09%09h1.2V182c0.1%2C0%2C0.2%2C0%2C0.3%2C0c1.5%2C0%2C2.5-0.9%2C2.7-2.3l14.9%2C4c0.1%2C1.7%2C1.4%2C3.5%2C3.1%2C4.1v3h1.2v-2.7c0.1%2C0%2C0.2%2C0%2C0.3%2C0%0D%0A%09%09%09c1.5%2C0%2C2.6-1%2C2.8-2.4l19%2C5.1h4.6l-23.7-6.3c-0.3-1.7-1.8-3.4-3.5-3.9c-0.4-0.1-0.7-0.1-1-0.1c-1.3%2C0-2.3%2C0.8-2.7%2C2l-15-4%0D%0A%09%09%09c-0.3-1.8-1.7-3.5-3.5-4c-0.4-0.1-0.7-0.1-1-0.1c-1.4%2C0-2.4%2C0.9-2.7%2C2.2l-0.4-0.1c-0.8-0.2-1.4-0.9-1.6-1.7%0D%0A%09%09%09c-0.2-0.8%2C0.1-1.6%2C0.8-2.1l9-6.6c0.6%2C0.6%2C1.3%2C1%2C2.1%2C1.2c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.7%2C0%2C2.8-1.2%2C2.8-2.9c0-0.8-0.3-1.6-0.7-2.3%0D%0A%09%09%09l31.8-23.3c1.7-1.2%2C2.7-3.2%2C2.7-5.3V120c0.1%2C0%2C0.2%2C0%2C0.3%2C0c1.7%2C0%2C2.9-1.2%2C2.8-2.9c0-1.8-1.3-3.7-3-4.4c0-1.1%2C0-54.9%2C0-54.9%0D%0A%09%09%09c0-0.7%2C0.3-1.3%2C0.8-1.7c0.6-0.4%2C1.3-0.6%2C1.9-0.4l15.9%2C4.2c0.3%2C1.8%2C1.7%2C3.5%2C3.5%2C4c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.4%2C0%2C2.5-0.8%2C2.7-2.1%0D%0A%09%09%09l20.2%2C5.4v12.3c0%2C1.3%2C0.7%2C2.4%2C1.8%2C3c0.5%2C0.3%2C1%2C0.4%2C1.5%2C0.4c0.7%2C0%2C1.4-0.2%2C2-0.6l13.7-10l38.4%2C10.3c0.1%2C1.9%2C1.7%2C3.9%2C3.6%2C4.3%0D%0A%09%09%09c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.7%2C0%2C2.9-1.2%2C2.8-2.9c0-1.8-1.3-3.7-3.1-4.4v-14c0.1%2C0%2C0.2%2C0%2C0.3%2C0c1.5%2C0%2C2.5-0.9%2C2.8-2.2l35.8%2C9.6%0D%0A%09%09%09c0.6%2C0.1%2C1.1%2C0.2%2C1.7%2C0.2c1.4%2C0%2C2.7-0.5%2C3.9-1.3l20.8-15.3c0.5%2C0.6%2C1.2%2C1.1%2C1.9%2C1.3v12.5c0%2C1.3%2C0.7%2C2.4%2C1.8%2C3%0D%0A%09%09%09c0.5%2C0.3%2C1%2C0.4%2C1.5%2C0.4c0.7%2C0%2C1.4-0.2%2C2-0.7l13.8-10.1c0.6%2C0.6%2C1.3%2C1.1%2C2.2%2C1.3c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.5%2C0%2C2.5-0.9%2C2.7-2.2%0D%0A%09%09%09l46.2%2C12.4c0.8%2C0.2%2C1.4%2C0.9%2C1.6%2C1.7s-0.1%2C1.6-0.8%2C2.1l-20.5%2C14.9l-30-8c-1-0.2-2.1%2C0-2.9%2C0.6c-0.8%2C0.7-1.3%2C1.7-1.3%2C2.7v13.6%0D%0A%09%09%09c-0.1%2C0-0.2%2C0-0.3%2C0c-1.3%2C0-2.3%2C0.8-2.7%2C1.9c-0.1%2C0.3-0.2%2C0.6-0.2%2C1c0%2C0.1%2C0%2C0.2%2C0%2C0.3c0.1%2C1.9%2C1.6%2C3.8%2C3.5%2C4.3%0D%0A%09%09%09c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.5%2C0%2C2.6-1%2C2.8-2.4c0-0.2%2C0-0.3%2C0-0.5c0-0.3%2C0-0.5-0.1-0.8c-0.3-1.6-1.5-3-3-3.6c0%2C0%2C0%2C0%2C0%2C0V88.9%0D%0A%09%09%09c0-0.7%2C0.3-1.3%2C0.8-1.7c0.6-0.4%2C1.3-0.6%2C1.9-0.4l29.1%2C7.8l-7.2%2C5.3c-0.6-0.6-1.3-1.1-2.1-1.3c-0.4-0.1-0.7-0.1-1-0.1%0D%0A%09%09%09c-1.6%2C0-2.8%2C1.2-2.8%2C2.9c0%2C0.8%2C0.3%2C1.6%2C0.7%2C2.3l-4.9%2C3.6c-1.3%2C1-3%2C1.3-4.6%2C0.9l-6.8-1.8c0.1%2C0.3%2C0.1%2C0.5%2C0.1%2C0.8%0D%0A%09%09%09c0%2C0.2%2C0%2C0.3%2C0%2C0.5l6.4%2C1.7c0.6%2C0.1%2C1.1%2C0.2%2C1.7%2C0.2c1.4%2C0%2C2.7-0.5%2C3.9-1.3l4.9-3.6c0.5%2C0.5%2C1%2C0.8%2C1.6%2C1.1V134%0D%0A%09%09%09c0%2C1.8-0.8%2C3.4-2.2%2C4.4l-28%2C20.4c-0.5-0.6-1.2-1-1.9-1.2v-17.8c0-5.8-4.6-11.8-10.4-13.3l-12.8-3.5c-0.3-1.6-1.5-3.1-3-3.7V99.8%0D%0A%09%09%09c0-0.7%2C0.3-1.3%2C0.8-1.7c0.6-0.4%2C1.3-0.6%2C1.9-0.4l29.7%2C8c0-0.1%2C0-0.2%2C0-0.3c0-0.3%2C0.1-0.7%2C0.2-1l-29.6-7.9c-1-0.2-2.1%2C0-2.9%2C0.6%0D%0A%09%09%09c-0.8%2C0.7-1.3%2C1.7-1.3%2C2.7v19.3c-0.1%2C0-0.2%2C0-0.3%2C0c-1.6%2C0-2.8%2C1.2-2.8%2C2.9c0%2C2%2C1.6%2C4.1%2C3.6%2C4.6c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1%0D%0A%09%09%09c1.5%2C0%2C2.5-1%2C2.8-2.4l12.4%2C3.4c5.3%2C1.4%2C9.6%2C6.8%2C9.6%2C12.1v17.6c0%2C0-0.1%2C0-0.1%2C0c-1.6%2C0-2.8%2C1.2-2.8%2C2.9c0%2C1.8%2C1.2%2C3.6%2C2.9%2C4.4v26.1%0D%0A%09%09%09h1.2V165c0.2%2C0%2C0.3%2C0%2C0.5%2C0c1.6%2C0%2C2.8-1.2%2C2.8-2.9c0-0.8-0.3-1.6-0.7-2.4l27.9-20.4c1.7-1.2%2C2.7-3.2%2C2.7-5.3v-27.9%0D%0A%09%09%09c0.1%2C0%2C0.3%2C0%2C0.4%2C0c1.6%2C0%2C2.8-1.2%2C2.8-2.9c0-0.8-0.3-1.7-0.7-2.4l8-5.8l28.2%2C7.5c0.2%2C1.9%2C1.7%2C3.7%2C3.6%2C4.2c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1%0D%0A%09%09%09c1.5%2C0%2C2.6-1%2C2.8-2.4l15%2C4.1c2.4%2C0.6%2C4%2C2.8%2C4%2C5.2v25.5c0%2C3%2C2%2C5.6%2C4.9%2C6.4l0.5%2C0.1c0.3%2C1.8%2C1.7%2C3.5%2C3.5%2C4c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1%0D%0A%09%09%09c1.4%2C0%2C2.4-0.9%2C2.7-2.2l20.2%2C5.5c2.4%2C0.6%2C4%2C2.8%2C4%2C5.2v32.5h1.2v-32.5c0-3-2-5.6-4.9-6.4l-20.5-5.5c-0.1-0.6-0.3-1.2-0.6-1.8%0D%0A%09%09%09l18.8-13.8c0.6%2C0.6%2C1.3%2C1.1%2C2.2%2C1.3c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.4%2C0%2C2.5-0.9%2C2.7-2.2c1.9%2C0.5%2C3.7%2C0.8%2C5.3%2C0.8c2.4%2C0%2C4.3-0.6%2C5.7-1.6%0D%0A%09%09%09c0.1-0.1%2C0.2-0.2%2C0.2-0.2l3.8-2.4l0.3-0.2c2.5-1.8%2C3.8-5%2C3.8-9.6c0-7.5-2.1-11.2-9.3-19.9c-2.2-2.7-2.3-6.6-2.3-7.3%0D%0A%09%09%09c0-1.7-0.9-3-2.5-3.4c-0.4-0.1-0.8-0.1-1.2%2C0v-0.1l-5.4%2C3.2l0.1%2C0.2c-0.1%2C0.1-0.2%2C0.1-0.3%2C0.2c-0.9%2C0.7-2%2C2.3-2%2C6%0D%0A%09%09%09c0%2C1.8%2C0.3%2C3.1%2C0.7%2C4.2l-6.1-1.6c-0.9-0.3-1.8-0.2-2.5%2C0.2l-4.8%2C2.9l0%2C0.1c-0.1%2C0-0.2%2C0.1-0.2%2C0.1c-0.7%2C0.6-1.1%2C1.5-1.1%2C2.5%0D%0A%09%09%09c0%2C1.6%2C1%2C3.2%2C2.4%2C4.1c-0.7%2C0.5-1.1%2C1.4-1.1%2C2.4c0%2C1.5%2C0.8%2C3%2C2.1%2C3.9c-0.5%2C0.6-0.8%2C1.3-0.8%2C2.2c0%2C1.4%2C0.8%2C2.9%2C2%2C3.8%0D%0A%09%09%09c-0.6%2C0.5-0.9%2C1.3-0.9%2C2.2c0%2C2%2C1.6%2C4.1%2C3.6%2C4.6l3.3%2C0.8c0.1%2C0.6%2C0.3%2C1.2%2C0.6%2C1.7l-18.8%2C13.8c-0.6-0.6-1.4-1.1-2.2-1.3%0D%0A%09%09%09c-0.4-0.1-0.7-0.1-1-0.1c-1.4%2C0-2.5%2C0.9-2.7%2C2.2l-0.2%2C0c-2.4-0.6-4-2.8-4-5.2v-25.5c0-3-2-5.6-4.9-6.4l-15.4-4.2%0D%0A%09%09%09c-0.1-0.6-0.3-1.1-0.6-1.6l35.1-25.7c0.6%2C0.6%2C1.4%2C1.1%2C2.2%2C1.4c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.6%2C0%2C2.8-1.2%2C2.8-2.9c0-0.8-0.3-1.7-0.7-2.4%0D%0A%09%09%09l13.8-10.1c1.3-1%2C3-1.3%2C4.6-0.9l12.3%2C3.4c0.4%2C1.7%2C1.8%2C3.3%2C3.5%2C3.8c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.3%2C0%2C2.4-0.8%2C2.7-2.1l14.9%2C4L481.7%2C69.1%0D%0A%09%09%09z%20M388.5%2C30.8c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5c0%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1%0D%0A%09%09%09C389.8%2C33.9%2C388.5%2C32.3%2C388.5%2C30.8z%20M263%2C42.5c-0.2%2C0.1-2.4%2C1.7-5.1%2C3.7c-0.9%2C0.6-1.7%2C1.2-2.4%2C1.7l0%2C0c-1.4%2C1.1-2.9%2C2.1-4%2C3%0D%0A%09%09%09c-4.1-5.2-11.2-14.2-11.6-14.7c-3.6-4.6-5.2-10-4.5-14.8c0.5-3.3%2C2.1-6.1%2C4.6-7.9c6.4-4.6%2C16.3-1.9%2C22.7%2C6.2%0D%0A%09%09%09c1.1%2C1.3%2C2%2C2.8%2C2.8%2C4.4c-1%2C0.4-1.7%2C1.4-1.7%2C2.7c0%2C2%2C1.6%2C4.1%2C3.6%2C4.6c0%2C0%2C0%2C0%2C0.1%2C0C267.8%2C36.1%2C266.2%2C40.1%2C263%2C42.5z%20M268.4%2C30.3%0D%0A%09%09%09c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5%0D%0A%09%09%09C270%2C29.6%2C269.4%2C30.3%2C268.4%2C30.3z%20M44%2C15.2c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7%0D%0A%09%09%09c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5C45.6%2C14.6%2C45%2C15.2%2C44%2C15.2z%20M21.7%2C27.1c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5%0D%0A%09%09%09c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5C23.4%2C26.4%2C22.7%2C27.1%2C21.7%2C27.1z%20M72.5%2C23.3%0D%0A%09%09%09c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5%0D%0A%09%09%09C74.1%2C22.6%2C73.4%2C23.3%2C72.5%2C23.3z%20M12.5%2C145.5c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-1.9-2.9-3.4c0-1.1%2C0.6-1.7%2C1.6-1.7%0D%0A%09%09%09c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C1.9%2C2.9%2C3.4C14.1%2C144.8%2C13.5%2C145.5%2C12.5%2C145.5z%20M103.9%2C181.6c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1%0D%0A%09%09%09c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5c0%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5C102.3%2C182.2%2C102.9%2C181.6%2C103.9%2C181.6z%0D%0A%09%09%09%20M81.7%2C175.5c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5c0%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5%0D%0A%09%09%09C80.1%2C176.1%2C80.7%2C175.5%2C81.7%2C175.5z%20M82.8%2C104.9c0%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5%0D%0A%09%09%09c0-1.3%2C1-2%2C2.3-1.6C81.5%2C101.8%2C82.8%2C103.4%2C82.8%2C104.9z%20M37.8%2C50.6c0-0.7%2C0.2-1.3%2C0.7-1.7c0%2C0%2C0%2C0%2C0.1%2C0l0%2C0l0.3-0.2%0D%0A%09%09%09c0.4-0.2%2C1-0.2%2C1.6-0.1l36.2%2C9.7c1.6%2C0.4%2C3%2C2.2%2C3%2C3.8v5.3L37.8%2C56.2V50.6z%20M37.8%2C57.4l41.9%2C11.2v31.6c-0.1%2C0-0.2%2C0-0.3%2C0%0D%0A%09%09%09c-1.6%2C0-2.8%2C1.2-2.8%2C2.9c0%2C1.8%2C1.3%2C3.7%2C3.1%2C4.4v25.8l-41.9-11.2V96.2c0.1%2C0%2C0.2%2C0%2C0.3%2C0c1.7%2C0%2C2.8-1.2%2C2.8-2.9%0D%0A%09%09%09c0-1.8-1.3-3.7-3.1-4.4V57.4z%20M78.9%2C142c-0.5%2C0.3-1.1%2C0.4-1.8%2C0.2l-36.2-9.7c-1.6-0.4-3-2.2-3-3.8v-5.4l41.9%2C11.2v5.6%0D%0A%09%09%09c0%2C0.6-0.2%2C1.2-0.6%2C1.6C79%2C141.9%2C78.8%2C142%2C78.9%2C142L78.9%2C142z%20M36.2%2C89.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5%0D%0A%09%09%09c0%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5C34.6%2C90.3%2C35.2%2C89.7%2C36.2%2C89.7z%20M15.7%2C86%0D%0A%09%09%09c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5c0%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1%0D%0A%09%09%09C17%2C89.1%2C15.7%2C87.5%2C15.7%2C86z%20M90%2C166.2c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.3%2C1-2%2C2.3-1.6c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5%0D%0A%09%09%09C91.6%2C165.5%2C91%2C166.2%2C90%2C166.2z%20M125.4%2C133.6c0%2C1.7-0.8%2C3.3-2.2%2C4.3l-31.8%2C23.3c-0.6-0.6-1.3-1.1-2.2-1.3c-0.4-0.1-0.7-0.1-1-0.1%0D%0A%09%09%09c-1.4%2C0-2.5%2C0.9-2.7%2C2.2l-70.3-18.8c0%2C0%2C0-0.1%2C0-0.1c-0.1-0.6-0.4-1.2-0.7-1.8l1.8-1.3c1.7-1.2%2C2.7-3.2%2C2.7-5.3v-44%0D%0A%09%09%09c0.1%2C0%2C0.2%2C0%2C0.3%2C0c1.3%2C0%2C2.3-0.7%2C2.6-1.9L33.6%2C92c0.2%2C1.7%2C1.5%2C3.3%2C3.1%2C3.9v32.8c0%2C2.2%2C1.7%2C4.4%2C3.9%2C5l36.2%2C9.8%0D%0A%09%09%09c0.3%2C0.1%2C0.7%2C0.1%2C1%2C0.1c0.8%2C0%2C1.5-0.3%2C2-0.7c0.1-0.1%2C0.1-0.1%2C0.2-0.2c3.5-2.5%2C3.8-2.7%2C3.7-2.8c0.8-0.6%2C1.2-1.5%2C1.2-2.6V109h-1.2%0D%0A%09%09%09v28.3c0%2C0.7-0.2%2C1.3-0.7%2C1.7c0%2C0-1%2C0.8-2%2C1.5c0-0.1%2C0-0.1%2C0-0.2v-32.5c0.1%2C0%2C0.2%2C0%2C0.3%2C0c1.5%2C0%2C2.5-1%2C2.8-2.4l38.4%2C10.3%0D%0A%09%09%09c0.2%2C1.7%2C1.4%2C3.4%2C3.1%2C4V133.6z%20M128.5%2C117.1c0.1%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5%0D%0A%09%09%09c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1C127.2%2C114%2C128.5%2C115.6%2C128.5%2C117.1z%20M149.8%2C62.8c-0.2%2C0-0.4%2C0-0.7-0.1%0D%0A%09%09%09c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5C151.5%2C62.2%2C150.8%2C62.8%2C149.8%2C62.8z%0D%0A%09%09%09%20M172.7%2C27.5V66l-20.1-5.4c-0.2-1.7-1.4-3.3-3.1-4V17.9l20%2C5.4l0.6%2C0.2c0.2%2C1.4%2C1.2%2C2.8%2C2.6%2C3.4V27.5z%20M173.6%2C25.8%0D%0A%09%09%09c-1.2-0.3-2.3-1.7-2.3-2.9c0-0.7%2C0.3-1.1%2C1-1.1c0.2%2C0%2C0.4%2C0%2C0.5%2C0c1.2%2C0.3%2C2.3%2C1.7%2C2.3%2C2.9C175.1%2C25.6%2C174.5%2C26%2C173.6%2C25.8z%0D%0A%09%09%09%20M177.3%2C81.3c-0.6%2C0.5-1.5%2C0.6-2.2%2C0.2c-0.7-0.4-1.2-1.1-1.2-1.9v-12l16.2%2C4.3L177.3%2C81.3z%20M230.3%2C81.5l-37.3-10l37-27.1%0D%0A%09%09%09c0.6-0.5%2C1.5-0.6%2C2.2-0.2c0.7%2C0.4%2C1.2%2C1.1%2C1.2%2C1.9v12.1c-0.1%2C0-0.3%2C0-0.4%2C0c-1.6%2C0-2.8%2C1.2-2.8%2C2.9c0%2C1.8%2C1.3%2C3.7%2C3.1%2C4.4v14%0D%0A%09%09%09c-0.1%2C0-0.2%2C0-0.3%2C0C231.7%2C79.5%2C230.7%2C80.3%2C230.3%2C81.5z%20M236.3%2C84.2c0.1%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1%0D%0A%09%09%09c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1C235%2C81.1%2C236.3%2C82.7%2C236.3%2C84.2z%20M234.7%2C64.6%0D%0A%09%09%09c-0.1%2C0-0.2%2C0-0.3%2C0v-0.1H234c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5%0D%0A%09%09%09C236.4%2C63.9%2C235.7%2C64.6%2C234.7%2C64.6z%20M299.5%2C36c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5%0D%0A%09%09%09c0%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1C300.8%2C39.1%2C299.5%2C37.5%2C299.5%2C36z%20M302.3%2C57.1c-1.5-0.4-2.8-2-2.8-3.5%0D%0A%09%09%09c0-1.3%2C1-2%2C2.3-1.6c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5c0%2C1-0.6%2C1.7-1.6%2C1.7C302.8%2C57.2%2C302.6%2C57.2%2C302.3%2C57.1z%20M323.9%2C63.5%0D%0A%09%09%09c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5%0D%0A%09%09%09C325.5%2C62.8%2C324.9%2C63.5%2C323.9%2C63.5z%20M320.4%2C109.5c-0.2%2C0-0.5%2C0-0.8-0.1c-0.7-0.2-1.3-0.6-1.8-1c0.5%2C0.5%2C1.1%2C0.9%2C1.8%2C1%0D%0A%09%09%09C319.9%2C109.5%2C320.2%2C109.5%2C320.4%2C109.5c0.5%2C0%2C0.9-0.1%2C1.3-0.4C321.4%2C109.4%2C320.9%2C109.5%2C320.4%2C109.5z%20M322%2C107.2%0D%0A%09%09%09c0%2C1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1%0D%0A%09%09%09C320.7%2C104.1%2C322%2C105.7%2C322%2C107.2z%20M321.6%2C104.5c-0.6-0.6-1.3-1.2-2.1-1.4c-0.3-0.1-0.5-0.1-0.8-0.1c-0.5%2C0-0.9%2C0.1-1.3%2C0.4%0D%0A%09%09%09c0.4-0.2%2C0.8-0.4%2C1.3-0.4c0.3%2C0%2C0.5%2C0%2C0.8%2C0.1C320.3%2C103.3%2C321%2C103.8%2C321.6%2C104.5z%20M283.7%2C125.5c-0.2%2C0-0.4%2C0-0.7-0.1%0D%0A%09%09%09c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5C285.3%2C124.8%2C284.7%2C125.5%2C283.7%2C125.5z%0D%0A%09%09%09%20M310.2%2C163.8c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5%0D%0A%09%09%09C311.8%2C163.1%2C311.2%2C163.8%2C310.2%2C163.8z%20M343.3%2C104.9c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7%0D%0A%09%09%09c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5C344.9%2C104.3%2C344.3%2C104.9%2C343.3%2C104.9z%20M386.1%2C105.6c-0.2%2C0-0.4%2C0-0.7-0.1%0D%0A%09%09%09c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5C387.8%2C104.9%2C387.1%2C105.6%2C386.1%2C105.6z%0D%0A%09%09%09%20M441.9%2C131c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5%0D%0A%09%09%09C443.6%2C130.4%2C442.9%2C131%2C441.9%2C131z%20M448.3%2C87.5h0.1c0.3-0.1%2C0.7-0.2%2C1-0.1c1.4%2C0.4%2C1.6%2C1.8%2C1.6%2C2.3c0%2C0.9%2C0.1%2C5.1%2C2.6%2C8.1%0D%0A%09%09%09c7%2C8.5%2C9%2C12%2C9%2C19.1c0%2C4.4-1.2%2C7.3-3.5%2C8.8l-1.3%2C0.8c0.9-1.8%2C1.3-4%2C1.3-6.7c0-7.5-2.1-11.2-9.3-19.9c-2.2-2.7-2.3-6.6-2.3-7.3%0D%0A%09%09%09c0-1.6-0.8-2.8-2.2-3.3L448.3%2C87.5z%20M433.5%2C99.6c0.5-0.2%2C1-0.3%2C1.6-0.1l7.2%2C1.9c0.3%2C0.5%2C0.6%2C0.9%2C0.9%2C1.3c0.3%2C0.4%2C0.6%2C0.8%2C0.8%2C1.2%0D%0A%09%09%09c0.3%2C0.5%2C0.3%2C0.7%2C0.3%2C0.7c-0.1%2C0-0.3%2C0-0.8-0.1l-12.6-3.4L433.5%2C99.6z%20M437.4%2C126.9l-3-0.8c-1.4-0.4-2.7-2-2.7-3.5%0D%0A%09%09%09c0-0.8%2C0.4-1.4%2C1-1.7l1.2-0.5l-1.2-0.6c-1.3-0.6-2.2-2-2.2-3.3c0-0.8%2C0.4-1.4%2C1-1.7l1.2-0.6l-1.2-0.5c-1.3-0.6-2.3-2-2.3-3.3%0D%0A%09%09%09c0-0.9%2C0.5-1.6%2C1.4-1.8v-1.2c-1.4-0.4-2.7-2-2.7-3.5c0-0.6%2C0.3-1.2%2C0.7-1.5c0%2C0%2C0%2C0%2C0.1%2C0l0%2C0l0.6-0.3c0.3-0.1%2C0.7-0.1%2C1.1%2C0%0D%0A%09%09%09l12.8%2C3.4c1.2%2C0.3%2C1.7%2C0%2C2-0.3c0.6-0.7%2C0.1-1.7-0.1-2c-0.2-0.5-0.6-0.9-0.9-1.4c-0.9-1.2-2.1-2.8-2.1-6.3c0-2.5%2C0.5-4.4%2C1.5-5.1%0D%0A%09%09%09c0.5-0.4%2C0.9-0.4%2C1.2-0.3c1.4%2C0.4%2C1.6%2C1.8%2C1.6%2C2.3c0%2C0.9%2C0.1%2C5.1%2C2.6%2C8.1c7%2C8.5%2C9%2C12%2C9%2C19.1c0%2C4.1-1.1%2C6.9-3.1%2C8.5%0D%0A%09%09%09c-2.2%2C1.7-5.6%2C1.9-10.1%2C0.7l-0.2%2C0c-0.3-1.8-1.7-3.6-3.5-4.1c-0.4-0.1-0.7-0.1-1-0.1C438.8%2C124.6%2C437.7%2C125.5%2C437.4%2C126.9z%0D%0A%09%09%09%20M416.6%2C143.4c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5c0%2C1.1-0.6%2C1.7-1.6%2C1.7c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5%0D%0A%09%09%09C414.3%2C143.7%2C415.3%2C143%2C416.6%2C143.4z%20M426.5%2C76.1c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5c0-1.2%2C0.9-1.9%2C2-1.7v0.1h0.3%0D%0A%09%09%09c0%2C0%2C0%2C0%2C0%2C0c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5C428.1%2C75.5%2C427.5%2C76.1%2C426.5%2C76.1z%20M463.8%2C67.1c-0.2%2C0-0.4%2C0-0.7-0.1c-1.5-0.4-2.8-2-2.8-3.5%0D%0A%09%09%09c0-1.1%2C0.6-1.7%2C1.6-1.7c0.2%2C0%2C0.4%2C0%2C0.7%2C0.1c1.5%2C0.4%2C2.8%2C2%2C2.8%2C3.5C465.4%2C66.4%2C464.8%2C67.1%2C463.8%2C67.1z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M489.2%2C5.8c-0.3-1.7-1.8-3.4-3.5-3.8c-0.4-0.1-0.7-0.1-1-0.1c-1.7%2C0-2.8%2C1.2-2.8%2C2.9c0%2C2%2C1.6%2C4.1%2C3.6%2C4.6%0D%0A%09%09%09c0.4%2C0.1%2C0.7%2C0.1%2C1%2C0.1c1.5%2C0%2C2.6-1%2C2.8-2.4l17.2%2C4.6v-1.2L489.2%2C5.8z%20M486.4%2C8.3c-0.2%2C0-0.4%2C0-0.6-0.1c-1.5-0.4-2.7-2-2.7-3.4%0D%0A%09%09%09c0-1.3%2C1-2%2C2.3-1.6c1.5%2C0.4%2C2.7%2C2%2C2.7%2C3.4C488.1%2C7.6%2C487.4%2C8.3%2C486.4%2C8.3z%22%2F%3E%0D%0A%09%09%3Cpath%20class%3D%22st0%22%20d%3D%22M502.9%2C48.2L502.9%2C48.2c-0.1%2C0.2-0.3%2C0.3-0.4%2C0.4c-0.5%2C0.6-0.8%2C1.5-0.5%2C2.5l4.3%2C16.6v-4.1l-0.8-3.2l0.8%2C0.2%0D%0A%09%09%09v-1.2l-1.2-0.3l-2.1-8.1c-0.1-0.6%2C0-1.1%2C0.3-1.4c0.3-0.3%2C0.8-0.4%2C1.3-0.3l1.6%2C0.4v-1.3v-0.4v-1.3c-0.8%2C0.3-1.8%2C0.8-3%2C1.4%0D%0A%09%09%09L502.9%2C48.2z%22%2F%3E%0D%0A%09%3C%2Fg%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E%0D%0A);background-size:auto 180px}.Vlt-card__image--grid:before{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2047.2%2027%22%20style%3D%22enable-background%3Anew%200%200%2047.2%2027%3B%22%20xml%3Aspace%3D%22preserve%22%20fill%3D%22%23ffffff%22%3E%0D%0A%3Cpath%20class%3D%22st0%22%20d%3D%22M24.6%2C0L24.6%2C0l-2%2C0l0%2C0L0%2C12.9l0%2C0v1.2l0%2C0L22.6%2C27h2h0l22.6-12.9v0v-1.2L24.6%2C0z%20M23.6%2C26.4L1%2C13.5L23.6%2C0.6%0D%0A%09l22.6%2C12.9L23.6%2C26.4z%22%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A);background-size:auto 27px}.Vlt-card__image--tech:before{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%20800%20250%22%20style%3D%22enable-background%3Anew%200%200%20800%20250%3B%22%20xml%3Aspace%3D%22preserve%22%20fill%3D%22%23ffffff%22%3E%0D%0A%3Cg%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M684.5%2C189.4c-0.1-0.1-0.3-0.2-0.5-0.2H453.6c-0.2%2C0-0.4%2C0.1-0.5%2C0.2l-35.5%2C37.1c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.5v6.2%0D%0A%09%09c-2.4%2C0.4-4.2%2C2.5-4.2%2C5.1c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1c2.7%2C0%2C4.9-2.3%2C4.9-5.1c0-2.6-1.8-4.7-4.2-5.1v-5.9l35-36.7h229.9l56.5%2C58.4%0D%0A%09%09c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h62.5v-1.5H741L684.5%2C189.4z%20M421.7%2C238.3c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7%0D%0A%09%09S421.7%2C236.2%2C421.7%2C238.3z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M683.8%2C199.4H457.5c-0.2%2C0-0.4%2C0.1-0.5%2C0.2l-28%2C29.3c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.5v4c-2%2C0.7-3.4%2C2.6-3.4%2C4.9%0D%0A%09%09c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1l0%2C0v-3.4l27.6-28.8h225.7l46.5%2C48.6h2.1l-47.7-49.9%0D%0A%09%09C684.2%2C199.5%2C684%2C199.4%2C683.8%2C199.4z%20M430.2%2C234.6c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7%0D%0A%09%09C426.7%2C236.2%2C428.3%2C234.6%2C430.2%2C234.6z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M680.8%2C214.6H473c-0.2%2C0-0.4%2C0.1-0.5%2C0.2l-16.6%2C17.3c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.5v10.7l-5.9%2C6.2h2.1l5.1-5.3%0D%0A%09%09c0.1-0.1%2C0.2-0.3%2C0.2-0.5V233l16.1-16.9h207.2l32%2C33.5h2.1l-33.3-34.8C681.2%2C214.6%2C681%2C214.6%2C680.8%2C214.6z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M676.7%2C223.5H478.5c-0.2%2C0-0.4%2C0.1-0.5%2C0.2l-13%2C13.6c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.5v10.3l-1.2%2C1.3h2.1l0.4-0.5%0D%0A%09%09c0.1-0.1%2C0.2-0.3%2C0.2-0.5v-10.3l12.6-13.2h197.5l23.4%2C24.5h2.1l-24.7-25.8C677%2C223.6%2C676.9%2C223.5%2C676.7%2C223.5z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M132.5%2C244.4c0-2.8-2.2-5.1-4.9-5.1c-1.2%2C0-2.3%2C0.5-3.1%2C1.2L111.6%2C227c-0.1-0.1-0.3-0.2-0.5-0.2H91.7%0D%0A%09%09c-0.2%2C0-0.4%2C0.1-0.5%2C0.2l-6.4%2C6.7h-6.1l-9-9.5c-0.1-0.1-0.3-0.2-0.5-0.2H39.3l-10.6-11c-0.1-0.1-0.3-0.2-0.5-0.2H-0.1v1.5h28%0D%0A%09%09l10.6%2C11.1c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h29.8l9%2C9.5c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2H85c0.2%2C0%2C0.4-0.1%2C0.5-0.2l6.4-6.7h18.8l12.7%2C13.3%0D%0A%09%09c-0.5%2C0.8-0.8%2C1.8-0.8%2C2.8c0%2C2.7%2C2.1%2C5%2C4.7%2C5.1h0.5C130.4%2C249.4%2C132.5%2C247.2%2C132.5%2C244.4z%20M127.6%2C248.2c-2%2C0-3.6-1.7-3.6-3.7%0D%0A%09%09c0-2.1%2C1.6-3.7%2C3.6-3.7c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7C131.1%2C246.5%2C129.5%2C248.2%2C127.6%2C248.2z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M60.4%2C247.4H23.3c-0.2%2C0-0.4%2C0.1-0.5%2C0.2l-1.8%2C1.9h2.1l0.6-0.6h36.5l0.6%2C0.6h2.1l-1.8-1.9%0D%0A%09%09C60.8%2C247.5%2C60.6%2C247.4%2C60.4%2C247.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M12%2C250.6c3.2%2C0.1%2C5.8-2.8%2C5.9-6.3c0.1-3.6-2.5-6.5-5.6-6.6c-2.9-0.1-5.3%2C2.3-5.8%2C5.4L0%2C243v1.9l6.5%2C0.1%0D%0A%09%09C6.7%2C248.1%2C9.1%2C250.5%2C12%2C250.6z%20M12.2%2C239.4c2.3%2C0%2C4.1%2C2.2%2C4.1%2C4.8c-0.1%2C2.6-2%2C4.6-4.3%2C4.6s-4.1-2.2-4.1-4.8%0D%0A%09%09C8%2C241.5%2C9.9%2C239.4%2C12.2%2C239.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M62.6%2C240.8H30.2l-9-9.4c-0.1-0.1-0.3-0.2-0.5-0.2H-0.1v1.5h20.5l9%2C9.4c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h32.4l6.9%2C7.2%0D%0A%09%09h2.1l-8.2-8.5C62.9%2C240.9%2C62.8%2C240.8%2C62.6%2C240.8z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M103.5%2C244.4c0-2.8-2.2-5.1-4.9-5.1c-2.5%2C0-4.5%2C1.9-4.8%2C4.4H76.4l-10.7-11.1c-0.1-0.1-0.3-0.2-0.5-0.2H33.7%0D%0A%09%09L24%2C222.3c-0.1-0.1-0.3-0.2-0.5-0.2H-0.1v1.5h23.4l9.7%2C10.1c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2H65L75.6%2C245c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h17.7%0D%0A%09%09c0.3%2C2.4%2C2.2%2C4.2%2C4.6%2C4.4h0.5C101.4%2C249.4%2C103.5%2C247.2%2C103.5%2C244.4z%20M98.6%2C248.2c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7%0D%0A%09%09s3.6%2C1.7%2C3.6%2C3.7C102.1%2C246.5%2C100.5%2C248.2%2C98.6%2C248.2z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M139.5%2C179.5l-6.6-6.9c-0.1-0.1-0.3-0.2-0.5-0.2H48.9c-0.2%2C0-0.4%2C0.1-0.5%2C0.2l-7.4%2C7.7H-0.1v1.5h41.4%0D%0A%09%09c0.2%2C0%2C0.4-0.1%2C0.5-0.2l7.4-7.7h82.9l6.2%2C6.5v69.2h1.5V180C139.7%2C179.8%2C139.6%2C179.6%2C139.5%2C179.5z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M147.1%2C176.8l-12.5-13c-0.1-0.1-0.3-0.2-0.5-0.2H36c-0.2%2C0-0.4%2C0.1-0.5%2C0.2l-8.2%2C8.6H-0.1v1.5h27.7%0D%0A%09%09c0.2%2C0%2C0.4-0.1%2C0.5-0.2l8.2-8.6h97.4l12%2C12.6v71.9h1.5v-72.2C147.3%2C177.2%2C147.2%2C177%2C147.1%2C176.8z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M153.8%2C170.5l-14.3-14.9c-0.1-0.1-0.3-0.2-0.5-0.2H7.6l-7.7-8v2.2l6.9%2C7.2c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h131.4%0D%0A%09%09l13.9%2C14.5v78.3h1.5V171C154%2C170.8%2C153.9%2C170.6%2C153.8%2C170.5z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M162%2C167.2L143.6%2C148c-0.1-0.1-0.3-0.2-0.5-0.2H14.6l-14.7-15.4v2.2l13.9%2C14.5c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h128.5%0D%0A%09%09l17.9%2C18.8v81.5h1.5v-81.9C162.2%2C167.5%2C162.1%2C167.3%2C162%2C167.2z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M9.1%2C113.4h143.2l9.6%2C10c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h23.4l12.4%2C13v100l-1.6%2C1.7c-0.9-1-2.2-1.7-3.6-1.7%0D%0A%09%09c-2.7%2C0-4.9%2C2.3-4.9%2C5.1s2.2%2C5.1%2C4.9%2C5.1s4.9-2.3%2C4.9-5.1c0-0.8-0.2-1.5-0.5-2.2l2-2.1c0.1-0.1%2C0.2-0.3%2C0.2-0.5V136.3%0D%0A%09%09c0-0.2-0.1-0.4-0.2-0.5l-12.9-13.5c-0.1-0.1-0.3-0.2-0.5-0.2h-23.4l-9.6-10c-0.1-0.1-0.3-0.2-0.5-0.2H9.4l-9.5-9.9v2.2l8.7%2C9.1%0D%0A%09%09C8.7%2C113.3%2C8.9%2C113.4%2C9.1%2C113.4z%20M193%2C245.5c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7%0D%0A%09%09C196.6%2C243.9%2C195%2C245.5%2C193%2C245.5z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M14%2C102.5h142.5l7.2%2C7.5c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h34.9l11.1%2C11.6v39c0%2C0.2%2C0.1%2C0.4%2C0.2%2C0.5l14.9%2C15.6v24.6%0D%0A%09%09c-2.4%2C0.4-4.2%2C2.5-4.2%2C5.1c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1s4.9-2.3%2C4.9-5.1c0-2.6-1.8-4.7-4.2-5.1v-24.9c0-0.2-0.1-0.4-0.2-0.5l-14.9-15.6%0D%0A%09%09v-39c0-0.2-0.1-0.4-0.2-0.5l-11.5-12.1c-0.1-0.1-0.3-0.2-0.5-0.2h-34.9l-7.2-7.5c-0.1-0.1-0.3-0.2-0.5-0.2H14.3L-0.1%2C85.9V88%0D%0A%09%09l13.6%2C14.2C13.6%2C102.4%2C13.8%2C102.5%2C14%2C102.5z%20M229.7%2C206.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7%0D%0A%09%09C228.1%2C202.9%2C229.7%2C204.6%2C229.7%2C206.7z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M6.6%2C29.5l43.6%2C45.6c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h106.1c0.4%2C2.5%2C2.4%2C4.4%2C4.8%2C4.4c2.7%2C0%2C4.9-2.3%2C4.9-5.1%0D%0A%09%09c0-2.8-2.2-5.1-4.9-5.1c-2.5%2C0-4.5%2C1.9-4.8%2C4.4H51L7.8%2C28.6V-0.7H6.3V29C6.3%2C29.2%2C6.4%2C29.4%2C6.6%2C29.5z%20M161.6%2C70.8%0D%0A%09%09c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7S159.6%2C70.8%2C161.6%2C70.8z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M19.7%2C24.2l36.9%2C38.6c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h102.2c0.2%2C0%2C0.4-0.1%2C0.5-0.2l6.6-6.9c0.7%2C0.4%2C1.5%2C0.6%2C2.3%2C0.6%0D%0A%09%09c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1s-4.9%2C2.3-4.9%2C5.1c0%2C1.4%2C0.5%2C2.7%2C1.4%2C3.6l-6.2%2C6.5H57.5L21%2C23.4V-0.7h-1.5v24.4%0D%0A%09%09C19.5%2C23.9%2C19.6%2C24.1%2C19.7%2C24.2z%20M165.2%2C51.4c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7%0D%0A%09%09C166.8%2C55.2%2C165.2%2C53.5%2C165.2%2C51.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M42.7%2C14.4c-0.8-0.5-1.6-0.8-2.6-0.8c-2.7%2C0-4.9%2C2.3-4.9%2C5.1s2.2%2C5.1%2C4.9%2C5.1s4.9-2.3%2C4.9-5.1%0D%0A%09%09c0-1.3-0.5-2.5-1.2-3.4l5.1-5.3c0.1-0.1%2C0.2-0.3%2C0.2-0.5V-0.7h-1.5v10L42.7%2C14.4z%20M40.1%2C22.5c-2%2C0-3.6-1.7-3.6-3.7%0D%0A%09%09c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7C43.7%2C20.8%2C42.1%2C22.5%2C40.1%2C22.5z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M57.5%2C10.9l4.5%2C4.8c-0.6%2C0.9-1%2C1.9-1%2C3c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1%0D%0A%09%09c-1.1%2C0-2.1%2C0.4-2.9%2C1l-4.3-4.5V-0.7h-1.5v11.1C57.3%2C10.6%2C57.4%2C10.8%2C57.5%2C10.9z%20M66%2C15c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7%0D%0A%09%09s-3.6-1.7-3.6-3.7S64%2C15%2C66%2C15z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M85.3%2C7l9.2%2C9.6c-0.3%2C0.6-0.4%2C1.3-0.4%2C2.1c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1%0D%0A%09%09c-1.5%2C0-2.8%2C0.7-3.7%2C1.8l-8.8-9.2v-6.9H85v7.2C85.1%2C6.7%2C85.2%2C6.9%2C85.3%2C7z%20M99%2C15c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7%0D%0A%09%09s-3.6-1.7-3.6-3.7S97%2C15%2C99%2C15z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M120.3%2C12.8l23.9%2C25c-0.3%2C0.7-0.5%2C1.4-0.5%2C2.3c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1s4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1%0D%0A%09%09c-1.4%2C0-2.7%2C0.6-3.6%2C1.6L121.5%2C12V-0.7H120v13C120.1%2C12.5%2C120.2%2C12.7%2C120.3%2C12.8z%20M148.6%2C36.4c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7%0D%0A%09%09c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7C145%2C38%2C146.6%2C36.4%2C148.6%2C36.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M133.3%2C12.7h10.4c0.4%2C2.5%2C2.4%2C4.4%2C4.8%2C4.4c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1c-2.5%2C0-4.5%2C1.9-4.8%2C4.4H134%0D%0A%09%09v-12h-1.5V12C132.6%2C12.4%2C132.9%2C12.7%2C133.3%2C12.7z%20M148.6%2C8.2c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7S145%2C14%2C145%2C11.9%0D%0A%09%09C145%2C9.9%2C146.6%2C8.2%2C148.6%2C8.2z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M288.9%2C222.1c0.1-0.1%2C0.2-0.3%2C0.2-0.5v-35.4c0-0.2-0.1-0.4-0.2-0.5l-81.1-84.9c-0.1-0.1-0.3-0.2-0.5-0.2h-39.8%0D%0A%09%09l-6.2-6.5c-0.1-0.1-0.3-0.2-0.5-0.2H19l-19.1-20V76l18.3%2C19.1c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h141.7l6.2%2C6.5c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h39.8%0D%0A%09%09l80.7%2C84.4v34.8l-25.7%2C26.9h-14c-0.2%2C0-0.4%2C0.1-0.5%2C0.2l-1.2%2C1.2h16.3c0.1%2C0%2C0.1-0.1%2C0.2-0.1L288.9%2C222.1z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M186.8%2C44.5l10.9%2C11.4c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2H213l2.9%2C3c-0.7%2C0.9-1.1%2C2-1.1%2C3.2c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1%0D%0A%09%09s4.9-2.3%2C4.9-5.1c0-2.8-2.2-5.1-4.9-5.1c-1%2C0-2%2C0.3-2.8%2C0.9l-3.1-3.3c-0.1-0.1-0.3-0.2-0.5-0.2h-14.8l-10.5-11V-0.7h-1.5V44%0D%0A%09%09C186.6%2C44.1%2C186.7%2C44.3%2C186.8%2C44.5z%20M219.8%2C58.6c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7%0D%0A%09%09C216.3%2C60.3%2C217.9%2C58.6%2C219.8%2C58.6z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M196.7%2C38.9l6.1%2C6.4c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h7.9c0.2%2C0%2C0.4-0.1%2C0.5-0.2l3-3.2c0.9%2C0.9%2C2.1%2C1.4%2C3.4%2C1.4%0D%0A%09%09c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1s-4.9%2C2.3-4.9%2C5.1c0%2C0.9%2C0.2%2C1.7%2C0.6%2C2.5l-3%2C3.1h-7.3l-5.7-6V-0.7h-1.5v39.1%0D%0A%09%09C196.5%2C38.5%2C196.6%2C38.7%2C196.7%2C38.9z%20M218.2%2C34.7c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7%0D%0A%09%09C214.6%2C36.4%2C216.2%2C34.7%2C218.2%2C34.7z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M243.2%2C74.8l31.9%2C33.4c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h48.5l5.7%2C6c-0.6%2C0.9-1%2C1.9-1%2C3.1c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1%0D%0A%09%09c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1c-1.1%2C0-2%2C0.4-2.9%2C1l-6-6.2c-0.1-0.1-0.3-0.2-0.5-0.2h-48.5l-31.5-32.9V-0.7h-1.5v75%0D%0A%09%09C242.9%2C74.4%2C243%2C74.6%2C243.2%2C74.8z%20M333.7%2C113.7c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7%0D%0A%09%09C330.1%2C115.4%2C331.7%2C113.7%2C333.7%2C113.7z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M254.9%2C69l22.8%2C23.8c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h50.7c0.4%2C2.5%2C2.4%2C4.4%2C4.8%2C4.4c2.7%2C0%2C4.9-2.3%2C4.9-5.1%0D%0A%09%09s-2.2-5.1-4.9-5.1c-2.5%2C0-4.5%2C1.9-4.8%2C4.4h-50.4l-22.4-23.4V-0.7h-1.5v69.2C254.7%2C68.7%2C254.7%2C68.8%2C254.9%2C69z%20M333.7%2C88.5%0D%0A%09%09c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7S331.7%2C88.5%2C333.7%2C88.5z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M273.1%2C44.8c0%2C0.2%2C0.1%2C0.4%2C0.2%2C0.5l17.4%2C18.2c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h7.3c0.2%2C2.6%2C2.3%2C4.7%2C4.9%2C4.7%0D%0A%09%09c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1c-2.4%2C0-4.3%2C1.7-4.8%2C4h-7l-16.9-17.7V-0.1l0.6-0.6h-2c0%2C0.1-0.1%2C0.2-0.1%2C0.3v45.2H273.1z%0D%0A%09%09%20M303.3%2C59.5c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7C299.8%2C61.2%2C301.4%2C59.5%2C303.3%2C59.5z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M281.6%2C5.8v33.4c0%2C0.2%2C0.1%2C0.4%2C0.2%2C0.5l7.8%2C8.2c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h8.3c0.4%2C2.5%2C2.4%2C4.4%2C4.8%2C4.4%0D%0A%09%09c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1c-2.5%2C0-4.5%2C1.9-4.8%2C4.4h-8l-7.4-7.8V6.1l6.5-6.8h-2.1l-5.7%2C6%0D%0A%09%09C281.7%2C5.4%2C281.6%2C5.6%2C281.6%2C5.8z%20M303.3%2C43.6c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7%0D%0A%09%09C299.8%2C45.3%2C301.4%2C43.6%2C303.3%2C43.6z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M314.3%2C37L328%2C51.3c-0.5%2C0.8-0.8%2C1.7-0.8%2C2.7c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1%0D%0A%09%09c-1.2%2C0-2.3%2C0.5-3.2%2C1.3l-13.4-14V-0.7H314v37.2C314.1%2C36.7%2C314.2%2C36.8%2C314.3%2C37z%20M332.2%2C50.3c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7%0D%0A%09%09c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7S330.2%2C50.3%2C332.2%2C50.3z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M323.3%2C21.5c0%2C0.2%2C0.1%2C0.4%2C0.2%2C0.5l3.7%2C3.9c-0.5%2C0.8-0.8%2C1.7-0.8%2C2.7c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1%0D%0A%09%09c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1c-1.2%2C0-2.3%2C0.5-3.2%2C1.3l-3.4-3.6V-0.3l0.4-0.4h-1.8c0%2C0%2C0%2C0%2C0%2C0.1L323.3%2C21.5L323.3%2C21.5z%0D%0A%09%09%20M331.4%2C24.9c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7C327.9%2C26.6%2C329.5%2C24.9%2C331.4%2C24.9z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M351.3%2C170.9c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.5v78.1h1.5v-77.8l69.6-72.8c0.1-0.1%2C0.2-0.3%2C0.2-0.5V-0.7H421v98.8%0D%0A%09%09L351.3%2C170.9z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M547.9%2C16.4v86.8c0%2C0.2%2C0.1%2C0.4%2C0.2%2C0.5l57.8%2C60.4c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2H699l13.9%2C14.5c-0.6%2C0.9-1%2C1.9-1%2C3%0D%0A%09%09c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1s4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1c-1.1%2C0-2.1%2C0.4-2.9%2C1L699.8%2C163c-0.1-0.1-0.3-0.2-0.5-0.2h-92.6l-57.3-60%0D%0A%09%09V16.7L566-0.7h-2.1l-15.8%2C16.6C548%2C16%2C547.9%2C16.2%2C547.9%2C16.4z%20M716.8%2C178.2c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7%0D%0A%09%09s-3.6-1.7-3.6-3.7C713.2%2C179.8%2C714.8%2C178.2%2C716.8%2C178.2z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M360.4%2C172.6c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.5v76.4h1.5v-76.1L477.5%2C52.3c0.1-0.1%2C0.2-0.3%2C0.2-0.5V-0.7h-1.5v52.2%0D%0A%09%09L360.4%2C172.6z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M393.3%2C56.1c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1c2.7%2C0%2C4.9-2.3%2C4.9-5.1c0-2.6-1.8-4.7-4.2-5.1V-0.7h-1.5v51.8%0D%0A%09%09C395.2%2C51.4%2C393.3%2C53.6%2C393.3%2C56.1z%20M401.8%2C56.1c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7%0D%0A%09%09S401.8%2C54.1%2C401.8%2C56.1z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M450.6%2C21.2c2.7%2C0%2C4.9-2.3%2C4.9-5.1s-2.2-5.1-4.9-5.1c-2.7%2C0-4.9%2C2.3-4.9%2C5.1S447.9%2C21.2%2C450.6%2C21.2z%0D%0A%09%09%20M450.6%2C12.3c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7S447%2C18%2C447%2C16C447.1%2C14%2C448.7%2C12.3%2C450.6%2C12.3z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M481.2%2C237.5c-2.7%2C0-4.9%2C2.3-4.9%2C5.1s2.2%2C5.1%2C4.9%2C5.1c2.7%2C0%2C4.9-2.3%2C4.9-5.1S483.9%2C237.5%2C481.2%2C237.5z%0D%0A%09%09%20M481.2%2C246.4c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7C484.8%2C244.7%2C483.2%2C246.4%2C481.2%2C246.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M515%2C237.5c-2.7%2C0-4.9%2C2.3-4.9%2C5.1s2.2%2C5.1%2C4.9%2C5.1s4.9-2.3%2C4.9-5.1S517.7%2C237.5%2C515%2C237.5z%20M515%2C246.4%0D%0A%09%09c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7S517%2C246.4%2C515%2C246.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M583.1%2C237.5c-2.7%2C0-4.9%2C2.3-4.9%2C5.1s2.2%2C5.1%2C4.9%2C5.1s4.9-2.3%2C4.9-5.1S585.8%2C237.5%2C583.1%2C237.5z%20M583.1%2C246.4%0D%0A%09%09c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7C586.7%2C244.7%2C585.1%2C246.4%2C583.1%2C246.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M382.3%2C86.2c2.7%2C0%2C4.9-2.3%2C4.9-5.1c0-2.8-2.2-5.1-4.9-5.1c-2.7%2C0-4.9%2C2.3-4.9%2C5.1%0D%0A%09%09C377.3%2C83.9%2C379.6%2C86.2%2C382.3%2C86.2z%20M382.3%2C77.4c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7%0D%0A%09%09C378.7%2C79%2C380.3%2C77.4%2C382.3%2C77.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M297.9%2C225.2v-63.8c0-0.2-0.1-0.4-0.2-0.5l-66.5-69.5c-0.1-0.1-0.3-0.2-0.5-0.2h-60l-5.9-6.2%0D%0A%09%09c-0.1-0.1-0.3-0.2-0.5-0.2H28.8L-0.1%2C54.4v2.2L28%2C86c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2H164l5.9%2C6.2c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h60l66%2C69.1v63.2%0D%0A%09%09l-23.6%2C24.7h2.1l22.8-23.8C297.9%2C225.6%2C297.9%2C225.4%2C297.9%2C225.2z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M366.7%2C4.8v131.5L311%2C194.5c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.5v54.5h1.5v-54.2l55.7-58.2c0.1-0.1%2C0.2-0.3%2C0.2-0.5V5.1%0D%0A%09%09l5.6-5.8h-2.1l-4.8%2C5C366.8%2C4.4%2C366.7%2C4.6%2C366.7%2C4.8z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M494.8%2C5.4V47L370.2%2C177.4c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.5v71.7h1.5v-71.3L496%2C47.9c0.1-0.1%2C0.2-0.3%2C0.2-0.5V5.8%0D%0A%09%09l6.2-6.5h-2.1L495%2C4.9C494.9%2C5%2C494.8%2C5.2%2C494.8%2C5.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M509.5%2C4.8v39.5l-131.9%2C138c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.5v66.7h1.5v-66.4l131.9-138c0.1-0.1%2C0.2-0.3%2C0.2-0.5V5.1%0D%0A%09%09l5.6-5.8h-2.1l-4.8%2C5C509.6%2C4.4%2C509.5%2C4.6%2C509.5%2C4.8z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M521%2C14.5v36.3L389.2%2C188.7c-0.1%2C0.1-0.2%2C0.3-0.2%2C0.5v60.4h1.5v-60l131.8-138c0.1-0.1%2C0.2-0.3%2C0.2-0.5V14.8%0D%0A%09%09l14.9-15.5h-2.1l-14%2C14.7C521.1%2C14.1%2C521%2C14.3%2C521%2C14.5z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M169.8%2C149.6l-20.3-21.2c-0.1-0.1-0.3-0.2-0.5-0.2H91.2c-0.4-2.5-2.4-4.4-4.8-4.4c-2.7%2C0-4.9%2C2.3-4.9%2C5.1%0D%0A%09%09c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1c2.5%2C0%2C4.5-1.9%2C4.8-4.4h57.5l19.8%2C20.7v99.1h1.5V150C170%2C149.9%2C170%2C149.8%2C169.8%2C149.6z%20M86.4%2C132.7%0D%0A%09%09c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7S90%2C127%2C90%2C129S88.4%2C132.7%2C86.4%2C132.7z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M303.3%2C9.5c-2.7%2C0-4.9%2C2.3-4.9%2C5.1s2.2%2C5.1%2C4.9%2C5.1c2.7%2C0%2C4.9-2.3%2C4.9-5.1S306%2C9.5%2C303.3%2C9.5z%20M303.3%2C18.4%0D%0A%09%09c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7S305.3%2C18.4%2C303.3%2C18.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M210.3%2C9.5c-2.7%2C0-4.9%2C2.3-4.9%2C5.1s2.2%2C5.1%2C4.9%2C5.1s4.9-2.3%2C4.9-5.1S213%2C9.5%2C210.3%2C9.5z%20M210.3%2C18.4%0D%0A%09%09c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7C213.9%2C16.7%2C212.3%2C18.4%2C210.3%2C18.4z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M99%2C41.9c-2.7%2C0-4.9%2C2.3-4.9%2C5.1s2.2%2C5.1%2C4.9%2C5.1c2.7%2C0%2C4.9-2.3%2C4.9-5.1S101.7%2C41.9%2C99%2C41.9z%20M99%2C50.8%0D%0A%09%09c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7S101%2C50.8%2C99%2C50.8z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M175.9%2C144c0-0.2-0.1-0.4-0.2-0.5l-22.2-23.2c-0.1-0.1-0.3-0.2-0.5-0.2H75.4c-0.2%2C0-0.4%2C0.1-0.5%2C0.2l-11%2C11.5%0D%0A%09%09H14.3l-14.4-15.1v2.2l13.6%2C14.2c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h50.1c0.2%2C0%2C0.4-0.1%2C0.5-0.2l11-11.5h76.9l21.8%2C22.8V245%0D%0A%09%09c0%2C0.2%2C0.1%2C0.4%2C0.2%2C0.5l3.8%2C4h2.1l-4.7-4.9V144H175.9z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M641.2%2C109.2V54c0-0.2-0.1-0.4-0.2-0.5l-25.2-26.4c1-0.9%2C1.6-2.3%2C1.6-3.8c0-2.8-2.2-5.1-4.9-5.1%0D%0A%09%09s-4.9%2C2.3-4.9%2C5.1s2.2%2C5.1%2C4.9%2C5.1c0.7%2C0%2C1.4-0.2%2C2-0.5l25.2%2C26.4v55.1c0%2C0.2%2C0.1%2C0.4%2C0.2%2C0.5L662%2C133c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2%0D%0A%09%09h140.7v-1.5H662.9L641.2%2C109.2z%20M612.5%2C27c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7%0D%0A%09%09C616.1%2C25.4%2C614.5%2C27%2C612.5%2C27z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M612.5%2C4.9c0.9%2C0%2C1.8-0.3%2C2.5-0.7l45.1%2C47.1v50.5c0%2C0.2%2C0.1%2C0.4%2C0.2%2C0.5l19.9%2C20.8c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2%0D%0A%09%09h122.6v-1.5H681l-19.4-20.3V51c0-0.2-0.1-0.4-0.2-0.5L616.1%2C3.2c0.8-0.9%2C1.3-2.1%2C1.3-3.4c0-0.2%2C0-0.3%2C0-0.5H616c0%2C0.2%2C0%2C0.3%2C0%2C0.5%0D%0A%09%09c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7c0-0.2%2C0-0.3%2C0-0.5h-1.3c0%2C0.2%2C0%2C0.3%2C0%2C0.5C607.6%2C2.6%2C609.8%2C4.9%2C612.5%2C4.9z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M676.5%2C87.5l16.7%2C17.4c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h109.6v-1.5H693.9l-16.2-17V-0.7h-1.5V87%0D%0A%09%09C676.2%2C87.2%2C676.3%2C87.4%2C676.5%2C87.5z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M773.2%2C69.3c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1s4.9-2.3%2C4.9-5.1c0-2.6-1.8-4.7-4.2-5.1V-0.7h-1.5v64.9%0D%0A%09%09C775%2C64.6%2C773.2%2C66.7%2C773.2%2C69.3z%20M781.7%2C69.3c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7%0D%0A%09%09C780.1%2C65.5%2C781.7%2C67.2%2C781.7%2C69.3z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M737.1%2C43.8l17.5%2C18.3v19c-2.4%2C0.4-4.2%2C2.5-4.2%2C5.1c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1s4.9-2.3%2C4.9-5.1%0D%0A%09%09c0-2.6-1.8-4.7-4.2-5.1V61.8c0-0.2-0.1-0.4-0.2-0.5L738.3%2C43V-0.7h-1.5v44C736.9%2C43.4%2C737%2C43.6%2C737.1%2C43.8z%20M758.9%2C86.1%0D%0A%09%09c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7S758.9%2C84.1%2C758.9%2C86.1z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M725.9%2C72.8c-1.4%2C0-2.7%2C0.7-3.6%2C1.7l-13.4-14V16.7c2.4-0.4%2C4.2-2.5%2C4.2-5.1c0-2.8-2.2-5.1-4.9-5.1%0D%0A%09%09s-4.9%2C2.3-4.9%2C5.1c0%2C2.6%2C1.8%2C4.7%2C4.2%2C5.1v44.1c0%2C0.2%2C0.1%2C0.4%2C0.2%2C0.5l13.8%2C14.4c-0.3%2C0.7-0.5%2C1.4-0.5%2C2.2c0%2C2.8%2C2.2%2C5.1%2C4.9%2C5.1%0D%0A%09%09s4.9-2.3%2C4.9-5.1C730.9%2C75.1%2C728.6%2C72.8%2C725.9%2C72.8z%20M704.6%2C11.6c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7%0D%0A%09%09C706.2%2C15.4%2C704.6%2C13.7%2C704.6%2C11.6z%20M725.9%2C81.7c-2%2C0-3.6-1.7-3.6-3.7c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7%0D%0A%09%09S727.9%2C81.7%2C725.9%2C81.7z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M770.4%2C151.7l-18.3%2C19.2h-14.9L714%2C146.6c-0.1-0.1-0.3-0.2-0.5-0.2h-75.3l-52.8-55.3V49.9%0D%0A%09%09c2.5-0.2%2C4.6-2.4%2C4.6-5.1c0-2.8-2.2-5.1-4.9-5.1s-4.9%2C2.3-4.9%2C5.1c0%2C2.4%2C1.6%2C4.5%2C3.8%2C5v41.6c0%2C0.2%2C0.1%2C0.4%2C0.2%2C0.5l53.2%2C55.7%0D%0A%09%09c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h75.3l23.2%2C24.3c0.1%2C0.1%2C0.3%2C0.2%2C0.5%2C0.2h15.5c0.2%2C0%2C0.4-0.1%2C0.5-0.2l18.3-19.2h32v-1.5H771%0D%0A%09%09C770.8%2C151.5%2C770.6%2C151.6%2C770.4%2C151.7z%20M581.4%2C44.8c0-2.1%2C1.6-3.7%2C3.6-3.7s3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7%0D%0A%09%09S581.4%2C46.8%2C581.4%2C44.8z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M612.8%2C86.9c2.7%2C0%2C4.9-2.3%2C4.9-5.1c0-2.8-2.2-5.1-4.9-5.1s-4.9%2C2.3-4.9%2C5.1C607.9%2C84.6%2C610.1%2C86.9%2C612.8%2C86.9z%0D%0A%09%09%20M612.8%2C78c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7S610.8%2C78%2C612.8%2C78z%22%2F%3E%0D%0A%09%3Cpath%20class%3D%22st0%22%20d%3D%22M759.6%2C229.4c2.5%2C0%2C4.5-1.9%2C4.8-4.4h38.8v-1.5h-38.8c-0.4-2.5-2.4-4.4-4.8-4.4c-2.7%2C0-4.9%2C2.3-4.9%2C5.1%0D%0A%09%09C754.6%2C227.1%2C756.8%2C229.4%2C759.6%2C229.4z%20M759.6%2C220.6c2%2C0%2C3.6%2C1.7%2C3.6%2C3.7c0%2C2.1-1.6%2C3.7-3.6%2C3.7s-3.6-1.7-3.6-3.7%0D%0A%09%09C756%2C222.2%2C757.6%2C220.6%2C759.6%2C220.6z%22%2F%3E%0D%0A%3C%2Fg%3E%0D%0A%3C%2Fsvg%3E%0D%0A);background-size:auto 250px}.Vlt-card__image__icon{background:#fff;border-radius:4px;box-shadow:0 4px 4px 0 rgba(19,20,21,.14);height:60px;width:60px}.Vlt-card__image__icon img,.Vlt-card__image__icon svg{height:40px;margin:10px;width:40px}.Vlt-card__image--blue{background:linear-gradient(to right,#5685a4,#3b5c72)}.Vlt-card__image--blue .Vlt-card__image__icon svg{fill:#4d7793}.Vlt-card__image--blue-light{background:linear-gradient(to right,#78abcb,#4587b2)}.Vlt-card__image--blue-light .Vlt-card__image__icon svg{fill:#669fc4}.Vlt-card__image--red{background:linear-gradient(to right,#eb5c5c,#de1c1c)}.Vlt-card__image--red .Vlt-card__image__icon svg{fill:#e84545}.Vlt-card__image--orange{background:linear-gradient(to right,#fb9c86,#f9603b)}.Vlt-card__image--orange .Vlt-card__image__icon svg{fill:#fa7454}.Vlt-card__image--indigo{background:linear-gradient(to right,#df31a8,#aa1a7c)}.Vlt-card__image--indigo .Vlt-card__image__icon svg{fill:#d6219c}.Vlt-card__image--green{background:linear-gradient(to right,#07d387,#048957)}.Vlt-card__image--green .Vlt-card__image__icon svg{fill:#06ba77}.Vlt-card__image--purple{background:linear-gradient(to right,#c593ff,#9c46ff)}.Vlt-card__image--purple .Vlt-card__image__icon svg{fill:#b779ff}.Vlt-card__image--teal{background:linear-gradient(to right,#60cad7,#2facbc)}.Vlt-card__image--teal .Vlt-card__image__icon svg{fill:#4cc3d2}.Vlt-card__image .Vlt-grid{width:calc(100% - 146px)}.Vlt-card__image .Vlt-progress{width:calc(100% - 176px)}@media only screen and (max-width:767px){.Vlt-card__image .Vlt-grid{width:calc(100% - 16px)}.Vlt-card__image .Vlt-grid .Vlt-col{margin:0}.Vlt-card__image .Vlt-progress{width:calc(100% - 48px)}}.Vlt-card__header{padding-bottom:16px}.Vlt-card__header .Vlt-btn,.Vlt-card__header .Vlt-dropdown__btn,.Vlt-card__header h1,.Vlt-card__header h2,.Vlt-card__header h3,.Vlt-card__header h4,.Vlt-card__header h5{margin:0!important}.Vlt-card__footer{border-top:1px solid rgba(19,20,21,.1);margin:16px -8px -8px;padding-top:16px}.Vlt-card__footer .Vlt-btn{margin-bottom:0;margin-top:0}.Vlt-card__footer--short{margin-bottom:-12px;margin-top:16px;padding-top:8px}.Vlt-card__footer--noborder{border:0;margin-top:0}.Vlt-card--scrollable{display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column}.Vlt-card--scrollable .Vlt-card__footer{-ms-flex-negative:0;flex-shrink:0;margin-top:0}.Vlt-card--scrollable .Vlt-card__header,.Vlt-card--scrollable .Vlt-card__image{-ms-flex-negative:0;flex-shrink:0;margin-bottom:0}.Vlt-card--scrollable .Vlt-card__header+.Vlt-card__content,.Vlt-card--scrollable .Vlt-card__image+.Vlt-card__content{padding-top:16px}.Vlt-card--scrollable .Vlt-card__content{-ms-flex:auto;flex:auto;overflow-y:auto;padding-bottom:16px}.Vlt-card--stretch{height:100%}.Vlt-card__cta{margin-bottom:-8px;text-align:center}.Vlt-card__content .Vlt-icon--larger:first-child,.Vlt-card__content .Vlt-icon--largest:first-child{margin-bottom:24px}.Vlt-card__corner{font-size:1.1rem;font-weight:600;line-height:1.8rem;padding-right:23px;position:absolute;right:24px;top:24px}.Vlt-card__corner>svg{height:18px;position:absolute;right:0;top:0;width:18px}.Vlt-card__corner .Vlt-btn{margin:0;margin-right:-23px}.Vlt-card--clickable,a.Vlt-card{cursor:pointer;transition:transform .1s}.Vlt-card--clickable:hover,a.Vlt-card:hover{transform:scale(1.022)}.Vlt-card--clickable:active,a.Vlt-card:active{transform:scale(1)}.Vlt-text-separator{display:block;line-height:1.6rem;margin:16px 0;overflow:hidden;text-align:center}.Vlt-text-separator span{color:#131415;font-size:1.2rem;font-weight:600;padding:0 8px;position:relative}.Vlt-text-separator span:after,.Vlt-text-separator span:before{background:#e1e2e6;content:'';display:block;height:1px;position:absolute;top:50%;width:100vw}.Vlt-text-separator span:before{right:100%}.Vlt-text-separator span:after{left:100%}.Vlt-text-separator--red span{color:#e84545;font-weight:600}.Vlt-text-separator--red span:after,.Vlt-text-separator--red span:before{background:#f79ca6}.Vlt-text-separator--big{line-height:2.1rem}.Vlt-text-separator--big span{font-size:1.4rem;font-weight:600}@keyframes scaleUp{0%{opacity:0;transform:scale(.8) translateY(1000px)}100%{opacity:1;transform:scale(1) translateY(0)}}@keyframes scaleDown{0%{opacity:1;transform:scale(1) translateY(0)}100%{opacity:0;transform:scale(.8) translateY(1000px)}}.Vlt-modal{-ms-flex-align:center;align-items:center;background:0 0;display:-ms-flexbox;display:flex;height:100vh;-ms-flex-pack:center;justify-content:center;left:0;position:fixed;top:0;transform:scale(0);transition:background .5s;width:100vw;z-index:99999999999}.Vlt-modal__panel{background:#fff;border-radius:6px;box-shadow:0 30px 40px rgba(19,20,21,.2);display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column;max-height:95vh;padding:32px;position:relative;width:calc(100vw - 20px)}@media only screen and (min-width:576px){.Vlt-modal__panel{width:400px}}@media only screen and (max-width:575px){.Vlt-modal__panel{margin-bottom:80px;margin-top:80px;max-height:calc(70vh)}}.Vlt-modal__panel p{color:#131415}.Vlt-modal__header{-ms-flex-negative:0;flex-shrink:0;padding-bottom:8px}.Vlt-modal__header .Vlt-icon{margin-bottom:24px}.Vlt-modal__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:100%;border:0;box-shadow:none;cursor:pointer;height:24px;opacity:1;position:absolute;right:16px;top:16px;transition:opacity .2s;width:24px}.Vlt-modal__dismiss:hover{opacity:.6}.Vlt-modal__footer{-ms-flex-negative:0;flex-shrink:0;margin-bottom:-8px}.Vlt-modal__footer--small{margin:0 -20px -20px;padding-top:4px;position:relative}.Vlt-modal__footer--small:before{bottom:-12px;content:'';left:-12px;position:absolute;right:-12px;top:0}.Vlt-modal__footer .Vlt-btn{margin-bottom:0;min-width:75px}.Vlt-modal_visible{background:rgba(19,20,21,.5);opacity:1;transform:scale(1) translateY(0)}.Vlt-modal_visible .Vlt-modal__panel{animation:scaleUp .5s cubic-bezier(.165,.84,.44,1) forwards}.Vlt-modal--out{background:0 0;opacity:0;transform:scale(0)}.Vlt-modal--out .Vlt-modal__panel{animation:scaleDown .5s cubic-bezier(.165,.84,.44,1) forwards}@media only screen and (min-width:576px){.Vlt-modal--large .Vlt-modal__panel{width:630px}}.Vlt-modal--message{text-align:center}.Vlt-modal--message .Vlt-modal__content{text-align:center}.Vlt-modal__content{-webkit-overflow-scrolling:touch;-ms-flex:auto;flex:auto;max-height:calc(95vh - 122px);overflow-x:hidden;overflow-y:auto;padding-bottom:24px}.Vlt-modal__content--message{text-align:center}.Vlt-modal--form{text-align:left}.Vlt-modal--small .Vlt-modal__header .Vlt-icon{margin-bottom:16px}.Vlt-modal--small .Vlt-modal__panel{padding:24px}.Vlt-modal--small .Vlt-modal__sticky{padding:16px 0;position:relative}.Vlt-modal--small .Vlt-modal__sticky:before{background-color:#e1e2e6;content:'';height:1px;left:-24px;position:absolute;right:-24px;top:0}.Vlt-modal--small .Vlt-modal__footer--small{margin:0 -12px -12px}body.Vlt-body--modal-open{overflow:hidden}body.Vlt-body--modal-open main{overflow:hidden}.Vlt-accordion__content,.Vlt-js-accordion__content{height:0;overflow:hidden;transition:height .3s}.Vlt-accordion__content_open,.Vlt-js-accordion__content_open{height:auto;overflow:visible}.Vlt-js-accordion__trigger{cursor:pointer}.Vlt-accordion{border-bottom:1px solid #9b9da3}.Vlt-accordion__trigger{border-top:1px solid #9b9da3;cursor:pointer;display:-ms-flexbox;display:flex;font-size:1.8rem;font-weight:800;line-height:2.4rem;padding:15px 24px 15px 0;position:relative;text-align:left;transition:margin .2s;width:100%}.Vlt-accordion__trigger:first-child{border-top:0}.Vlt-accordion__trigger span{-ms-flex:1;flex:1}.Vlt-accordion__trigger svg{-ms-flex:0 0 24px;flex:0 0 24px;height:24px;margin-right:24px;width:24px}.Vlt-accordion__trigger:after,.Vlt-accordion__trigger:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2020%2020%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M3.38326%207.96544C3.58628%207.68629%203.97717%207.62457%204.25632%207.82759L9.99983%2012.0047L15.7433%207.82759C16.0225%207.62457%2016.4134%207.68629%2016.6164%207.96544C16.8194%208.2446%2016.7577%208.63549%2016.4785%208.83851L10.3674%2013.283C10.1483%2013.4423%209.85138%2013.4423%209.63222%2013.283L3.52111%208.83851C3.24195%208.63549%203.18023%208.2446%203.38326%207.96544Z%22%2F%3E%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:22px;content:'';display:block;-ms-flex:0 0 24px;flex:0 0 24px;height:24px;width:24px}.Vlt-accordion__trigger:after{position:absolute;right:0;transition:transform .2s}.Vlt-accordion__trigger:before{display:none}.Vlt-accordion__trigger_active+.Vlt-accordion__content+.Vlt-accordion__trigger{margin-top:23px}.Vlt-accordion__trigger_active:after,.Vlt-accordion__trigger_active:before{transform:rotate(180deg)}.Vlt-accordion__trigger--noborder+.Vlt-accordion__content{border-bottom:0}.Vlt-accordion--chevron-left .Vlt-accordion__content,.Vlt-accordion--icons .Vlt-accordion__content,.Vlt-accordion--plus-minus .Vlt-accordion__content{padding-left:48px}.Vlt-accordion--chevron-left .Vlt-accordion__trigger:before,.Vlt-accordion--plus-minus .Vlt-accordion__trigger:before{display:block;margin-right:24px}.Vlt-accordion--chevron-left .Vlt-accordion__trigger:after,.Vlt-accordion--plus-minus .Vlt-accordion__trigger:after{display:none}.Vlt-accordion--plus-minus .Vlt-accordion__trigger{-ms-flex-pack:left;justify-content:left}.Vlt-accordion--plus-minus .Vlt-accordion__trigger:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M12.75%203.5C12.75%203.08579%2012.4142%202.75%2012%202.75C11.5858%202.75%2011.25%203.08579%2011.25%203.5V11.25H3.5C3.08579%2011.25%202.75%2011.5858%202.75%2012C2.75%2012.4142%203.08579%2012.75%203.5%2012.75H11.25V20.5C11.25%2020.9141%2011.5858%2021.25%2012%2021.25C12.4142%2021.25%2012.75%2020.9141%2012.75%2020.5V12.75H20.5C20.9141%2012.75%2021.25%2012.4142%2021.25%2012C21.25%2011.5858%2020.9141%2011.25%2020.5%2011.25H12.75V3.5Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-accordion--plus-minus .Vlt-accordion__trigger_active:before{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M3.5%2011C3.08579%2011%202.75%2011.3358%202.75%2011.75C2.75%2012.1642%203.08579%2012.5%203.5%2012.5H20.5C20.9141%2012.5%2021.25%2012.1642%2021.25%2011.75C21.25%2011.3358%2020.9141%2011%2020.5%2011H3.5Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);transform:none}.Vlt-accordion__content:last-of-type.Vlt-accordion__content_open{padding-bottom:28px}.Vlt-accordion__content--noborder{border:0}.Vlt-accordion--large .Vlt-accordion__trigger{font-size:2rem;line-height:2.5rem;padding:19px 24px 20px 0}.Vlt-accordion--large .Vlt-accordion__trigger_active+.Vlt-accordion__content+.Vlt-accordion__trigger{margin-top:28px}.Vlt-spinner{display:inline-block;height:64px;margin:8px;position:relative;width:64px}.Vlt-spinner:after,.Vlt-spinner:before{animation:spinner 1.2s cubic-bezier(.5,0,.5,1) infinite;border:6px solid #131415;border-color:#131415 transparent transparent;border-radius:50%;box-sizing:border-box;content:'';display:block;height:75%;margin:6px;position:absolute;width:75%}.Vlt-spinner:after{animation-delay:-.1s}.Vlt-spinner--small{height:32px;width:32px}.Vlt-spinner--small:after,.Vlt-spinner--small:before{border-width:3px;margin:3px}.Vlt-spinner--smaller{height:20px;width:20px}.Vlt-spinner--smaller:after,.Vlt-spinner--smaller:before{border-width:2px;margin:2px}.Vlt-spinner--middle{vertical-align:middle}.Vlt-spinner--center{display:block;margin:0 auto}.Vlt-spinner--white:after,.Vlt-spinner--white:before{border-color:#fff transparent transparent}.Vlt-btn .Vlt-spinner{height:20px;margin:-3px 6px 0 0;vertical-align:middle;width:20px}.Vlt-btn .Vlt-spinner:after,.Vlt-btn .Vlt-spinner:before{border-width:2px;margin:2px}.Vlt-btn--large .Vlt-spinner{height:24px;width:24px}.Vlt-btn--small .Vlt-spinner{height:18px;margin-top:-4px;width:18px}@keyframes spinner{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.Vlt-empty{-ms-flex-align:center;align-items:center;display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;height:100%;-ms-flex-pack:center;justify-content:center;padding:16px 0;text-align:center;width:100%}.Vlt-empty:before{background-image:url(data:image/svg+xml,%3Csvg%20width%3D%22120%22%20height%3D%22120%22%20viewBox%3D%220%200%20120%20120%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Ccircle%20cx%3D%2260%22%20cy%3D%2260%22%20r%3D%2260%22%20fill%3D%22%23E1E2E6%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M42.75%2038.4375C42.75%2037.6436%2043.3936%2037%2044.1875%2037H75.812C76.606%2037%2077.25%2037.6436%2077.25%2038.4375C77.25%2039.2314%2076.606%2039.875%2075.812%2039.875H44.1875C43.3936%2039.875%2042.75%2039.2314%2042.75%2038.4375ZM49.938%2054.25C50.731%2054.25%2051.375%2054.8936%2051.375%2055.6875V60H68.625V55.6875C68.625%2054.8936%2069.269%2054.25%2070.062%2054.25C70.856%2054.25%2071.5%2054.8936%2071.5%2055.6875V61.438C71.5%2062.231%2070.856%2062.875%2070.062%2062.875H49.938C49.144%2062.875%2048.5%2062.231%2048.5%2061.438V55.6875C48.5%2054.8936%2049.144%2054.25%2049.938%2054.25ZM38.4375%2045.625C37.6436%2045.625%2037%2046.2686%2037%2047.0625V78.688C37%2079.481%2037.6436%2080.125%2038.4375%2080.125H81.562C82.356%2080.125%2083%2079.481%2083%2078.688V47.0625C83%2046.2686%2082.356%2045.625%2081.562%2045.625H38.4375ZM39.875%2077.25V48.5H80.125V77.25H39.875Z%22%20fill%3D%22%23131415%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';-ms-flex:0 0 100%;flex:0 0 100%;height:120px}.Vlt-empty__icon{background-color:#e1e2e6;border-radius:50%;display:block;height:120px;position:relative;width:120px}.Vlt-empty__icon svg{height:60px;left:30px;position:absolute;top:30px;width:60px}.Vlt-empty__header{-ms-flex:0 0 100%;flex:0 0 100%;font-size:1.6rem;font-weight:600;line-height:2.3rem;margin-bottom:-8px;margin-top:24px}.Vlt-empty__content{color:#131415;-ms-flex:0 0 100%;flex:0 0 100%;margin-top:16px}.Vlt-empty__content p{color:#131415}.Vlt-empty--search:before{background-image:url(data:image/svg+xml,%3Csvg%20width%3D%22120%22%20height%3D%22120%22%20viewBox%3D%220%200%20120%20120%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Ccircle%20cx%3D%2260%22%20cy%3D%2260%22%20r%3D%2260%22%20fill%3D%22%23E1E2E6%22%2F%3E%0A%3Cpath%20d%3D%22M39.875%2055.6875C39.875%2047.0625%2047.062%2039.875%2055.687%2039.875C64.312%2039.875%2071.5%2047.0625%2071.5%2055.6875C71.5%2064.312%2064.312%2071.5%2055.687%2071.5C47.062%2071.5%2039.875%2064.312%2039.875%2055.6875ZM55.687%2037C45.338%2037%2037%2045.3375%2037%2055.6875C37%2066.037%2045.338%2074.375%2055.687%2074.375C58.85%2074.375%2061.725%2073.512%2064.312%2072.075L74.663%2082.425C75.238%2083%2076.1%2083%2076.675%2082.425L82.425%2076.675C83%2076.1%2083%2075.238%2082.425%2074.663L72.075%2064.312C73.512%2061.725%2074.375%2058.85%2074.375%2055.6875C74.375%2045.3375%2066.037%2037%2055.687%2037Z%22%20fill%3D%22%23131415%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-empty--icon:before{display:none}.Vlt-steps{counter-reset:steps;display:-ms-inline-flexbox;display:inline-flex;-ms-flex-pack:center;justify-content:center;list-style:none;margin:0;overflow:visible;padding:0}.Vlt-steps--black .Vlt-steps__item--selected:before,.Vlt-steps--black .Vlt-steps__item_selected:before{background:#131415;border-color:#131415}.Vlt-steps--grey .Vlt-steps__item--selected:before,.Vlt-steps--grey .Vlt-steps__item_selected:before{background:#c2c4cc;border-color:#c2c4cc}.Vlt-steps--white .Vlt-steps__item:before{border-color:#fff;color:#fff}.Vlt-steps--white .Vlt-steps__item--selected:before,.Vlt-steps--white .Vlt-steps__item_selected:before{background:#fff;color:#131415}.Vlt-steps--orange .Vlt-steps__item--selected:before,.Vlt-steps--orange .Vlt-steps__item_selected:before{background:#fa7454;border-color:#fa7454}.Vlt-steps--blue .Vlt-steps__item--selected:before,.Vlt-steps--blue .Vlt-steps__item_selected:before{background:#669fc4;border-color:#669fc4}.Vlt-steps--red .Vlt-steps__item--selected:before,.Vlt-steps--red .Vlt-steps__item_selected:before{background:#e84545;border-color:#e84545}.Vlt-steps--green .Vlt-steps__item--selected:before,.Vlt-steps--green .Vlt-steps__item_selected:before{background:#06ba77;border-color:#06ba77}.Vlt-steps--purple .Vlt-steps__item--selected:before,.Vlt-steps--purple .Vlt-steps__item_selected:before{background:#b779ff;border-color:#b779ff}.Vlt-steps--yellow .Vlt-steps__item--selected:before,.Vlt-steps--yellow .Vlt-steps__item_selected:before{background:#ffc100;border-color:#ffc100}.Vlt-steps--indigo .Vlt-steps__item--selected:before,.Vlt-steps--indigo .Vlt-steps__item_selected:before{background:#d6219c;border-color:#d6219c}.Vlt-steps__item{-ms-flex-align:center;align-items:center;color:#131415;counter-increment:steps;display:table;font-size:14px;font-weight:400;margin:0 65px 0 0;position:relative;text-align:center}@media only screen and (max-width:575px){.Vlt-steps__item{-ms-flex:1;flex:1;position:relative;text-align:center}}.Vlt-steps__item span{font-size:1.1rem;font-weight:400;left:50%;line-height:1.5rem;margin-top:4px;position:absolute;transform:translateX(-50%);white-space:nowrap}.Vlt-steps__item:first-child{margin-left:0}.Vlt-steps__item a{color:#131415}.Vlt-steps__item:before{-ms-flex-align:center;align-items:center;border:1px solid;border-color:#131415;border-radius:100%;color:#131415;content:counter(steps);display:-ms-flexbox;display:flex;-ms-flex:0 0 40px;flex:0 0 40px;font-size:14px;height:40px;-ms-flex-pack:center;justify-content:center;margin:0 auto;width:40px}.Vlt-steps__item:after{background-image:url("data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cg%20clip-path%3D%22url(%23clip0)%22%3E%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M9.55892%204.05952C9.89391%203.81589%2010.363%203.88995%2010.6066%204.22494L15.9399%2011.5583C16.1312%2011.8213%2016.1312%2012.1775%2015.9399%2012.4405L10.6066%2019.7739C10.363%2020.1089%209.89391%2020.1829%209.55892%2019.9393C9.22393%2019.6957%209.14987%2019.2266%209.3935%2018.8916L14.406%2011.9994L9.3935%205.1072C9.14987%204.77221%209.22393%204.30315%209.55892%204.05952Z%22%2F%3E%0A%3C%2Fg%3E%0A%3Cdefs%3E%0A%3CclipPath%20id%3D%22clip0%22%3E%0A%3Crect%20x%3D%224%22%20y%3D%224%22%20width%3D%2216%22%20height%3D%2216%22%2F%3E%0A%3C%2FclipPath%3E%0A%3C%2Fdefs%3E%0A%3C%2Fsvg%3E");background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';height:24px;position:absolute;right:-45px;top:8px;width:24px}.Vlt-steps__item:last-child{margin-right:0}.Vlt-steps__item:last-child:after{display:none}.Vlt-steps__item--selected:before,.Vlt-steps__item_selected:before{background:#131415;color:#fff;font-weight:400}.Vlt-steps__item_done:before{background-color:#c2c4cc;background-image:url(data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%20%3E%3Cpath%20fill%3D%22%23fff%22%20fill-rule%3D%22nonzero%22%20d%3D%22M2.904%2012.11L1.5%2013.52%207.958%2020%2022.5%205.409%2021.096%204%207.958%2017.182z%22%2F%3E%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:20px 20px;border:0;content:''}.Vlt-steps__item_done:after{background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0D%0A%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%0D%0A%09%20viewBox%3D%220%200%2024%2024%22%20style%3D%22enable-background%3Anew%200%200%2024%2024%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0D%0A%3Cpath%20style%3D%22fill%3A%23C4CDD5%3B%22%20d%3D%22M13.5%2C12l-5.2%2C5.4c-0.3%2C0.4-0.3%2C0.9%2C0%2C1.3c0.3%2C0.3%2C0.9%2C0.4%2C1.2%2C0c0%2C0%2C0%2C0%2C0%2C0L16%2C12L9.5%2C5.3%0D%0A%09c-0.3-0.3-0.9-0.4-1.2%2C0c0%2C0%2C0%2C0%2C0%2C0c-0.3%2C0.4-0.3%2C0.9%2C0%2C1.3L13.5%2C12z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.Vlt-switch{height:30px;position:relative;width:50px}.Vlt-switch__slider{background-color:#9b9da3;border-radius:30px;cursor:pointer;height:100%;left:0;position:absolute;top:0;transition:.4s;width:100%}.Vlt-switch__slider:before{background-color:transparent;border:0;border-radius:30px;box-shadow:0 0 0 0 rgba(0,0,0,.1);content:'';height:30px;left:0;position:absolute;top:0;transition:.4s;width:50px}.Vlt-switch__slider:after{background-color:#fff;border-radius:30px;content:'';height:24px;left:3px;position:absolute;top:3px;transition:.4s;width:24px}.Vlt-switch__slider:hover{background-color:#616266}.Vlt-switch__slider:hover:after{background-color:#f3f3f5}.Vlt-switch__slider:active{background-color:#e1e2e6}.Vlt-switch__slider:active:after{background-color:#616266}.Vlt-switch input{-webkit-tap-highlight-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none;height:0;left:10px;overflow:hidden;position:absolute;top:10px;width:0}.Vlt-switch input:disabled~.Vlt-switch__slider{background-color:rgba(155,157,163,.5)}.Vlt-switch input:disabled~.Vlt-switch__slider:active,.Vlt-switch input:disabled~.Vlt-switch__slider:hover{background-color:rgba(155,157,163,.5);cursor:auto}.Vlt-switch input:disabled~.Vlt-switch__slider:active:after,.Vlt-switch input:disabled~.Vlt-switch__slider:hover:after{background-color:#fff}.Vlt-switch input:focus{-webkit-tap-highlight-color:transparent;outline:0}.Vlt-switch input:focus~.Vlt-switch__slider:before{box-shadow:0 0 0 5px rgba(0,0,0,.1)}.Vlt-switch input:focus:checked~.Vlt-switch__slider:before{box-shadow:0 0 0 5px rgba(6,186,119,.3)}.Vlt-switch input:checked~.Vlt-switch__slider{background-color:#06ba77}.Vlt-switch input:checked~.Vlt-switch__slider:after{left:22px}.Vlt-switch input:checked~.Vlt-switch__slider:hover{background-color:#2d966f}.Vlt-switch input:checked~.Vlt-switch__slider:hover:after{background-color:#d7f2e8}.Vlt-switch input:checked~.Vlt-switch__slider:active{background-color:#d7f2e8}.Vlt-switch input:checked~.Vlt-switch__slider:active:after{background-color:#06ba77}.Vlt-switch.Vlt-switch--red input:focus:checked~.Vlt-switch__slider:before{box-shadow:0 0 0 5px rgba(232,69,69,.3)}.Vlt-switch.Vlt-switch--red input:checked~.Vlt-switch__slider{background-color:#e84545}.Vlt-switch.Vlt-switch--red input:checked~.Vlt-switch__slider:hover{background-color:#ba3737}.Vlt-switch.Vlt-switch--red input:checked~.Vlt-switch__slider:hover:after{background-color:#fdecec}.Vlt-switch.Vlt-switch--red input:checked~.Vlt-switch__slider:active{background-color:#f79ca6}.Vlt-switch.Vlt-switch--red input:checked~.Vlt-switch__slider:active:after{background-color:#ba3737}.Vlt-switch.Vlt-switch--primary input:focus:checked~.Vlt-switch__slider:before{box-shadow:0 0 0 5px rgba(135,31,255,.3)}.Vlt-switch.Vlt-switch--primary input:checked~.Vlt-switch__slider{background-color:#871fff}.Vlt-switch.Vlt-switch--primary input:checked~.Vlt-switch__slider:hover{background-color:#441080}.Vlt-switch.Vlt-switch--primary input:checked~.Vlt-switch__slider:hover:after{background-color:#f3e9ff}.Vlt-switch.Vlt-switch--primary input:checked~.Vlt-switch__slider:active{background-color:#cfa5ff}.Vlt-switch.Vlt-switch--primary input:checked~.Vlt-switch__slider:active:after{background-color:#871fff}.Vlt-switch.Vlt-switch--secondary input:focus:checked~.Vlt-switch__slider:before{box-shadow:0 0 0 5px rgba(19,20,21,.3)}.Vlt-switch.Vlt-switch--secondary input:checked~.Vlt-switch__slider{background-color:#131415}.Vlt-switch.Vlt-switch--secondary input:checked~.Vlt-switch__slider:hover{background-color:#616266}.Vlt-switch.Vlt-switch--secondary input:checked~.Vlt-switch__slider:hover:after{background-color:#f3f3f5}.Vlt-switch.Vlt-switch--secondary input:checked~.Vlt-switch__slider:active{background-color:#e1e2e6}.Vlt-switch.Vlt-switch--secondary input:checked~.Vlt-switch__slider:active:after{background-color:#616266}.Vlt-switch.Vlt-switch--orange input:focus:checked~.Vlt-switch__slider:before{box-shadow:0 0 0 5px rgba(250,116,84,.3)}.Vlt-switch.Vlt-switch--orange input:checked~.Vlt-switch__slider{background-color:#fa7454}.Vlt-switch.Vlt-switch--orange input:checked~.Vlt-switch__slider:hover{background-color:#c85e43}.Vlt-switch.Vlt-switch--orange input:checked~.Vlt-switch__slider:hover:after{background-color:#fee3dd}.Vlt-switch.Vlt-switch--orange input:checked~.Vlt-switch__slider:active{background-color:#fcac98}.Vlt-switch.Vlt-switch--orange input:checked~.Vlt-switch__slider:active:after{background-color:#c85e43}.Vlt-switch.Vlt-switch--indigo input:focus:checked~.Vlt-switch__slider:before{box-shadow:0 0 0 5px rgba(214,33,156,.3)}.Vlt-switch.Vlt-switch--indigo input:checked~.Vlt-switch__slider{background-color:#d6219c}.Vlt-switch.Vlt-switch--indigo input:checked~.Vlt-switch__slider:hover{background-color:#ab197d}.Vlt-switch.Vlt-switch--indigo input:checked~.Vlt-switch__slider:hover:after{background-color:#f7d3ec}.Vlt-switch.Vlt-switch--indigo input:checked~.Vlt-switch__slider:active{background-color:#eb90ce}.Vlt-switch.Vlt-switch--indigo input:checked~.Vlt-switch__slider:active:after{background-color:#ab197d}.Vlt-switch.Vlt-switch--blue input:focus:checked~.Vlt-switch__slider:before{box-shadow:0 0 0 5px rgba(28,143,218,.3)}.Vlt-switch.Vlt-switch--blue input:checked~.Vlt-switch__slider{background-color:#1c8fda}.Vlt-switch.Vlt-switch--blue input:checked~.Vlt-switch__slider:hover{background-color:#0070b9}.Vlt-switch.Vlt-switch--blue input:checked~.Vlt-switch__slider:hover:after{background-color:#d9eefc}.Vlt-switch.Vlt-switch--blue input:checked~.Vlt-switch__slider:active{background-color:#d9eefc}.Vlt-switch.Vlt-switch--blue input:checked~.Vlt-switch__slider:active:after{background-color:#0070b9}.Vlt-switch--small{height:20px;position:relative;width:32px}.Vlt-switch--small .Vlt-switch__slider:before{height:20px;left:0;top:0;width:32px}.Vlt-switch--small .Vlt-switch__slider:after{height:16px;left:2px;top:2px;width:16px}.Vlt-switch--small input:checked~.Vlt-switch__slider:after{left:13px}.Vlt-dialpad{background:#131415;border-radius:8px;box-shadow:0 5px 10px 0 rgba(19,20,21,.25);margin:8px auto;max-width:100%;width:300px}.Vlt-dialpad__keypad{display:-ms-flexbox;display:flex;-ms-flex-flow:row wrap;flex-flow:row wrap;padding:8px 8px 24px}.Vlt-dialpad__key{-ms-flex-align:center;align-items:center;border-radius:6px;cursor:pointer;display:-ms-flexbox;display:flex;-ms-flex:0 0 33%;flex:0 0 33%;-ms-flex-flow:row wrap;flex-flow:row wrap;height:60px;-ms-flex-pack:center;justify-content:center;margin:2px 0;transition:background .4s}.Vlt-dialpad__key__main{-ms-flex-item-align:start;align-self:flex-start;color:#fff;-ms-flex:0 0 100%;flex:0 0 100%;font-size:3rem;font-weight:800;padding-bottom:2px;padding-top:10px;text-align:center}.Vlt-dialpad__key__sub{-ms-flex-item-align:start;align-self:flex-start;color:#9b9da3;-ms-flex:0 0 100%;flex:0 0 100%;font-size:1.2rem;font-weight:600;text-align:center;text-transform:uppercase}.Vlt-dialpad__key__sub-plus{font-size:2rem;font-weight:800}.Vlt-dialpad__key:hover{background:rgba(255,255,255,.15)}.Vlt-dialpad__key:active{background:rgba(255,255,255,.25)}.Vlt-dialpad__key svg{height:24px;width:24px}.Vlt-dialpad__key .Vlt-btn{margin:0}.Vlt-dialpad__key .Vlt-btn svg{height:24px;margin:0 -12px;width:24px}.Vlt-dialpad__key--nohover:hover{background:0 0}.Vlt-dialpad__header{color:#fff;font-size:1.2rem;padding:12px 32px;position:relative;text-align:center}.Vlt-dialpad__header__dismiss{background-color:transparent;background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23ffffff%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:100%;border:0;box-shadow:none;cursor:pointer;height:24px;opacity:1;outline:0;position:absolute;right:8px;top:8px;transition:opacity .2s;width:24px}.Vlt-dialpad__header__dismiss svg{display:none}.Vlt-dialpad__header__dismiss:hover{opacity:.7}.Vlt-dialpad__strip{-ms-flex-align:center;align-items:center;background:rgba(255,255,255,.0625);display:-ms-flexbox;display:flex;height:52px;padding:8px 16px}.Vlt-dialpad__strip__icon{-ms-flex:0 0 28px;flex:0 0 28px;width:28px}.Vlt-dialpad__strip__backspace{cursor:pointer;-ms-flex:0 0 28px;flex:0 0 28px;transition:opacity .2s;width:28px}.Vlt-dialpad__strip__backspace:hover{opacity:.7}.Vlt-dialpad__strip__number{-ms-flex:1;flex:1;padding:0 4px}.Vlt-dialpad__strip__number input{background:0 0;border:0;color:#fff;direction:rtl;font-size:2.1rem;font-weight:800;overflow:hidden;text-align:center;text-overflow:ellipsis;white-space:nowrap;width:100%}.Vlt-dialpad__strip__number input:focus{direction:ltr;outline:0}.Vlt-dialpad--light{background:#fff;border:0}.Vlt-dialpad--light .Vlt-dialpad__key__main{color:#131415}.Vlt-dialpad--light .Vlt-dialpad__key__sub{color:#9b9da3}.Vlt-dialpad--light .Vlt-dialpad__key:hover{background:#f3f3f5}.Vlt-dialpad--light .Vlt-dialpad__key:active{background:#e1e2e6}.Vlt-dialpad--light .Vlt-dialpad__key--nohover:hover{background:0 0}.Vlt-dialpad--light .Vlt-dialpad__header{color:#616266}.Vlt-dialpad--light .Vlt-dialpad__header__dismiss{background-image:url(data:image/svg+xml,%3Csvg%20viewBox%3D%220%200%2024%2024%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20style%3D%22fill%3A%23131415%3B%22%20d%3D%22M17.7429%206.25714C17.4%205.91429%2016.8857%205.91429%2016.5429%206.25714L12%2010.8L7.45714%206.25714C7.11429%205.91429%206.6%205.91429%206.25714%206.25714C5.91429%206.6%205.91429%207.11429%206.25714%207.45714L10.8%2012L6.25714%2016.5429C5.91429%2016.8857%205.91429%2017.4%206.25714%2017.7429C6.42857%2017.9143%206.6%2018%206.85714%2018C7.11429%2018%207.28571%2017.9143%207.45714%2017.7429L12%2013.2L16.5429%2017.7429C16.7143%2017.9143%2016.9714%2018%2017.1429%2018C17.3143%2018%2017.5714%2017.9143%2017.7429%2017.7429C18.0857%2017.4%2018.0857%2016.8857%2017.7429%2016.5429L13.2%2012L17.7429%207.45714C18.0857%207.11429%2018.0857%206.6%2017.7429%206.25714Z%22%2F%3E%0A%3C%2Fsvg%3E%0A)}.Vlt-dialpad--light .Vlt-dialpad__strip{background:#f3f3f5}.Vlt-dialpad--light .Vlt-dialpad__strip__number input{color:#616266}.Vlt-popup{display:inline-block;position:relative}.Vlt-popup__panel{max-height:0;overflow:hidden;position:absolute;width:250px;z-index:99999999}.Vlt-popup__panel--width2{min-width:200px}.Vlt-popup__panel--width3{min-width:300px}.Vlt-popup__panel__content{background:#fff;border-radius:8px;box-shadow:0 1px 20px rgba(19,20,21,.2)}.Vlt-popup__panel_open{max-height:100vh;overflow:visible}.Vlt-popup__panel_open .Vlt-popup__scroll{max-height:400px;overflow-y:auto}.Vlt-popup__header{background:#669fc4;border-top-left-radius:8px;border-top-right-radius:8px;color:#fff;font-size:1.5rem;font-weight:900;padding:8px 24px;text-align:left}.Vlt-popup__link{color:#131415;cursor:pointer;display:-ms-flexbox;display:flex;overflow:hidden;padding:12px 20px 0;position:relative;text-align:left}.Vlt-popup__link--noborder{margin-top:-4px}.Vlt-popup__link--noborder:before{display:none}.Vlt-popup__link--disabled,.Vlt-popup__link--selected{color:#9b9da3;cursor:default;pointer-events:none}.Vlt-popup__link--disabled .Vlt-popup__link__icon,.Vlt-popup__link--selected .Vlt-popup__link__icon{fill:#9b9da3}.Vlt-popup__link--highlighted{color:#669fc4}.Vlt-popup__link__icon{fill:#669fc4;-ms-flex:0 0 20px;flex:0 0 20px;height:20px;margin-right:10px;vertical-align:middle;width:20px}.Vlt-popup__link__content{-ms-flex:1;flex:1;padding-bottom:16px;position:relative}.Vlt-popup__link__content:after{background:#e1e2e6;bottom:0;content:'';display:block;height:1px;left:0;position:absolute;width:100%}.Vlt-popup__link__content h6{font-weight:600;margin-bottom:0!important}.Vlt-popup__link__content p{margin-top:8px}.Vlt-popup__link:hover{background:rgba(19,20,21,.05)}.Vlt-popup__link:active{background:rgba(19,20,21,.1)}.Vlt-popup__link--nohover:hover{background:0 0}.Vlt-popup__link:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.Vlt-popup__link:last-child .Vlt-popup__link__content:after{display:none}.Vlt-popup--top-left .Vlt-popup__panel{bottom:100%;right:0}.Vlt-popup--top-right .Vlt-popup__panel{bottom:100%;left:0}.Vlt-popup--bottom-left .Vlt-popup__panel{right:0;top:100%}.Vlt-popup--bottom-right .Vlt-popup__panel{left:0;top:100%}.Vlt-progress{background-color:rgba(97,98,102,.45);border-radius:10px;display:block;height:6px;margin:7px 0;overflow:hidden;position:relative}.Vlt-progress__bar{background-image:linear-gradient(to right,#7fc6f4,#8728fb);height:100%;left:0;position:absolute;transition:width .2s ease-out;width:0%}.Vlt-progress__bar[class*=Vlt-bg-]{background-image:none}.Vlt-article h1,.Vlt-article h2{margin-bottom:24px}.Vlt-article h1:not(:first-child),.Vlt-article h2:not(:first-child){margin-top:32px;padding-top:0}.Vlt-article h3,.Vlt-article h4,.Vlt-article h5,.Vlt-article h6{margin-bottom:16px}.Vlt-article h3:not(:first-child),.Vlt-article h4:not(:first-child),.Vlt-article h5:not(:first-child),.Vlt-article h6:not(:first-child){margin-top:24px;padding-top:0}.Vlt-article .Vlt-box,.Vlt-article .Vlt-callout,.Vlt-article .Vlt-table,.Vlt-article pre[class*=language]{margin-bottom:16px}.Vlt-article .Vlt-box:not(:first-child),.Vlt-article .Vlt-callout:not(:first-child),.Vlt-article .Vlt-table:not(:first-child),.Vlt-article pre[class*=language]:not(:first-child){margin-top:16px}.Vlt-article .Vlt-list li{margin-bottom:16px}.Vlt-article p:not(.p-large){line-height:2rem}.Vlt-article figure{margin:32px auto;text-align:center}.Vlt-article .Vlt-box--fancy h1,.Vlt-article .Vlt-box--fancy h2,.Vlt-article .Vlt-box--fancy h3,.Vlt-article .Vlt-box--fancy h4,.Vlt-article .Vlt-box--fancy h5,.Vlt-article .Vlt-box--fancy h6,.Vlt-article .Vlt-callout h1,.Vlt-article .Vlt-callout h2,.Vlt-article .Vlt-callout h3,.Vlt-article .Vlt-callout h4,.Vlt-article .Vlt-callout h5,.Vlt-article .Vlt-callout h6,.Vlt-article .Vlt-modal h1,.Vlt-article .Vlt-modal h2,.Vlt-article .Vlt-modal h3,.Vlt-article .Vlt-modal h4,.Vlt-article .Vlt-modal h5,.Vlt-article .Vlt-modal h6,.Vlt-article .Vlt-sidenav h1,.Vlt-article .Vlt-sidenav h2,.Vlt-article .Vlt-sidenav h3,.Vlt-article .Vlt-sidenav h4,.Vlt-article .Vlt-sidenav h5,.Vlt-article .Vlt-sidenav h6,.Vlt-article--reverse h1,.Vlt-article--reverse h2,.Vlt-article--reverse h3,.Vlt-article--reverse h4,.Vlt-article--reverse h5,.Vlt-article--reverse h6{margin-bottom:8px;margin-top:0}.Vlt-article .Vlt-box--fancy h1:not(:first-child),.Vlt-article .Vlt-box--fancy h2:not(:first-child),.Vlt-article .Vlt-box--fancy h3:not(:first-child),.Vlt-article .Vlt-box--fancy h4:not(:first-child),.Vlt-article .Vlt-box--fancy h5:not(:first-child),.Vlt-article .Vlt-box--fancy h6:not(:first-child),.Vlt-article .Vlt-callout h1:not(:first-child),.Vlt-article .Vlt-callout h2:not(:first-child),.Vlt-article .Vlt-callout h3:not(:first-child),.Vlt-article .Vlt-callout h4:not(:first-child),.Vlt-article .Vlt-callout h5:not(:first-child),.Vlt-article .Vlt-callout h6:not(:first-child),.Vlt-article .Vlt-modal h1:not(:first-child),.Vlt-article .Vlt-modal h2:not(:first-child),.Vlt-article .Vlt-modal h3:not(:first-child),.Vlt-article .Vlt-modal h4:not(:first-child),.Vlt-article .Vlt-modal h5:not(:first-child),.Vlt-article .Vlt-modal h6:not(:first-child),.Vlt-article .Vlt-sidenav h1:not(:first-child),.Vlt-article .Vlt-sidenav h2:not(:first-child),.Vlt-article .Vlt-sidenav h3:not(:first-child),.Vlt-article .Vlt-sidenav h4:not(:first-child),.Vlt-article .Vlt-sidenav h5:not(:first-child),.Vlt-article .Vlt-sidenav h6:not(:first-child),.Vlt-article--reverse h1:not(:first-child),.Vlt-article--reverse h2:not(:first-child),.Vlt-article--reverse h3:not(:first-child),.Vlt-article--reverse h4:not(:first-child),.Vlt-article--reverse h5:not(:first-child),.Vlt-article--reverse h6:not(:first-child){margin-top:0}.Vlt-article .Vlt-box--fancy h1,.Vlt-article .Vlt-box--fancy h2,.Vlt-article .Vlt-callout h1,.Vlt-article .Vlt-callout h2,.Vlt-article .Vlt-modal h1,.Vlt-article .Vlt-modal h2,.Vlt-article .Vlt-sidenav h1,.Vlt-article .Vlt-sidenav h2,.Vlt-article--reverse h1,.Vlt-article--reverse h2{margin-bottom:16px}.Vlt-article .Vlt-box--fancy .Vlt-box,.Vlt-article .Vlt-box--fancy .Vlt-callout,.Vlt-article .Vlt-box--fancy .Vlt-table,.Vlt-article .Vlt-box--fancy pre[class*=language],.Vlt-article .Vlt-callout .Vlt-box,.Vlt-article .Vlt-callout .Vlt-callout,.Vlt-article .Vlt-callout .Vlt-table,.Vlt-article .Vlt-callout pre[class*=language],.Vlt-article .Vlt-modal .Vlt-box,.Vlt-article .Vlt-modal .Vlt-callout,.Vlt-article .Vlt-modal .Vlt-table,.Vlt-article .Vlt-modal pre[class*=language],.Vlt-article .Vlt-sidenav .Vlt-box,.Vlt-article .Vlt-sidenav .Vlt-callout,.Vlt-article .Vlt-sidenav .Vlt-table,.Vlt-article .Vlt-sidenav pre[class*=language],.Vlt-article--reverse .Vlt-box,.Vlt-article--reverse .Vlt-callout,.Vlt-article--reverse .Vlt-table,.Vlt-article--reverse pre[class*=language]{margin-bottom:8px;margin-top:0}.Vlt-article .Vlt-box--fancy .Vlt-box:not(:first-child),.Vlt-article .Vlt-box--fancy .Vlt-callout:not(:first-child),.Vlt-article .Vlt-box--fancy .Vlt-table:not(:first-child),.Vlt-article .Vlt-box--fancy pre[class*=language]:not(:first-child),.Vlt-article .Vlt-callout .Vlt-box:not(:first-child),.Vlt-article .Vlt-callout .Vlt-callout:not(:first-child),.Vlt-article .Vlt-callout .Vlt-table:not(:first-child),.Vlt-article .Vlt-callout pre[class*=language]:not(:first-child),.Vlt-article .Vlt-modal .Vlt-box:not(:first-child),.Vlt-article .Vlt-modal .Vlt-callout:not(:first-child),.Vlt-article .Vlt-modal .Vlt-table:not(:first-child),.Vlt-article .Vlt-modal pre[class*=language]:not(:first-child),.Vlt-article .Vlt-sidenav .Vlt-box:not(:first-child),.Vlt-article .Vlt-sidenav .Vlt-callout:not(:first-child),.Vlt-article .Vlt-sidenav .Vlt-table:not(:first-child),.Vlt-article .Vlt-sidenav pre[class*=language]:not(:first-child),.Vlt-article--reverse .Vlt-box:not(:first-child),.Vlt-article--reverse .Vlt-callout:not(:first-child),.Vlt-article--reverse .Vlt-table:not(:first-child),.Vlt-article--reverse pre[class*=language]:not(:first-child){margin-top:0}.Vlt-article .Vlt-box--fancy p:not(.p-large),.Vlt-article .Vlt-callout p:not(.p-large),.Vlt-article .Vlt-modal p:not(.p-large),.Vlt-article .Vlt-sidenav p:not(.p-large),.Vlt-article--reverse p:not(.p-large){line-height:2rem}.Vlt-article .Vlt-box--fancy .Vlt-list li,.Vlt-article .Vlt-callout .Vlt-list li,.Vlt-article .Vlt-modal .Vlt-list li,.Vlt-article .Vlt-sidenav .Vlt-list li,.Vlt-article--reverse .Vlt-list li{margin-bottom:.5em}.Vlt-article .Vlt-box--fancy figure,.Vlt-article .Vlt-callout figure,.Vlt-article .Vlt-modal figure,.Vlt-article .Vlt-sidenav figure,.Vlt-article--reverse figure{margin:16px auto;text-align:center}.Vlt-section{display:inline-block;margin:24px 0}.Vlt-inset{margin-left:32px}.Vlt-center{text-align:center!important}.Vlt-right{text-align:right!important}.Vlt-left{text-align:left!important}.Vlt-nowrap{white-space:nowrap!important}.Vlt-no-border{border-color:transparent!important;transition:border-color .5s}.Vlt-no-border:active,.Vlt-no-border:focus,.Vlt-no-border:hover{border-color:initial!important}.Vlt-elevation--1,.Vlt-modal__footer--small:before{box-shadow:0 2px 10px rgba(19,20,21,.1)!important}.Vlt-elevation--2{box-shadow:0 4px 20px rgba(19,20,21,.1)!important}.Vlt-elevation--3{box-shadow:0 10px 30px rgba(19,20,21,.1)!important}.Vlt-elevation--4{box-shadow:0 20px 40px rgba(19,20,21,.1)!important}.Vlt-status{background-color:currentColor;border:2px solid #fff;border-radius:100%;bottom:0;box-sizing:content-box;display:block;height:8px;position:absolute;right:0;width:8px}.Vlt-form__element--big .Vlt-custom-select__input,.Vlt-truncate{display:block;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.Vlt-truncate--inline{display:inline}hr{border-bottom:0;border-top:1px solid #e1e2e6;-ms-flex:0 0 100%;flex:0 0 100%;height:0;margin:24px 0}hr[class*=Vlt-gradient]{border:0;height:1px}.hr--tall{margin:32px 0}.hr--short{margin:16px 0}.hr--shorter{margin:8px 0}.Vlt-icon{display:inline-block;height:24px;vertical-align:middle;width:24px}.Vlt-icon--18{height:18px;width:18px}.Vlt-icon--small{height:20px;width:20px}.Vlt-icon--smaller{height:16px;width:16px}.Vlt-icon--text-bottom{vertical-align:text-bottom}.Vlt-icon--large{height:32px;width:32px}.Vlt-icon--larger{height:40px;width:40px}.Vlt-icon--largest{height:48px;width:48px}.Vlt-container{max-width:1200px}@media only screen and (min-width:768px){.Vlt-margin--top0{margin-top:0!important}}@media only screen and (min-width:768px){.Vlt-margin--top1{margin-top:8px!important}}@media only screen and (min-width:768px){.Vlt-margin--top2{margin-top:16px!important}}@media only screen and (min-width:768px){.Vlt-margin--top3{margin-top:24px!important}}@media only screen and (min-width:768px){.Vlt-margin--top4{margin-top:32px!important}}@media only screen and (max-width:575px){.Vlt-margin--S-top0{margin-top:0!important}}@media only screen and (max-width:575px){.Vlt-margin--S-top1{margin-top:8px!important}}@media only screen and (max-width:575px){.Vlt-margin--S-top2{margin-top:16px!important}}@media only screen and (max-width:575px){.Vlt-margin--S-top3{margin-top:24px!important}}@media only screen and (max-width:575px){.Vlt-margin--S-top4{margin-top:32px!important}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-margin--M-top0{margin-top:0!important}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-margin--M-top1{margin-top:8px!important}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-margin--M-top2{margin-top:16px!important}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-margin--M-top3{margin-top:24px!important}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-margin--M-top4{margin-top:32px!important}}.Vlt-margin--A-top0{margin-top:0!important}.Vlt-margin--A-top1{margin-top:8px!important}.Vlt-margin--A-top2{margin-top:16px!important}.Vlt-margin--A-top3{margin-top:24px!important}.Vlt-margin--A-top4{margin-top:32px!important}@media only screen and (min-width:768px){.Vlt-margin--bottom0{margin-bottom:0!important}}@media only screen and (min-width:768px){.Vlt-margin--bottom1{margin-bottom:8px!important}}@media only screen and (min-width:768px){.Vlt-margin--bottom2{margin-bottom:16px!important}}@media only screen and (min-width:768px){.Vlt-margin--bottom3{margin-bottom:24px!important}}@media only screen and (min-width:768px){.Vlt-margin--bottom4{margin-bottom:32px!important}}@media only screen and (max-width:575px){.Vlt-margin--S-bottom0{margin-bottom:0!important}}@media only screen and (max-width:575px){.Vlt-margin--S-bottom1{margin-bottom:8px!important}}@media only screen and (max-width:575px){.Vlt-margin--S-bottom2{margin-bottom:16px!important}}@media only screen and (max-width:575px){.Vlt-margin--S-bottom3{margin-bottom:24px!important}}@media only screen and (max-width:575px){.Vlt-margin--S-bottom4{margin-bottom:32px!important}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-margin--M-bottom0{margin-bottom:0!important}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-margin--M-bottom1{margin-bottom:8px!important}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-margin--M-bottom2{margin-bottom:16px!important}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-margin--M-bottom3{margin-bottom:24px!important}}@media only screen and (min-width:576px) and (max-width:767px){.Vlt-margin--M-bottom4{margin-bottom:32px!important}}.Vlt-margin--A-bottom0{margin-bottom:0!important}.Vlt-margin--A-bottom1{margin-bottom:8px!important}.Vlt-margin--A-bottom2{margin-bottom:16px!important}.Vlt-margin--A-bottom3{margin-bottom:24px!important}.Vlt-margin--A-bottom4{margin-bottom:32px!important}
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require 'oas_parser'
2
4
 
3
5
  module OasParser
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require_relative './oas_parser'
2
4
 
3
5
  module Nexmo
@@ -15,7 +17,7 @@ module Nexmo
15
17
  end
16
18
 
17
19
  def self.paths(name)
18
- ['json', 'yaml', 'yml'].map do |format|
20
+ %w[json yaml yml].map do |format|
19
21
  path(name, format)
20
22
  end
21
23
  end
@@ -1,7 +1,9 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Nexmo
2
4
  module OAS
3
5
  module Renderer
4
- VERSION = "0.11.3"
6
+ VERSION = '2.0.0'
5
7
  end
6
8
  end
7
9
  end
@@ -1,4 +1,5 @@
1
1
  <head>
2
+ <meta name="viewport" content="width=device-width, initial-scale=1">
2
3
  <link rel="stylesheet" href="/assets/stylesheets/volta.min.css"/>
3
4
  <link rel="stylesheet" href="/assets/stylesheets/volta-prism.min.css"/>
4
5
  <link rel="stylesheet" href="/assets/stylesheets/nexmo-oas-renderer.css"/>
@@ -1,13 +1,14 @@
1
1
  <script src="/assets/javascripts/prism.js"></script>
2
+ <script src="/assets/javascripts/popper.min.js"></script>
3
+ <script src="/assets/javascripts/tooltip.min.js"></script>
2
4
  <script src="/assets/javascripts/volta.core.js"></script>
3
5
  <script src="/assets/javascripts/volta.accordion.js"></script>
4
6
  <script src="/assets/javascripts/volta.tabs.js"></script>
5
7
  <script src="/assets/javascripts/volta.modal.js"></script>
6
- <script src="/assets/javascripts/nexmo-oas-renderer.js"></script>
8
+ <script src="/assets/javascripts/volta.tooltip.js"></script>
9
+ <script src="/assets/javascripts/nexmo-oas-renderer.js?a=1"></script>
7
10
  <script src="/assets/javascripts/components/format.js"></script>
8
- <script src="/assets/javascripts/components/scroll.js"></script>
9
11
  <script type="text/javascript">
10
- Volta.init(["accordion", "tab", "modal"]);
12
+ Volta.init(["accordion", "tab", "modal", "tooltip"]);
11
13
  new Format
12
- new Scroll
13
14
  </script>
@@ -3,8 +3,10 @@
3
3
  <%= erb :"layouts/_head" %>
4
4
 
5
5
  <body class="Nxd-template">
6
- <%= yield %>
7
6
 
7
+ <main>
8
+ <%= yield %>
9
+ </main>
8
10
  <%= erb :"layouts/_javascripts" %>
9
11
  </body>
10
12
  </html>
@@ -0,0 +1,74 @@
1
+ <% if endpoint.jwt? || endpoint.basic_auth? || endpoint.oauth? %>
2
+ <h4>Authentication</h4>
3
+
4
+ <% if endpoint.jwt? && endpoint.basic_auth? %>
5
+ <p>This API supports both JWT and Basic authentication. Basic authentication is easier to get started with, but does not support advanced features such as ACLs.</p>
6
+
7
+ <p>You can use <em>either</em> JWT or Basic authentication, but not both at the same time.</p>
8
+ <% end %>
9
+
10
+ <div class="Vlt-table Vlt-table--bordered">
11
+ <table>
12
+ <thead>
13
+ <tr>
14
+ <th>Key</th>
15
+ <th>Description</th>
16
+ <th>Example</th>
17
+ <th>Default</th>
18
+ </tr>
19
+ </thead>
20
+ <tbody>
21
+
22
+ <% if endpoint.oauth? %>
23
+ <tr>
24
+ <td>
25
+ <b>Authorization</b>
26
+ </td>
27
+ <td>
28
+ <b>Your OAuth token.</b><br>
29
+ <small><a href="/vonage-business-cloud/vbc-apis/getting-started/authentication">Read more about OAuth tokens</a></small>
30
+ </td>
31
+ <td><code>Bearer &lt;access_token&gt;</code></td>
32
+ <td>
33
+ <em>None</em>
34
+ </td>
35
+ </tr>
36
+ <% end %>
37
+
38
+ <% if endpoint.jwt? %>
39
+ <tr>
40
+ <td>
41
+ <b>Authorization</b>
42
+ </td>
43
+ <td>
44
+ <b>Your JSON web token.</b><br>
45
+ <small><a href="/concepts/guides/authentication#json-web-tokens-jwt">Read more about JWTs</a></small>
46
+ </td>
47
+ <td><code>Bearer &lt;JWT&gt;</code></td>
48
+ <td>
49
+ <em>None</em>
50
+ </td>
51
+ </tr>
52
+ <% end %>
53
+
54
+ <% if endpoint.basic_auth? %>
55
+ <tr>
56
+ <td>
57
+ <b>Authorization</b>
58
+ </td>
59
+ <td>
60
+ <b>Base64 encoded API key and secret joined by a colon.</b><br>
61
+ <small><a href="/concepts/guides/authentication#header-based-api-key-and-secret-authentication">Read more</a></small>
62
+ </td>
63
+ <td><code>Basic &lt;base64&gt;</code></td>
64
+ <td>
65
+ <i>None</i>
66
+ </td>
67
+ </tr>
68
+ <% end %>
69
+
70
+ </tbody>
71
+ </table>
72
+ </div>
73
+ <% end %>
74
+
@@ -0,0 +1,25 @@
1
+ <h5>Available Operations:</h5>
2
+ <ul>
3
+ <% endpoints.each do |endpoint| %>
4
+ <li>
5
+ <span style="width: 58px; text-align:center; margin-right:4px;" class="Vlt-badge Vlt-badge--margin-left Nxd-method-badge Nxd-method-badge--<%= endpoint.method %> Vlt-badge--small"><%= endpoint.method %></span>
6
+ <a href="#<%= endpoint.operationId %>"><%= normalize_summary_title(endpoint.summary, endpoint.operationId) %></a>
7
+ </li>
8
+
9
+ <% if endpoint.callbacks.any? %>
10
+ <% endpoint.callbacks.each do |callback| %>
11
+ <% callback.paths.each do |path| %>
12
+ <% path.endpoints.each do |endpoint| %>
13
+ <li style="margin-top: 8px;">
14
+ <span style="margin-left:24px; margin-right: 4px;">
15
+ <svg style="width: 12px; height:12px;" class="Vlt-black"><use xlink:href="/assets/symbol/volta-icons.svg#Vlt-icon-toggle" /></svg>
16
+ </span>
17
+ <a href="#<%= endpoint.operationId %>"><%= normalize_summary_title(endpoint.summary, endpoint.operationId) %></a>
18
+ </li>
19
+ <% end %>
20
+ <% end %>
21
+ <% end %>
22
+ <% end %>
23
+ <% end %>
24
+ </ul>
25
+ <br />
@@ -1,47 +1,38 @@
1
1
  <div class="Vlt-grid">
2
- <div class="Vlt-col Vlt-col--2of3 Nxd-api__docs">
3
- <div>
4
- <h3 id="<%= endpoint.operationId %>" class="Vlt-title--icon">
5
- <%= endpoint.summary %>
6
- <% if webhook %>
2
+ <div class="Vlt-col oas-left-panel" style="padding-bottom: 36px;">
3
+ <h3 id="<%= endpoint.operationId %>" class="Vlt-title--icon">
4
+ <%= endpoint.summary %>
5
+ <% if webhook %>
7
6
  <span class="Vlt-badge Vlt-badge--orange">
8
7
  <i class="icon icon-webhook"></i> Webhook
9
8
  </span>
10
- <% else %>
9
+ <% else %>
11
10
  <span class="Vlt-badge Vlt-badge--green">
12
11
  <i class="icon icon-callback"></i> Callback
13
12
  </span>
14
- <% end %>
15
- </h3>
16
- <% if endpoint.description %>
17
- <p><%= endpoint.description.render_markdown %></p>
18
13
  <% end %>
14
+ </h3>
15
+ <% if endpoint.description %>
16
+ <p><%= endpoint.description.render_markdown %></p>
17
+ <% end %>
19
18
 
20
- <div class="Vlt-badge-combined">
21
- <code class="Vlt-badge Vlt-white Vlt-badge--large Nxd-method-badge Nxd-method-badge--<%= endpoint.method %>"><%= endpoint.method.upcase %></code>
22
- <code class="Vlt-badge Vlt-badge--large Vlt-bg-grey-lighter Vlt-black">
23
- <span class="api-path-host">https://example.com</span><%= (endpoint.raw['x-example-path'] || '/webhooks/event').gsub(/\{(.+?)\}/, '<span class="api-path-parameter">:\1</span>') %>
24
- </code>
25
- </div>
26
-
27
- <%= erb :'open_api/_parameter_groups', locals: { endpoint: endpoint, callback: true } %>
19
+ <div class="Vlt-badge-combined">
20
+ <code class="Vlt-badge Vlt-badge--large Nxd-method-badge Nxd-method-badge--<%= endpoint.method %>"><%= endpoint.method.upcase %></code>
21
+ <code class="Vlt-badge Vlt-badge--large Vlt-bg-grey-lighter Vlt-black">
22
+ <span class="api-path-host">https://example.com</span><%= (endpoint.raw['x-example-path'] || '/webhooks/event').gsub(/\{(.+?)\}/, '<span class="api-path-parameter">:\1</span>') %>
23
+ </code>
28
24
  </div>
29
- </div>
30
25
 
31
- <div class="Vlt-col Vlt-col--1of3 Nxd-api__code">
32
- <%= erb :'open_api/_code_examples', locals: { endpoint: endpoint } %>
26
+ <%= erb :'open_api/_parameter_groups', locals: { endpoint: endpoint, callback: true } %>
27
+ </div>
33
28
 
34
- <h5>Request model</h5>
29
+ <div class="Vlt-col oas-right-panel">
35
30
 
36
31
  <% endpoint.request_body.formats.each_with_index do |format, index| %>
37
32
  <div class="js-format" data-format="<%= format %>">
38
- <% schema = endpoint.request_body.schema(format) %>
39
- <%= Nexmo::OAS::Renderer::ResponseParserDecorator.new(schema).html(format, xml_options: schema['xml']) %>
33
+ <%= erb :'open_api/_requests', locals: { endpoint: endpoint, title: "Example Payload" } %>
40
34
  </div>
41
35
  <% end %>
42
36
  </div>
43
37
  </div>
44
38
 
45
- <% endpoint.callbacks.each do |callback| %>
46
- <%= erb :'open_api/callback', locals: { callback: callback } %>
47
- <% end %>
@@ -0,0 +1,5 @@
1
+ <% if endpoint.callbacks.size.positive? %>
2
+ <% endpoint.callbacks.each do |callback| %>
3
+ <%= erb :'open_api/_callback', locals: { callback: callback, webhook: false } %>
4
+ <% end %>
5
+ <% end %>
@@ -1,139 +1,54 @@
1
1
  <div class="Vlt-grid">
2
- <div class="Vlt-col Vlt-col--2of3 Nxd-api__docs">
3
- <div>
4
- <h3 id='<%= endpoint.operationId %>'><%= endpoint.summary %></h3>
5
- <% if endpoint.description %>
6
- <p><%= endpoint.description.render_markdown %></p>
7
- <% end %>
8
-
9
- <div class="Vlt-badge-combined">
10
- <code class="Vlt-badge Vlt-white Vlt-badge--large Nxd-method-badge Nxd-method-badge--<%= endpoint.method %>"><%= endpoint.method.upcase %></code>
11
- <code class="Vlt-badge Vlt-badge--large Vlt-bg-grey-lighter Vlt-black">
12
- <% servers = endpoint.path.servers ? endpoint.path.servers : endpoint.definition.servers %>
13
- <% raise "`servers` parameter not provided at either the path level or document root" unless servers.size.positive? %>
14
- <span><%= servers[0]['url'] %></span><%= endpoint.path.path.gsub(/\{(.+?)\}/, '<span class="api-path-parameter">:\1</span>') %>
15
- </code>
16
- </div>
17
-
18
- <% if endpoint.jwt? || endpoint.basic_auth? || endpoint.oauth? %>
19
- <h4>Authentication</h4>
20
-
21
- <% if endpoint.jwt? && endpoint.basic_auth? %>
22
- <p>This API supports both JWT and Basic authentication. Basic authentication is easier to get started with, but does not support advanced features such as ACLs.</p>
2
+ <div class="Vlt-col oas-left-panel" style="padding-bottom: 36px;">
3
+
4
+ <h3 id='<%= endpoint.operationId %>'><%= endpoint.summary %></h3>
5
+ <% if endpoint.description %>
6
+ <p><%= endpoint.description.render_markdown %></p>
7
+ <% end %>
8
+
9
+ <% servers = endpoint.path.servers ? endpoint.path.servers : endpoint.definition.servers %>
10
+ <% raise "`servers` parameter not provided at either the path level or document root" unless servers.size.positive? %>
11
+
12
+ <%
13
+ path = endpoint.path.path.gsub(/\{(.+?)\}/, ':\1')
14
+ uri = URI("#{servers[0]['url']}#{path}")
15
+ %>
16
+ <div class="oas-path-full Vlt-badge-combined">
17
+ <code class="Vlt-badge Vlt-badge--large Nxd-method-badge Nxd-method-badge--<%= endpoint.method %>"><%= endpoint.method.upcase %></code>
18
+ <code class="Vlt-badge Vlt-badge--large Vlt-bg-grey-lighter Vlt-black">
19
+ <span><%= uri.scheme %>://<%= uri.host %></span><%= uri.path.gsub(/:([^\/]+)/, '<span class="api-path-parameter">:\1</span>') %>
20
+ </code>
21
+ </div>
23
22
 
24
- <p>You can use <em>either</em> JWT or Basic authentication, but not both at the same time.</p>
25
- <% end %>
23
+ <div class="oas-path-small Vlt-badge-combined" style="margin-bottom: 8px;">
24
+ <code class="Vlt-badge Vlt-badge--large">Host</code>
25
+ <code class="Vlt-badge Vlt-badge--large Vlt-bg-grey-lighter Vlt-black">
26
+ <%= uri.scheme %>://<%= uri.host %>
27
+ </code>
28
+ </div>
26
29
 
27
- <div class="Vlt-table Vlt-table--bordered">
28
- <table>
29
- <thead>
30
- <tr>
31
- <th>Key</th>
32
- <th>Description</th>
33
- <th>Example</th>
34
- <th>Default</th>
35
- </tr>
36
- </thead>
37
- <tbody>
38
- <% if endpoint.oauth? %>
39
- <tr>
40
- <td>
41
- <b>Authorization</b>
42
- </td>
43
- <td>
44
- <b>Your OAuth token.</b><br>
45
- <small><a href="/vonage-business-cloud/vbc-apis/getting-started/authentication">Read more about OAuth tokens</a></small>
46
- </td>
47
- <td><code>Bearer &lt;access_token&gt;</code></td>
48
- <td>
49
- <em>None</em>
50
- </td>
51
- </tr>
52
- <% end %>
30
+ <div class="oas-path-small Vlt-badge-combined">
31
+ <code class="Vlt-badge Vlt-badge--large Nxd-method-badge Nxd-method-badge--<%= endpoint.method %>"><%= endpoint.method.upcase %></code>
32
+ <code class="Vlt-badge Vlt-badge--large Vlt-bg-grey-lighter Vlt-black">
33
+ <%= uri.path.gsub(/:([^\/]+)/, '<span class="api-path-parameter">:\1</span>') %>
34
+ </code>
35
+ </div>
53
36
 
54
- <% if endpoint.jwt? %>
55
- <tr>
56
- <td>
57
- <b>Authorization</b>
58
- </td>
59
- <td>
60
- <b>Your JSON web token.</b><br>
61
- <small><a href="/concepts/guides/authentication#json-web-tokens-jwt">Read more about JWTs</a></small>
62
- </td>
63
- <td><code>Bearer &lt;JWT&gt;</code></td>
64
- <td>
65
- <em>None</em>
66
- </td>
67
- </tr>
68
- <% end %>
37
+ <%= erb :'open_api/_auth', locals: { endpoint: endpoint } %>
69
38
 
70
- <% if endpoint.basic_auth? %>
71
- <tr>
72
- <td>
73
- <b>Authorization</b>
74
- </td>
75
- <td>
76
- <b>Base64 encoded API key and secret joined by a colon.</b><br>
77
- <small><a href="/concepts/guides/authentication#header-based-api-key-and-secret-authentication">Read more</a></small>
78
- </td>
79
- <td><code>Basic &lt;base64&gt;</code></td>
80
- <td>
81
- <i>None</i>
82
- </td>
83
- </tr>
84
- <% end %>
85
- </tbody>
86
- </table>
87
- </div>
88
- <% end %>
39
+ <%= erb :'open_api/_parameter_groups', locals: { endpoint: endpoint } %>
89
40
 
90
- <%= erb :'open_api/_parameter_groups', locals: { endpoint: endpoint } %>
91
- <%= erb :'open_api/_response_descriptions', locals: { endpoint: endpoint, auto_expand_responses: @auto_expand_responses } %>
41
+ <%= erb :'open_api/_response_descriptions', locals: { endpoint: endpoint, auto_expand_responses: @auto_expand_responses } %>
92
42
 
93
- </div>
94
43
  </div>
95
44
 
96
- <div class="Vlt-col Vlt-col--1of3 Nxd-api__code">
97
- <%= erb :'open_api/_code_examples', locals: { endpoint: endpoint } %>
45
+ <div class="Vlt-col oas-right-panel">
98
46
 
99
- <div class='Nxd-api__responses'>
100
- <% endpoint.responses.each do |response| %>
101
- <%
102
- id = SecureRandom.hex
103
- expand_response = response.code[0] == '2' && response.raw['x-expand-response'] != false
104
- expand_response = true if response.raw['x-expand-response']
105
- %>
47
+ <%= erb :'open_api/_requests', locals: { endpoint: endpoint } %>
48
+
49
+ <%= erb :'open_api/_responses', locals: { endpoint: endpoint } %>
106
50
 
107
- <div class="Vlt-accordion">
108
- <button tabindex="0" class="Vlt-accordion__trigger <%= expand_response ? 'Vlt-accordion__trigger_active' : '' %>">
109
- <h5 class="Vlt-title--nomargin">HTTP response
110
- <span class="Vlt-badge Vlt-badge--<%= response.code[0] == '2' ? 'green' : response.code[0] == '3' ? 'yellow' : 'red' %> Vlt-badge--small"><%= response.code %></span>
111
- </h5>
112
- </button>
113
51
 
114
- <div class="Vlt-accordion__content <%= expand_response ? 'Vlt-accordion__content_open' : '' %>">
115
- <% response.formats.each_with_index do |format, index| %>
116
- <div class="js-format" data-format="<%= format %>">
117
- <% if response.exhibits_one_of_multiple_schemas?(format) %>
118
- <%= erb :'open_api/_response_tabs', locals: { format: format, endpoint: endpoint, response: response, content: :responses } %>
119
- <% else %>
120
- <% schema = response.schema(format) %>
121
- <%= Nexmo::OAS::Renderer::ResponseParserDecorator.new(schema).html(format, xml_options: schema['xml']) %>
122
- <% end %>
123
- </div>
124
- <% end %>
125
52
 
126
- <% if response.code == '204' || response.formats.empty? %>
127
- <% content = response.description ? response.description : 'No content' %>
128
- <pre class="Vlt-prism--dark language-json Vlt-prism--copy-disabled"><code><%= content %></code></pre>
129
- <% end %>
130
- </div>
131
- </div>
132
- <% end %>
133
- </div>
134
53
  </div>
135
54
  </div>
136
-
137
- <% endpoint.callbacks.each do |callback| %>
138
- <%= erb :'open_api/_callback', locals: { callback: callback, webhook: false } %>
139
- <% end %>