nexmo-oas-renderer 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (158) hide show
  1. checksums.yaml +7 -0
  2. data/.env.example +1 -0
  3. data/.gitignore +5 -0
  4. data/CHANGELOG.md +2 -0
  5. data/CONTRIBUTING.md +46 -0
  6. data/Gemfile +4 -0
  7. data/Gemfile.lock +183 -0
  8. data/LICENSE.txt +21 -0
  9. data/README.md +73 -0
  10. data/Rakefile +2 -0
  11. data/bin/console +14 -0
  12. data/bin/setup +8 -0
  13. data/exe/nexmo-oas-renderer +5 -0
  14. data/lib/nexmo/oas/engine.rb +9 -0
  15. data/lib/nexmo/oas/renderer.rb +13 -0
  16. data/lib/nexmo/oas/renderer/app.rb +116 -0
  17. data/lib/nexmo/oas/renderer/config.ru +7 -0
  18. data/lib/nexmo/oas/renderer/config/code_languages.yml +138 -0
  19. data/lib/nexmo/oas/renderer/config/dynamic_content.yml +1 -0
  20. data/lib/nexmo/oas/renderer/config/redirects.yml +8 -0
  21. data/lib/nexmo/oas/renderer/constraints/open_api.rb +76 -0
  22. data/lib/nexmo/oas/renderer/constraints/redirector.rb +17 -0
  23. data/lib/nexmo/oas/renderer/decorators/response_parser_decorator.rb +55 -0
  24. data/lib/nexmo/oas/renderer/filters/anchor.rb +17 -0
  25. data/lib/nexmo/oas/renderer/filters/audio.rb +21 -0
  26. data/lib/nexmo/oas/renderer/filters/block_escape.rb +24 -0
  27. data/lib/nexmo/oas/renderer/filters/break.rb +13 -0
  28. data/lib/nexmo/oas/renderer/filters/code.rb +64 -0
  29. data/lib/nexmo/oas/renderer/filters/code_snippet.rb +194 -0
  30. data/lib/nexmo/oas/renderer/filters/code_snippet_list.rb +33 -0
  31. data/lib/nexmo/oas/renderer/filters/code_snippets.rb +158 -0
  32. data/lib/nexmo/oas/renderer/filters/collapsible.rb +27 -0
  33. data/lib/nexmo/oas/renderer/filters/columns.rb +50 -0
  34. data/lib/nexmo/oas/renderer/filters/concept_list.rb +33 -0
  35. data/lib/nexmo/oas/renderer/filters/dynamic_content.rb +30 -0
  36. data/lib/nexmo/oas/renderer/filters/external_link.rb +32 -0
  37. data/lib/nexmo/oas/renderer/filters/frontmatter.rb +14 -0
  38. data/lib/nexmo/oas/renderer/filters/heading.rb +61 -0
  39. data/lib/nexmo/oas/renderer/filters/icon.rb +22 -0
  40. data/lib/nexmo/oas/renderer/filters/indent.rb +20 -0
  41. data/lib/nexmo/oas/renderer/filters/inline_escape.rb +17 -0
  42. data/lib/nexmo/oas/renderer/filters/js_sequence_diagram.rb +21 -0
  43. data/lib/nexmo/oas/renderer/filters/label.rb +32 -0
  44. data/lib/nexmo/oas/renderer/filters/language.rb +15 -0
  45. data/lib/nexmo/oas/renderer/filters/markdown.rb +85 -0
  46. data/lib/nexmo/oas/renderer/filters/modal.rb +41 -0
  47. data/lib/nexmo/oas/renderer/filters/partial.rb +28 -0
  48. data/lib/nexmo/oas/renderer/filters/php_inliner.rb +15 -0
  49. data/lib/nexmo/oas/renderer/filters/screenshot.rb +26 -0
  50. data/lib/nexmo/oas/renderer/filters/tab.rb +250 -0
  51. data/lib/nexmo/oas/renderer/filters/techio.rb +24 -0
  52. data/lib/nexmo/oas/renderer/filters/tooltip.rb +22 -0
  53. data/lib/nexmo/oas/renderer/filters/tutorial_link.rb +27 -0
  54. data/lib/nexmo/oas/renderer/filters/tutorials.rb +28 -0
  55. data/lib/nexmo/oas/renderer/filters/unfreeze.rb +20 -0
  56. data/lib/nexmo/oas/renderer/filters/user_personalization.rb +43 -0
  57. data/lib/nexmo/oas/renderer/helpers/navigation.rb +66 -0
  58. data/lib/nexmo/oas/renderer/helpers/render.rb +24 -0
  59. data/lib/nexmo/oas/renderer/helpers/summary.rb +30 -0
  60. data/lib/nexmo/oas/renderer/helpers/url.rb +17 -0
  61. data/lib/nexmo/oas/renderer/lib/core_ext/string.rb +14 -0
  62. data/lib/nexmo/oas/renderer/lib/redcarpet.rb +14 -0
  63. data/lib/nexmo/oas/renderer/models/code_snippet.rb +75 -0
  64. data/lib/nexmo/oas/renderer/models/tutorial.rb +83 -0
  65. data/lib/nexmo/oas/renderer/pipelines/markdown_pipeline.rb +52 -0
  66. data/lib/nexmo/oas/renderer/presenters/api_specification.rb +42 -0
  67. data/lib/nexmo/oas/renderer/presenters/groups.rb +35 -0
  68. data/lib/nexmo/oas/renderer/presenters/navigation.rb +24 -0
  69. data/lib/nexmo/oas/renderer/presenters/open_api_specification.rb +68 -0
  70. data/lib/nexmo/oas/renderer/presenters/versions.rb +40 -0
  71. data/lib/nexmo/oas/renderer/public/assets/fonts/Lato-Black.woff +0 -0
  72. data/lib/nexmo/oas/renderer/public/assets/fonts/Lato-Black.woff2 +0 -0
  73. data/lib/nexmo/oas/renderer/public/assets/fonts/Lato-Heavy.woff +0 -0
  74. data/lib/nexmo/oas/renderer/public/assets/fonts/Lato-Heavy.woff2 +0 -0
  75. data/lib/nexmo/oas/renderer/public/assets/fonts/Lato-Regular.woff +0 -0
  76. data/lib/nexmo/oas/renderer/public/assets/fonts/Lato-Regular.woff2 +0 -0
  77. data/lib/nexmo/oas/renderer/public/assets/fonts/Lato-Semibold.woff +0 -0
  78. data/lib/nexmo/oas/renderer/public/assets/fonts/Lato-Semibold.woff2 +0 -0
  79. data/lib/nexmo/oas/renderer/public/assets/images/brands/android.svg +1 -0
  80. data/lib/nexmo/oas/renderer/public/assets/images/brands/curl.svg +1 -0
  81. data/lib/nexmo/oas/renderer/public/assets/images/brands/dotnet.svg +1 -0
  82. data/lib/nexmo/oas/renderer/public/assets/images/brands/ios.svg +1 -0
  83. data/lib/nexmo/oas/renderer/public/assets/images/brands/java.svg +1 -0
  84. data/lib/nexmo/oas/renderer/public/assets/images/brands/javascript.svg +1 -0
  85. data/lib/nexmo/oas/renderer/public/assets/images/brands/node.svg +1 -0
  86. data/lib/nexmo/oas/renderer/public/assets/images/brands/php.svg +1 -0
  87. data/lib/nexmo/oas/renderer/public/assets/images/brands/python.svg +11 -0
  88. data/lib/nexmo/oas/renderer/public/assets/images/brands/ruby.svg +1 -0
  89. data/lib/nexmo/oas/renderer/public/assets/images/lost.svg +37 -0
  90. data/lib/nexmo/oas/renderer/public/assets/javascripts/components/format.js +42 -0
  91. data/lib/nexmo/oas/renderer/public/assets/javascripts/volta.accordion.js +249 -0
  92. data/lib/nexmo/oas/renderer/public/assets/javascripts/volta.core.js +230 -0
  93. data/lib/nexmo/oas/renderer/public/assets/javascripts/volta.modal.js +300 -0
  94. data/lib/nexmo/oas/renderer/public/assets/javascripts/volta.tabs.js +139 -0
  95. data/lib/nexmo/oas/renderer/public/assets/stylesheets/api.css +95 -0
  96. data/lib/nexmo/oas/renderer/public/assets/stylesheets/buttons.css +80 -0
  97. data/lib/nexmo/oas/renderer/public/assets/stylesheets/core.css +79 -0
  98. data/lib/nexmo/oas/renderer/public/assets/stylesheets/mediaqueries.css +2 -0
  99. data/lib/nexmo/oas/renderer/public/assets/stylesheets/mediaqueries.css.map +7 -0
  100. data/lib/nexmo/oas/renderer/public/assets/stylesheets/navigation.css +79 -0
  101. data/lib/nexmo/oas/renderer/public/assets/stylesheets/nexmo.css +68 -0
  102. data/lib/nexmo/oas/renderer/public/assets/stylesheets/sass/api.scss +147 -0
  103. data/lib/nexmo/oas/renderer/public/assets/stylesheets/sass/core.scss +133 -0
  104. data/lib/nexmo/oas/renderer/public/assets/stylesheets/sass/mediaqueries.scss +48 -0
  105. data/lib/nexmo/oas/renderer/public/assets/stylesheets/sass/navigation.scss +106 -0
  106. data/lib/nexmo/oas/renderer/public/assets/stylesheets/sass/nexmo.scss +61 -0
  107. data/lib/nexmo/oas/renderer/public/assets/stylesheets/sass/style.scss +10 -0
  108. data/lib/nexmo/oas/renderer/public/assets/stylesheets/sass/syntax.scss +63 -0
  109. data/lib/nexmo/oas/renderer/public/assets/stylesheets/sass/typography.scss +248 -0
  110. data/lib/nexmo/oas/renderer/public/assets/stylesheets/sass/variables.scss +91 -0
  111. data/lib/nexmo/oas/renderer/public/assets/stylesheets/sass/volta-templates.scss +119 -0
  112. data/lib/nexmo/oas/renderer/public/assets/stylesheets/style.css +2 -0
  113. data/lib/nexmo/oas/renderer/public/assets/stylesheets/style.css.map +7 -0
  114. data/lib/nexmo/oas/renderer/public/assets/stylesheets/syntax.css +79 -0
  115. data/lib/nexmo/oas/renderer/public/assets/stylesheets/typography.css +86 -0
  116. data/lib/nexmo/oas/renderer/public/assets/stylesheets/variables.css +2 -0
  117. data/lib/nexmo/oas/renderer/public/assets/stylesheets/variables.css.map +7 -0
  118. data/lib/nexmo/oas/renderer/public/assets/stylesheets/volta-templates.css +2 -0
  119. data/lib/nexmo/oas/renderer/public/assets/stylesheets/volta-templates.css.map +7 -0
  120. data/lib/nexmo/oas/renderer/public/assets/stylesheets/volta.min.css +1 -0
  121. data/lib/nexmo/oas/renderer/public/assets/symbol/volta-icons.svg +1 -0
  122. data/lib/nexmo/oas/renderer/public/favicon.ico +0 -0
  123. data/lib/nexmo/oas/renderer/services/code_language_api.rb +98 -0
  124. data/lib/nexmo/oas/renderer/services/oas_parser.rb +21 -0
  125. data/lib/nexmo/oas/renderer/services/open_api_definition_resolver.rb +33 -0
  126. data/lib/nexmo/oas/renderer/version.rb +7 -0
  127. data/lib/nexmo/oas/renderer/views/api/show.erb +1 -0
  128. data/lib/nexmo/oas/renderer/views/code_snippets/_application_messages_dispatch.html.erb +9 -0
  129. data/lib/nexmo/oas/renderer/views/code_snippets/_application_rtc.html.erb +41 -0
  130. data/lib/nexmo/oas/renderer/views/code_snippets/_application_voice.html.erb +24 -0
  131. data/lib/nexmo/oas/renderer/views/code_snippets/_code_only.html.erb +6 -0
  132. data/lib/nexmo/oas/renderer/views/code_snippets/_configure_client.html.erb +20 -0
  133. data/lib/nexmo/oas/renderer/views/code_snippets/_dependencies.html.erb +11 -0
  134. data/lib/nexmo/oas/renderer/views/code_snippets/_write_code.html.erb +13 -0
  135. data/lib/nexmo/oas/renderer/views/code_snippets/list/plain.html.erb +10 -0
  136. data/lib/nexmo/oas/renderer/views/concepts/list/plain.html.erb +5 -0
  137. data/lib/nexmo/oas/renderer/views/layouts/_head.erb +4 -0
  138. data/lib/nexmo/oas/renderer/views/layouts/_javascripts.erb +9 -0
  139. data/lib/nexmo/oas/renderer/views/layouts/api.erb +23 -0
  140. data/lib/nexmo/oas/renderer/views/layouts/open_api.erb +10 -0
  141. data/lib/nexmo/oas/renderer/views/open_api/_callback.erb +5 -0
  142. data/lib/nexmo/oas/renderer/views/open_api/_callback_endpoint.erb +48 -0
  143. data/lib/nexmo/oas/renderer/views/open_api/_code_examples.erb +16 -0
  144. data/lib/nexmo/oas/renderer/views/open_api/_endpoint.erb +156 -0
  145. data/lib/nexmo/oas/renderer/views/open_api/_model.erb +38 -0
  146. data/lib/nexmo/oas/renderer/views/open_api/_navigation.erb +80 -0
  147. data/lib/nexmo/oas/renderer/views/open_api/_parameter_groups.erb +50 -0
  148. data/lib/nexmo/oas/renderer/views/open_api/_parameters.erb +165 -0
  149. data/lib/nexmo/oas/renderer/views/open_api/_response_description_parameters.erb +61 -0
  150. data/lib/nexmo/oas/renderer/views/open_api/_response_descriptions.erb +41 -0
  151. data/lib/nexmo/oas/renderer/views/open_api/show.erb +104 -0
  152. data/lib/nexmo/oas/renderer/views/static/404.erb +6 -0
  153. data/lib/nexmo/oas/renderer/views/tutorials/_index.html.erb +32 -0
  154. data/lib/nexmo/oas/renderer/views/tutorials/index.html.erb +7 -0
  155. data/lib/nexmo/oas/renderer/views/tutorials/list/plain.html.erb +5 -0
  156. data/lib/nexmo/oas/renderer/views/tutorials/show.html.erb +8 -0
  157. data/nexmo-oas-renderer.gemspec +49 -0
  158. metadata +399 -0
@@ -0,0 +1,119 @@
1
+ @import './variables';
2
+ @import './mediaqueries';
3
+
4
+ .Vlt-template {
5
+ display: flex;
6
+ flex-flow: row wrap;
7
+ width: 100%;
8
+
9
+ &--header {
10
+ .Vlt-sidenav__mobile {
11
+ @media #{$S-only} {
12
+ top: 70px;
13
+ z-index: $z-index-sidenav-mobile-trigger;
14
+ }
15
+ }
16
+ }
17
+ }
18
+
19
+ .Vlt-header {
20
+ align-items: center;
21
+ background: $white;
22
+ box-shadow: 1px 0 8px rgba($black, 0.2);
23
+ display: flex;
24
+ flex: 0 0 100%;
25
+ height: 70px;
26
+ justify-content: space-between;
27
+ padding: 4px 20px;
28
+ transition: height 0.5s;
29
+ width: 100%;
30
+ z-index: $z-index-header;
31
+
32
+ @media #{$S-only} {
33
+ position: fixed;
34
+ }
35
+
36
+ &__logo {
37
+ display: block;
38
+ flex: 0 0 270px;
39
+
40
+ @media #{$S-only} {
41
+ flex: 0 0 50px;
42
+ }
43
+
44
+ img {
45
+ height: 40px;
46
+ margin: 10px 0;
47
+ }
48
+ }
49
+
50
+ &__menu {
51
+ flex: 1;
52
+
53
+ &--right {
54
+ text-align: right;
55
+ }
56
+ }
57
+
58
+ .Vlt-tabs__header {
59
+ border: 0;
60
+ }
61
+ }
62
+
63
+ .Vlt-main {
64
+ flex: 1;
65
+ height: 100vh;
66
+ overflow-y: auto;
67
+ padding-bottom: 20px;
68
+ padding-left: 10px;
69
+ padding-right: 20px;
70
+ padding-top: 15px;
71
+
72
+ @media #{$S-only} {
73
+ padding: 10px;
74
+ }
75
+
76
+ &--light {
77
+ background: $grey-lighter;
78
+ }
79
+
80
+ .Vlt-template--sidenav & {
81
+ @media #{$S-only} {
82
+ padding-top: 70px;
83
+ }
84
+ }
85
+
86
+ .Vlt-template--auth & {
87
+ align-items: center;
88
+ display: flex;
89
+ justify-content: center;
90
+
91
+ @media #{$S-only} {
92
+ padding-top: 100px;
93
+ }
94
+ }
95
+
96
+ .Vlt-template--sidenav.Vlt-template--header & {
97
+ @media #{$S-only} {
98
+ padding-top: 140px;
99
+ }
100
+ }
101
+
102
+ &__content {
103
+ max-height: calc(100vh - 130px);
104
+ max-width: 600px;
105
+ overflow-y: auto;
106
+ text-align: center;
107
+
108
+ @media #{$S-only} {
109
+ max-height: calc(100vh - 100px);
110
+ }
111
+ }
112
+ }
113
+
114
+ .Vlt-template--header .Vlt-sidenav,
115
+ .Vlt-template--header .Vlt-main {
116
+ @media #{$M-plus} {
117
+ height: calc(100vh - 70px);
118
+ }
119
+ }
@@ -0,0 +1,2 @@
1
+ .Vlt-sidenav{display:inline-flex}body{background:#f8fafc}@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}}.Nxd-content{display:flex}.Nxd-menu__indent{margin-left:31px !important}.Nxd-method-badge{text-transform:uppercase}.Nxd-method-badge--post{background:#35be8b}.Nxd-method-badge--get{background:#117bb8}.Nxd-method-badge--delete{background:#f25a6b}.Nxd-method-badge--patch{background:#4cc3d2}.Nxd-method-badge--put{background:#8f4fa7}.table-no-line td{border-bottom:none !important}.Vlt-table .Vlt-table table thead th{background-color:#f8fafc;border-bottom-color:#c4cdd5;border-top-color:#e7ebee;color:#4e5a64}.Nxd-api{padding-top:0;padding-right:16px}@media only screen and (max-width: 575px){.Nxd-api{padding-left:16px}}.Nxd-api__code{background:#e7ebee;border-bottom:1px solid #f8fafc;padding:16px}.Nxd-api__code h4,.Nxd-api__code h5{color:#4e5a64}.Nxd-api__code__header{margin:-24px -16px 16px -16px}.Nxd-api__code__header .Vlt-native-dropdown{margin-right:16px;float:right}.Nxd-api__code__header--sticky{position:fixed;top:135px;width:27.5%;z-index:1000}@media only screen and (max-width: 575px){.Nxd-api__code__header--sticky{left:0;padding:0 8px;top:52px;width:100vw;margin:0}}.Nxd-api__code .Vlt-accordion__trigger:after{background-color:rgba(255,255,255,0.2);border-radius:100%}.Nxd-api__docs{padding-top:24px}@media only screen and (min-width: 576px){.Nxd-api__docs{border-bottom:1px solid #e7ebee;padding-top:40px}}.Nxd-api__docs .Vlt-tooltip{white-space:nowrap}.Nxd-api--noborder{margin-bottom:-16px}.Nxd-api--noborder .Nxd-api__docs{border:0}.Nxd-api--noborder .Nxd-api__code{border:0}@media only screen and (max-width: 575px){.Nxd-api--noborder .Nxd-api__code{display:none}}.Nxd-version p{text-transform:uppercase;font-size:1.3rem !important}.Nxd-version a{font-size:1.3rem !important;color:#005282 !important}.Nxd-version a.active{font-weight:bold}*{box-sizing:border-box;font-smoothing:antialiased;-webkit-font-smoothing:antialiased}body{display:flex;min-height:100vh;flex-direction:column}.Nxd-template{display:flex;flex-flow:row wrap;width:100%;justify-content:center}.Nxd-main{outline:none}@media only screen and (min-width: 576px){.Nxd-main{height:calc(100vh - 111px)}}.Nxd-landing-main{padding:24px 32px}.container{max-width:1300px;padding:24px 20px 0;margin:auto}.row{max-width:1300px;margin-left:-0.9375rem;margin-right:-0.9375rem}img{max-width:100%}table code{white-space:nowrap}.spacious{padding:40px 0}.clearfix{content:"";display:table;clear:both}@keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}.spinner{width:100%;margin:40px 0;text-align:center;animation:spin 1.2s infinite ease-in-out}.spinner i{font-size:40px;color:#E4EEF3}.flex{display:flex}.flex--auto>*{flex:1}.hide{display:none}.grecaptcha-badge{display:none}.float-right{float:right}.Nxd-header-notices .Vlt-callout{margin-bottom:32px}table .Vlt-icon:not(.Vlt-icon--smaller){display:block;margin:0 auto}.Vlt-title--icon{position:relative}.heading-permalink{opacity:0;transition:opacity 0.2s;position:absolute;left:-20px}.heading-permalink svg{height:18px !important;width:18px !important}.Vlt-title--icon:hover .heading-permalink{opacity:1}.Vlt-sidenav{flex:0 0 300px;width:300px}.Vlt-sidemenu--flat .Vlt-sidemenu__link{padding:4px 10px}.Vlt-sidemenu--flat li a{font-weight:900}.Vlt-sidemenu--flat li li a{font-weight:600}.Vlt-sidemenu--flat li li li a{font-weight:400}.Vlt-sidemenu__title+ul>li{margin-left:0 !important}@media only screen and (min-width: 576px){.Vlt-sidenav{height:calc(100vh - 111px)}}.navigation--documentation .navigation-item--tutorials a{color:#2d966f}.navigation--documentation .navigation-item--api-reference a{color:#117bb8}.navigation--documentation .navigation-item--sdk-documentation>a{color:#35be8b}.navigation--documentation .navigation-item--ncco-reference a{color:#4cc3d2}.navigation--documentation .navigation-item--ncco-reference a .navigation-item--ncco-reference a{color:#4cc3d2}#Vlt-sidenav-mobile-trigger{display:inline-block;margin-top:4px;margin-right:16px}#Vlt-sidenav-mobile-trigger svg{height:24px;width:24px}@media only screen and (min-width: 576px){#Vlt-sidenav-mobile-trigger{display:none}}.Nxd-tutorial{border-right:1px solid silver}.Nxd-tutorial-sidenav{padding:0px}.Nxd-tutorial-sidenav a{color:black}.Nxd-tutorial-sidenav li li{margin-left:10px !important}.Vlt-sidemenu__link_active{color:white !important}.highlight .c{color:#919eab}.highlight .err{color:#fde8eb;background-color:rgba(247,156,166,0.7)}.highlight .k{color:#3ae}.highlight .l{color:#dcb6e9}.highlight .n{color:#c4cdd5}.highlight .o{color:#f79ca6}.highlight .p{color:#c4cdd5}.highlight .cm{color:#919eab}.highlight .cp{color:#919eab}.highlight .c1{color:#919eab}.highlight .cs{color:#919eab}.highlight .ge{font-style:italic}.highlight .gs{font-weight:bold}.highlight .kc{color:#3ae}.highlight .kd{color:#3ae}.highlight .kn{color:#f79ca6}.highlight .kp{color:#3ae}.highlight .kr{color:#3ae}.highlight .kt{color:#3ae}.highlight .ld{color:#ffc000}.highlight .m{color:#dcb6e9}.highlight .s{color:#ffc000}.highlight .na{color:#86d8b9}.highlight .nb{color:#c4cdd5}.highlight .nc{color:#86d8b9}.highlight .no{color:#3ae}.highlight .nd{color:#86d8b9}.highlight .ni{color:#c4cdd5}.highlight .ne{color:#86d8b9}.highlight .nf{color:#86d8b9}.highlight .nl{color:#c4cdd5}.highlight .nn{color:#c4cdd5}.highlight .nx{color:#86d8b9}.highlight .py{color:#c4cdd5}.highlight .nt{color:#f79ca6}.highlight .nv{color:#c4cdd5}.highlight .ow{color:#f79ca6}.highlight .w{color:#c4cdd5}.highlight .mf{color:#dcb6e9}.highlight .mh{color:#dcb6e9}.highlight .mi{color:#dcb6e9}.highlight .mo{color:#dcb6e9}.highlight .sb{color:#ffc000}.highlight .sc{color:#ffc000}.highlight .sd{color:#ffc000}.highlight .s2{color:#ffc000}.highlight .se{color:#dcb6e9}.highlight .sh{color:#ffc000}.highlight .si{color:#ffbc67}.highlight .sx{color:#ffc000}.highlight .sr{color:#ffc000}.highlight .s1{color:#ffc000}.highlight .ss{color:#ffc000}.highlight .bp{color:#c4cdd5}.highlight .vc{color:#c4cdd5}.highlight .vg{color:#c4cdd5}.highlight .vi{color:#c4cdd5}.highlight .il{color:#dcb6e9}.highlight .gu{color:#919eab}.highlight .gd{color:#f79ca6}.highlight .gi{color:#86d8b9}ul pre code,ol pre code,p pre code,h1 pre code,h2 pre code,h3 pre code,h4 pre code,h5 pre code,h6 pre code,table pre code{display:inline;border:none;color:inherit;background:none;padding:0;margin:0;border-radius:none}nav a,h1 a{border-bottom:none}.center{text-align:center}.left{text-align:left}.right{text-align:right}.indent{margin-left:30px}pre.highlight{background:#2c2d30;-webkit-font-smoothing:antialiased;padding:20px;color:#fff;margin-bottom:20px;line-height:1.35;overflow:auto;position:relative;border-radius:4px}pre.highlight code{color:#e7ebee}pre{font-family:Consolas, monospace;font-size:16px}.gutter{color:#5f697c;text-align:right;padding-right:5px;user-select:none}.active{color:#117bb8}.Nxd-article li ul,.Nxd-article li ol{margin-top:5px}.Nxd-article ul{margin-bottom:15px}.Nxd-article ul li{font-size:1em;margin-bottom:5px}.Nxd-article .tight{margin:0}.tight{margin:0}.color-text{color:#224E66}.color--warn{color:#ff8f02}.color--error{color:#f25a6b}.color--success{color:#35be8b}.meta{display:block;color:#5b8297;text-transform:uppercase;font-weight:700;font-size:13px;margin-bottom:5px}.tooltip{position:relative;display:inline-block;color:#4a748a;border-bottom:1px dotted #93B6C7;font-size:0.95em;cursor:pointer}.tooltip:before{display:none;content:' ';width:0;height:0;border-style:solid;border-width:0 10px 12px 10px;border-color:transparent transparent #282c34 transparent;position:absolute;left:50%;margin-left:-5px;bottom:-12px}.tooltip:after{display:none;content:attr(data-text);pointer-events:none;background:#282c34;color:#fff;padding:10px;position:absolute;width:300px;left:50%;margin-left:-150px;margin-top:10px;text-align:center;z-index:2}.tooltip:hover,.tooltip:focus{outline:none;color:#E6547B;border-bottom-color:#E6547B}.tooltip:hover:before,.tooltip:hover:after,.tooltip:focus:before,.tooltip:focus:after{display:block}.flash{font-size:1.2em;margin:20px 0;color:#E6547B}.version{margin-top:40px}.api-path{display:block;border:2px solid #E4EEF3;border-radius:4px;overflow:hidden;margin-bottom:20px;font-size:1.2em;background:#fff}.api-path .api-path-parameter{color:#E6547B}.api-path .api-path-method{display:inline-block;font-family:Consolas, monospace;color:#117bb8;background:#f3f8fb;border-right:1px solid #dbebf4;margin-right:10px;font-weight:700;padding:6px 20px 3px 20px}.api-path .api-path-method--post{color:#35be8b;background:#f5fcf9;border-right:1px solid #e1f5ee}.api-path .api-path-method--delete{color:#f25a6b;background:#fef7f8;border-right:1px solid #fde6e9}.api-path .api-path-method--update{color:#ff8f02;background:#fff9f2;border-right:1px solid #ffeed9}.api-path .api-path-host{margin-right:-10px;color:#96abb6}.api-reference b{color:#4a748a}.flag{text-transform:uppercase;font-size:0.82em;font-weight:600;color:#117bb8}.flag--strong{color:#f25a6b}.subtle{color:#4a748a}.truncate{overflow:hidden;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical}@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-template{display:flex;flex-flow:row wrap;width:100%}@media only screen and (max-width: 575px){.Vlt-template--header .Vlt-sidenav__mobile{top:70px;z-index:650}}.Vlt-header{align-items:center;background:#fff;box-shadow:1px 0 8px rgba(44,45,48,0.2);display:flex;flex:0 0 100%;height:70px;justify-content:space-between;padding:4px 20px;transition:height 0.5s;width:100%;z-index:700}@media only screen and (max-width: 575px){.Vlt-header{position:fixed}}.Vlt-header__logo{display:block;flex:0 0 270px}@media only screen and (max-width: 575px){.Vlt-header__logo{flex:0 0 50px}}.Vlt-header__logo img{height:40px;margin:10px 0}.Vlt-header__menu{flex:1}.Vlt-header__menu--right{text-align:right}.Vlt-header .Vlt-tabs__header{border:0}.Vlt-main{flex:1;height:100vh;overflow-y:auto;padding-bottom:20px;padding-left:10px;padding-right:20px;padding-top:15px}@media only screen and (max-width: 575px){.Vlt-main{padding:10px}}.Vlt-main--light{background:#f8fafc}@media only screen and (max-width: 575px){.Vlt-template--sidenav .Vlt-main{padding-top:70px}}.Vlt-template--auth .Vlt-main{align-items:center;display:flex;justify-content:center}@media only screen and (max-width: 575px){.Vlt-template--auth .Vlt-main{padding-top:100px}}@media only screen and (max-width: 575px){.Vlt-template--sidenav.Vlt-template--header .Vlt-main{padding-top:140px}}.Vlt-main__content{max-height:calc(100vh - 130px);max-width:600px;overflow-y:auto;text-align:center}@media only screen and (max-width: 575px){.Vlt-main__content{max-height:calc(100vh - 100px)}}@media only screen and (min-width: 576px){.Vlt-template--header .Vlt-sidenav,.Vlt-template--header .Vlt-main{height:calc(100vh - 70px)}}
2
+ /*# sourceMappingURL=style.css.map */
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "mappings": "AAsDA,YAAa,CACX,OAAO,CAAE,WAAW,CAGtB,IAAK,CACH,UAAU,CCAG,OAAO,CC3CrB,yCAAkB,CADnB,WAAY,CAEV,OAAO,CAAE,eAAe,EAKzB,yCAAkB,CADnB,WAAY,CAEV,OAAO,CAAE,eAAe,EAGzB,yCAAkB,CALnB,WAAY,CAMV,OAAO,CAAE,eAAe,EAKzB,yCAAkB,CADnB,WAAY,CAEV,OAAO,CAAE,eAAe,EAKzB,yCAAkB,CADnB,WAAY,CAEV,OAAO,CAAE,eAAe,EAKzB,yCAAkB,CADnB,WAAY,CAEV,OAAO,CAAE,eAAe,EC7C1B,YAAa,CACX,OAAO,CAAE,IAAI,CAGf,iBAAkB,CAChB,WAAW,CAAE,eAAe,CAG9B,iBAAkB,CAChB,cAAc,CAAE,SAAS,CAEzB,uBAAQ,CACN,UAAU,CHeH,OAAM,CGZf,sBAAO,CACL,UAAU,CFHF,OAAO,CEMjB,yBAAU,CACR,UAAU,CHQH,OAAI,CGLb,wBAAS,CACP,UAAU,CFgBP,OAAO,CEbZ,sBAAO,CACL,UAAU,CFMA,OAAO,CEDnB,iBAAG,CACD,aAAa,CAAE,eAAe,CAO5B,oCAAG,CACD,gBAAgB,CFiBT,OAAO,CEhBd,mBAAmB,CFkBpB,OAAO,CEjBN,gBAAgB,CFgBX,OAAO,CEfZ,KAAK,CFkBC,OAAO,CEZrB,QAAS,CACP,WAAW,CAAE,CAAC,CACd,aAAa,CFuBP,IAAI,CErBV,yCAAkB,CAJpB,QAAS,CAKL,YAAY,CFoBR,IAAI,EEjBV,cAAQ,CACN,UAAU,CFAD,OAAO,CEChB,aAAa,CAAE,iBAAuB,CACtC,OAAO,CFcH,IAAI,CEZR,mCACG,CACD,KAAK,CFHG,OAAO,CEMjB,sBAAU,CACR,MAAM,CAAE,sBAA0C,CAElD,2CAAqB,CACnB,YAAY,CFGZ,IAAI,CEFJ,KAAK,CAAE,KAAK,CAGd,8BAAU,CACR,QAAQ,CAAE,KAAK,CACf,GAAG,CAAE,KAAK,CACV,KAAK,CAAE,KAAK,CACZ,OAAO,CAAE,IAAI,CAEb,yCAAkB,CANpB,8BAAU,CAON,IAAI,CAAE,CAAC,CACP,OAAO,CAAE,KAAQ,CACjB,GAAG,CAAE,IAAI,CACT,KAAK,CAAE,KAAK,CACZ,MAAM,CAAE,CAAC,EAOb,4CAAQ,CACN,gBAAgB,CAAE,qBAAiB,CACnC,aAAa,CAAE,IAAI,CAKzB,cAAQ,CACN,WAAW,CF1BP,IAAI,CE4BR,yCAAkB,CAHpB,cAAQ,CAIJ,aAAa,CAAE,iBAAqB,CACpC,WAAW,CF5BT,IAAI,EE+BR,2BAAa,CACX,WAAW,CAAE,MAAM,CAIvB,kBAAY,CACV,aAAa,CAAE,KAAO,CAEtB,iCAAe,CACb,MAAM,CAAE,CAAC,CAGX,iCAAe,CACb,MAAM,CAAE,CAAC,CAET,yCAAkB,CAHpB,iCAAe,CAIX,OAAO,CAAE,IAAI,EAQnB,cAAE,CACA,cAAc,CAAE,SAAS,CACzB,SAAS,CAAE,iBAAiB,CAG9B,cAAE,CACA,SAAS,CAAE,iBAAiB,CAC5B,KAAK,CAAE,kBAAkB,CACzB,qBAAS,CACP,WAAW,CAAE,IAAI,CC/IvB,CAAE,CACA,UAAU,CAAE,UAAU,CACtB,cAAc,CAAE,WAAW,CAC3B,sBAAsB,CAAE,WAAW,CAGrC,IAAK,CACH,OAAO,CAAE,IAAI,CACb,UAAU,CAAE,KAAK,CACjB,cAAc,CAAE,MAAM,CAGxB,aAAc,CACZ,OAAO,CAAE,IAAI,CACb,SAAS,CAAE,QAAQ,CACnB,KAAK,CAAE,IAAI,CACX,eAAe,CAAE,MAAM,CAGzB,SAAU,CACR,OAAO,CAAE,IAAI,CAGf,yCAAkB,CAChB,SAAU,CACR,MAAM,CAAE,mBAAmB,EAI/B,iBAAkB,CAChB,OAAO,CAAE,SAAa,CAGxB,UAAW,CACT,SAAS,CAAE,MAAM,CACjB,OAAO,CAAE,WAAiB,CAC1B,MAAM,CAAE,IAAI,CAGd,IAAK,CACH,SAAS,CAAE,MAAM,CACjB,WAAW,CAAE,UAAU,CACvB,YAAY,CAAE,UAAU,CAG1B,GAAI,CACF,SAAS,CAAE,IAAI,CAIf,UAAK,CACH,WAAW,CAAE,MAAM,CAIvB,SAAU,CACR,OAAO,CAAE,MAAY,CAGvB,SAAU,CACR,OAAO,CAAE,EAAE,CACX,OAAO,CAAE,KAAK,CACd,KAAK,CAAE,IAAI,CAGb,eAGC,CAFC,EAAK,CAAC,iBAAiB,CAAE,YAAY,CACrC,IAAK,CAAC,iBAAiB,CAAE,cAAc,EAGzC,QAAS,CACP,KAAK,CAAE,IAAI,CACX,MAAM,CAAE,MAAY,CACpB,UAAU,CAAE,MAAM,CAClB,SAAS,CAAE,8BAA8B,CACzC,UAAE,CACA,SAAS,CAAE,IAAI,CACf,KAAK,CJ9Ba,OAAK,CIkC3B,KAAM,CACJ,OAAO,CAAE,IAAI,CAIb,aAAI,CAAE,IAAI,CAAE,CAAC,CAGf,KAAM,CACJ,OAAO,CAAE,IAAI,CAGf,iBAAkB,CAChB,OAAO,CAAE,IAAI,CAGf,YAAa,CACX,KAAK,CAAE,KAAK,CAIZ,gCAAa,CACX,aAAa,CHzBT,IAAI,CG8BV,uCAAkC,CAChC,OAAO,CAAE,KAAK,CACd,MAAM,CAAE,MAAM,CAIlB,gBAAiB,CACf,QAAQ,CAAE,QAAQ,CAGpB,kBAAmB,CACjB,OAAO,CAAE,CAAC,CACV,UAAU,CAAE,YAAY,CACxB,QAAQ,CAAE,QAAQ,CAClB,IAAI,CAAE,KAAK,CAEX,sBAAI,CACF,MAAM,CAAE,eAAe,CACvB,KAAK,CAAE,eAAe,CAGxB,yCAAyB,CACvB,OAAO,CAAE,CAAC,CCtHd,YAAa,CACX,IAAI,CAAE,SAAS,CACf,KAAK,CAAE,KAAK,CAIZ,uCAAoB,CAClB,OAAO,CAAE,QAAQ,CAIjB,wBAAE,CACA,WAAW,CAAE,GAAG,CAIhB,2BAAE,CACA,WAAW,CAAE,GAAG,CAIhB,8BAAE,CACA,WAAW,CAAE,GAAG,CAO1B,0BAA+B,CAC7B,WAAW,CAAE,YAAY,CAG3B,yCAAkB,CAChB,YAAa,CACX,MAAM,CAAE,mBAAmB,EAK7B,wDAA8B,CAC5B,KAAK,CJ1BI,OAAO,CI6BlB,4DAAkC,CAChC,KAAK,CJ5CG,OAAO,CI+CjB,gEAAwC,CACtC,KAAK,CLlCE,OAAM,CKqCf,6DAAmC,CACjC,KAAK,CJzBF,OAAO,CI2BV,gGAAmC,CACjC,KAAK,CJ5BJ,OAAO,CIiCd,2BAA4B,CAC1B,OAAO,CAAE,YAAY,CACrB,UAAU,CJDJ,GAAG,CIET,YAAY,CJAN,IAAI,CIEV,+BAAI,CACF,MAAM,CAAE,IAAI,CACZ,KAAK,CAAE,IAAI,CAGb,yCAAkB,CAVpB,2BAA4B,CAWxB,OAAO,CAAE,IAAI,EAIjB,aAAc,CACZ,YAAY,CAAE,gBAAgB,CAEhC,qBAAsB,CAIpB,OAAO,CAAE,GAAG,CAHZ,uBAAE,CACA,KAAK,CAAE,KAAK,CAId,2BAAM,CACJ,WAAW,CAAE,eAAe,CAKhC,0BAA2B,CACzB,KAAK,CAAE,gBAAgB,CCxGzB,aAAc,CAAE,KAAK,CL8DT,OAAO,CK7DnB,eAAgB,CAAE,KAAK,CLgBT,OAAO,CKhBkB,gBAAgB,CAAE,qBAAsB,CAC/E,aAAc,CAAE,KAAK,CNFR,IAAK,CMGlB,aAAc,CAAE,KAAK,CL6BN,OAAO,CK5BtB,aAAc,CAAE,KAAK,CLyDd,OAAO,CKxDd,aAAc,CAAE,KAAK,CLaT,OAAO,CKZnB,aAAc,CAAE,KAAK,CLuDd,OAAO,CKtDd,cAAe,CAAE,KAAK,CLuDV,OAAO,CKtDnB,cAAe,CAAE,KAAK,CLsDV,OAAO,CKrDnB,cAAe,CAAE,KAAK,CLqDV,OAAO,CKpDnB,cAAe,CAAE,KAAK,CLoDV,OAAO,CKnDnB,cAAe,CAAE,UAAU,CAAE,MAAM,CACnC,cAAe,CAAE,WAAW,CAAE,IAAI,CAClC,cAAe,CAAE,KAAK,CNbT,IAAK,CMclB,cAAe,CAAE,KAAK,CNdT,IAAK,CMelB,cAAe,CAAE,KAAK,CLGV,OAAO,CKFnB,cAAe,CAAE,KAAK,CNhBT,IAAK,CMiBlB,cAAe,CAAE,KAAK,CNjBT,IAAK,CMkBlB,cAAe,CAAE,KAAK,CNlBT,IAAK,CMmBlB,cAAe,CAAE,KAAK,CL4Bb,OAAO,CK3BhB,aAAc,CAAE,KAAK,CLYN,OAAO,CKXtB,aAAc,CAAE,KAAK,CL0BZ,OAAO,CKzBhB,cAAe,CAAE,KAAK,CLGR,OAAO,CKFrB,cAAe,CAAE,KAAK,CLsCf,OAAO,CKrCd,cAAe,CAAE,KAAK,CLCR,OAAO,CKArB,cAAe,CAAE,KAAK,CNzBT,IAAK,CM0BlB,cAAe,CAAE,KAAK,CLDR,OAAO,CKErB,cAAe,CAAE,KAAK,CLkCf,OAAO,CKjCd,cAAe,CAAE,KAAK,CLHR,OAAO,CKIrB,cAAe,CAAE,KAAK,CLJR,OAAO,CKKrB,cAAe,CAAE,KAAK,CL+Bf,OAAO,CK9Bd,cAAe,CAAE,KAAK,CL8Bf,OAAO,CK7Bd,cAAe,CAAE,KAAK,CLPR,OAAO,CKQrB,cAAe,CAAE,KAAK,CL4Bf,OAAO,CK3Bd,cAAe,CAAE,KAAK,CLhBV,OAAO,CKiBnB,cAAe,CAAE,KAAK,CL0Bf,OAAO,CKzBd,cAAe,CAAE,KAAK,CLlBV,OAAO,CKmBnB,aAAc,CAAE,KAAK,CLwBd,OAAO,CKvBd,cAAe,CAAE,KAAK,CLNP,OAAO,CKOtB,cAAe,CAAE,KAAK,CLPP,OAAO,CKQtB,cAAe,CAAE,KAAK,CLRP,OAAO,CKStB,cAAe,CAAE,KAAK,CLTP,OAAO,CKUtB,cAAe,CAAE,KAAK,CLKb,OAAO,CKJhB,cAAe,CAAE,KAAK,CLIb,OAAO,CKHhB,cAAe,CAAE,KAAK,CLGb,OAAO,CKFhB,cAAe,CAAE,KAAK,CLEb,OAAO,CKDhB,cAAe,CAAE,KAAK,CLdP,OAAO,CKetB,cAAe,CAAE,KAAK,CLAb,OAAO,CKChB,cAAe,CAAE,KAAK,CL5CP,OAAO,CK6CtB,cAAe,CAAE,KAAK,CLFb,OAAO,CKGhB,cAAe,CAAE,KAAK,CLHb,OAAO,CKIhB,cAAe,CAAE,KAAK,CLJb,OAAO,CKKhB,cAAe,CAAE,KAAK,CLLb,OAAO,CKMhB,cAAe,CAAE,KAAK,CLQf,OAAO,CKPd,cAAe,CAAE,KAAK,CLOf,OAAO,CKNd,cAAe,CAAE,KAAK,CLMf,OAAO,CKLd,cAAe,CAAE,KAAK,CLKf,OAAO,CKJd,cAAe,CAAE,KAAK,CLzBP,OAAO,CK4BtB,cAAe,CAAE,KAAK,CLEV,OAAO,CKDnB,cAAe,CAAE,KAAK,CL3CV,OAAO,CK4CnB,cAAe,CAAE,KAAK,CLrCR,OAAO,CMxBnB,yHAAS,CACP,OAAO,CAAE,MAAM,CACf,MAAM,CAAE,IAAI,CACZ,KAAK,CAAE,OAAO,CACd,UAAU,CAAE,IAAI,CAChB,OAAO,CAAE,CAAC,CACV,MAAM,CAAE,CAAC,CACT,aAAa,CAAE,IAAI,CAKrB,UAAY,CACV,aAAa,CAAE,IAAI,CAIvB,OAAQ,CACN,UAAU,CAAE,MAAM,CAGpB,KAAM,CACJ,UAAU,CAAE,IAAI,CAGlB,MAAO,CACL,UAAU,CAAE,KAAK,CAGnB,OAAQ,CACN,WAAW,CAAE,IAAc,CAG7B,aAAc,CACZ,UAAU,CN6BJ,OAAO,CM5Bb,sBAAsB,CAAE,WAAW,CACnC,OAAO,CPCC,IAAI,COAZ,KAAK,CNrCC,IAAO,CMsCb,aAAa,CPDL,IAAI,COEZ,WAAW,CAAE,IAAI,CACjB,QAAQ,CAAE,IAAI,CACd,QAAQ,CAAE,QAAQ,CAClB,aAAa,CAAE,GAAG,CAElB,kBAAK,CACH,KAAK,CNcI,OAAO,CMVpB,GAAI,CACF,WAAW,CAAE,mBAAmB,CAChC,SAAS,CAAE,IAAI,CAGjB,OAAQ,CACN,KAAK,CAAE,OAAO,CACd,UAAU,CAAE,KAAK,CACjB,aAAa,CAAE,GAAG,CAClB,WAAW,CAAE,IAAI,CAGnB,OAAQ,CACN,KAAK,CNlDK,OAAO,CMuDjB,qCAAa,CACX,UAAU,CAAE,GAAG,CAGjB,eAAG,CACD,aAAa,CAAE,IAAI,CAGrB,kBAAM,CACJ,SAAS,CAAE,GAAG,CACd,aAAa,CAAE,GAAG,CAGpB,mBAAO,CACL,MAAM,CAAE,CAAC,CAIb,MAAO,CACL,MAAM,CAAE,CAAC,CAGX,WAAY,CACV,KAAK,CP5DA,OAAM,CO+Db,YAAa,CACX,KAAK,CP3DG,OAAO,CO8DjB,aAAc,CACZ,KAAK,CPvEI,OAAI,CO0Ef,eAAgB,CACd,KAAK,CP5EI,OAAM,CO+EjB,KAAM,CACJ,OAAO,CAAE,KAAK,CACd,KAAK,CAAE,OAAyB,CAChC,cAAc,CAAE,SAAS,CACzB,WAAW,CAAE,GAAG,CAChB,SAAS,CAAE,IAAI,CACf,aAAa,CAAE,GAAG,CAGpB,QAAS,CACP,QAAQ,CAAE,QAAQ,CAClB,OAAO,CAAE,YAAY,CACrB,KAAK,CPtFO,OAAoC,COuFhD,aAAa,CAAE,kBAAuB,CACtC,SAAS,CAAE,MAAM,CACjB,MAAM,CAAE,OAAO,CAEf,eAAS,CACP,OAAO,CAAE,IAAI,CACb,OAAO,CAAE,GAAG,CACZ,KAAK,CAAE,CAAC,CACR,MAAM,CAAE,CAAC,CACT,YAAY,CAAE,KAAK,CACnB,YAAY,CAAE,gBAAgB,CAC9B,YAAY,CAAE,2CAAyC,CACvD,QAAQ,CAAE,QAAQ,CAClB,IAAI,CAAE,GAAG,CACT,WAAW,CAAE,IAAI,CACjB,MAAM,CAAE,KAAK,CAGf,cAAQ,CACN,OAAO,CAAE,IAAI,CACb,OAAO,CAAE,eAAe,CACxB,cAAc,CAAE,IAAI,CACpB,UAAU,CP5GI,OAAK,CO6GnB,KAAK,CN7ID,IAAO,CM8IX,OAAO,CAAE,IAAY,CACrB,QAAQ,CAAE,QAAQ,CAClB,KAAK,CAAE,KAAK,CACZ,IAAI,CAAE,GAAG,CACT,WAAW,CAAE,MAAM,CACnB,UAAU,CAAE,IAAI,CAChB,UAAU,CAAE,MAAM,CAClB,OAAO,CAAE,CAAC,CAGZ,6BAAiB,CACf,OAAO,CAAE,IAAI,CACb,KAAK,CPjIC,OAAK,COkIX,mBAAmB,CPlIb,OAAK,COmIX,qFAAkB,CAChB,OAAO,CAAE,KAAK,CAKpB,MAAO,CACL,SAAS,CAAE,KAAK,CAChB,MAAM,CAAE,MAAU,CAClB,KAAK,CP5IG,OAAK,CO+If,QAAS,CACP,UAAU,CAAE,IAAY,CAG1B,SAAU,CACR,OAAO,CAAE,KAAK,CACd,MAAM,CAAE,iBAAe,CACvB,aAAa,CAAE,GAAG,CAClB,QAAQ,CAAE,MAAM,CAChB,aAAa,CP5IL,IAAI,CO6IZ,SAAS,CAAE,KAAK,CAChB,UAAU,CNnLJ,IAAO,CMqLb,6BAAoB,CAClB,KAAK,CP7JC,OAAK,COgKb,0BAAiB,CACf,OAAO,CAAE,YAAY,CACrB,WAAW,CAAE,mBAAmB,CAChC,KAAK,CNhLG,OAAO,CMiLf,UAAU,CAAE,OAA2B,CACvC,YAAY,CAAE,iBAAsC,CACpD,YAAY,CAAE,IAAI,CAClB,WAAW,CAAE,GAAG,CAChB,OAAO,CAAE,iBAAyB,CAElC,gCAAQ,CACN,KAAK,CP1KA,OAAM,CO2KX,UAAU,CAAE,OAAuB,CACnC,YAAY,CAAE,iBAAkC,CAGlD,kCAAU,CACR,KAAK,CP/KA,OAAI,COgLT,UAAU,CAAE,OAAqB,CACjC,YAAY,CAAE,iBAAgC,CAGhD,kCAAU,CACR,KAAK,CP7KD,OAAO,CO8KX,UAAU,CAAE,OAAwB,CACpC,YAAY,CAAE,iBAAmC,CAIrD,wBAAe,CACb,YAAY,CAAE,KAAK,CACnB,KAAK,CAAE,OAA8B,CAKvC,gBAAE,CACA,KAAK,CP/LK,OAAoC,COmMlD,KAAM,CACJ,cAAc,CAAE,SAAS,CACzB,SAAS,CAAE,MAAM,CACjB,WAAW,CAAE,GAAG,CAChB,KAAK,CN1NK,OAAO,CM4NjB,aAAU,CACR,KAAK,CP9ME,OAAI,COkNf,OAAQ,CACN,KAAK,CP/MO,OAAoC,COkNlD,SAAU,CACR,QAAQ,CAAE,MAAM,CAChB,OAAO,CAAE,WAAW,CACpB,kBAAkB,CAAE,CAAC,CACrB,kBAAkB,CAAE,QAAQ,CLtO7B,yCAAkB,CADnB,WAAY,CAEV,OAAO,CAAE,eAAe,EAKzB,yCAAkB,CADnB,WAAY,CAEV,OAAO,CAAE,eAAe,EAGzB,yCAAkB,CALnB,WAAY,CAMV,OAAO,CAAE,eAAe,EAKzB,yCAAkB,CADnB,WAAY,CAEV,OAAO,CAAE,eAAe,EAKzB,yCAAkB,CADnB,WAAY,CAEV,OAAO,CAAE,eAAe,EAKzB,yCAAkB,CADnB,WAAY,CAEV,OAAO,CAAE,eAAe,EM1C1B,aAAc,CACZ,OAAO,CAAE,IAAI,CACb,SAAS,CAAE,QAAQ,CACnB,KAAK,CAAE,IAAI,CAIP,yCAAkB,CADpB,0CAAqB,CAEjB,GAAG,CAAE,IAAI,CACT,OAAO,CP6EkB,GAAG,EOvEpC,WAAY,CACV,WAAW,CAAE,MAAM,CACnB,UAAU,CPnBJ,IAAO,COoBb,UAAU,CAAE,4BAA2B,CACvC,OAAO,CAAE,IAAI,CACb,IAAI,CAAE,QAAQ,CACd,MAAM,CAAE,IAAI,CACZ,eAAe,CAAE,aAAa,CAC9B,OAAO,CAAE,QAAQ,CACjB,UAAU,CAAE,WAAW,CACvB,KAAK,CAAE,IAAI,CACX,OAAO,CP6DQ,GAAG,CO3DlB,yCAAkB,CAbpB,WAAY,CAcR,QAAQ,CAAE,KAAK,EAGjB,iBAAQ,CACN,OAAO,CAAE,KAAK,CACd,IAAI,CAAE,SAAS,CAEf,yCAAkB,CAJpB,iBAAQ,CAKJ,IAAI,CAAE,QAAQ,EAGhB,qBAAI,CACF,MAAM,CAAE,IAAI,CACZ,MAAM,CAAE,MAAM,CAIlB,iBAAQ,CACN,IAAI,CAAE,CAAC,CAEP,wBAAS,CACP,UAAU,CAAE,KAAK,CAIrB,6BAAkB,CAChB,MAAM,CAAE,CAAC,CAIb,SAAU,CACR,IAAI,CAAE,CAAC,CACP,MAAM,CAAE,KAAK,CACb,UAAU,CAAE,IAAI,CAChB,cAAc,CAAE,IAAI,CACpB,YAAY,CAAE,IAAI,CAClB,aAAa,CAAE,IAAI,CACnB,WAAW,CAAE,IAAI,CAEjB,yCAAkB,CATpB,SAAU,CAUN,OAAO,CAAE,IAAI,EAGf,gBAAS,CACP,UAAU,CPjBC,OAAO,COqBlB,yCAAkB,CADpB,gCAAyB,CAErB,WAAW,CAAE,IAAI,EAIrB,6BAAsB,CACpB,WAAW,CAAE,MAAM,CACnB,OAAO,CAAE,IAAI,CACb,eAAe,CAAE,MAAM,CAEvB,yCAAkB,CALpB,6BAAsB,CAMlB,WAAW,CAAE,KAAK,EAKpB,yCAAkB,CADpB,qDAA+C,CAE3C,WAAW,CAAE,KAAK,EAItB,kBAAW,CACT,UAAU,CAAE,mBAAmB,CAC/B,SAAS,CAAE,KAAK,CAChB,UAAU,CAAE,IAAI,CAChB,UAAU,CAAE,MAAM,CAElB,yCAAkB,CANpB,kBAAW,CAOP,UAAU,CAAE,mBAAmB,EAOnC,yCAAkB,CAFpB,kEACgC,CAE5B,MAAM,CAAE,kBAAkB",
4
+ "sources": ["sass/nexmo.scss","sass/variables.scss","sass/mediaqueries.scss","sass/api.scss","sass/core.scss","sass/navigation.scss","sass/syntax.scss","sass/typography.scss","sass/volta-templates.scss"],
5
+ "names": [],
6
+ "file": "style.css"
7
+ }
@@ -0,0 +1,79 @@
1
+ /*
2
+ Error: Undefined variable: "$grey-dark".
3
+ on line 1 of ./public/stylesheets/sass/syntax.scss
4
+
5
+ 1: .highlight .c { color: $grey-dark } /* Comment *\/
6
+ 2: .highlight .err { color: $red-lighter; background-color: rgba($red-light, 0.7) } /* Error *\/
7
+ 3: .highlight .k { color: $blue-light } /* Keyword *\/
8
+ 4: .highlight .l { color: $purple-light } /* Literal *\/
9
+ 5: .highlight .n { color: $grey } /* Name *\/
10
+ 6: .highlight .o { color: $red-light } /* Operator *\/
11
+
12
+ Backtrace:
13
+ ./public/stylesheets/sass/syntax.scss:1
14
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/script/tree/variable.rb:49:in `_perform'
15
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/script/tree/node.rb:50:in `perform'
16
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:398:in `visit_prop'
17
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:36:in `visit'
18
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:158:in `block in visit'
19
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/stack.rb:79:in `block in with_base'
20
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/stack.rb:135:in `with_frame'
21
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/stack.rb:79:in `with_base'
22
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:158:in `visit'
23
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:440:in `block (2 levels) in visit_rule'
24
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:440:in `map'
25
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:440:in `block in visit_rule'
26
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:179:in `with_environment'
27
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:438:in `visit_rule'
28
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:36:in `visit'
29
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:158:in `block in visit'
30
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/stack.rb:79:in `block in with_base'
31
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/stack.rb:135:in `with_frame'
32
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/stack.rb:79:in `with_base'
33
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:158:in `visit'
34
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:52:in `block in visit_children'
35
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:52:in `map'
36
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:52:in `visit_children'
37
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:167:in `block in visit_children'
38
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:179:in `with_environment'
39
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:166:in `visit_children'
40
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:36:in `block in visit'
41
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:186:in `visit_root'
42
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:36:in `visit'
43
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:157:in `visit'
44
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:10:in `visit'
45
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/root_node.rb:36:in `css_tree'
46
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/root_node.rb:29:in `render_with_sourcemap'
47
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/engine.rb:389:in `_render_with_sourcemap'
48
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/engine.rb:307:in `render_with_sourcemap'
49
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/plugin/compiler.rb:462:in `update_stylesheet'
50
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/plugin/compiler.rb:215:in `block in update_stylesheets'
51
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/plugin/compiler.rb:209:in `each'
52
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/plugin/compiler.rb:209:in `update_stylesheets'
53
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/plugin.rb:82:in `update_stylesheets'
54
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/plugin.rb:54:in `check_for_updates'
55
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/plugin/rack.rb:51:in `call'
56
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/rack-2.0.7/lib/rack/lint.rb:49:in `_call'
57
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/rack-2.0.7/lib/rack/lint.rb:37:in `call'
58
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/rack-2.0.7/lib/rack/show_exceptions.rb:23:in `call'
59
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/rack-2.0.7/lib/rack/common_logger.rb:33:in `call'
60
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sinatra-2.0.5/lib/sinatra/base.rb:231:in `call'
61
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/shotgun-0.9.2/lib/shotgun/loader.rb:86:in `proceed_as_child'
62
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/shotgun-0.9.2/lib/shotgun/loader.rb:31:in `call!'
63
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/shotgun-0.9.2/lib/shotgun/loader.rb:18:in `call'
64
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/shotgun-0.9.2/lib/shotgun/favicon.rb:12:in `call'
65
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/shotgun-0.9.2/lib/shotgun/static.rb:14:in `call'
66
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/rack-2.0.7/lib/rack/urlmap.rb:68:in `block in call'
67
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/rack-2.0.7/lib/rack/urlmap.rb:53:in `each'
68
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/rack-2.0.7/lib/rack/urlmap.rb:53:in `call'
69
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/rack-2.0.7/lib/rack/builder.rb:153:in `call'
70
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/puma-3.12.1/lib/puma/configuration.rb:227:in `call'
71
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/puma-3.12.1/lib/puma/server.rb:660:in `handle_request'
72
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/puma-3.12.1/lib/puma/server.rb:474:in `process_client'
73
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/puma-3.12.1/lib/puma/server.rb:334:in `block in run'
74
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/puma-3.12.1/lib/puma/thread_pool.rb:135:in `block in spawn_thread'
75
+ */
76
+ body:before {
77
+ white-space: pre;
78
+ font-family: monospace;
79
+ content: "Error: Undefined variable: \"$grey-dark\".\A on line 1 of ./public/stylesheets/sass/syntax.scss\A \A 1: .highlight .c { color: $grey-dark } /* Comment */\A 2: .highlight .err { color: $red-lighter; background-color: rgba($red-light, 0.7) } /* Error */\A 3: .highlight .k { color: $blue-light } /* Keyword */\A 4: .highlight .l { color: $purple-light } /* Literal */\A 5: .highlight .n { color: $grey } /* Name */\A 6: .highlight .o { color: $red-light } /* Operator */"; }
@@ -0,0 +1,86 @@
1
+ /*
2
+ Error: Undefined variable: "$spacing".
3
+ on line 32 of ./public/stylesheets/sass/typography.scss
4
+
5
+ 27: .right {
6
+ 28: text-align: right;
7
+ 29: }
8
+ 30:
9
+ 31: .indent {
10
+ 32: margin-left: $spacing * 1.5;
11
+ 33: }
12
+ 34:
13
+ 35: pre.highlight {
14
+ 36: background: $black;
15
+ 37: -webkit-font-smoothing: antialiased;
16
+
17
+ Backtrace:
18
+ ./public/stylesheets/sass/typography.scss:32
19
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/script/tree/variable.rb:49:in `_perform'
20
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/script/tree/node.rb:50:in `perform'
21
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/script/tree/operation.rb:67:in `_perform'
22
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/script/tree/node.rb:50:in `perform'
23
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:398:in `visit_prop'
24
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:36:in `visit'
25
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:158:in `block in visit'
26
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/stack.rb:79:in `block in with_base'
27
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/stack.rb:135:in `with_frame'
28
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/stack.rb:79:in `with_base'
29
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:158:in `visit'
30
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:440:in `block (2 levels) in visit_rule'
31
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:440:in `map'
32
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:440:in `block in visit_rule'
33
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:179:in `with_environment'
34
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:438:in `visit_rule'
35
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:36:in `visit'
36
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:158:in `block in visit'
37
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/stack.rb:79:in `block in with_base'
38
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/stack.rb:135:in `with_frame'
39
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/stack.rb:79:in `with_base'
40
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:158:in `visit'
41
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:52:in `block in visit_children'
42
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:52:in `map'
43
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:52:in `visit_children'
44
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:167:in `block in visit_children'
45
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:179:in `with_environment'
46
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:166:in `visit_children'
47
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:36:in `block in visit'
48
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:186:in `visit_root'
49
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/base.rb:36:in `visit'
50
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:157:in `visit'
51
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/visitors/perform.rb:10:in `visit'
52
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/root_node.rb:36:in `css_tree'
53
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/tree/root_node.rb:29:in `render_with_sourcemap'
54
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/engine.rb:389:in `_render_with_sourcemap'
55
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/engine.rb:307:in `render_with_sourcemap'
56
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/plugin/compiler.rb:462:in `update_stylesheet'
57
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/plugin/compiler.rb:215:in `block in update_stylesheets'
58
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/plugin/compiler.rb:209:in `each'
59
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/plugin/compiler.rb:209:in `update_stylesheets'
60
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/plugin.rb:82:in `update_stylesheets'
61
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/plugin.rb:54:in `check_for_updates'
62
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sass-3.7.4/lib/sass/plugin/rack.rb:51:in `call'
63
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/rack-2.0.7/lib/rack/lint.rb:49:in `_call'
64
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/rack-2.0.7/lib/rack/lint.rb:37:in `call'
65
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/rack-2.0.7/lib/rack/show_exceptions.rb:23:in `call'
66
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/rack-2.0.7/lib/rack/common_logger.rb:33:in `call'
67
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/sinatra-2.0.5/lib/sinatra/base.rb:231:in `call'
68
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/shotgun-0.9.2/lib/shotgun/loader.rb:86:in `proceed_as_child'
69
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/shotgun-0.9.2/lib/shotgun/loader.rb:31:in `call!'
70
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/shotgun-0.9.2/lib/shotgun/loader.rb:18:in `call'
71
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/shotgun-0.9.2/lib/shotgun/favicon.rb:12:in `call'
72
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/shotgun-0.9.2/lib/shotgun/static.rb:14:in `call'
73
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/rack-2.0.7/lib/rack/urlmap.rb:68:in `block in call'
74
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/rack-2.0.7/lib/rack/urlmap.rb:53:in `each'
75
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/rack-2.0.7/lib/rack/urlmap.rb:53:in `call'
76
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/rack-2.0.7/lib/rack/builder.rb:153:in `call'
77
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/puma-3.12.1/lib/puma/configuration.rb:227:in `call'
78
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/puma-3.12.1/lib/puma/server.rb:660:in `handle_request'
79
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/puma-3.12.1/lib/puma/server.rb:474:in `process_client'
80
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/puma-3.12.1/lib/puma/server.rb:334:in `block in run'
81
+ /Users/frodriguez/.rbenv/versions/2.5.5/lib/ruby/gems/2.5.0/gems/puma-3.12.1/lib/puma/thread_pool.rb:135:in `block in spawn_thread'
82
+ */
83
+ body:before {
84
+ white-space: pre;
85
+ font-family: monospace;
86
+ content: "Error: Undefined variable: \"$spacing\".\A on line 32 of ./public/stylesheets/sass/typography.scss\A \A 27: .right {\A 28: text-align: right;\A 29: }\A 30: \A 31: .indent {\A 32: margin-left: $spacing * 1.5;\A 33: }\A 34: \A 35: pre.highlight {\A 36: background: $black;\A 37: -webkit-font-smoothing: antialiased;"; }
@@ -0,0 +1,2 @@
1
+
2
+ /*# sourceMappingURL=variables.css.map */
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "mappings": "",
4
+ "sources": [],
5
+ "names": [],
6
+ "file": "variables.css"
7
+ }
@@ -0,0 +1,2 @@
1
+ @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-template{display:flex;flex-flow:row wrap;width:100%}@media only screen and (max-width: 575px){.Vlt-template--header .Vlt-sidenav__mobile{top:70px;z-index:650}}.Vlt-header{align-items:center;background:#fff;box-shadow:1px 0 8px rgba(44,45,48,0.2);display:flex;flex:0 0 100%;height:70px;justify-content:space-between;padding:4px 20px;transition:height 0.5s;width:100%;z-index:700}@media only screen and (max-width: 575px){.Vlt-header{position:fixed}}.Vlt-header__logo{display:block;flex:0 0 270px}@media only screen and (max-width: 575px){.Vlt-header__logo{flex:0 0 50px}}.Vlt-header__logo img{height:40px;margin:10px 0}.Vlt-header__menu{flex:1}.Vlt-header__menu--right{text-align:right}.Vlt-header .Vlt-tabs__header{border:0}.Vlt-main{flex:1;height:100vh;overflow-y:auto;padding-bottom:20px;padding-left:10px;padding-right:20px;padding-top:15px}@media only screen and (max-width: 575px){.Vlt-main{padding:10px}}.Vlt-main--light{background:#f8fafc}@media only screen and (max-width: 575px){.Vlt-template--sidenav .Vlt-main{padding-top:70px}}.Vlt-template--auth .Vlt-main{align-items:center;display:flex;justify-content:center}@media only screen and (max-width: 575px){.Vlt-template--auth .Vlt-main{padding-top:100px}}@media only screen and (max-width: 575px){.Vlt-template--sidenav.Vlt-template--header .Vlt-main{padding-top:140px}}.Vlt-main__content{max-height:calc(100vh - 130px);max-width:600px;overflow-y:auto;text-align:center}@media only screen and (max-width: 575px){.Vlt-main__content{max-height:calc(100vh - 100px)}}@media only screen and (min-width: 576px){.Vlt-template--header .Vlt-sidenav,.Vlt-template--header .Vlt-main{height:calc(100vh - 70px)}}
2
+ /*# sourceMappingURL=volta-templates.css.map */
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "mappings": "AAgBC,yCAAkB,CADnB,WAAY,CAEV,OAAO,CAAE,eAAe,EAKzB,yCAAkB,CADnB,WAAY,CAEV,OAAO,CAAE,eAAe,EAGzB,yCAAkB,CALnB,WAAY,CAMV,OAAO,CAAE,eAAe,EAKzB,yCAAkB,CADnB,WAAY,CAEV,OAAO,CAAE,eAAe,EAKzB,yCAAkB,CADnB,WAAY,CAEV,OAAO,CAAE,eAAe,EAKzB,yCAAkB,CADnB,WAAY,CAEV,OAAO,CAAE,eAAe,EC1C1B,aAAc,CACZ,OAAO,CAAE,IAAI,CACb,SAAS,CAAE,QAAQ,CACnB,KAAK,CAAE,IAAI,CAIP,yCAAkB,CADpB,0CAAqB,CAEjB,GAAG,CAAE,IAAI,CACT,OAAO,CC6EkB,GAAG,EDvEpC,WAAY,CACV,WAAW,CAAE,MAAM,CACnB,UAAU,CCnBJ,IAAO,CDoBb,UAAU,CAAE,4BAA2B,CACvC,OAAO,CAAE,IAAI,CACb,IAAI,CAAE,QAAQ,CACd,MAAM,CAAE,IAAI,CACZ,eAAe,CAAE,aAAa,CAC9B,OAAO,CAAE,QAAQ,CACjB,UAAU,CAAE,WAAW,CACvB,KAAK,CAAE,IAAI,CACX,OAAO,CC6DQ,GAAG,CD3DlB,yCAAkB,CAbpB,WAAY,CAcR,QAAQ,CAAE,KAAK,EAGjB,iBAAQ,CACN,OAAO,CAAE,KAAK,CACd,IAAI,CAAE,SAAS,CAEf,yCAAkB,CAJpB,iBAAQ,CAKJ,IAAI,CAAE,QAAQ,EAGhB,qBAAI,CACF,MAAM,CAAE,IAAI,CACZ,MAAM,CAAE,MAAM,CAIlB,iBAAQ,CACN,IAAI,CAAE,CAAC,CAEP,wBAAS,CACP,UAAU,CAAE,KAAK,CAIrB,6BAAkB,CAChB,MAAM,CAAE,CAAC,CAIb,SAAU,CACR,IAAI,CAAE,CAAC,CACP,MAAM,CAAE,KAAK,CACb,UAAU,CAAE,IAAI,CAChB,cAAc,CAAE,IAAI,CACpB,YAAY,CAAE,IAAI,CAClB,aAAa,CAAE,IAAI,CACnB,WAAW,CAAE,IAAI,CAEjB,yCAAkB,CATpB,SAAU,CAUN,OAAO,CAAE,IAAI,EAGf,gBAAS,CACP,UAAU,CCjBC,OAAO,CDqBlB,yCAAkB,CADpB,gCAAyB,CAErB,WAAW,CAAE,IAAI,EAIrB,6BAAsB,CACpB,WAAW,CAAE,MAAM,CACnB,OAAO,CAAE,IAAI,CACb,eAAe,CAAE,MAAM,CAEvB,yCAAkB,CALpB,6BAAsB,CAMlB,WAAW,CAAE,KAAK,EAKpB,yCAAkB,CADpB,qDAA+C,CAE3C,WAAW,CAAE,KAAK,EAItB,kBAAW,CACT,UAAU,CAAE,mBAAmB,CAC/B,SAAS,CAAE,KAAK,CAChB,UAAU,CAAE,IAAI,CAChB,UAAU,CAAE,MAAM,CAElB,yCAAkB,CANpB,kBAAW,CAOP,UAAU,CAAE,mBAAmB,EAOnC,yCAAkB,CAFpB,kEACgC,CAE5B,MAAM,CAAE,kBAAkB",
4
+ "sources": ["sass/mediaqueries.scss","sass/volta-templates.scss","sass/variables.scss"],
5
+ "names": [],
6
+ "file": "volta-templates.css"
7
+ }
@@ -0,0 +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 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:Lato;font-style:normal;font-weight:600;src:url(../../assets/fonts/Lato-Semibold.woff2) format("woff2"),url(../../assets/fonts/Lato-Semibold.woff) format("woff"),url(../../assets/fonts/Lato-Semibold.svg#latosemibold) format("svg")}@font-face{font-family:Lato;font-style:normal;font-weight:800;src:url(../../assets/fonts/Lato-Heavy.woff2) format("woff2"),url(../../assets/fonts/Lato-Heavy.woff) format("woff")}@font-face{font-family:Lato;font-style:normal;font-weight:900;src:url(../../assets/fonts/Lato-Heavy.woff2) format("woff2"),url(../../assets/fonts/Lato-Heavy.woff) format("woff")}@font-face{font-family:Lato;font-style:normal;font-weight:400;src:url(../../assets/fonts/Lato-Regular.woff2) format("woff2"),url(../../assets/fonts/Lato-Regular.woff) format("woff")}html{font-size:62.5%}body{color:#2c2d30;font-family:lato,sans-serif;font-size:1.5rem;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.5rem;font-weight:400;line-height:2rem}b,strong{font-weight:900}a{text-decoration:none}h1,h2,h3,h4,h5,h6{color:#2c2d30}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:#2c2d30;margin-bottom:8px}.p-large{font-size:1.7rem;line-height:2.8rem;margin-bottom:16px}.Vlt-title--icon{display:-ms-flexbox;display:flex}.Vlt-title--icon svg{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}h1{font-size:3.2rem;font-weight:800;line-height:3.7rem;margin-bottom:24px}@media only screen and (min-width:768px){h1{font-size:4rem;line-height:4.8rem}}h1.Vlt-title--icon svg{-ms-flex:0 0 32px;flex:0 0 32px;height:32px;margin-top:5px;width:32px}@media only screen and (min-width:768px){h1.Vlt-title--icon svg{-ms-flex:0 0 40px;flex:0 0 40px;height:40px;width:40px}}h2{font-size:2.8rem;font-weight:800;line-height:3.2rem;margin-bottom:16px}@media only screen and (min-width:768px){h2{font-size:3rem;line-height:3.4rem}}h2.Vlt-title--icon svg{-ms-flex:0 0 28px;flex:0 0 28px;height:28px;margin-top:4px;width:28px}@media only screen and (min-width:768px){h2.Vlt-title--icon svg{-ms-flex:0 0 30px;flex:0 0 30px;height:30px;width:30px}}h3{font-size:2.3rem;font-weight:800;line-height:2.8rem;margin-bottom:16px}@media only screen and (min-width:768px){h3{font-size:2.4rem;line-height:3rem}}h3.Vlt-title--icon svg{-ms-flex:0 0 23px;flex:0 0 23px;height:23px;margin-top:3px;width:23px}@media only screen and (min-width:768px){h3.Vlt-title--icon svg{-ms-flex:0 0 25px;flex:0 0 25px;height:25px;width:25px}}h4{font-size:2rem;font-weight:800;line-height:2.4rem;margin-bottom:8px}@media only screen and (min-width:768px){h4{font-size:2.1rem;line-height:2.4rem}}h4.Vlt-title--icon svg{-ms-flex:0 0 21px;flex:0 0 21px;height:21px;margin-top:2px;width:21px}h5{font-size:1.7rem;font-weight:800;line-height:2rem;margin-bottom:8px}h5.Vlt-title--icon svg{-ms-flex:0 0 20px;flex:0 0 20px;height:20px;width:20px}small{font-size:1.3rem;font-weight:400;line-height:1.5rem}.p-large small,h1 small,h2 small,h3 small,h4 small,h5 small{font-size:80%;font-weight:inherit;line-height:inherit}code{color:#f25a6b;font-family:monospace,monospace;font-size:inherit;line-height:inherit}p+h1,p+h2,p+h3,p+h4,ul+h1,ul+h2,ul+h3,ul+h4{padding-top:16px}.Vlt-text--large{font-size:1.7rem}.Vlt-text--larger{font-size:2.4rem}.Vlt-text--largest{font-size:3.6rem}.Vlt-white{color:#fff!important;fill:#fff!important}.Vlt-bg-white{background-color:#fff!important}.Vlt-orange-lighter{color:#ffe9cc!important;fill:#ffe9cc!important}.Vlt-bg-orange-lighter{background-color:#ffe9cc!important}.Vlt-orange-light{color:#ffbc67!important;fill:#ffbc67!important}.Vlt-bg-orange-light{background-color:#ffbc67!important}.Vlt-orange{color:#ff8f02!important;fill:#ff8f02!important}.Vlt-bg-orange{background-color:#ff8f02!important}.Vlt-orange-dark{color:#c05717!important;fill:#c05717!important}.Vlt-bg-orange-dark{background-color:#c05717!important}.Vlt-orange-darker{color:#4a1504!important;fill:#4a1504!important}.Vlt-bg-orange-darker{background-color:#4a1504!important}.Vlt-blue-lighter{color:#d6eefc!important;fill:#d6eefc!important}.Vlt-bg-blue-lighter{background-color:#d6eefc!important}.Vlt-blue-light{color:#85ccf5!important;fill:#85ccf5!important}.Vlt-bg-blue-light{background-color:#85ccf5!important}.Vlt-blue{color:#3ae!important;fill:#3ae!important}.Vlt-bg-blue{background-color:#3ae!important}.Vlt-blue-dark{color:#117bb8!important;fill:#117bb8!important}.Vlt-bg-blue-dark{background-color:#117bb8!important}.Vlt-blue-darker{color:#005282!important;fill:#005282!important}.Vlt-bg-blue-darker{background-color:#005282!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:#35be8b!important;fill:#35be8b!important}.Vlt-bg-green{background-color:#35be8b!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:#f3e7f8!important;fill:#f3e7f8!important}.Vlt-bg-purple-lighter{background-color:#f3e7f8!important}.Vlt-purple-light{color:#dcb6e9!important;fill:#dcb6e9!important}.Vlt-bg-purple-light{background-color:#dcb6e9!important}.Vlt-purple{color:#c485db!important;fill:#c485db!important}.Vlt-bg-purple{background-color:#c485db!important}.Vlt-purple-dark{color:#8f4fa7!important;fill:#8f4fa7!important}.Vlt-bg-purple-dark{background-color:#8f4fa7!important}.Vlt-purple-darker{color:#230051!important;fill:#230051!important}.Vlt-bg-purple-darker{background-color:#230051!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:#fff2cc!important;fill:#fff2cc!important}.Vlt-bg-yellow-lighter{background-color:#fff2cc!important}.Vlt-yellow-light{color:#f8e71c!important;fill:#f8e71c!important}.Vlt-bg-yellow-light{background-color:#f8e71c!important}.Vlt-yellow{color:#ffc000!important;fill:#ffc000!important}.Vlt-bg-yellow{background-color:#ffc000!important}.Vlt-yellow-dark{color:#9c6f19!important;fill:#9c6f19!important}.Vlt-bg-yellow-dark{background-color:#9c6f19!important}.Vlt-yellow-darker{color:#573b00!important;fill:#573b00!important}.Vlt-bg-yellow-darker{background-color:#573b00!important}.Vlt-yellow-text{color:#595130!important;fill:#595130!important}.Vlt-bg-yellow-text{background-color:#595130!important}.Vlt-indigo-lighter{color:#e4e6f7!important;fill:#e4e6f7!important}.Vlt-bg-indigo-lighter{background-color:#e4e6f7!important}.Vlt-indigo-light{color:#b3bcf5!important;fill:#b3bcf5!important}.Vlt-bg-indigo-light{background-color:#b3bcf5!important}.Vlt-indigo{color:#7683d8!important;fill:#7683d8!important}.Vlt-bg-indigo{background-color:#7683d8!important}.Vlt-indigo-dark{color:#5664b5!important;fill:#5664b5!important}.Vlt-bg-indigo-dark{background-color:#5664b5!important}.Vlt-indigo-darker{color:#202e78!important;fill:#202e78!important}.Vlt-bg-indigo-darker{background-color:#202e78!important}.Vlt-indigo-text{color:#3e4155!important;fill:#3e4155!important}.Vlt-bg-indigo-text{background-color:#3e4155!important}.Vlt-grey-lighter{color:#f8fafc!important;fill:#f8fafc!important}.Vlt-bg-grey-lighter{background-color:#f8fafc!important}.Vlt-grey-light{color:#e7ebee!important;fill:#e7ebee!important}.Vlt-bg-grey-light{background-color:#e7ebee!important}.Vlt-grey{color:#c4cdd5!important;fill:#c4cdd5!important}.Vlt-bg-grey{background-color:#c4cdd5!important}.Vlt-grey-dark{color:#919eab!important;fill:#919eab!important}.Vlt-bg-grey-dark{background-color:#919eab!important}.Vlt-grey-darker{color:#4e5a64!important;fill:#4e5a64!important}.Vlt-bg-grey-darker{background-color:#4e5a64!important}.Vlt-black{color:#2c2d30!important;fill:#2c2d30!important}.Vlt-bg-black{background-color:#2c2d30!important}.Vlt-red-lighter{color:#fde8eb!important;fill:#fde8eb!important}.Vlt-bg-red-lighter{background-color:#fde8eb!important}.Vlt-red-light{color:#f79ca6!important;fill:#f79ca6!important}.Vlt-bg-red-light{background-color:#f79ca6!important}.Vlt-red{color:#f25a6b!important;fill:#f25a6b!important}.Vlt-bg-red{background-color:#f25a6b!important}.Vlt-red-dark{color:#bb3241!important;fill:#bb3241!important}.Vlt-bg-red-dark{background-color:#bb3241!important}.Vlt-red-darker{color:#330202!important;fill:#330202!important}.Vlt-bg-red-darker{background-color:#330202!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,#138bcf,#0d5c89)!important}.Vlt-gradient--blue-light{background:linear-gradient(to right,#4bb4f0,#1292dc)!important}.Vlt-gradient--red{background:linear-gradient(to right,#f47280,#ee2b41)!important}.Vlt-gradient--orange{background:linear-gradient(to right,#ffa635,#e88100)!important}.Vlt-gradient--indigo{background:linear-gradient(to right,#8a95de,#4e5fcd)!important}.Vlt-gradient--green{background:linear-gradient(to right,#42ca98,#2a966e)!important}.Vlt-gradient--purple{background:linear-gradient(to right,#ce99e1,#b15ecf)!important}.Vlt-gradient--teal{background:linear-gradient(to right,#60cad7,#2facbc)!important}.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:36px;box-shadow:0 1px 0 rgba(44,45,48,.15);cursor:pointer;display:inline-block;font-size:1.4rem;font-weight:600;-ms-flex-pack:center;justify-content:center;line-height:1.9rem;margin:8px 0;min-height:36px;outline:0;padding:8px 16px;text-align:center;transition:transform .1s,background .1s;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:hover,.Vlt-callout__cta:hover,.Vlt-dropdown__btn:hover,.Vlt-native-dropdown select:hover{transform:scale(1.05)}.Vlt-btn:active,.Vlt-callout__cta:active,.Vlt-dropdown__btn:active,.Vlt-native-dropdown select:active{border:0;box-shadow:inset 0 2px 3px rgba(44,45,48,.12);outline:0;transform:scale(.99)}.Vlt-btn svg,.Vlt-callout__cta svg,.Vlt-dropdown__btn svg,.Vlt-native-dropdown select svg{display:inline-block;fill:#fff;height:20px;margin-left:-5px;margin-right:6px;margin-top:-3px;vertical-align:middle;width:20px}.Vlt-btn--block{width:100%}.Vlt-btn+.Vlt-btn{margin-left:8px}.Vlt-btn--nomargin{margin:0}.Vlt-btn--app,.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:4px}.Vlt-btn--small,.Vlt-btn-group--small .Vlt-btn,.Vlt-callout--banner .Vlt-btn,.Vlt-callout--banner .Vlt-callout__cta,.Vlt-dropdown__btn--small,.Vlt-table .Vlt-btn{line-height:1.5rem;min-height:30px;padding:7px 14px}.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-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.2rem;margin:8px 0 16px;min-height:50px;padding:13px 25px}.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:24px;margin-top:-4px;width:24px}.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{margin-left:-8px;margin-right:-8px}.Vlt-btn--large.Vlt-btn--icon svg,.Vlt-btn-group--icon .Vlt-btn--large.Vlt-btn svg{margin-left:-12px;margin-right:-12px}.Vlt-btn--small.Vlt-btn--icon svg,.Vlt-btn-group--icon .Vlt-btn--small.Vlt-btn svg{margin-left:-7px;margin-right:-7px}.Vlt-btn--primary,.Vlt-callout--warning .Vlt-callout__cta,.Vlt-dropdown__btn--primary{background:#ff8f02;color:#fff}.Vlt-btn--primary:hover,.Vlt-btn--primary:not(.Vlt-btn--no-focus):focus,.Vlt-callout--warning .Vlt-callout__cta:hover,.Vlt-callout--warning .Vlt-callout__cta:not(.Vlt-btn--no-focus):focus,.Vlt-dropdown__btn--primary:hover,.Vlt-dropdown__btn--primary:not(.Vlt-btn--no-focus):focus{background:#e88100;color:#fff}.Vlt-btn--primary:active,.Vlt-btn_active.Vlt-btn--primary,.Vlt-btn_active.Vlt-dropdown__btn--primary,.Vlt-callout--warning .Vlt-btn_active.Vlt-callout__cta,.Vlt-callout--warning .Vlt-callout__cta:active,.Vlt-dropdown__btn--primary:active{background:#dd7b00;box-shadow:inset 0 2px 3px rgba(44,45,48,.2),0 0 0 rgba(44,45,48,0);color:#fff}.Vlt-btn--secondary,.Vlt-callout--shoutout .Vlt-callout__cta,.Vlt-dropdown__btn--secondary{background:#3ae;color:#fff}.Vlt-btn--secondary:hover,.Vlt-btn--secondary:not(.Vlt-btn--no-focus):focus,.Vlt-callout--shoutout .Vlt-callout__cta:hover,.Vlt-callout--shoutout .Vlt-callout__cta:not(.Vlt-btn--no-focus):focus,.Vlt-dropdown__btn--secondary:hover,.Vlt-dropdown__btn--secondary:not(.Vlt-btn--no-focus):focus{background:#1ba0ec;color:#fff}.Vlt-btn--secondary:active,.Vlt-btn_active.Vlt-btn--secondary,.Vlt-btn_active.Vlt-dropdown__btn--secondary,.Vlt-callout--shoutout .Vlt-btn_active.Vlt-callout__cta,.Vlt-callout--shoutout .Vlt-callout__cta:active,.Vlt-dropdown__btn--secondary:active{background:#139cea;box-shadow:inset 0 2px 3px rgba(44,45,48,.2);color:#fff}.Vlt-btn--tertiary,.Vlt-callout--tip .Vlt-callout__cta,.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),.Vlt-native-dropdown select{background:#f8fafc;box-shadow:inset 0 0 0 1px #c4cdd5,0 1px 0 rgba(44,45,48,.15);color:#2c2d30;font-weight:400}.Vlt-btn--tertiary svg,.Vlt-callout--tip .Vlt-callout__cta 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) svg,.Vlt-native-dropdown select svg{fill:#4e5a64}.Vlt-btn--tertiary:hover,.Vlt-btn--tertiary:not(.Vlt-btn--no-focus):focus,.Vlt-callout--tip .Vlt-callout__cta:hover,.Vlt-callout--tip .Vlt-callout__cta:not(.Vlt-btn--no-focus):focus,.Vlt-composite__append .Vlt-btn:hover,.Vlt-composite__append .Vlt-btn:not(.Vlt-btn--no-focus):focus,.Vlt-composite__append .Vlt-dropdown__btn:hover,.Vlt-composite__append .Vlt-dropdown__btn:not(.Vlt-btn--no-focus):focus,.Vlt-composite__prepend .Vlt-btn:hover,.Vlt-composite__prepend .Vlt-btn:not(.Vlt-btn--no-focus):focus,.Vlt-composite__prepend .Vlt-dropdown__btn:hover,.Vlt-composite__prepend .Vlt-dropdown__btn:not(.Vlt-btn--no-focus):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),.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),.Vlt-native-dropdown select:hover,.Vlt-native-dropdown select:not(.Vlt-btn--no-focus):focus{background:#edf2f7;color:#2c2d30}.Vlt-btn--tertiary:active,.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),.Vlt-callout--tip .Vlt-btn_active.Vlt-callout__cta,.Vlt-callout--tip .Vlt-callout__cta:active,.Vlt-composite__append .Vlt-btn:active,.Vlt-composite__append .Vlt-btn_active.Vlt-btn,.Vlt-composite__append .Vlt-btn_active.Vlt-dropdown__btn,.Vlt-composite__append .Vlt-dropdown__btn:active,.Vlt-composite__prepend .Vlt-btn:active,.Vlt-composite__prepend .Vlt-btn_active.Vlt-btn,.Vlt-composite__prepend .Vlt-btn_active.Vlt-dropdown__btn,.Vlt-composite__prepend .Vlt-dropdown__btn:active,.Vlt-dropdown__btn: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),.Vlt-native-dropdown select.Vlt-btn_active,.Vlt-native-dropdown select:active{background:#e7ebee;box-shadow:inset 0 2px 3px rgba(44,45,48,.2),inset 0 0 0 1px #c4cdd5;color:#2c2d30}.Vlt-btn--destructive,.Vlt-callout--critical .Vlt-callout__cta,.Vlt-dropdown__btn--destructive{background:#f25a6b;color:#fff}.Vlt-btn--destructive:hover,.Vlt-btn--destructive:not(.Vlt-btn--no-focus):focus,.Vlt-callout--critical .Vlt-callout__cta:hover,.Vlt-callout--critical .Vlt-callout__cta:not(.Vlt-btn--no-focus):focus,.Vlt-dropdown__btn--destructive:hover,.Vlt-dropdown__btn--destructive:not(.Vlt-btn--no-focus):focus{background:#f04256;color:#fff}.Vlt-btn--destructive:active,.Vlt-btn_active.Vlt-btn--destructive,.Vlt-btn_active.Vlt-dropdown__btn--destructive,.Vlt-callout--critical .Vlt-btn_active.Vlt-callout__cta,.Vlt-callout--critical .Vlt-callout__cta:active,.Vlt-dropdown__btn--destructive:active{background:#d51127;box-shadow:inset 0 2px 3px rgba(44,45,48,.2);color:#fff}.Vlt-btn--quaternary,.Vlt-dropdown__btn--quaternary{background:#35be8b;color:#fff}.Vlt-btn--quaternary:hover,.Vlt-btn--quaternary:not(.Vlt-btn--no-focus):focus,.Vlt-dropdown__btn--quaternary:hover,.Vlt-dropdown__btn--quaternary:not(.Vlt-btn--no-focus):focus{background:#2faa7c;color:#fff}.Vlt-btn--quaternary:active,.Vlt-btn_active.Vlt-btn--quaternary,.Vlt-btn_active.Vlt-dropdown__btn--quaternary,.Vlt-dropdown__btn--quaternary:active{background:#2da277;box-shadow:inset 0 2px 3px rgba(44,45,48,.2);color:#fff}.Vlt-btn-group{display:-ms-flexbox;display:flex}.Vlt-btn-group .Vlt-btn{margin-left:0;margin-right:0}.Vlt-btn-group .Vlt-btn:hover{transform:scale(1)}.Vlt-btn-group .Vlt-btn:not(:first-child){border-bottom-left-radius: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--destructive:not(:first-child),.Vlt-btn-group .Vlt-btn--primary:not(:first-child),.Vlt-btn-group .Vlt-btn--quaternary:not(:first-child),.Vlt-btn-group .Vlt-btn--secondary:not(:first-child){box-shadow:0 1px 0 rgba(44,45,48,.15),inset 1px 0 0 0 rgba(255,255,255,.3)}.Vlt-btn-group .Vlt-btn--destructive.Vlt-btn_active:not(:first-child):not(:last-child),.Vlt-btn-group .Vlt-btn--primary.Vlt-btn_active:not(:first-child):not(:last-child),.Vlt-btn-group .Vlt-btn--quaternary.Vlt-btn_active:not(:first-child):not(:last-child),.Vlt-btn-group .Vlt-btn--secondary.Vlt-btn_active:not(:first-child):not(:last-child){box-shadow:inset 0 2px 3px rgba(44,45,48,.2),0 1px 0 rgba(44,45,48,.15),inset 1px 0 0 0 rgba(255,255,255,.5)}.Vlt-btn-group .Vlt-btn--tertiary:not(:first-child),.Vlt-btn-group .Vlt-native-dropdown select:not(:first-child),.Vlt-native-dropdown .Vlt-btn-group select:not(:first-child){box-shadow:0 1px 0 rgba(44,45,48,.15),inset 0 1px 0 0 #c4cdd5,inset 0 -1px 0 0 #c4cdd5,inset -1px 0 0 0 #c4cdd5}.Vlt-btn-group .Vlt-btn--tertiary.Vlt-btn_active:not(:first-child),.Vlt-btn-group .Vlt-btn--tertiary:active:not(:first-child),.Vlt-btn-group .Vlt-native-dropdown select.Vlt-btn_active:not(:first-child),.Vlt-btn-group .Vlt-native-dropdown select:active:not(:first-child),.Vlt-native-dropdown .Vlt-btn-group select.Vlt-btn_active:not(:first-child),.Vlt-native-dropdown .Vlt-btn-group select:active:not(:first-child){box-shadow:inset 0 2px 3px rgba(44,45,48,.2),0 1px 0 rgba(44,45,48,.15),inset 0 1px 0 0 #c4cdd5,inset 0 -1px 0 0 #c4cdd5,inset -1px 0 0 0 #c4cdd5}.Vlt-btn-group .Vlt-btn:not(.Vlt-btn--no-focus):focus{z-index:2}.Vlt-btn-group--app .Vlt-btn:first-child{border-bottom-left-radius:4px;border-top-left-radius:4px}.Vlt-btn-group--app .Vlt-btn:last-child{border-bottom-right-radius:4px;border-top-right-radius:4px}.Vlt-btn-group:not(.Vlt-btn-group--app) .Vlt-btn:first-child{padding-left:20px}.Vlt-btn-group:not(.Vlt-btn-group--app) .Vlt-btn:last-child{padding-right:20px}.Vlt-btn-group--small:not(.Vlt-btn-group--app) .Vlt-btn:last-child{padding-right:18px}.Vlt-btn-group--small:not(.Vlt-btn-group--app) .Vlt-btn:first-child{padding-left:18px}.Vlt-btn-group--large:not(.Vlt-btn-group--app) .Vlt-btn:last-child{padding-right:30px}.Vlt-btn-group--large:not(.Vlt-btn-group--app) .Vlt-btn:first-child{padding-left:30px}.Vlt-btn-group--hover{border:0!important;margin-top:-8px;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{opacity:1;z-index:2}.Vlt-btn-on-hover:not(tr):not(td):not(table) .Vlt-btn-group--hover{top:-8px}.Vlt-text-btn{border-radius:0;cursor:pointer;font-size:1.5rem;padding:0;white-space:nowrap}.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:#117bb8;cursor:pointer;font-size:inherit;font-weight:inherit;line-height:inherit}.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:#005282}.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:#005282}.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:#117bb8}.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:#005282}.Vlt-accordion__trigger,.Vlt-badge__dismiss,.Vlt-callout__dismiss,.Vlt-dialpad__header__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--destructive:disabled,.Vlt-btn--disabled.Vlt-btn--destructive,.Vlt-btn--disabled.Vlt-btn--primary,.Vlt-btn--disabled.Vlt-btn--quaternary,.Vlt-btn--disabled.Vlt-btn--secondary,.Vlt-btn--disabled.Vlt-btn--tertiary,.Vlt-btn--disabled.Vlt-dropdown__btn--destructive,.Vlt-btn--disabled.Vlt-dropdown__btn--primary,.Vlt-btn--disabled.Vlt-dropdown__btn--quaternary,.Vlt-btn--disabled.Vlt-dropdown__btn--secondary,.Vlt-btn--disabled.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),.Vlt-btn--primary:disabled,.Vlt-btn--quaternary:disabled,.Vlt-btn--secondary:disabled,.Vlt-btn--tertiary:disabled,.Vlt-callout--critical .Vlt-btn--disabled.Vlt-callout__cta,.Vlt-callout--critical .Vlt-callout__cta:disabled,.Vlt-callout--shoutout .Vlt-btn--disabled.Vlt-callout__cta,.Vlt-callout--shoutout .Vlt-callout__cta:disabled,.Vlt-callout--tip .Vlt-btn--disabled.Vlt-callout__cta,.Vlt-callout--tip .Vlt-callout__cta:disabled,.Vlt-callout--warning .Vlt-btn--disabled.Vlt-callout__cta,.Vlt-callout--warning .Vlt-callout__cta:disabled,.Vlt-composite__append .Vlt-btn--disabled.Vlt-btn,.Vlt-composite__append .Vlt-btn--disabled.Vlt-dropdown__btn,.Vlt-composite__append .Vlt-btn:disabled,.Vlt-composite__append .Vlt-dropdown__btn:disabled,.Vlt-composite__prepend .Vlt-btn--disabled.Vlt-btn,.Vlt-composite__prepend .Vlt-btn--disabled.Vlt-dropdown__btn,.Vlt-composite__prepend .Vlt-btn:disabled,.Vlt-composite__prepend .Vlt-dropdown__btn:disabled,.Vlt-dropdown__btn--destructive:disabled,.Vlt-dropdown__btn--primary:disabled,.Vlt-dropdown__btn--quaternary:disabled,.Vlt-dropdown__btn--secondary:disabled,.Vlt-dropdown__btn:disabled: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),.Vlt-native-dropdown select.Vlt-btn--disabled,.Vlt-native-dropdown select:disabled{background:#e7ebee;box-shadow:none;color:#919eab;font-weight:400;pointer-events:none}.Vlt-btn--destructive:disabled svg,.Vlt-btn--disabled.Vlt-btn--destructive svg,.Vlt-btn--disabled.Vlt-btn--primary svg,.Vlt-btn--disabled.Vlt-btn--quaternary svg,.Vlt-btn--disabled.Vlt-btn--secondary svg,.Vlt-btn--disabled.Vlt-btn--tertiary svg,.Vlt-btn--disabled.Vlt-dropdown__btn--destructive svg,.Vlt-btn--disabled.Vlt-dropdown__btn--primary svg,.Vlt-btn--disabled.Vlt-dropdown__btn--quaternary svg,.Vlt-btn--disabled.Vlt-dropdown__btn--secondary svg,.Vlt-btn--disabled.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) svg,.Vlt-btn--primary:disabled svg,.Vlt-btn--quaternary:disabled svg,.Vlt-btn--secondary:disabled svg,.Vlt-btn--tertiary:disabled svg,.Vlt-callout--critical .Vlt-btn--disabled.Vlt-callout__cta svg,.Vlt-callout--critical .Vlt-callout__cta:disabled svg,.Vlt-callout--shoutout .Vlt-btn--disabled.Vlt-callout__cta svg,.Vlt-callout--shoutout .Vlt-callout__cta:disabled svg,.Vlt-callout--tip .Vlt-btn--disabled.Vlt-callout__cta svg,.Vlt-callout--tip .Vlt-callout__cta:disabled svg,.Vlt-callout--warning .Vlt-btn--disabled.Vlt-callout__cta svg,.Vlt-callout--warning .Vlt-callout__cta:disabled svg,.Vlt-composite__append .Vlt-btn--disabled.Vlt-btn svg,.Vlt-composite__append .Vlt-btn--disabled.Vlt-dropdown__btn svg,.Vlt-composite__append .Vlt-btn:disabled svg,.Vlt-composite__append .Vlt-dropdown__btn:disabled svg,.Vlt-composite__prepend .Vlt-btn--disabled.Vlt-btn svg,.Vlt-composite__prepend .Vlt-btn--disabled.Vlt-dropdown__btn svg,.Vlt-composite__prepend .Vlt-btn:disabled svg,.Vlt-composite__prepend .Vlt-dropdown__btn:disabled svg,.Vlt-dropdown__btn--destructive:disabled svg,.Vlt-dropdown__btn--primary:disabled svg,.Vlt-dropdown__btn--quaternary:disabled svg,.Vlt-dropdown__btn--secondary:disabled svg,.Vlt-dropdown__btn:disabled: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) svg,.Vlt-native-dropdown select.Vlt-btn--disabled svg,.Vlt-native-dropdown select:disabled svg{fill:#919eab}.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%0A%3C!--%20Generator%3A%20Adobe%20Illustrator%2022.0.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200)%20%20--%3E%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%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%0A%3Cpath%20style%3D%22fill%3A%239B9B9B%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%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0A%3C%2Fsvg%3E%0A");background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';height:20px;margin-top:-10px;pointer-events:none;position:absolute;right:10px;top:50%;width:20px}.Vlt-label{display:block;font-size:1.4rem;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-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 #c4cdd5;border-radius:4px;box-shadow:none;color:#2c2d30;display:block;font-size:1.4rem;height:36px;padding-left:10px;width:100%}.Vlt-custom-select__input:hover,.Vlt-input input:hover,.Vlt-select select:hover,.Vlt-textarea textarea:hover{border-color:#3ae}.Vlt-custom-select__input:disabled,.Vlt-input input:disabled,.Vlt-select select:disabled,.Vlt-textarea textarea:disabled{color:#919eab;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{box-shadow:inset 0 0 0 1px #c4cdd5;margin:0!important}.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-composite__append .Vlt-btn:active,.Vlt-composite__append .Vlt-dropdown__btn:active,.Vlt-composite__append .Vlt-native-dropdown select:active,.Vlt-composite__prepend .Vlt-btn:active,.Vlt-composite__prepend .Vlt-dropdown__btn:active,.Vlt-composite__prepend .Vlt-native-dropdown select:active{box-shadow:inset 0 2px 3px rgba(44,45,48,.2),inset 0 0 0 1px #c4cdd5}.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:8px 10px 7px;position:absolute;right:0;width:40px}.Vlt-composite__append--icon svg{fill:#919eab;height:20px;width:20px}.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:8px 10px 7px;position:absolute;width:40px}.Vlt-composite__prepend--icon svg{fill:#919eab;height:20px;width:20px}.Vlt-composite__prepend--icon+.Vlt-input input,.Vlt-composite__prepend--icon+.Vlt-select select{padding-left:40px}.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:#c4cdd5}.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.4rem;line-height:1.3;margin-top:4px;text-align:left}.Vlt-form__element__hint{color:#919eab}.Vlt-form__element__error{color:#f25a6b}.Vlt-form__element__error:before{background-image:url(data:image/svg+xml,%3Csvg%20width%3D%2216px%22%20height%3D%2216px%22%20viewBox%3D%220%200%2016%2016%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%20%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23F25A6B%22%20d%3D%22M8%2C16%20C3.581722%2C16%200%2C12.418278%200%2C8%20C0%2C3.581722%203.581722%2C0%208%2C0%20C12.418278%2C0%2016%2C3.581722%2016%2C8%20C16%2C12.418278%2012.418278%2C16%208%2C16%20Z%20M8%2C4%20C7.44771525%2C4%207%2C4.44771525%207%2C5%20L7%2C7.5%20C7%2C8.05228475%207.44771525%2C8.5%208%2C8.5%20C8.55228475%2C8.5%209%2C8.05228475%209%2C7.5%20L9%2C5%20C9%2C4.44771525%208.55228475%2C4%208%2C4%20Z%20M8%2C12%20C8.55228475%2C12%209%2C11.5522847%209%2C11%20C9%2C10.4477153%208.55228475%2C10%208%2C10%20C7.44771525%2C10%207%2C10.4477153%207%2C11%20C7%2C11.5522847%207.44771525%2C12%208%2C12%20Z%22%3E%3C%2Fpath%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:text-top;width:16px}.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 .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(242,90,107,.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 #c4cdd5;display:block;height:100%;transition:box-shadow .2s ease-out;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:#3ae}.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:1.5rem}.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%}.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:#3ae;transform:scale(1,1)}.Vlt-checkbox__icon{border-radius:4px}.Vlt-checkbox__icon:after{content:'';height:100%;left:0;top:0;width:100%}.Vlt-checkbox__button input:checked~.Vlt-checkbox__icon:after{background-image:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C!--%20Generator%3A%20Adobe%20Illustrator%2022.0.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200)%20%20--%3E%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%0A%09%20viewBox%3D%220%200%2018%2018%22%20style%3D%22enable-background%3Anew%200%200%2018%2018%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cstyle%20type%3D%22text%2Fcss%22%3E%0A%09.st0%7Bfill%3A%2333AAEE%3B%7D%0A%3C%2Fstyle%3E%0A%3Cg%20id%3D%22Path-2_2_%22%3E%0A%09%3Cpolygon%20class%3D%22st0%22%20points%3D%227%2C14%202.6%2C9.6%204%2C8.2%207%2C11.2%2014.5%2C3.7%2015.9%2C5.1%20%09%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");background-position:center center;background-repeat:no-repeat;background-size:18px 18px;transform:scale(1,1)}.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:#fde8eb;border-color:#f25a6b}.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:#f25a6b}.Vlt-form-valid-style,.Vlt-form__element--valid input,.Vlt-form__element--valid select,.Vlt-form__element--valid textarea{border-color:#35be8b}.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:#35be8b}.Vlt-checkbox input:active+.Vlt-checkbox__icon,.Vlt-checkbox input:active+.Vlt-radio__icon,.Vlt-checkbox input:focus+.Vlt-checkbox__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-checkbox__icon,.Vlt-radio input:active+.Vlt-radio__icon,.Vlt-radio input:focus+.Vlt-checkbox__icon,.Vlt-radio input:focus+.Vlt-radio__icon,.Vlt-select select:focus,.Vlt-textarea textarea:focus{background:#fff;border-color:#3ae;box-shadow:0 0 5px rgba(51,170,238,.5);outline:0}.Vlt-checkbox input:active+.Vlt-checkbox__icon:hover,.Vlt-checkbox input:active+.Vlt-radio__icon:hover,.Vlt-checkbox input:focus+.Vlt-checkbox__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-checkbox__icon:hover,.Vlt-radio input:active+.Vlt-radio__icon:hover,.Vlt-radio input:focus+.Vlt-checkbox__icon:hover,.Vlt-radio input:focus+.Vlt-radio__icon:hover,.Vlt-select select:hover:focus,.Vlt-textarea textarea:hover:focus{border-color:#3ae}.Vlt-checkbox input:disabled+.Vlt-checkbox__icon,.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-checkbox__icon,.Vlt-radio input:disabled+.Vlt-radio__icon,.Vlt-select select:disabled,.Vlt-select select[readonly],.Vlt-textarea textarea:disabled,.Vlt-textarea textarea[readonly]{background:#f8fafc;border-color:#e7ebee;box-shadow:none}.Vlt-checkbox input:disabled+.Vlt-checkbox__icon:hover,.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-checkbox__icon:hover,.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:#e7ebee}.Vlt-form__element--big{display:block;position:relative}.Vlt-form__element--big label{color:#919eab;cursor:text;font-size:1.1rem;left:14px;opacity:1;pointer-events:none;position:absolute;top:5px;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{height:5rem;padding-left:13px;padding-top:14px}.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input textarea::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-custom-select input textarea::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-custom-select input::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-custom-select select textarea::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-custom-select select::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input textarea::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-input input textarea::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-input input::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-input select textarea::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-input select::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input textarea::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-select input textarea::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-select input::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-select select textarea::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-select select::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input textarea::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-textarea input textarea::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-textarea input::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-textarea select textarea::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-textarea select::-webkit-input-placeholder{color:#c4cdd5;opacity:1;transition:all .2s}.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:#c4cdd5;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:#c4cdd5;opacity:1;transition:all .2s}.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input textarea:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-custom-select .Vlt-custom-select__input:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-custom-select input textarea:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-custom-select input:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-custom-select select textarea:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-custom-select select:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input textarea:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-input .Vlt-custom-select__input:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-input input textarea:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-input input:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-input select textarea:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-input select:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input textarea:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-select .Vlt-custom-select__input:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-select input textarea:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-select input:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-select select textarea:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-select select:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input textarea:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-textarea .Vlt-custom-select__input:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-textarea input textarea:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-textarea input:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-textarea select textarea:placeholder-shown:not(:focus)::-webkit-input-placeholder,.Vlt-form__element--big .Vlt-textarea select:placeholder-shown:not(:focus)::-webkit-input-placeholder{opacity:0}.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:-1rem;top:50%}.Vlt-form__element--big .Vlt-custom-select:after,.Vlt-form__element--big .Vlt-select:after{height:26px;margin-top:-13px;width:26px}.Vlt-form__element--big .Vlt-custom-select__input{text-align:left}.Vlt-dropdown{display:inline-block;position:relative}.Vlt-dropdown__header{background:#3ae;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-dropdown__block,.Vlt-dropdown__link{color:#2c2d30;overflow:hidden;padding:12px 20px;position:relative;text-align:left}.Vlt-dropdown__block:before,.Vlt-dropdown__link:before{background:#e7ebee;content:'';display:block;height:1px;left:20px;position:absolute;top:0;width:calc(100% - 40px)}.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:#919eab;cursor:default;pointer-events:none}.Vlt-dropdown__block--highlighted,.Vlt-dropdown__link--highlighted{color:#3ae}.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;-ms-flex-pack:justify;justify-content:space-between;white-space:nowrap}.Vlt-dropdown__link:hover{background:rgba(44,45,48,.05)}.Vlt-dropdown__link:active{background:rgba(44,45,48,.1)}.Vlt-dropdown__link--nohover:hover{background:0 0}.Vlt-dropdown__link--selected,.Vlt-dropdown__link_selected{font-weight:800;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%23919eab%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:14px;position:absolute;right:18px;top:16px;width:14px}.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__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):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%239B9B9B%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 .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){box-shadow:inset 0 0 0 1px #c4cdd5}.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:4px}.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%0A%3C!--%20Generator%3A%20Adobe%20Illustrator%2022.0.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200)%20%20--%3E%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%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%0A%3Cpath%20style%3D%22fill%3A%239B9B9B%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%0A%09c-0.3-0.3-0.7-0.3-1-0.1l-3%2C2.6L7%2C7.8L7%2C7.8z%22%2F%3E%0A%3C%2Fsvg%3E%0A");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:4px}.Vlt-dropdown__selection{color:#f25a6b;margin-left: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 #e7ebee,0 1px 10px rgba(44,45,48,.1);font-size:1.5rem;margin-bottom:4px}@media only screen and (max-width:767px){.Vlt-dropdown__panel__content{-webkit-overflow-scrolling:touch;overflow-y:scroll}}.Vlt-dropdown__panel__content>:first-child{border-top-left-radius:8px;border-top-right-radius:8px}.Vlt-dropdown__panel__content>:first-child:before{display:none}.Vlt-dropdown__panel__content>:last-child{border-bottom-left-radius:8px;border-bottom-right-radius:8px}.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:#3ae;border-radius:40px;color:#fff;display:inline-block;-ms-flex-negative:0;flex-shrink:0;font-size:1.2rem;font-weight:600;height:20px;line-height:1;margin:0;padding:4px 10px;vertical-align:bottom;white-space:nowrap}.Vlt-badge--red{background:#f25a6b}.Vlt-badge--yellow{background:#ffc000}.Vlt-badge--orange{background:#ff8f02}.Vlt-badge--green{background:#35be8b}.Vlt-badge--grey{background:#c4cdd5}.Vlt-badge--large{font-size:1.4rem;height:26px;padding:6px 14px}.Vlt-badge--large .Vlt-badge__dismiss{height:16px;margin-left:2px;opacity:.6;width:16px}.Vlt-badge--small{font-size:.9rem;font-weight:800;height:13px;padding:2px 6px}p .Vlt-badge{margin:0 5px}.Vlt-badge__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%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%22M13.9%2C12l6.2-6.3c0.5-0.5%2C0.5-1.3%2C0-1.8c-0.5-0.5-1.3-0.5-1.8%2C0l-6.3%2C6.3L5.7%2C3.9%0D%0A%09c-0.5-0.5-1.3-0.5-1.8%2C0C3.6%2C4.2%2C3.5%2C4.5%2C3.5%2C4.9s0.1%2C0.7%2C0.4%2C0.9l6.3%2C6.3l-6.2%2C6.2c-0.3%2C0.3-0.4%2C0.7-0.3%2C1c0.1%2C0.3%2C0.2%2C0.6%2C0.5%2C0.7%0D%0A%09c0.5%2C0.4%2C1.3%2C0.4%2C1.7-0.1l6.2-6.2l6.2%2C6.2c0.2%2C0.2%2C0.6%2C0.4%2C0.9%2C0.4s0.7-0.1%2C0.9-0.4c0.5-0.5%2C0.5-1.3%2C0-1.8L13.9%2C12z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center;background-repeat:no-repeat;background-size:contain;cursor:pointer;height:13px;margin-right:-4px;opacity:.7;transition:opacity .2s;vertical-align:middle;width:13px}.Vlt-badge__dismiss:hover{opacity:1}.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-bottom:8px;margin-top:8px}.Vlt-badge-group .Vlt-badge+.Vlt-badge{margin-left:0}.Vlt-badge-group--app .Vlt-badge{border-radius:4px}.Vlt-callout{-ms-flex-align:start;align-items:flex-start;border-radius:5px;display:-ms-flexbox;display:flex;margin-bottom:16px;opacity:1;padding:12px;position:relative;text-align:left;transition:all .3s ease-out}.Vlt-callout i{background-size:20px 20px!important;border-radius:100%;-ms-flex:0 0 32px;flex:0 0 32px;height:32px;width:32px}.Vlt-callout__icon{border-radius:100%;-ms-flex:0 0 32px;flex:0 0 32px;height:32px;padding:6px;width:32px}.Vlt-callout__icon svg{fill:#fff;height:20px;width:20px}.Vlt-callout h4{font-size:1.6rem;margin-bottom:4px;margin-top:2px}.Vlt-callout p{color:#2c2d30;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;padding-left:1.6rem}.Vlt-callout__dismiss{background-position:center;background-size:contain;cursor:pointer;-ms-flex:0 0 20px;flex:0 0 20px;height:20px;margin-left:8px;margin-top:8px;opacity:.6;transition:opacity .2s;width:20px}.Vlt-callout__dismiss:hover{opacity:1}.Vlt-callout .Vlt-btn{margin-top:16px}.Vlt-callout__cta{line-height:1.6rem;margin-bottom:8px;margin-top:16px;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{background:#fff2cc;border:1px solid #f8e71c}.Vlt-callout--warning i{background-color:#ffc000;background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%2220px%22%20height%3D%2220px%22%20viewBox%3D%220%200%2020%2020%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%20fill%3D%22%23ffffff%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M11.0724799%2C2.10671245%20C10.4574754%2C1.08170499%209.54231794%2C1.08204943%208.92752013%2C2.10671245%20L1.50122634%2C14.4838688%20C0.888689703%2C15.5047632%201.30878124%2C16.25%202.49257535%2C16.25%20L17.5074247%2C16.25%20C18.6877372%2C16.25%2019.1093995%2C15.5015785%2018.4987737%2C14.4838688%20L11.0724799%2C2.10671245%20Z%20M12.0014305%2C1.54934205%20L19.4277243%2C13.9264984%20C20.4707053%2C15.6647999%2019.5315313%2C17.3333333%2017.5074247%2C17.3333333%20L2.49257535%2C17.3333333%20C0.465636432%2C17.3333333%20-0.472950267%2C15.6685416%200.572275667%2C13.9264984%20L7.99856946%2C1.54934205%20C9.03357081%2C-0.175660206%2010.9650891%2C-0.177893775%2012.0014305%2C1.54934205%20Z%22%20id%3D%22Rectangle-4%22%20fill-rule%3D%22nonzero%22%3E%3C%2Fpath%3E%0A%20%20%20%20%3Cpath%20d%3D%22M9.25620833%2C5.79929167%20L9.25620833%2C10.1597083%20C9.25620833%2C10.5048863%209.53603036%2C10.7847083%209.88120833%2C10.7847083%20C10.2263863%2C10.7847083%2010.5062083%2C10.5048863%2010.5062083%2C10.1597083%20L10.5062083%2C5.79929167%20C10.5062083%2C5.4541137%2010.2263863%2C5.17429167%209.88120833%2C5.17429167%20C9.53603036%2C5.17429167%209.25620833%2C5.4541137%209.25620833%2C5.79929167%20Z%22%20id%3D%22Stroke-4%22%20fill-rule%3D%22nonzero%22%3E%3C%2Fpath%3E%0A%20%20%20%20%3Cpath%20d%3D%22M10.906375%2C13.0207917%20C10.906375%2C13.5962083%2010.440125%2C14.0624583%209.86470833%2C14.0624583%20C9.28929167%2C14.0624583%208.82304167%2C13.5962083%208.82304167%2C13.0207917%20C8.82304167%2C12.445375%209.28929167%2C11.979125%209.86470833%2C11.979125%20C10.440125%2C11.979125%2010.906375%2C12.445375%2010.906375%2C13.0207917%22%20id%3D%22Fill-6%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--warning .Vlt-callout__icon{background:#ffc000}.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%239C6F19%3B%22%20d%3D%22M11.9%2C10.7l6.5-6.5c0.3-0.3%2C0.8-0.3%2C1.1%2C0s0.3%2C0.8%2C0%2C1.1L13%2C11.9l6.5%2C6.5c0.3%2C0.3%2C0.3%2C0.8%2C0%2C1.1%0D%0A%09s-0.8%2C0.3-1.1%2C0L11.9%2C13l-6.5%2C6.5c-0.3%2C0.3-0.8%2C0.3-1.1%2C0s-0.3-0.8%2C0-1.1l6.5-6.5L4.2%2C5.4c-0.3-0.3-0.3-0.8%2C0-1.1S5%2C4%2C5.3%2C4.3%0D%0A%09L11.9%2C10.7z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--critical{background:#fde8eb;border:1px solid #fbcbd0}.Vlt-callout--critical i{background-color:#f25a6b;background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%2220px%22%20height%3D%2220px%22%20viewBox%3D%220%200%2020%2020%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%20fill%3D%22%23ffffff%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M10%2C18.0485833%20C7.875%2C18.0485833%205.9475%2C17.2185833%204.50916667%2C15.87275%20L16.0475%2C4.70025%20C17.2891667%2C6.11691667%2018.0483333%2C7.96775%2018.0483333%2C10.00025%20C18.0483333%2C14.44525%2014.445%2C18.0485833%2010%2C18.0485833%20M1.95166667%2C10.00025%20C1.95166667%2C5.55525%205.555%2C1.95108333%2010%2C1.95108333%20C12.0225%2C1.95108333%2013.8658333%2C2.70275%2015.28%2C3.93525%20L3.76416667%2C15.0860833%20C2.63166667%2C13.6994167%201.95166667%2C11.9294167%201.95166667%2C10.00025%20M10%2C0.833583333%20C4.9375%2C0.833583333%200.833333333%2C4.93775%200.833333333%2C10.00025%20C0.833333333%2C12.2319167%201.6325%2C14.2760833%202.95833333%2C15.8660833%20L2.95666667%2C15.86775%20L3.01916667%2C15.93275%20C4.7%2C17.9094167%207.20166667%2C19.1669167%2010%2C19.1669167%20C15.0625%2C19.1669167%2019.1666667%2C15.06275%2019.1666667%2C10.00025%20C19.1666667%2C4.93775%2015.0625%2C0.833583333%2010%2C0.833583333%22%20id%3D%22Fill-1%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--critical .Vlt-callout__icon{background:#f25a6b}.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%23BB3241%3B%22%20d%3D%22M11.9%2C10.7l6.5-6.5c0.3-0.3%2C0.8-0.3%2C1.1%2C0s0.3%2C0.8%2C0%2C1.1L13%2C11.9l6.5%2C6.5c0.3%2C0.3%2C0.3%2C0.8%2C0%2C1.1%0D%0A%09s-0.8%2C0.3-1.1%2C0L11.9%2C13l-6.5%2C6.5c-0.3%2C0.3-0.8%2C0.3-1.1%2C0s-0.3-0.8%2C0-1.1l6.5-6.5L4.2%2C5.4c-0.3-0.3-0.3-0.8%2C0-1.1S5%2C4%2C5.3%2C4.3%0D%0A%09L11.9%2C10.7z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--good{background:#d7f2e8;border:1px solid #ade4cf}.Vlt-callout--good i{background-color:#35be8b;background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%2220px%22%20height%3D%2220px%22%20viewBox%3D%220%200%2020%2020%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%20fill%3D%22%23ffffff%22%3E%0A%20%20%20%20%3Cpolygon%20id%3D%22Path-249%22%20fill%3D%22%23000000%22%20points%3D%222.25592232%209.52856496%201.07741102%2010.7070763%206.49833854%2016.1280038%2018.7037533%203.92258898%2017.525242%202.74407768%206.49833854%2013.7709812%22%3E%3C%2Fpolygon%3E%0A%20%20%20%20%3Cpolygon%20id%3D%22Path-249%22%20fill%3D%22%23FFFFFF%22%20points%3D%222.25592232%209.52856496%201.07741102%2010.7070763%206.49833854%2016.1280038%2018.7037533%203.92258898%2017.525242%202.74407768%206.49833854%2013.7709812%22%3E%3C%2Fpolygon%3E%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--good .Vlt-callout__icon{background:#35be8b}.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%232d966f%3B%22%20d%3D%22M11.9%2C10.7l6.5-6.5c0.3-0.3%2C0.8-0.3%2C1.1%2C0s0.3%2C0.8%2C0%2C1.1L13%2C11.9l6.5%2C6.5c0.3%2C0.3%2C0.3%2C0.8%2C0%2C1.1%0D%0A%09s-0.8%2C0.3-1.1%2C0L11.9%2C13l-6.5%2C6.5c-0.3%2C0.3-0.8%2C0.3-1.1%2C0s-0.3-0.8%2C0-1.1l6.5-6.5L4.2%2C5.4c-0.3-0.3-0.3-0.8%2C0-1.1S5%2C4%2C5.3%2C4.3%0D%0A%09L11.9%2C10.7z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--good .Vlt-callout__cta{background:#35be8b;color:#fff}.Vlt-callout--good .Vlt-callout__cta:hover{background:#2faa7c}.Vlt-callout--shoutout{background:#d6eefc;border:1px solid #b4e0f9}.Vlt-callout--shoutout i{background:#3ae;background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%2220px%22%20height%3D%2220px%22%20viewBox%3D%220%200%2020%2020%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%20fill%3D%22%23ffffff%22%3E%0A%20%20%20%20%3Cpath%20d%3D%22M17.1398551%2C15.8684596%20C17.1398551%2C16.166651%2016.8871014%2C16.4192089%2016.5632609%2C16.4192089%20C16.2631159%2C16.4192089%2016.0103623%2C16.166651%2016.0103623%2C15.8684596%20L16.0103623%2C2.82356939%20C16.0103623%2C2.52537799%2016.2631159%2C2.2728201%2016.5632609%2C2.2728201%20L16.5869565%2C2.2728201%20C16.8871014%2C2.2728201%2017.1398551%2C2.52537799%2017.1398551%2C2.82356939%20L17.1398551%2C15.8684596%20Z%20M2.51963768%2C10.3153332%20L2.51963768%2C8.37669575%20L14.9835507%2C4.43647801%20L14.9835507%2C14.2201457%20L2.51963768%2C10.3153332%20Z%20M1.49282609%2C11.098184%20C1.49282609%2C11.2240696%201.38619565%2C11.3302855%201.25981884%2C11.3302855%20C1.13344203%2C11.3302855%201.02681159%2C11.2240696%201.02681159%2C11.098184%20L1.02681159%2C7.57417536%20C1.02681159%2C7.44828981%201.13344203%2C7.34207388%201.25981884%2C7.34207388%20C1.38619565%2C7.34207388%201.49282609%2C7.44828981%201.49282609%2C7.57417536%20L1.49282609%2C11.098184%20Z%20M9.26894928%2C13.9872574%20C9.22945652%2C14.1107826%209.11176812%2C14.1666443%209.01935507%2C14.1666443%20C8.99328986%2C14.1666443%208.96801449%2C14.1627104%208.94273913%2C14.1548425%20L4.29523188%2C12.6796212%20C4.20755797%2C12.6520838%204.16332609%2C12.5875674%204.14436957%2C12.5513753%20C4.1262029%2C12.51597%204.09855797%2C12.4420123%204.12699275%2C12.3554659%20C4.16648551%2C12.2319407%204.28338406%2C12.176079%204.37658696%2C12.176079%20C4.40186232%2C12.176079%204.42713768%2C12.180013%204.45241304%2C12.1878808%20L9.10071014%2C13.6631021%20C9.1875942%2C13.6906396%209.23182609%2C13.7551559%209.25078261%2C13.791348%20C9.26894928%2C13.8275401%209.2965942%2C13.9007111%209.26894928%2C13.9872574%20Z%20M16.5869565%2C1.25%20L16.5632609%2C1.25%20C15.6944203%2C1.25%2014.9835507%2C1.95810622%2014.9835507%2C2.82356939%20L14.9835507%2C3.36409047%20L2.49041304%2C7.31217606%20C2.36877536%2C6.74726465%201.86247826%2C6.31925378%201.25981884%2C6.31925378%20C0.567115942%2C6.31925378%200%2C6.88416519%200%2C7.57417536%20L0%2C11.098184%20C0%2C11.788981%200.567115942%2C12.3531056%201.25981884%2C12.3531056%20C1.85615942%2C12.3531056%202.35692754%2C11.9337493%202.48488406%2C11.3774926%20L3.36162319%2C11.6520804%20C3.27078986%2C11.7677378%203.19575362%2C11.8975573%203.14836232%2C12.044686%20C2.93352174%2C12.7166001%203.30949275%2C13.440442%203.98323913%2C13.6544475%20L8.63153623%2C15.1296688%20C8.76028261%2C15.1705816%208.8906087%2C15.1894644%209.01935507%2C15.1894644%20C9.56435507%2C15.1894644%2010.0730217%2C14.8409188%2010.2467899%2C14.2980374%20C10.2973406%2C14.1406804%2010.3123478%2C13.9817499%2010.3020797%2C13.8259665%20L14.9835507%2C15.2925332%20L14.9835507%2C15.8684596%20C14.9835507%2C16.7339228%2015.6944203%2C17.442029%2016.5632609%2C17.442029%20L16.5869565%2C17.442029%20C17.4557971%2C17.442029%2018.1666667%2C16.7339228%2018.1666667%2C15.8684596%20L18.1666667%2C2.82356939%20C18.1666667%2C1.95810622%2017.4557971%2C1.25%2016.5869565%2C1.25%20Z%22%20id%3D%22Fill-1%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--shoutout .Vlt-callout__icon{background:#3ae}.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%23117BB8%3B%22%20d%3D%22M11.9%2C10.7l6.5-6.5c0.3-0.3%2C0.8-0.3%2C1.1%2C0s0.3%2C0.8%2C0%2C1.1L13%2C11.9l6.5%2C6.5c0.3%2C0.3%2C0.3%2C0.8%2C0%2C1.1%0D%0A%09s-0.8%2C0.3-1.1%2C0L11.9%2C13l-6.5%2C6.5c-0.3%2C0.3-0.8%2C0.3-1.1%2C0s-0.3-0.8%2C0-1.1l6.5-6.5L4.2%2C5.4c-0.3-0.3-0.3-0.8%2C0-1.1S5%2C4%2C5.3%2C4.3%0D%0A%09L11.9%2C10.7z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--tip{background:#f8fafc;border:1px solid #e7ebee;box-shadow:none}.Vlt-callout--tip i{background:#e7ebee;background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%2220px%22%20height%3D%2220px%22%20viewBox%3D%220%200%2020%2020%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%20fill%3D%22%23637381%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23637381%22%20d%3D%22M17.0973207%2C4.33600997%20C16.8972773%2C4.33600997%2016.7082067%2C4.37771645%2016.530109%2C4.44277855%20L16.530109%2C3.59530293%20C16.530109%2C2.71195974%2015.8134978%2C1.99127181%2014.9339821%2C1.99127181%20L14.8225655%2C1.99127181%20C14.6267424%2C1.99127181%2014.4410481%2C2.03214416%2014.2671707%2C2.09720627%20C14.089917%2C1.37318182%2013.4425192%2C0.8335%2012.6685116%2C0.8335%20C11.7577654%2C0.8335%2011.0166763%2C1.57754356%2011.0166763%2C2.4934178%20L11.0166763%2C2.76200751%20C10.8419549%2C2.6994478%2010.6571046%2C2.65857545%2010.4612815%2C2.65857545%20C9.55053538%2C2.65857545%208.80944629%2C3.40345314%208.80944629%2C4.31849325%20L8.80944629%2C6.33124785%20C7.38972893%2C4.40774511%207.25636666%2C3.01057812%207.25636666%2C2.58433792%20L7.25636666%2C1.4349074%20C7.25636666%2C1.1354549%207.01074374%2C0.892723198%206.70688034%2C0.892723198%20C6.40386099%2C0.892723198%206.15823807%2C1.1354549%206.15823807%2C1.4349074%20L6.15823807%2C2.58433792%20C6.15823807%2C3.1765699%206.3481527%2C5.32111697%208.78581247%2C8.03370626%20C9.04494043%2C8.32064682%209.19011962%2C8.62093346%209.1664858%2C8.81528564%20C9.16142141%2C8.85282147%209.14876043%2C8.95208289%208.97910336%2C9.0680269%20C8.51908793%2C9.37999135%207.72144649%2C9.58852373%207.45303381%2C9.64274216%20L6.69253123%2C9.79538786%20L7.09177398%2C10.4526819%20C7.1348213%2C10.5244171%207.5256234%2C11.1333317%208.31482419%2C11.3051623%20C8.34436647%2C11.3268497%208.37475281%2C11.3568784%208.37812907%2C11.3810681%20C8.38825785%2C11.4544715%208.30047509%2C11.6888619%207.89447981%2C12.0550448%20L7.16520764%2C12.7098365%20L8.11224859%2C12.976758%20C8.27684127%2C13.0234692%208.54018955%2C13.1761149%208.55707085%2C13.2770446%20C8.57057589%2C13.3662965%208.42117639%2C13.724138%207.56360633%2C14.2955168%20L7.32135967%2C14.4573379%20L7.32135967%2C15.8019547%20C7.32135967%2C16.3891819%206.80057155%2C17.0172815%205.33865094%2C17.0172815%20L2.60219216%2C17.0172815%20C1.98602469%2C17.0172815%201.25%2C17.2967149%201.25%2C18.6246491%20C1.25%2C18.9241016%201.49562292%2C19.1668333%201.79864226%2C19.1668333%20C2.1016616%2C19.1668333%202.34728452%2C18.9241016%202.34728452%2C18.6246491%20C2.34728452%2C18.102484%202.43759948%2C18.102484%202.60219216%2C18.102484%20L5.33865094%2C18.102484%20C7.0478826%2C18.102484%207.92739835%2C17.4026493%208.2591159%2C16.6035532%20L9.17745864%2C17.5119203%20C9.27114986%2C17.6028404%209.36990546%2C18.0107298%209.38087831%2C18.3493864%20C9.39100709%2C18.6421658%209.63409782%2C18.8740539%209.92952057%2C18.8740539%20L9.94640187%2C18.8740539%20C10.2494212%2C18.8640443%2010.4866035%2C18.6146396%2010.4773188%2C18.3160212%20C10.4722544%2C18.134181%2010.4216105%2C17.2066289%209.95399846%2C16.7453553%20L8.41948826%2C15.2289077%20L8.41948826%2C15.0270484%20C9.34120725%2C14.3605789%209.74045001%2C13.7308111%209.64000627%2C13.1068822%20C9.58260985%2C12.7482065%209.37159359%2C12.4871239%209.13947572%2C12.3052837%20C9.41295278%2C11.9257547%209.51930497%2C11.5562353%209.46022042%2C11.2008962%20C9.37919018%2C10.7246082%209.03059133%2C10.4618574%208.84152076%2C10.3517523%20C9.10318092%2C10.2466519%209.37159359%2C10.1173619%209.60033521%2C9.96137964%20C10.078076%2C9.63690325%2010.220723%2C9.23068216%2010.2553297%2C8.94624398%20C10.3042854%2C8.55336897%2010.1802079%2C8.12379225%209.90673082%2C7.70422509%20L9.90673082%2C4.31849325%20C9.90673082%2C4.00152402%2010.1548859%2C3.74377799%2010.4612815%2C3.74377799%20C10.7668331%2C3.74377799%2011.0158322%2C4.00152402%2011.0158322%2C4.31849325%20L11.0158322%2C9.5960309%20L12.1139608%2C9.5960309%20L12.1139608%2C8.99045285%20L12.1148049%2C8.99045285%20L12.1148049%2C2.4934178%20C12.1148049%2C2.17561444%2012.36296%2C1.91870254%2012.6685116%2C1.91870254%20C12.9740631%2C1.91870254%2013.2222182%2C2.17561444%2013.2222182%2C2.4934178%20L13.2222182%2C9.57517766%20L13.2255945%2C9.57517766%20L13.2255945%2C9.5818507%20L14.3237231%2C9.5818507%20L14.3237231%2C3.59530293%20C14.3237231%2C3.31336715%2014.5516206%2C3.07647435%2014.8225655%2C3.07647435%20L14.9339821%2C3.07647435%20C15.2040829%2C3.07647435%2015.4319804%2C3.31336715%2015.4319804%2C3.59530293%20L15.4319804%2C9.57267527%20L16.530109%2C9.57267527%20L16.530109%2C8.72686791%20C16.5326412%2C8.70434641%2016.543614%2C8.68516143%2016.543614%2C8.66263994%20L16.543614%2C5.99592777%20C16.543614%2C5.67812441%2016.7917692%2C5.42121251%2017.0973207%2C5.42121251%20C17.4028722%2C5.42121251%2017.6518714%2C5.67812441%2017.6518714%2C5.99592777%20L17.6518714%2C11.856522%20C17.6518714%2C13.6557394%2017.2652896%2C15.1805282%2017.0340158%2C16.0922318%20C16.9631144%2C16.369997%2016.9057179%2C16.5968802%2016.8744875%2C16.7645402%20C16.7309965%2C17.5269346%2016.711583%2C18.3093482%2016.711583%2C18.3418792%20C16.7039864%2C18.6413317%2016.9445449%2C18.8890682%2017.2475643%2C18.8957412%20C17.2517846%2C18.8965754%2017.2551609%2C18.8965754%2017.2593812%2C18.8965754%20C17.5573361%2C18.8965754%2017.8012709%2C18.6613508%2017.8080234%2C18.366069%20C17.8088675%2C18.3593959%2017.8257488%2C17.6395421%2017.9532026%2C16.9638972%20C17.9819008%2C16.8112515%2018.0342329%2C16.6068898%2018.0983818%2C16.3558168%20C18.3423166%2C15.3957336%2018.75%2C13.7892001%2018.75%2C11.856522%20L18.75%2C5.99592777%20C18.75%2C5.08088766%2018.0080668%2C4.33600997%2017.0973207%2C4.33600997%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--tip .Vlt-callout__icon{background:#e7ebee}.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%23919EAB%3B%22%20d%3D%22M11.9%2C10.7l6.5-6.5c0.3-0.3%2C0.8-0.3%2C1.1%2C0s0.3%2C0.8%2C0%2C1.1L13%2C11.9l6.5%2C6.5c0.3%2C0.3%2C0.3%2C0.8%2C0%2C1.1%0D%0A%09s-0.8%2C0.3-1.1%2C0L11.9%2C13l-6.5%2C6.5c-0.3%2C0.3-0.8%2C0.3-1.1%2C0s-0.3-0.8%2C0-1.1l6.5-6.5L4.2%2C5.4c-0.3-0.3-0.3-0.8%2C0-1.1S5%2C4%2C5.3%2C4.3%0D%0A%09L11.9%2C10.7z%22%2F%3E%0D%0A%3C%2Fsvg%3E);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-callout--banner{border:0;border-radius:0;margin:0!important;padding:8px}.Vlt-callout--banner .Vlt-callout__icon{background:0 0}.Vlt-callout--banner.Vlt-callout--tip .Vlt-callout__icon svg{fill:#919eab}.Vlt-callout--banner.Vlt-callout--shoutout .Vlt-callout__icon svg{fill:#3ae}.Vlt-callout--banner.Vlt-callout--good .Vlt-callout__icon svg{fill:#35be8b}.Vlt-callout--banner.Vlt-callout--warning .Vlt-callout__icon svg{fill:#ffc000}.Vlt-callout--banner.Vlt-callout--critical .Vlt-callout__icon svg{fill:#f25a6b}.Vlt-callout--banner .Vlt-callout__content{padding-left:8px}.Vlt-callout--banner .Vlt-btn,.Vlt-callout--banner .Vlt-callout__cta{margin:0 0 0 4px}.Vlt-callout--banner .Vlt-callout__link{margin:6px 4px 0}.Vlt-flash{box-shadow:0 2px 4px rgba(0,0,0,.15);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%}}.Vlt-flash.Vlt-callout{border:0}.Vlt-flash.Vlt-callout p{color:#fff;font-weight:600}.Vlt-flash.Vlt-callout--warning{background:#ff8f02}.Vlt-flash.Vlt-callout--warning i{background-color:#ce7300}.Vlt-flash.Vlt-callout--critical{background:#f25a6b}.Vlt-flash.Vlt-callout--critical i{background-color:#bb3241}.Vlt-flash.Vlt-callout--shoutout{background:#3ae}.Vlt-flash.Vlt-callout--shoutout i{background-color:#117bb8}.Vlt-flash.Vlt-callout--good{background:#35be8b}.Vlt-flash.Vlt-callout--good i{background-color:#2a966e}.Vlt-flash.Vlt-callout--tip{background:#919eab}.Vlt-flash.Vlt-callout--tip i{background-color:#748595;background-image:url(data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%2220px%22%20height%3D%2220px%22%20viewBox%3D%220%200%2020%2020%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%20fill%3D%22%23ffffff%22%3E%0A%20%20%20%20%3Cpath%20fill%3D%22%23ffffff%22%20d%3D%22M17.0973207%2C4.33600997%20C16.8972773%2C4.33600997%2016.7082067%2C4.37771645%2016.530109%2C4.44277855%20L16.530109%2C3.59530293%20C16.530109%2C2.71195974%2015.8134978%2C1.99127181%2014.9339821%2C1.99127181%20L14.8225655%2C1.99127181%20C14.6267424%2C1.99127181%2014.4410481%2C2.03214416%2014.2671707%2C2.09720627%20C14.089917%2C1.37318182%2013.4425192%2C0.8335%2012.6685116%2C0.8335%20C11.7577654%2C0.8335%2011.0166763%2C1.57754356%2011.0166763%2C2.4934178%20L11.0166763%2C2.76200751%20C10.8419549%2C2.6994478%2010.6571046%2C2.65857545%2010.4612815%2C2.65857545%20C9.55053538%2C2.65857545%208.80944629%2C3.40345314%208.80944629%2C4.31849325%20L8.80944629%2C6.33124785%20C7.38972893%2C4.40774511%207.25636666%2C3.01057812%207.25636666%2C2.58433792%20L7.25636666%2C1.4349074%20C7.25636666%2C1.1354549%207.01074374%2C0.892723198%206.70688034%2C0.892723198%20C6.40386099%2C0.892723198%206.15823807%2C1.1354549%206.15823807%2C1.4349074%20L6.15823807%2C2.58433792%20C6.15823807%2C3.1765699%206.3481527%2C5.32111697%208.78581247%2C8.03370626%20C9.04494043%2C8.32064682%209.19011962%2C8.62093346%209.1664858%2C8.81528564%20C9.16142141%2C8.85282147%209.14876043%2C8.95208289%208.97910336%2C9.0680269%20C8.51908793%2C9.37999135%207.72144649%2C9.58852373%207.45303381%2C9.64274216%20L6.69253123%2C9.79538786%20L7.09177398%2C10.4526819%20C7.1348213%2C10.5244171%207.5256234%2C11.1333317%208.31482419%2C11.3051623%20C8.34436647%2C11.3268497%208.37475281%2C11.3568784%208.37812907%2C11.3810681%20C8.38825785%2C11.4544715%208.30047509%2C11.6888619%207.89447981%2C12.0550448%20L7.16520764%2C12.7098365%20L8.11224859%2C12.976758%20C8.27684127%2C13.0234692%208.54018955%2C13.1761149%208.55707085%2C13.2770446%20C8.57057589%2C13.3662965%208.42117639%2C13.724138%207.56360633%2C14.2955168%20L7.32135967%2C14.4573379%20L7.32135967%2C15.8019547%20C7.32135967%2C16.3891819%206.80057155%2C17.0172815%205.33865094%2C17.0172815%20L2.60219216%2C17.0172815%20C1.98602469%2C17.0172815%201.25%2C17.2967149%201.25%2C18.6246491%20C1.25%2C18.9241016%201.49562292%2C19.1668333%201.79864226%2C19.1668333%20C2.1016616%2C19.1668333%202.34728452%2C18.9241016%202.34728452%2C18.6246491%20C2.34728452%2C18.102484%202.43759948%2C18.102484%202.60219216%2C18.102484%20L5.33865094%2C18.102484%20C7.0478826%2C18.102484%207.92739835%2C17.4026493%208.2591159%2C16.6035532%20L9.17745864%2C17.5119203%20C9.27114986%2C17.6028404%209.36990546%2C18.0107298%209.38087831%2C18.3493864%20C9.39100709%2C18.6421658%209.63409782%2C18.8740539%209.92952057%2C18.8740539%20L9.94640187%2C18.8740539%20C10.2494212%2C18.8640443%2010.4866035%2C18.6146396%2010.4773188%2C18.3160212%20C10.4722544%2C18.134181%2010.4216105%2C17.2066289%209.95399846%2C16.7453553%20L8.41948826%2C15.2289077%20L8.41948826%2C15.0270484%20C9.34120725%2C14.3605789%209.74045001%2C13.7308111%209.64000627%2C13.1068822%20C9.58260985%2C12.7482065%209.37159359%2C12.4871239%209.13947572%2C12.3052837%20C9.41295278%2C11.9257547%209.51930497%2C11.5562353%209.46022042%2C11.2008962%20C9.37919018%2C10.7246082%209.03059133%2C10.4618574%208.84152076%2C10.3517523%20C9.10318092%2C10.2466519%209.37159359%2C10.1173619%209.60033521%2C9.96137964%20C10.078076%2C9.63690325%2010.220723%2C9.23068216%2010.2553297%2C8.94624398%20C10.3042854%2C8.55336897%2010.1802079%2C8.12379225%209.90673082%2C7.70422509%20L9.90673082%2C4.31849325%20C9.90673082%2C4.00152402%2010.1548859%2C3.74377799%2010.4612815%2C3.74377799%20C10.7668331%2C3.74377799%2011.0158322%2C4.00152402%2011.0158322%2C4.31849325%20L11.0158322%2C9.5960309%20L12.1139608%2C9.5960309%20L12.1139608%2C8.99045285%20L12.1148049%2C8.99045285%20L12.1148049%2C2.4934178%20C12.1148049%2C2.17561444%2012.36296%2C1.91870254%2012.6685116%2C1.91870254%20C12.9740631%2C1.91870254%2013.2222182%2C2.17561444%2013.2222182%2C2.4934178%20L13.2222182%2C9.57517766%20L13.2255945%2C9.57517766%20L13.2255945%2C9.5818507%20L14.3237231%2C9.5818507%20L14.3237231%2C3.59530293%20C14.3237231%2C3.31336715%2014.5516206%2C3.07647435%2014.8225655%2C3.07647435%20L14.9339821%2C3.07647435%20C15.2040829%2C3.07647435%2015.4319804%2C3.31336715%2015.4319804%2C3.59530293%20L15.4319804%2C9.57267527%20L16.530109%2C9.57267527%20L16.530109%2C8.72686791%20C16.5326412%2C8.70434641%2016.543614%2C8.68516143%2016.543614%2C8.66263994%20L16.543614%2C5.99592777%20C16.543614%2C5.67812441%2016.7917692%2C5.42121251%2017.0973207%2C5.42121251%20C17.4028722%2C5.42121251%2017.6518714%2C5.67812441%2017.6518714%2C5.99592777%20L17.6518714%2C11.856522%20C17.6518714%2C13.6557394%2017.2652896%2C15.1805282%2017.0340158%2C16.0922318%20C16.9631144%2C16.369997%2016.9057179%2C16.5968802%2016.8744875%2C16.7645402%20C16.7309965%2C17.5269346%2016.711583%2C18.3093482%2016.711583%2C18.3418792%20C16.7039864%2C18.6413317%2016.9445449%2C18.8890682%2017.2475643%2C18.8957412%20C17.2517846%2C18.8965754%2017.2551609%2C18.8965754%2017.2593812%2C18.8965754%20C17.5573361%2C18.8965754%2017.8012709%2C18.6613508%2017.8080234%2C18.366069%20C17.8088675%2C18.3593959%2017.8257488%2C17.6395421%2017.9532026%2C16.9638972%20C17.9819008%2C16.8112515%2018.0342329%2C16.6068898%2018.0983818%2C16.3558168%20C18.3423166%2C15.3957336%2018.75%2C13.7892001%2018.75%2C11.856522%20L18.75%2C5.99592777%20C18.75%2C5.08088766%2018.0080668%2C4.33600997%2017.0973207%2C4.33600997%22%3E%3C%2Fpath%3E%0A%3C%2Fsvg%3E)!important}.Vlt-flash.Vlt-callout .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%22M11.9%2C10.7l6.5-6.5c0.3-0.3%2C0.8-0.3%2C1.1%2C0s0.3%2C0.8%2C0%2C1.1L13%2C11.9l6.5%2C6.5c0.3%2C0.3%2C0.3%2C0.8%2C0%2C1.1%0D%0A%09s-0.8%2C0.3-1.1%2C0L11.9%2C13l-6.5%2C6.5c-0.3%2C0.3-0.8%2C0.3-1.1%2C0s-0.3-0.8%2C0-1.1l6.5-6.5L4.2%2C5.4c-0.3-0.3-0.3-0.8%2C0-1.1S5%2C4%2C5.3%2C4.3%0D%0A%09L11.9%2C10.7z%22%2F%3E%0D%0A%3C%2Fsvg%3E)}.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__row--noline .Vlt-table__cell,.Vlt-table__row--noline>td{border-bottom:0}.Vlt-table__row--nohighlight:hover .Vlt-table__cell,.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 #e7ebee;border-left:1px solid #e7ebee;border-radius:2px 2px 4px 4px;border-right:1px solid #e7ebee}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:#f25a6b}table tbody .Vlt-table__cell--pos,table tfoot .Vlt-table__cell--pos{color:#35be8b}table tbody .Vlt-table__cell--avg,table tfoot .Vlt-table__cell--avg{color:#ffc000}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:4px;font-size:1.3rem;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{display:block;height:100%;width:100%}.Vlt-table__pagination__current{background:#e7ebee;color:#4e5a64}.Vlt-table__pagination__prev{margin-right:8px}.Vlt-table__pagination__next{margin-left:8px}@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 #e7ebee;border-top:0;font-size:1.5rem;height:auto;min-height:3.6rem}.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(44,45,48,.1) 0,transparent 30%),linear-gradient(90deg,transparent 70%,rgba(44,45,48,.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 #e7ebee;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,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%226px%22%20height%3D%2210px%22%20viewBox%3D%220%200%206%2010%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%2047.1%20(45422)%20-%20http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%20--%3E%0A%20%20%20%20%3Ctitle%3EGroup%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Symbols%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%22Group%22%20fill%3D%22%239B9B9B%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpolygon%20id%3D%22Triangle%22%20points%3D%223%200%206%204%200%204%22%3E%3C%2Fpolygon%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpolygon%20id%3D%22Triangle-Copy%22%20points%3D%223%209.5%200%205.5%206%205.5%22%3E%3C%2Fpolygon%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");background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';display:inline-block;height:10px;left:5px;margin-top:-5px;position:absolute;top:50%;width:6px}.Vlt-table__col--ascending,.Vlt-table__col--descending{color:#2c2d30;font-weight:600}.Vlt-table__col--descending:before{background-image:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%226px%22%20height%3D%2210px%22%20viewBox%3D%220%200%206%2010%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%2047.1%20(45422)%20-%20http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%20--%3E%0A%20%20%20%20%3Ctitle%3EGroup%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Symbols%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%22Group%22%20fill%3D%22%234A4A4A%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Triangle-Copy%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpolygon%20points%3D%223%209.5%200%205.5%206%205.5%22%3E%3C%2Fpolygon%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");background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-table__col--ascending:before{background-image:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%226px%22%20height%3D%224px%22%20viewBox%3D%220%200%206%204%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%2047.1%20(45422)%20-%20http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%20--%3E%0A%20%20%20%20%3Ctitle%3ETriangle%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Symbols%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%22Group%22%20fill%3D%22%234A4A4A%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Triangle%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpolygon%20points%3D%223%200%206%204%200%204%22%3E%3C%2Fpolygon%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");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 .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 #e7ebee}.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 table thead th,.Vlt-table__header .Vlt-table__cell{color:#2c2d30;font-size:1.6rem;font-weight:600}.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 #e7ebee;min-height:3.6rem;min-width:-webkit-min-content;min-width:-moz-min-content;min-width:min-content;padding:8px 16px;text-align:left;vertical-align:middle}@media only screen and (min-width:768px){.Vlt-table table tbody tr:hover>td,.Vlt-table__row:hover .Vlt-table__cell{background-color:rgba(78,90,100,.05)}}.Vlt-table--data .Vlt-table__header .Vlt-table__cell,.Vlt-table--data table thead th{background-color:#f8fafc;border-bottom:1px solid #c4cdd5;border-top:1px solid #e7ebee;color:#4e5a64;font-size:1.4rem;height:3.6rem}.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:#e7ebee;border-bottom-color:#919eab;border-top-color:#c4cdd5;color:#2c2d30}.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:#c4cdd5}.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;border-top-color:#94dbe4;color:#405352}.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 tfoot td,.Vlt-table__footer .Vlt-table__cell{border-bottom:0;border-top:2px solid #e7ebee;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,.Vlt-table--tall table th{padding-bottom:16px;padding-top:16px}.Vlt-table--short .Vlt-table__cell,.Vlt-table--short table td,.Vlt-table--short table th{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:#117bb8}.Vlt-list--simple>li>ol>li:before,.Vlt-list--simple>li>ul>li:before{color:#3ae}.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:#005282}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:#117bb8;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:#35be8b;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-number{-ms-flex-align:center;align-items:center;background:#35be8b;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:#dbf3f6;border-radius:4px;color:#2c2d30;-ms-flex-flow:column;flex-flow:column;font-weight:400;height:36px;line-height:1;width:36px}.Vlt-number--dialer small{color:#4e5a64;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:#2c2d30;cursor:pointer;display:inline-block;font-size:1.5rem;font-weight:600;margin:0 20px 0 0;outline:0;padding:14px 0;position:relative}.Vlt-tabs__link svg{height:20px;margin-bottom:-4px;width:20px}.Vlt-tabs__link svg+span{margin-left:8px}.Vlt-tabs__link:after{background:#d6eefc;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:#2c2d30}.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:4px;border-top-right-radius:4px;margin:0;padding-left:16px;padding-right:16px;transition:background .2s}.Vlt-tabs__header--bordered .Vlt-tabs__link:after{background:#e7ebee;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(214,238,252,.5)}}.Vlt-tabs__link:active,.Vlt-tabs__link_active{background:0 0}.Vlt-tabs__link:active:after,.Vlt-tabs__link_active:after{background:#3ae;left:0;width:100%}@media only screen and (max-width:767px){.Vlt-tabs__link:active:after,.Vlt-tabs__link_active:after{transition:all .2s}}.Vlt-tabs__header--bordered .Vlt-tabs__link_active{box-shadow:0 -1px 6px rgba(44,45,48,.1),inset -1px 1px 0 #e7ebee,inset 1px 1px 0 #e7ebee}.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 #e7ebee;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 #e7ebee;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(44,45,48,.1) 0,transparent 10px),linear-gradient(90deg,transparent calc(100% - 10px),rgba(44,45,48,.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:#3ae}.Vlt-tabs__link:focus{background:0 0}.Vlt-tabs__link_disabled{background:0 0;color:#c4cdd5;cursor:default;pointer-events:none}.Vlt-tabs__link_disabled:after{display:none}.Vlt-tabs__link_disabled svg{fill:#c4cdd5}.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 #2c2d30;border-width:0 6px 6px;top:3px}.Vlt-tooltip--js[x-placement^=top] .Vlt-tooltip__arrow,.arrow-top-mixin{border-color:#2c2d30 transparent transparent;border-width:6px 6px 0;bottom:3px}.Vlt-tooltip--js[x-placement^=right] .Vlt-tooltip__arrow,.arrow-right-mixin{border-color:transparent #2c2d30 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 #2c2d30;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:#2c2d30;border-radius:4px;color:#fff;cursor:default;font-size:1.4rem;max-width:300px;padding:8px 10px;transition:display .2s;white-space:normal;width:-webkit-max-content;width:-moz-max-content;width:max-content;z-index:600}.Vlt-sidenav{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;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(44,45,48,.15),20vw 0 0 rgba(44,45,48,.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 20px;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:after{display:block;margin-top:15px}.Vlt-sidenav__block--logo .Vlt-sidenav__logo{-ms-flex:1;flex:1}.Vlt-sidenav__block--logo .Vlt-sidenav__logo svg{width:100%}.Vlt-sidenav__block--logo .Vlt-sidenav__logo img{height:40px}.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(44,45,48,.1) 0,transparent 5px,transparent calc(100% - 5px),rgba(44,45,48,.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:relative}@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 0 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:10px}.Vlt-sidenav .Vlt-sidemenu li{margin:0;padding:0}.Vlt-sidenav .Vlt-sidemenu li .Vlt-sidemenu__link,.Vlt-sidenav .Vlt-sidemenu li .Vlt-sidemenu__trigger{font-size:1.5rem;padding-left:24px;padding-right:20px}@media only screen and (max-width:575px){.Vlt-sidenav .Vlt-sidemenu li .Vlt-sidemenu__link,.Vlt-sidenav .Vlt-sidemenu li .Vlt-sidemenu__trigger{font-size:1.7rem}}.Vlt-sidenav .Vlt-sidemenu li li .Vlt-sidemenu__link,.Vlt-sidenav .Vlt-sidemenu li li .Vlt-sidemenu__trigger{font-size:1.5rem;padding-left:53px}@media only screen and (max-width:575px){.Vlt-sidenav .Vlt-sidemenu li li .Vlt-sidemenu__link,.Vlt-sidenav .Vlt-sidemenu li li .Vlt-sidemenu__trigger{font-size:1.7rem}}.Vlt-sidenav .Vlt-sidemenu li li .Vlt-sidemenu__title{margin-left:43px}.Vlt-sidenav .Vlt-sidemenu li li li .Vlt-sidemenu__link,.Vlt-sidenav .Vlt-sidemenu li li li .Vlt-sidemenu__trigger{font-size:1.5rem;padding-left:81px}@media only screen and (max-width:575px){.Vlt-sidenav .Vlt-sidemenu li li li .Vlt-sidemenu__link,.Vlt-sidenav .Vlt-sidemenu li li li .Vlt-sidemenu__trigger{font-size:1.7rem}}.Vlt-sidenav .Vlt-sidemenu li li li .Vlt-sidemenu__title{margin-left:81px}.Vlt-sidenav .Vlt-sidemenu__trigger:after{content:'';display:inline-block;height:20px;position:absolute;right:15px;top:8px;transition:transform .2s;width:20px;z-index:1}.Vlt-sidenav .Vlt-sidemenu__trigger_active:after{transform:rotate(180deg)}.Vlt-sidenav .Vlt-sidemenu__link,.Vlt-sidenav .Vlt-sidemenu__trigger{-ms-flex-align:start;align-items:flex-start;cursor:pointer;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;line-height:1.3;margin:0;padding:8px 10px;text-decoration:none;transition:background .2s}@media only screen and (max-width:575px){.Vlt-sidenav .Vlt-sidemenu__link,.Vlt-sidenav .Vlt-sidemenu__trigger{padding-bottom:11px;padding-top:11px}}.Vlt-sidenav .Vlt-sidemenu__link:hover,.Vlt-sidenav .Vlt-sidemenu__trigger:hover{text-decoration:none}.Vlt-sidenav .Vlt-sidemenu__link--disabled,.Vlt-sidenav .Vlt-sidemenu__trigger--disabled{cursor:default;opacity:.3;pointer-events:none}.Vlt-sidenav .Vlt-sidemenu__link svg,.Vlt-sidenav .Vlt-sidemenu__trigger svg{-ms-flex:0 0 20px;flex:0 0 20px;height:20px;margin-bottom:-3px;margin-right:10px;opacity:.8;vertical-align:middle;width:20px}@media only screen and (max-width:575px){.Vlt-sidenav .Vlt-sidemenu__link svg,.Vlt-sidenav .Vlt-sidemenu__trigger svg{-ms-flex:0 0 23px;flex:0 0 23px;height:23px;width:23px}}.Vlt-sidenav .Vlt-sidemenu__link .Vlt-badge,.Vlt-sidenav .Vlt-sidemenu__trigger .Vlt-badge{margin-right:0;position:relative;z-index:2}.Vlt-sidenav .Vlt-sidemenu__label{-ms-flex:1;flex:1}.Vlt-sidenav .Vlt-sidemenu__title{font-size:1.2rem;font-weight:400;margin:0;padding: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-bottom:8px;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:calc(100% - 25px)}.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}@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 20px;flex:0 0 20px;margin-left:20px;transition:opacity .2s}.Vlt-sidenav__block--logo .Vlt-sidenav__collapse:hover{opacity:.5}.Vlt-sidenav__block--logo .Vlt-sidenav__collapse svg{height:20px;width:20px}@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:10px;width:calc(100% - 20px)}.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}.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 35px;flex:0 0 35px;-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:35px;width:35px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu.Vlt-sidemenu--rounded{padding:10px 0}.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;margin:0 12px;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{font-size:.9rem;height:13px;margin-left:14px;margin-top:-4px;padding:2px 6px;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;opacity:.3;pointer-events:none}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__link:after,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu>li>.Vlt-sidemenu__trigger:after{display: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:#2c2d30;border-radius:4px;color:#fff;cursor:default;font-size:1.4rem;max-width:300px;padding:8px 10px;transition:display .2s;white-space:normal;width:-webkit-max-content;width:-moz-max-content;width:max-content;z-index:600;display:none;left:100%;margin-left:10px;margin-top:-8px;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 #2c2d30 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:after{display:none}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul{border-radius:8px;left:60px;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;padding-left:20px;padding-right:20px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul ul{left:230px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul li{margin-left:0!important}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul li:first-child>.Vlt-sidemenu__link,.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul li:first-child>.Vlt-sidemenu__trigger{border-top-left-radius:8px;border-top-right-radius:8px;padding-top:10px}.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{border-bottom-left-radius:8px;border-bottom-right-radius:8px;margin-bottom:0;padding-bottom:10px}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger_active+ul{box-shadow:inset 0 0 0 1px #e7ebee,0 1px 10px rgba(44,45,48,.1);overflow:visible}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__title{height:1px;margin:5px 10px;overflow:hidden;padding:0;text-indent:-9999px;width:calc(100% - 20px)}.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}.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:#2c2d30}.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:#919eab!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:#e7ebee;color:#2c2d30}.Vlt-sidenav.Vlt-sidenav--collapsed .Vlt-sidemenu__trigger+ul .Vlt-sidemenu__title{border-bottom:1px solid #e7ebee;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:#919eab!important}}.Vlt-sidenav__mobile--light{background:#fff;box-shadow:1px 0 8px rgba(44,45,48,.2)}.Vlt-sidenav__mobile--light button svg{fill:#919eab}.Vlt-template--header .Vlt-sidenav__mobile--light{background:#f8fafc;border-bottom:1px solid #e7ebee;box-shadow:none}.Vlt-sidenav--light{background:#f8fafc}.Vlt-sidenav--light hr{border-top:1px solid #e7ebee}.Vlt-sidenav--light .Vlt-sidenav__link:hover{background:#e7ebee}.Vlt-sidenav--light .Vlt-sidenav__scroll{background-image:linear-gradient(to bottom,rgba(44,45,48,.05) 0,transparent 5px,transparent calc(100% - 5px),rgba(44,45,48,.05) 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%)}.Vlt-sidenav--light .Vlt-sidenav__scroll .Vlt-sidemenu{background:linear-gradient(0deg,#f8fafc 10px,transparent 10px),linear-gradient(0deg,transparent calc(100% - 10px),#f8fafc calc(100% - 10px)) 100% 0}.Vlt-sidenav--light .Vlt-sidemenu__link,.Vlt-sidenav--light .Vlt-sidemenu__trigger{color:#2c2d30}.Vlt-sidenav--light .Vlt-sidemenu__link:hover,.Vlt-sidenav--light .Vlt-sidemenu__trigger:hover{background:#e7ebee}.Vlt-sidenav--light .Vlt-sidemenu__link svg,.Vlt-sidenav--light .Vlt-sidemenu__trigger svg{fill:#919eab}.Vlt-sidenav--light .Vlt-sidemenu__link_active{background:#3ae;color:#fff}.Vlt-sidenav--light .Vlt-sidemenu__link_active svg{fill:#fff!important}.Vlt-sidenav--light .Vlt-sidemenu__link_active:hover{background:#3ae;color:#fff}.Vlt-sidenav--light .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%23C4CDD5%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%2F%3E%0A%3C%2Fsvg%3E%0A);background-position:center center;background-repeat:no-repeat;background-size:contain}.Vlt-sidenav--light .Vlt-sidemenu__trigger_current:not(.Vlt-sidemenu__trigger_active){background:#e7ebee}.Vlt-sidenav--light .Vlt-sidemenu__title{color:#919eab}.Vlt-sidenav--light .Vlt-sidemenu__title--border{border-top:1px solid #e7ebee}.Vlt-sidenav--light .Vlt-sidetabs--bottom{border-top:1px solid #e7ebee}.Vlt-sidenav--light .Vlt-sidetabs--top{border-bottom:1px solid #e7ebee}.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link svg{fill:#919eab!important}.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link:hover:after{background:#d6eefc}.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link:hover svg{fill:#4e5a64!important}.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link:active:after,.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link_active:after{background:#3ae}.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link:active svg,.Vlt-sidenav--light .Vlt-sidetabs .Vlt-js-tabs__link_active svg{fill:#4e5a64!important}.Vlt-sidenav--light .Vlt-sidenav__block:after,.Vlt-sidenav--light .Vlt-sidenav__block:before{background:#e7ebee}.Vlt-sidenav--light .Vlt-sidenav__block--logo .Vlt-sidenav__collapse svg{fill:#919eab}@media only screen and (min-width:576px){.Vlt-sidenav--light.Vlt-sidenav--collapsed .Vlt-sidemenu__title{border-bottom:1px solid #e7ebee}.Vlt-sidenav--light.Vlt-sidenav--collapsed li li .Vlt-sidemenu__link_active svg{fill:#919eab!important}}.Vlt-sidenav__mobile--dark{background:#117bb8}.Vlt-sidenav__mobile--dark button svg{fill:#fff}.Vlt-sidenav--dark{background:linear-gradient(to bottom,#0f6ba1,#005282)}.Vlt-sidenav--dark .Vlt-sidenav__scroll .Vlt-sidemenu{background:linear-gradient(0deg,#005282 10px,transparent 10px),linear-gradient(0deg,transparent calc(100% - 10px),#0e689c calc(100% - 10px)) 100% 0}.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(255,255,255,.05)}.Vlt-sidenav--dark .Vlt-sidemenu__link svg,.Vlt-sidenav--dark .Vlt-sidemenu__trigger svg{fill:#3ae;opacity:.8}.Vlt-sidenav--dark .Vlt-sidemenu__link .Vlt-sidemenu__label,.Vlt-sidenav--dark .Vlt-sidemenu__trigger .Vlt-sidemenu__label{opacity:.8}.Vlt-sidenav--dark .Vlt-sidemenu__link_active .Vlt-sidemenu__label,.Vlt-sidenav--dark .Vlt-sidemenu__link_active svg,.Vlt-sidenav--dark .Vlt-sidemenu__trigger_active .Vlt-sidemenu__label,.Vlt-sidenav--dark .Vlt-sidemenu__trigger_active svg{opacity:1}.Vlt-sidenav--dark .Vlt-sidemenu__link_active{background:#117bb8}.Vlt-sidenav--dark .Vlt-sidemenu__link_active svg{fill:#fff!important}.Vlt-sidenav--dark .Vlt-sidemenu__link_active:hover{background:#117bb8}.Vlt-sidenav--dark .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--dark .Vlt-sidemenu__trigger_current:not(.Vlt-sidemenu__trigger_active){background:rgba(255,255,255,.05)}.Vlt-sidenav--dark .Vlt-sidemenu__title{color:rgba(214,238,252,.8)}.Vlt-sidenav--dark .Vlt-sidemenu__title--border{border-top:1px solid rgba(214,238,252,.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:#117bb8!important}.Vlt-sidenav--dark .Vlt-sidetabs .Vlt-js-tabs__link:hover:after{background:#117bb8}.Vlt-sidenav--dark .Vlt-sidetabs .Vlt-js-tabs__link:hover svg{fill:#85ccf5!important}.Vlt-sidenav--dark .Vlt-sidetabs .Vlt-js-tabs__link:active:after,.Vlt-sidenav--dark .Vlt-sidetabs .Vlt-js-tabs__link_active:after{background:#3ae}.Vlt-sidenav--dark .Vlt-sidetabs .Vlt-js-tabs__link:active svg,.Vlt-sidenav--dark .Vlt-sidetabs .Vlt-js-tabs__link_active svg{fill:#85ccf5!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:#3ae}@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:#919eab!important}}.Vlt-card{background:#fff;border-radius:8px;box-shadow:0 1px 20px rgba(44,45,48,.2);display:block;margin-bottom:24px;padding:24px;position:relative;width:100%}.Vlt-card--border{box-shadow:inset 0 0 1px rgba(44,45,48,.5)}.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{margin-bottom:8px;margin-top:0;padding-bottom:8px}.Vlt-card--lesspadding .Vlt-card__footer{padding-bottom:2px;padding-top:8px}.Vlt-card--lesspadding .Vlt-card__image{margin:-16px -17px 16px}.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:#c4cdd5;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 16px;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(44,45,48,.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,#138bcf,#0d5c89)}.Vlt-card__image--blue .Vlt-card__image__icon svg{fill:#117bb8}.Vlt-card__image--blue-light{background:linear-gradient(to right,#4bb4f0,#1292dc)}.Vlt-card__image--blue-light .Vlt-card__image__icon svg{fill:#3ae}.Vlt-card__image--red{background:linear-gradient(to right,#f47280,#ee2b41)}.Vlt-card__image--red .Vlt-card__image__icon svg{fill:#f25a6b}.Vlt-card__image--orange{background:linear-gradient(to right,#ffa635,#e88100)}.Vlt-card__image--orange .Vlt-card__image__icon svg{fill:#ff8f02}.Vlt-card__image--indigo{background:linear-gradient(to right,#8a95de,#4e5fcd)}.Vlt-card__image--indigo .Vlt-card__image__icon svg{fill:#7683d8}.Vlt-card__image--green{background:linear-gradient(to right,#42ca98,#2a966e)}.Vlt-card__image--green .Vlt-card__image__icon svg{fill:#35be8b}.Vlt-card__image--purple{background:linear-gradient(to right,#ce99e1,#b15ecf)}.Vlt-card__image--purple .Vlt-card__image__icon svg{fill:#c485db}.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{-ms-flex-align:center;align-items:center;border-bottom:1px solid rgba(44,45,48,.1);display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;margin:-4px -8px 16px;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(44,45,48,.1);margin:16px -8px -8px;padding-top:16px;text-align:center}.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--largest:first-child{margin-bottom:8px}.Vlt-card__corner{background:#c485db;border-top-right-radius:8px;-webkit-clip-path:polygon(0 0,100% 0,100% 100%,100% 100%);clip-path:polygon(0 0,100% 0,100% 100%,100% 100%);height:60px;position:absolute;right:0;top:0;width:50px}.Vlt-card__corner svg{fill:#fff;height:20px;position:absolute;right:6px;top:6px;width:20px}.Vlt-card--clickable,a.Vlt-card{cursor:pointer;transition:transform .1s}.Vlt-card--clickable:hover,a.Vlt-card:hover{transform:scale(1.03)}.Vlt-card--clickable:active,a.Vlt-card:active{transform:scale(1)}.Vlt-text-separator{display:block;line-height:1.4rem;margin:16px 0;overflow:hidden;text-align:center}.Vlt-text-separator span{color:#4e5a64;font-size:1.4rem;font-weight:600;padding:0 8px;position:relative}.Vlt-text-separator span:after,.Vlt-text-separator span:before{background:#e7ebee;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:#f25a6b}.Vlt-text-separator--red span:after,.Vlt-text-separator--red span:before{background:#f79ca6}.Vlt-text-separator--big{line-height:1.7rem}.Vlt-text-separator--big span{font-size:1.7rem}@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:8px;box-shadow:0 30px 40px rgba(44,45,48,.2);display:-ms-flexbox;display:flex;-ms-flex-flow:column;flex-flow:column;max-height:95vh;padding:16px 24px;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:#2c2d30}.Vlt-modal__header{-ms-flex-negative:0;flex-shrink:0;padding-bottom:6px;text-align:center}.Vlt-modal__header h3,.Vlt-modal__header h4{-ms-flex-pack:center;justify-content:center;margin-left:25px;width:calc(100% - 50px)}.Vlt-modal__dismiss{background-image:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20width%3D%2220px%22%20height%3D%2220px%22%20viewBox%3D%220%200%2020%2020%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%2048.2%20(47327)%20-%20http%3A%2F%2Fwww.bohemiancoding.com%2Fsketch%20--%3E%0A%20%20%20%20%3Ctitle%3Eicn-close%3C%2Ftitle%3E%0A%20%20%20%20%3Cdesc%3ECreated%20with%20Sketch.%3C%2Fdesc%3E%0A%20%20%20%20%3Cdefs%3E%3C%2Fdefs%3E%0A%20%20%20%20%3Cg%20id%3D%22Modals---Desktop%22%20stroke%3D%22none%22%20stroke-width%3D%221%22%20fill%3D%22none%22%20fill-rule%3D%22evenodd%22%20transform%3D%22translate(-512.000000%2C%20-62.000000)%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Modal%22%20transform%3D%22translate(156.000000%2C%2040.000000)%22%20fill%3D%22%23637381%22%20fill-rule%3D%22nonzero%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22icn-close%22%20transform%3D%22translate(356.000000%2C%2022.000000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cg%20id%3D%22Group-12%22%20transform%3D%22translate(2.083333%2C%202.500000)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpolygon%20id%3D%22Path-252%22%20points%3D%221.42258898%2015.115968%2015.115968%201.42258898%2013.9374567%200.244077682%200.244077682%2013.9374567%22%3E%3C%2Fpolygon%3E%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%3Cpolygon%20id%3D%22Path-252-Copy%22%20points%3D%220.244077682%201.42258898%2013.9374567%2015.115968%2015.115968%2013.9374567%201.42258898%200.244077682%22%3E%3C%2Fpolygon%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");background-position:center center;background-repeat:no-repeat;background-size:20px auto;border:0;box-shadow:none;cursor:pointer;height:40px;opacity:1;position:absolute;right:10px;top:10px;transition:opacity .2s;width:40px}.Vlt-modal__dismiss:hover{opacity:.6}.Vlt-modal__footer{border-top:1px solid #e7ebee;-ms-flex-negative:0;flex-shrink:0;margin-bottom:-8px;padding-top:8px;text-align:center}.Vlt-modal__footer .Vlt-btn{min-width:75px}.Vlt-modal_visible{background:rgba(44,45,48,.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 .5s}.Vlt-accordion__content_open,.Vlt-js-accordion__content_open{height:auto;overflow:visible}.Vlt-js-accordion__trigger{cursor:pointer}.Vlt-accordion__trigger{cursor:pointer;display:-ms-flexbox;display:flex;-ms-flex-pack:justify;justify-content:space-between;margin-bottom:0!important;padding:8px 0;text-align:left;transition:margin .2s;width:100%}.Vlt-accordion__trigger span{-ms-flex:1;flex:1}.Vlt-accordion__trigger:after{background-image:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C!--%20Generator%3A%20Adobe%20Illustrator%2022.0.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200)%20%20--%3E%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%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%0A%3Cpath%20style%3D%22fill%3A%232C2D30%3B%22%20d%3D%22M10%2C13.5L4.7%2C8.1c-0.3-0.3-0.3-0.7%2C0-0.9s0.7-0.3%2C0.9%2C0l0%2C0l4.4%2C4.4l4.4-4.4c0.3-0.2%2C0.7-0.2%2C0.9%2C0%0A%09c0.2%2C0.3%2C0.2%2C0.6%2C0%2C0.9L10%2C13.5z%22%2F%3E%0A%3C%2Fsvg%3E%0A");background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';display:block;-ms-flex:0 0 20px;flex:0 0 20px;height:20px;margin-top:4px;transition:transform .2s;width:20px}.Vlt-accordion__trigger_active:after{transform:rotate(180deg)}.Vlt-accordion__trigger--noborder+.Vlt-accordion__content{border-bottom:0}.Vlt-accordion__content{border-bottom:1px solid rgba(44,45,48,.1)}.Vlt-accordion__content_open{padding-bottom:8px}.Vlt-accordion__content--noborder{border:0}.Vlt-accordion--large .Vlt-accordion__trigger{padding:16px 0}.Vlt-accordion--large .Vlt-accordion__trigger_active{padding-bottom:8px}.Vlt-accordion--large .Vlt-accordion__content_open{padding-bottom:16px}.Vlt-accordion--larger .Vlt-accordion__trigger{padding:24px 0}.Vlt-accordion--larger .Vlt-accordion__trigger:after{-ms-flex:0 0 30px;flex:0 0 30px;height:30px;width:30px}.Vlt-accordion--larger .Vlt-accordion__trigger_active{padding-bottom:8px}.Vlt-accordion--larger .Vlt-accordion__content_open{padding-bottom:24px}.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 #4cc3d2;border-color:#4cc3d2 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 -5px;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:-5px;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;width:100%}.Vlt-empty:before{background-image:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C!--%20Generator%3A%20Adobe%20Illustrator%2022.0.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200)%20%20--%3E%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%0A%09%20viewBox%3D%220%200%20230%20200%22%20style%3D%22enable-background%3Anew%200%200%20230%20200%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cg%3E%0A%09%3Cpath%20style%3D%22fill%3A%23637381%3Bfill-opacity%3A5.000000e-02%3B%22%20d%3D%22M115%2C195c52.5%2C0%2C95-42.5%2C95-95S167.5%2C5%2C115%2C5s-95%2C42.5-95%2C95%0A%09%09S62.5%2C195%2C115%2C195z%22%2F%3E%0A%09%3Cg%20transform%3D%22translate(65%2083)%22%3E%0A%09%09%3Cpath%20style%3D%22fill%3A%23E7EBEE%3B%22%20d%3D%22M78.9-17L100%2C17v35c0%2C3.3-2.7%2C6-6%2C6H6c-3.3%2C0-6-2.7-6-6V17l21.1-34H78.9z%22%2F%3E%0A%09%09%3Cpath%20style%3D%22opacity%3A5.000000e-02%3Benable-background%3Anew%20%20%20%20%3B%22%20d%3D%22M20.6-16L0%2C18v12.4h20.6V-16z%20M77.4-16L98%2C18v12.4H77.4V-16z%22%2F%3E%0A%09%09%3Cg%3E%0A%09%09%09%3Cpath%20id%3D%22a%22%20style%3D%22fill%3A%23E7EBEE%3B%22%20d%3D%22M37-11h25c2.2%2C0%2C4%2C1.8%2C4%2C4v22.5c0%2C2.2-1.8%2C4-4%2C4H37c-2.2%2C0-4-1.8-4-4V-7%0A%09%09%09%09C33-9.2%2C34.8-11%2C37-11z%22%2F%3E%0A%09%09%3C%2Fg%3E%0A%09%09%3Cg%3E%0A%09%09%09%3Cpath%20style%3D%22fill%3A%23C4CDD5%3B%22%20d%3D%22M61%2C19.5H38c-2.8%2C0-5-2.2-5-5V-6c0-2.8%2C2.2-5%2C5-5h23c2.8%2C0%2C5%2C2.2%2C5%2C5v20.5%0A%09%09%09%09C66%2C17.3%2C63.8%2C19.5%2C61%2C19.5z%20M38-9c-1.7%2C0-3%2C1.3-3%2C3v20.5c0%2C1.7%2C1.3%2C3%2C3%2C3h23c1.7%2C0%2C3-1.3%2C3-3V-6c0-1.7-1.3-3-3-3H38z%22%2F%3E%0A%09%09%3C%2Fg%3E%0A%09%09%3Cg%3E%0A%09%09%09%3Cpath%20id%3D%22b%22%20style%3D%22fill%3A%23E7EBEE%3B%22%20d%3D%22M27-3h45c2.2%2C0%2C4%2C1.8%2C4%2C4v22.5c0%2C2.2-1.8%2C4-4%2C4H27c-2.2%2C0-4-1.8-4-4V1C23-1.2%2C24.8-3%2C27-3z%0A%09%09%09%09%22%2F%3E%0A%09%09%3C%2Fg%3E%0A%09%09%3Cg%3E%0A%09%09%09%3Cpath%20style%3D%22fill%3A%23C4CDD5%3B%22%20d%3D%22M71%2C27.5H28c-2.8%2C0-5-2.2-5-5V2c0-2.8%2C2.2-5%2C5-5h43c2.8%2C0%2C5%2C2.2%2C5%2C5v20.5%0A%09%09%09%09C76%2C25.3%2C73.8%2C27.5%2C71%2C27.5z%20M28-1c-1.7%2C0-3%2C1.3-3%2C3v20.5c0%2C1.7%2C1.3%2C3%2C3%2C3h43c1.7%2C0%2C3-1.3%2C3-3V2c0-1.7-1.3-3-3-3H28z%22%2F%3E%0A%09%09%3C%2Fg%3E%0A%09%09%3Cg%3E%0A%09%09%09%3Cpath%20id%3D%22c%22%20style%3D%22fill%3A%23E7EBEE%3B%22%20d%3D%22M17%2C8h65c2.2%2C0%2C4%2C1.8%2C4%2C4v22.5c0%2C2.2-1.8%2C4-4%2C4H17c-2.2%2C0-4-1.8-4-4V12C13%2C9.8%2C14.8%2C8%2C17%2C8%0A%09%09%09%09z%22%2F%3E%0A%09%09%3C%2Fg%3E%0A%09%09%3Cg%3E%0A%09%09%09%3Cpath%20style%3D%22fill%3A%23C4CDD5%3B%22%20d%3D%22M81%2C37.5H18c-2.8%2C0-5-2.2-5-5V12c0-2.8%2C2.2-5%2C5-5h63c2.8%2C0%2C5%2C2.2%2C5%2C5v20.5%0A%09%09%09%09C86%2C35.3%2C83.8%2C37.5%2C81%2C37.5z%20M18%2C9c-1.7%2C0-3%2C1.3-3%2C3v20.5c0%2C1.7%2C1.3%2C3%2C3%2C3h63c1.7%2C0%2C3-1.3%2C3-3V12c0-1.7-1.3-3-3-3H18z%22%2F%3E%0A%09%09%3C%2Fg%3E%0A%09%09%3Cg%3E%0A%09%09%09%3Cpath%20style%3D%22fill%3A%23C4CDD5%3B%22%20d%3D%22M94%2C58H6c-3.3%2C0-6-2.7-6-6V17l0.1-0.2L21-17h58l21%2C34v35C100%2C55.3%2C97.3%2C58%2C94%2C58z%20M2%2C17.6V52%0A%09%09%09%09c0%2C2.2%2C1.8%2C4%2C4%2C4h88c2.2%2C0%2C4-1.8%2C4-4V17.6L77.9-15H22.1L2%2C17.6z%22%2F%3E%0A%09%09%3C%2Fg%3E%0A%09%09%3Cpath%20style%3D%22opacity%3A5.000000e-02%3Benable-background%3Anew%20%20%20%20%3B%22%20d%3D%22M7%2C43h86c3.9%2C0%2C7%2C3.1%2C7%2C7v8c0%2C3.9-3.1%2C7-7%2C7H7c-3.9%2C0-7-3.1-7-7%0A%09%09%09v-8C0%2C46.1%2C3.1%2C43%2C7%2C43z%22%2F%3E%0A%09%09%3Cg%3E%0A%09%09%09%3Cg%3E%0A%09%09%09%09%3Cpath%20id%3D%22d%22%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M32%2C17v8.5c0%2C4.7%2C3.8%2C8.5%2C8.5%2C8.5h19c4.7%2C0%2C8.5-3.8%2C8.5-8.5c0%2C0%2C0%2C0%2C0%2C0V17h32v34%0A%09%09%09%09%09c0%2C5-4%2C9-9%2C9H9c-5%2C0-9-4-9-9V17H32z%22%2F%3E%0A%09%09%09%3C%2Fg%3E%0A%09%09%09%3Cg%3E%0A%09%09%09%09%3Cpath%20style%3D%22fill%3A%23C4CDD5%3B%22%20d%3D%22M9%2C60c-5%2C0-9-4-9-9V17h32v8.5c0%2C4.7%2C3.8%2C8.5%2C8.5%2C8.5h19c4.7%2C0%2C8.5-3.8%2C8.5-8.5V17h32v34%0A%09%09%09%09%09c0%2C5-4%2C9-9%2C9c0%2C0%2C0%2C0%2C0%2C0H9z%20M2%2C19v32c0%2C3.9%2C3.1%2C7%2C7%2C7h82c0%2C0%2C0%2C0%2C0%2C0c3.9%2C0%2C7-3.1%2C7-7V19H70v6.5C70%2C31.3%2C65.3%2C36%2C59.5%2C36h-19%0A%09%09%09%09%09C34.7%2C36%2C30%2C31.3%2C30%2C25.5V19H2z%22%2F%3E%0A%09%09%09%3C%2Fg%3E%0A%09%09%3C%2Fg%3E%0A%09%3C%2Fg%3E%0A%09%3Cg%20transform%3D%22translate(96%2063)%22%3E%0A%09%09%3Cellipse%20style%3D%22fill%3Anone%3Bstroke%3A%23C4CDD5%3Bstroke-width%3A2%3B%22%20cx%3D%222.9%22%20cy%3D%22-7.9%22%20rx%3D%222.9%22%20ry%3D%222.9%22%2F%3E%0A%09%09%3Cellipse%20style%3D%22fill%3Anone%3Bstroke%3A%23C4CDD5%3Bstroke-width%3A2%3B%22%20cx%3D%2233.4%22%20cy%3D%22-7.4%22%20rx%3D%222.3%22%20ry%3D%222.4%22%2F%3E%0A%09%09%3Cellipse%20style%3D%22fill%3A%23C4CDD5%3B%22%20cx%3D%2243.7%22%20cy%3D%22-14.6%22%20rx%3D%222.3%22%20ry%3D%222.3%22%2F%3E%0A%09%3C%2Fg%3E%0A%3C%2Fg%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:200px}.Vlt-empty__content{color:#919eab;-ms-flex:0 0 100%;flex:0 0 100%;margin-top:16px;text-align:center}.Vlt-empty__content p{color:#919eab}.Vlt-empty--search:before{background-image:url("data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22utf-8%22%3F%3E%0A%3C!--%20Generator%3A%20Adobe%20Illustrator%2022.0.1%2C%20SVG%20Export%20Plug-In%20.%20SVG%20Version%3A%206.00%20Build%200)%20%20--%3E%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%0A%09%20viewBox%3D%220%200%20230%20200%22%20style%3D%22enable-background%3Anew%200%200%20230%20200%3B%22%20xml%3Aspace%3D%22preserve%22%3E%0A%3Cg%3E%0A%09%3Cpath%20style%3D%22fill%3A%23637381%3Bfill-opacity%3A5.000000e-02%3B%22%20d%3D%22M115%2C195c52.5%2C0%2C95-42.5%2C95-95S167.5%2C5%2C115%2C5s-95%2C42.5-95%2C95%0A%09%09S62.5%2C195%2C115%2C195z%22%2F%3E%0A%09%3Cpath%20style%3D%22fill%3A%23C4CDD5%3B%22%20d%3D%22M130.2%2C61.8c-0.3%2C0.3-0.8%2C0.3-1.2%2C0l0%2C0l-8.5-8.4c0.4-0.4%2C0.9-0.8%2C1.2-1.3l8.4%2C8.4%0A%09%09C130.5%2C61%2C130.5%2C61.5%2C130.2%2C61.8%20M98.8%2C42.7c0-6.7%2C5.4-12.1%2C12.1-12.1S123%2C36%2C123%2C42.7s-5.4%2C12.1-12.1%2C12.1%0A%09%09C104.3%2C54.8%2C98.8%2C49.4%2C98.8%2C42.7%20M131.8%2C59.1l-8.6-8.7c1.5-2.3%2C2.2-5%2C2.2-7.7c0-8-6.5-14.4-14.4-14.4s-14.4%2C6.5-14.4%2C14.5%0A%09%09s6.5%2C14.4%2C14.4%2C14.4c2.7%2C0%2C5.4-0.8%2C7.7-2.3l8.7%2C8.6c0.6%2C0.6%2C1.4%2C0.9%2C2.2%2C0.9s1.6-0.3%2C2.2-0.9C133%2C62.3%2C133%2C60.3%2C131.8%2C59.1%22%2F%3E%0A%3C%2Fg%3E%0A%3Cg%20transform%3D%22translate(65%2083)%22%3E%0A%09%3Cpath%20style%3D%22fill%3A%23E7EBEE%3B%22%20d%3D%22M78.9-0.3l21.1%2C34v35c0%2C3.3-2.7%2C6-6%2C6h-88c-3.3%2C0-6-2.7-6-6v-35L21-0.3H78.9z%22%2F%3E%0A%09%3Cpath%20style%3D%22opacity%3A5.000000e-02%3Benable-background%3Anew%20%20%20%20%3B%22%20d%3D%22M20.6%2C0.7l-20.6%2C34v12.4h20.6V0.7z%20M77.3%2C0.7l20.6%2C34v12.4H77.3%0A%09%09V0.7z%22%2F%3E%0A%09%3Cg%3E%0A%09%09%3Cpath%20id%3D%22a_1_%22%20style%3D%22fill%3A%23E7EBEE%3B%22%20d%3D%22M36.9%2C5.7h25c2.2%2C0%2C4%2C1.8%2C4%2C4v22.5c0%2C2.2-1.8%2C4-4%2C4h-25c-2.2%2C0-4-1.8-4-4V9.7%0A%09%09%09C32.9%2C7.5%2C34.7%2C5.7%2C36.9%2C5.7z%22%2F%3E%0A%09%3C%2Fg%3E%0A%09%3Cg%3E%0A%09%09%3Cpath%20style%3D%22fill%3A%23C4CDD5%3B%22%20d%3D%22M60.9%2C36.2h-23c-2.8%2C0-5-2.2-5-5V10.7c0-2.8%2C2.2-5%2C5-5h23c2.8%2C0%2C5%2C2.2%2C5%2C5v20.5%0A%09%09%09C65.9%2C34%2C63.7%2C36.2%2C60.9%2C36.2z%20M37.9%2C7.7c-1.7%2C0-3%2C1.3-3%2C3v20.5c0%2C1.7%2C1.3%2C3%2C3%2C3h23c1.7%2C0%2C3-1.3%2C3-3V10.7c0-1.7-1.3-3-3-3H37.9z%22%0A%09%09%09%2F%3E%0A%09%3C%2Fg%3E%0A%09%3Cg%3E%0A%09%09%3Cpath%20id%3D%22b_1_%22%20style%3D%22fill%3A%23E7EBEE%3B%22%20d%3D%22M26.9%2C13.7h45c2.2%2C0%2C4%2C1.8%2C4%2C4v22.5c0%2C2.2-1.8%2C4-4%2C4h-45c-2.2%2C0-4-1.8-4-4V17.7%0A%09%09%09C22.9%2C15.5%2C24.7%2C13.7%2C26.9%2C13.7z%22%2F%3E%0A%09%3C%2Fg%3E%0A%09%3Cg%3E%0A%09%09%3Cpath%20style%3D%22fill%3A%23C4CDD5%3B%22%20d%3D%22M70.9%2C44.2h-43c-2.8%2C0-5-2.2-5-5V18.7c0-2.8%2C2.2-5%2C5-5h43c2.8%2C0%2C5%2C2.2%2C5%2C5v20.5%0A%09%09%09C75.9%2C42%2C73.7%2C44.2%2C70.9%2C44.2z%20M27.9%2C15.7c-1.7%2C0-3%2C1.3-3%2C3v20.5c0%2C1.7%2C1.3%2C3%2C3%2C3h43c1.7%2C0%2C3-1.3%2C3-3V18.7c0-1.7-1.3-3-3-3H27.9z%22%0A%09%09%09%2F%3E%0A%09%3C%2Fg%3E%0A%09%3Cg%3E%0A%09%09%3Cpath%20id%3D%22c_1_%22%20style%3D%22fill%3A%23E7EBEE%3B%22%20d%3D%22M16.9%2C24.7h65c2.2%2C0%2C4%2C1.8%2C4%2C4v22.5c0%2C2.2-1.8%2C4-4%2C4h-65c-2.2%2C0-4-1.8-4-4V28.7%0A%09%09%09C12.9%2C26.5%2C14.7%2C24.7%2C16.9%2C24.7z%22%2F%3E%0A%09%3C%2Fg%3E%0A%09%3Cg%3E%0A%09%09%3Cpath%20style%3D%22fill%3A%23C4CDD5%3B%22%20d%3D%22M80.9%2C54.2h-63c-2.8%2C0-5-2.2-5-5V28.7c0-2.8%2C2.2-5%2C5-5h63c2.8%2C0%2C5%2C2.2%2C5%2C5v20.5%0A%09%09%09C85.9%2C52%2C83.7%2C54.2%2C80.9%2C54.2z%20M17.9%2C25.7c-1.7%2C0-3%2C1.3-3%2C3v20.5c0%2C1.7%2C1.3%2C3%2C3%2C3h63c1.7%2C0%2C3-1.3%2C3-3V28.7c0-1.7-1.3-3-3-3H17.9z%22%0A%09%09%09%2F%3E%0A%09%3C%2Fg%3E%0A%09%3Cg%3E%0A%09%09%3Cpath%20style%3D%22fill%3A%23C4CDD5%3B%22%20d%3D%22M93.9%2C74.7h-88c-3.3%2C0-6-2.7-6-6v-35l0.1-0.2L20.9-0.3h58l21%2C34v35C99.9%2C72.1%2C97.2%2C74.7%2C93.9%2C74.7z%0A%09%09%09%20M1.9%2C34.3v34.4c0%2C2.2%2C1.8%2C4%2C4%2C4h88c2.2%2C0%2C4-1.8%2C4-4V34.3L77.8%2C1.7H22L1.9%2C34.3z%22%2F%3E%0A%09%3C%2Fg%3E%0A%09%3Cpath%20style%3D%22opacity%3A5.000000e-02%3Benable-background%3Anew%20%20%20%20%3B%22%20d%3D%22M6.9%2C59.7h86c3.9%2C0%2C7%2C3.1%2C7%2C7v8c0%2C3.9-3.1%2C7-7%2C7h-86%0A%09%09c-3.9%2C0-7-3.1-7-7v-8C-0.1%2C62.9%2C3.1%2C59.7%2C6.9%2C59.7z%22%2F%3E%0A%09%3Cg%3E%0A%09%09%3Cg%3E%0A%09%09%09%3Cpath%20id%3D%22d_1_%22%20style%3D%22fill%3A%23FFFFFF%3B%22%20d%3D%22M31.9%2C33.7v8.5c0%2C4.7%2C3.8%2C8.5%2C8.5%2C8.5h19c4.7%2C0%2C8.5-3.8%2C8.5-8.5c0%2C0%2C0%2C0%2C0%2C0v-8.5h32v34%0A%09%09%09%09c0%2C5-4%2C9-9%2C9h-82c-5%2C0-9-4-9-9v-34H31.9z%22%2F%3E%0A%09%09%3C%2Fg%3E%0A%09%09%3Cg%3E%0A%09%09%09%3Cpath%20style%3D%22fill%3A%23C4CDD5%3B%22%20d%3D%22M8.9%2C76.7c-5%2C0-9-4-9-9v-34h32v8.5c0%2C4.7%2C3.8%2C8.5%2C8.5%2C8.5h19c4.7%2C0%2C8.5-3.8%2C8.5-8.5v-8.5h32v34%0A%09%09%09%09c0%2C5-4%2C9-9%2C9c0%2C0%2C0%2C0%2C0%2C0H8.9z%20M1.9%2C35.7v32c0%2C3.9%2C3.1%2C7%2C7%2C7h82c0%2C0%2C0%2C0%2C0%2C0c3.9%2C0%2C7-3.1%2C7-7v-32h-28v6.5%0A%09%09%09%09c0%2C5.8-4.7%2C10.5-10.5%2C10.5h-19c-5.8%2C0-10.5-4.7-10.5-10.5v-6.5H1.9z%22%2F%3E%0A%09%09%3C%2Fg%3E%0A%09%3C%2Fg%3E%0A%3C%2Fg%3E%0A%3Cg%20transform%3D%22translate(96%2063)%22%3E%0A%09%3Cellipse%20style%3D%22fill%3Anone%3Bstroke%3A%23C4CDD5%3Bstroke-width%3A2%3B%22%20cx%3D%222.8%22%20cy%3D%228.8%22%20rx%3D%222.9%22%20ry%3D%222.9%22%2F%3E%0A%09%3Cellipse%20style%3D%22fill%3Anone%3Bstroke%3A%23C4CDD5%3Bstroke-width%3A2%3B%22%20cx%3D%2233.3%22%20cy%3D%229.3%22%20rx%3D%222.3%22%20ry%3D%222.4%22%2F%3E%0A%09%3Cellipse%20style%3D%22fill%3A%23C4CDD5%3B%22%20cx%3D%2243.6%22%20cy%3D%222.1%22%20rx%3D%222.3%22%20ry%3D%222.3%22%2F%3E%0A%3C%2Fg%3E%0A%3C%2Fsvg%3E%0A");background-position:center center;background-repeat:no-repeat;background-size:contain}.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-x:auto;padding:0}.Vlt-steps__item{-ms-flex-align:center;align-items:center;color:#2c2d30;counter-increment:steps;display:-ms-flexbox;display:flex;font-size:14px;font-weight:700;margin:0 0 0 10px}@media only screen and (max-width:575px){.Vlt-steps__item{-ms-flex:1;flex:1;position:relative;text-align:center}}.Vlt-steps__item:first-child{margin-left:0}.Vlt-steps__item a{color:#2c2d30}.Vlt-steps__item:before{-ms-flex-align:center;align-items:center;border:1px solid #ff8f02;border-radius:100%;color:#ff8f02;content:counter(steps);display:-ms-flexbox;display:flex;-ms-flex:0 0 40px;flex:0 0 40px;font-size:18px;height:40px;-ms-flex-pack:center;justify-content:center;margin-right:16px;width:40px}.Vlt-steps__item: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%23ff8f02%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);background-position:center center;background-repeat:no-repeat;background-size:contain;content:'';display:block;height:24px;width:24px}.Vlt-steps__item:last-child:after{display:none}.Vlt-steps__item--selected:before,.Vlt-steps__item_selected:before{background:#ff8f02;color:#fff;font-weight:700}.Vlt-steps__item_done:before{background-color:#c4cdd5;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:#d2d3d6;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:#dfe0e2}.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:#3ae}.Vlt-switch input:checked~.Vlt-switch__slider:before{left:21px}.Vlt-switch.Vlt-switch--red input:checked~.Vlt-switch__slider{background-color:#f25a6b}.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:#0070a1;border-radius:4px;box-shadow:0 5px 10px 0 rgba(44,45,48,.5);margin:8px auto;max-width:100%;width:300px}.Vlt-dialpad--nobg{background:0 0}.Vlt-dialpad--noshadow{box-shadow:none}.Vlt-dialpad--border{border:1px solid #94dbe4}.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:3px;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:600;padding-bottom:2px;padding-top:10px;text-align:center}.Vlt-dialpad__key__sub{color:#9ccde2;-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:hover{background:rgba(50,152,196,.25)}.Vlt-dialpad__key svg{height:24px;width:24px}.Vlt-dialpad__key .Vlt-btn{margin:0}.Vlt-dialpad__key--nohover:hover{background:0 0}.Vlt-dialpad__header{color:#d6eefc;font-size:1.2rem;padding:12px 32px;position:relative;text-align:center}.Vlt-dialpad__header__dismiss{cursor:pointer;height:22px;-o-object-fit:contain;object-fit:contain;position:absolute;right:10px;top:10px;transition:opacity .2s;width:22px}.Vlt-dialpad__header__dismiss svg{fill:#fff;height:100%;width:100%}.Vlt-dialpad__header__dismiss:hover{opacity:.7}.Vlt-dialpad__strip{-ms-flex-align:center;align-items:center;background:rgba(50,152,196,.25);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:600;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:1px solid #e7ebee;box-shadow:none}.Vlt-dialpad--light .Vlt-dialpad__key__main{color:#4e5a64}.Vlt-dialpad--light .Vlt-dialpad__key__sub{color:#3298c4}.Vlt-dialpad--light .Vlt-dialpad__key:hover{background:rgba(156,205,226,.25)}.Vlt-dialpad--light .Vlt-dialpad__header{color:#4e5a64}.Vlt-dialpad--light .Vlt-dialpad__header__dismiss svg{fill:#4e5a64}.Vlt-dialpad--light .Vlt-dialpad__strip{background:rgba(208,231,241,.5)}.Vlt-dialpad--light .Vlt-dialpad__strip__number input{color:#4e5a64}.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(44,45,48,.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:#3ae;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:#2c2d30;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:#919eab;cursor:default;pointer-events:none}.Vlt-popup__link--disabled .Vlt-popup__link__icon,.Vlt-popup__link--selected .Vlt-popup__link__icon{fill:#919eab}.Vlt-popup__link--highlighted{color:#3ae}.Vlt-popup__link__icon{fill:#3ae;-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:#e7ebee;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(44,45,48,.05)}.Vlt-popup__link:active{background:rgba(44,45,48,.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:2.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-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 #e7ebee;-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}@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}
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol viewBox="0 0 24 24" id="Vlt-icon-add-group"><path d="M17.7 17.7v-1.3c0-.4.3-.6.6-.6s.7.2.7.6v1.3h1.3c.4 0 .6.3.6.6s-.2.7-.6.7H19v1.3c0 .4-.3.6-.6.6s-.6-.3-.6-.6V19h-1.3c-.4 0-.6-.3-.6-.6s.3-.6.6-.6h1.2zm-4.9.7c0-3.1 2.5-5.5 5.5-5.5s5.5 2.5 5.5 5.5-2.5 5.5-5.5 5.5-5.5-2.5-5.5-5.5zm1.3 0c0 2.3 1.9 4.2 4.2 4.2s4.2-1.9 4.2-4.2-1.9-4.2-4.2-4.2-4.2 1.8-4.2 4.2zm-.4-5.5c.3.1.6.4.5.8-.1.3-.4.6-.8.5l-1.9-.5c-.2-.1-.4-.2-.5-.5l-.3-1.4c-.1-.2 0-.5.2-.6.7-.6 1.2-1.6 1.3-2.6 0-.3.3-.6.6-.6.1 0 .1 0 .1-.1l.1-1.4s0-.1-.1-.1c-.4 0-.7-.3-.6-.7l.1-1.7c0-.2.1-.3.2-.4l.3-.3c.2-.3.2-.5-.1-1-.3-.5-1-.8-1.9-.8-.9-.1-1.5 0-2.2.5-.1.1-.2.1-.4.1-2.1 0-2.6.5-2.6 1.9 0 .1 0 .4.1.8V5c0 .3.1.6.1.7 0 .4-.3.7-.6.7h-.1s-.1 0-.1.1L5.3 8s0 .1.1.1h.1c.3 0 .6.3.6.6.1.9.5 1.9 1.2 2.5.2.2.2.4.2.6l-.4 1.4c-.1.2-.2.4-.5.5l-3 .7c-1.4.3-2.3 1.6-2.3 3 0 .4-.3.6-.6.6s-.6-.3-.6-.6c0-2 1.4-3.7 3.3-4.2l2.6-.7.2-.7c-.6-.7-1.1-1.6-1.3-2.5-.5-.2-.8-.6-.9-1.2l-.2-1.4c-.1-.6.3-1.1.7-1.4v-.2-.2c0-.4-.1-.7-.1-.9 0-2 1-3.1 3.7-3.2C9 .3 9.9.1 11 .1c1.3 0 2.4.5 3 1.4.6.9.6 1.9-.1 2.6l-.2.2-.1 1.1c.5.3.8.8.7 1.4l-.2 1.4c-.1.5-.4.9-.8 1.1-.2 1-.7 1.9-1.3 2.7l.2.6 1.5.3zm4.2-.8c-.3.2-.7.2-.9 0-.2-.3-.2-.7 0-.9.7-.6 1.1-1.6 1.2-2.5 0-.3.3-.6.6-.6V8l.2-1.4s0-.1-.1-.1c-.4 0-.7-.3-.6-.7l.2-1.8c0-.2.1-.3.2-.4l.3-.3c.2-.3.2-.5-.1-1-.3-.5-1-.8-1.9-.8-.6 0-1 0-1.5.2-.3.1-.7-.1-.8-.4s.1-.7.4-.8c.6-.2 1.2-.3 1.9-.3 1.3 0 2.4.5 3 1.4.6.9.6 1.9-.1 2.6l-.2.2-.1 1.1c.5.3.8.8.7 1.4l-.2 1.4c-.1.5-.4.9-.8 1.1-.1.9-.6 1.9-1.4 2.7z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-add-user"><path d="M16.5 16.2v-1.3c0-.4.3-.6.6-.6s.6.3.6.6v1.3H19c.4 0 .6.3.6.6 0 .4-.3.6-.6.6h-1.3v1.3c0 .4-.3.6-.6.6s-.6-.3-.6-.6v-1.3h-1.3c-.4 0-.6-.3-.6-.6 0-.4.3-.6.6-.6h1.3zm-5 .6c0-3.1 2.5-5.6 5.6-5.6s5.6 2.5 5.6 5.6-2.5 5.6-5.6 5.6-5.6-2.5-5.6-5.6zm1.3 0c0 2.4 1.9 4.3 4.3 4.3s4.3-1.9 4.3-4.3-1.9-4.3-4.3-4.3-4.3 1.9-4.3 4.3zM15 6.2c.5.3.9.9.8 1.5l-.2 1.7c-.1.8-.7 1.3-1.5 1.3-.4 0-.6-.3-.6-.6s.3-.6.6-.6c.1 0 .2-.1.3-.2l.2-1.7c0-.1-.1-.2-.2-.2-.4 0-.7-.3-.6-.7l.1-2.2c0-.2.1-.3.2-.4l.4-.4c.3-.4.3-.7-.1-1.4s-1.2-1-2.4-1c-1.1 0-2 .2-2.8.7-.1.1-.2.2-.4.2-2.6 0-3.2.7-3.2 2.4 0 .2 0 .5.1.9v.3c0 .3.1.7.1.9 0 .4-.3.7-.6.7h-.1c-.1 0-.2.1-.2.2l.2 1.7c0 .1.1.2.2.2h.1c.3 0 .6.3.6.6.1 1.1.6 2.3 1.5 3.1.2.2.2.4.2.6l-.4 1.7c-.1.2-.2.4-.5.5l-3.5.9c-1.3.3-1.9 1.3-2 3h9.3c.4 0 .6.3.6.6 0 .4-.3.6-.6.6H.6c-.4 0-.6-.3-.6-.6 0-2.6.9-4.4 3-4.9l3.2-.8.2-1c-.8-.8-1.3-2-1.5-3.1-.6-.2-1-.7-1.1-1.3l-.2-1.7c-.1-.6.3-1.3.8-1.5v-.3-.3c0-.5-.1-.8-.1-1.1C4.3 2.2 5.4.9 8.6.8c1-.7 2-.9 3.3-.9 1.6 0 2.8.5 3.4 1.6.7 1.1.7 2.1-.1 3l-.3.3.1 1.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-address-book"><path d="M10.6 16c-1 .3-2.1 1.1-2 1.4.1.4 1.1.7 3.5.7h.8c2.4 0 3.4-.3 3.5-.7.1-.4-1-1.1-2-1.4-.2-.1-.4-.1-.6-.2-.5-.1-.8-.3-.9-.8-.1-.5.1-.8.5-1.4.4-.4.5-.9.5-1.4 0-1-.6-1.8-1.4-1.9-.8 0-1.5.8-1.5 1.9 0 .5.2 1 .5 1.4.5.6.6.9.5 1.5-.1.5-.4.6-.9.8-.1 0-.3 0-.5.1zM21.8.5v1.3H5.6c-1.2 0-2.2 1-2.2 2.2 0 1.2 1 2.2 2.2 2.2h16.1V23H7.1c-2.7 0-4.9-2.2-4.9-4.9V3.9C2.2 2 3.7.5 5.6.5h16.2zM5.6 7.3c-.8 0-1.6-.3-2.2-.8V18c0 2 1.6 3.6 3.6 3.6h13.4V7.3H5.6zm6.5 12c-3.1 0-4.5-.3-4.7-1.7-.2-1.2 1.2-2.2 2.8-2.7.2-.1.4-.1.7-.2l-.3-.3c-.5-.6-.8-1.4-.8-2.2 0-1.6 1.1-3 2.6-3h.1c1.5.1 2.6 1.4 2.6 3 0 .8-.3 1.5-.8 2.2-.1.2-.2.3-.3.3.3.1.5.1.7.2 1.6.5 3 1.5 2.8 2.7-.2 1.4-1.6 1.7-4.7 1.7h-.7zm-7-14.9v-1h15.7v1H5.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-ai"><path d="M11.5 6.3l1.5-.2h.1c.3-.8 1-1.3 1.8-1.3 1.1 0 1.9.9 1.9 1.9s-.9 1.9-1.9 1.9c-.9 0-1.7-.6-1.9-1.5l-1.3.1v.1c0 .5-.1 1-.4 1.5l1.3 1.1c.4-.3 1-.5 1.6-.5 1.5 0 2.6 1.2 2.6 2.6s-1.2 2.6-2.6 2.6-2.6-1.2-2.6-2.6c0-.5.1-.9.3-1.2l-1.3-1c-.4.4-1 .6-1.6.7l.1.8c.9.2 1.6 1 1.6 1.9 0 1.1-.9 1.9-1.9 1.9s-1.9-.9-1.9-1.9c0-.8.5-1.5 1.2-1.8l-.1-1c-1.4-.3-2.4-1.5-2.4-3 0-1.7 1.4-3.1 3.1-3.1 1.2.1 2.3.8 2.8 2zm9.9 9.3c-.3.4-.9.4-1.2.4h-.1c0 .2.1.6.1.9.1.2 0 .5-.2.6 0 0-.4.4-.4 1.1 0 1.2-.5 1.8-.9 2.2-.6.5-1.5.6-2.3.3-.3-.1-.6-.2-1-.4l-.5 1.7c-.1.3-.3.5-.6.5H5.7c-.2 0-.4-.1-.5-.2s-.2-.3-.1-.5c0 0 .3-1.4.5-4.1.1-1-.5-1.6-1.2-2.6-1.1-1.3-2.4-3-2.4-6C2 3.6 7.2 1 12.4 1c4.4 0 7.5 2.9 8.4 5.6.7 2.1.2 3.7-.1 4.3l.8 3.1c.2.5.3 1.2-.1 1.6zm-2.2-.5c.3-.3.7-.3 1-.3h.2c0-.1 0-.2-.1-.4l-.8-3.4c0-.2 0-.4.1-.5 0-.1.8-1.4.1-3.5-.8-2.3-3.4-4.8-7.2-4.8-4.2 0-9.2 1.9-9.2 7.2 0 2.6 1.1 4.1 2.1 5.3.8 1.1 1.6 2.1 1.5 3.5-.1 1.6-.3 2.8-.4 3.5h7.4l.4-1.4c-1.3-.5-2.5-1.1-2.6-1.2-.3-.1-.5-.5-.3-.8.1-.3.5-.5.8-.3 0 0 3.5 1.6 4.6 1.9.5.1.9.1 1.2-.1.3-.2.4-.6.4-1.1 0-.8.3-1.4.6-1.7-.1-.6-.2-1.4.2-1.9zm-3.5-8.3c0-.5-.4-.8-.8-.8-.5 0-.8.4-.8.8 0 .5.4.8.8.8s.8-.4.8-.8zm.1 5.3c0-.8-.7-1.5-1.5-1.5s-1.5.7-1.5 1.5.7 1.5 1.5 1.5 1.5-.7 1.5-1.5zm-6.1 1.1c0-.5-.4-.8-.8-.8s-.9.4-.9.8.4.8.8.8.9-.3.9-.8zm.9-5.7c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-ai-2"><path d="M10.7 6.7c-.1-.3-.3-.4-.6-.4s-.5.2-.6.4l-2.1 6.1c-.1.3.1.7.4.8.3.1.7-.1.8-.4l.4-.9h2.4l.4 1c.1.3.3.4.6.4h.2c.3-.1.5-.5.4-.8l-2.3-6.2zm-1.3 4.4l.7-2.2.8 2.2H9.4z"/><path d="M21.4 15.6c.4-.5.2-1.1.1-1.5l-.8-3.1c.3-.6.9-2.2.1-4.3-1-2.7-4-5.6-8.4-5.6C7.2 1 2 3.6 2 9.5c0 3.1 1.3 4.7 2.4 6.1.8 1 1.3 1.7 1.2 2.6-.2 2.7-.5 4.1-.5 4.1 0 .2 0 .4.1.5.1.1.3.2.5.2h8.6c.3 0 .5-.2.6-.5l.5-1.7c.4.2.8.3 1 .4.9.3 1.7.1 2.3-.3.4-.3.9-.9.9-2.2 0-.6.4-1.1.4-1.1.2-.2.2-.4.2-.6-.1-.3-.1-.7-.1-.9h.1c.4 0 .9 0 1.2-.5zm-2.2-.5c-.4.5-.3 1.3-.2 1.9-.2.3-.6.9-.6 1.7 0 .5-.1.9-.4 1.1-.3.2-.7.3-1.2.1-1.1-.3-4.6-1.9-4.6-1.9-.3-.2-.7 0-.8.3-.1.3 0 .7.3.8.1 0 1.3.6 2.6 1.2l-.4 1.4H6.4c.1-.7.3-1.8.4-3.5.1-1.5-.7-2.5-1.5-3.5-1-1.3-2.1-2.7-2.1-5.3 0-5.3 4.9-7.2 9.2-7.2 3.8 0 6.4 2.5 7.2 4.8.7 2.1-.1 3.4-.1 3.5-.1.2-.1.3-.1.5l.9 3.4c.1.2.1.3.1.4h-.2c-.3 0-.7 0-1 .3z"/><path d="M14.7 6.2c-.4 0-.6.3-.6.6v6.3c0 .4.3.6.6.6s.6-.3.6-.6V6.8c.1-.4-.2-.6-.6-.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-ai-3"><path d="M15.8 7.3C15.5 5.5 13.9 4 12 4c-1.6 0-3 1-3.6 2.5h-.2C6.4 6.5 5 7.9 5 9.6c0 1.7 1.4 3.2 3.2 3.2l7.1.1c1.5 0 2.8-1.3 2.8-2.8 0-1.4-1-2.5-2.3-2.8zm-.5 4.3l-7.1-.1c-1 0-1.9-.8-1.9-1.9 0-1 .8-1.9 1.9-1.9.7 0 1.4.4 1.7 1.1.1.3.5.5.9.3.3-.1.5-.5.3-.9-.3-.7-.8-1.2-1.4-1.5.3-.8 1.3-1.4 2.3-1.4 1.2 0 2.3.9 2.5 2.1-.6.2-1.2.6-1.6 1.1-.2.3-.1.7.2.9.3.2.7.1.9-.2.3-.4.7-.7 1.3-.7.8 0 1.5.7 1.5 1.5s-.7 1.6-1.5 1.6z"/><path d="M21.4 15.6c.4-.5.2-1.1.1-1.5l-.8-3.1c.3-.6.9-2.2.1-4.3-1-2.7-4-5.6-8.4-5.6C7.2 1 2 3.6 2 9.5c0 3.1 1.3 4.7 2.4 6.1.8 1 1.3 1.7 1.2 2.6-.2 2.7-.5 4.1-.5 4.1 0 .2 0 .4.1.5.1.1.3.2.5.2h8.6c.3 0 .5-.2.6-.5l.5-1.7c.4.2.8.3 1 .4.9.3 1.7.1 2.3-.3.4-.3.9-.9.9-2.2 0-.6.4-1.1.4-1.1.2-.2.2-.4.2-.6-.1-.3-.1-.7-.1-.9h.1c.4 0 .9 0 1.2-.5zm-2.2-.5c-.4.5-.3 1.3-.2 1.9-.2.3-.6.9-.6 1.7 0 .5-.1.9-.4 1.1-.3.2-.7.3-1.2.1-1.1-.3-4.6-1.9-4.6-1.9-.3-.2-.7 0-.8.3-.1.3 0 .7.3.8.1 0 1.3.6 2.6 1.2l-.4 1.4H6.4c.1-.7.3-1.8.4-3.5.1-1.5-.7-2.5-1.5-3.5-1-1.3-2.1-2.7-2.1-5.3 0-5.3 4.9-7.2 9.2-7.2 3.8 0 6.4 2.5 7.2 4.8.7 2.1-.1 3.4-.1 3.5-.1.2-.1.3-.1.5l.9 3.4c.1.2.1.3.1.4h-.2c-.3 0-.7 0-1 .3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-alarm"><path d="M19.5 5.8c1.8 1.9 2.9 4.4 2.9 7.2 0 5.7-4.7 10.4-10.4 10.4S1.6 18.7 1.6 13c0-5.5 4.3-10 9.8-10.4V1.5H9.9c0-.7.5-1.1 1.1-1.1h2c.7 0 1.1.5 1.1 1.1h-1.5v1.1c2.2.1 4.3 1 5.9 2.3l.6-.5c.3-.2.7-.2.9 0s.2.7 0 .9l-.5.5zM12 22.1c5 0 9.1-4.1 9.1-9.1S17 3.9 12 3.9 2.9 8 2.9 13 7 22.1 12 22.1zm5-5.3c.3.2.3.7 0 .9-.2.3-.7.3-.9 0l-4.8-4.5V8c0-.4.3-.7.6-.7s.6.3.6.7v4.7l4.5 4.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-alert"><path d="M13.3 3.7c-.7-1.2-1.8-1.2-2.6 0L1.8 18.6c-.7 1.2-.2 2.1 1.2 2.1h18c1.4 0 1.9-.9 1.2-2.1L13.3 3.7zm1.1-.6L23.3 18c1.3 2 .1 4-2.3 4H3C.6 22-.6 20 .7 17.9L9.6 3.1c1.2-2.1 3.6-2.1 4.8 0zm-3.3 5.1v5.2c0 .4.3.8.8.8s.8-.3.8-.8V8.2c0-.4-.3-.8-.8-.8s-.8.3-.8.8zm2 8.6c0-.7-.5-1.3-1.2-1.3s-1.3.5-1.3 1.2v.1c0 .7.6 1.2 1.2 1.2s1.3-.5 1.3-1.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-ambulance"><path d="M7.283 7.878V4.604h1.293v3.274h3.34v1.281h-3.34v3.355H7.283V9.159H3.945V7.878h3.338zm-5.5 7.235v4.213c0 .208.159.37.346.37h.493v1.282H2.13A1.64 1.64 0 0 1 .5 19.326V3.652A1.64 1.64 0 0 1 2.129 2h11.845a1.64 1.64 0 0 1 1.629 1.652v4.136l5.744 2.574c1.31.587 2.153 1.908 2.153 3.364v6.105a1.14 1.14 0 0 1-1.135 1.147h-.987v-1.282h.839v-5.97c0-.955-.55-1.816-1.396-2.195l-5.218-2.339v8.111H14.32v-2.19H1.783zm0-1.282H14.32V3.652c0-.208-.159-.37-.346-.37H2.13c-.187 0-.346.162-.346.37v10.179zm12.685 5.915v1.282H9.532v-1.282h4.936zM17.923 23c-1.449 0-2.616-1.196-2.616-2.663 0-1.468 1.167-2.663 2.616-2.663 1.448 0 2.616 1.195 2.616 2.663 0 1.467-1.168 2.663-2.616 2.663zm0-1.282c.732 0 1.332-.615 1.332-1.381 0-.767-.6-1.382-1.332-1.382-.733 0-1.333.615-1.333 1.382 0 .766.6 1.381 1.333 1.381zM6.077 23c-1.448 0-2.616-1.196-2.616-2.663 0-1.468 1.168-2.663 2.616-2.663 1.449 0 2.616 1.195 2.616 2.663C8.693 21.804 7.526 23 6.077 23zm0-1.282c.733 0 1.333-.615 1.333-1.381 0-.767-.6-1.382-1.333-1.382-.732 0-1.332.615-1.332 1.382 0 .766.6 1.381 1.332 1.381z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-android"><path d="M4.9 8.8c-.3 0-.6.1-.8.3-.3.2-.4.5-.4.8v5c0 .3.1.6.3.8.2.2.5.3.8.3.3 0 .6-.1.8-.3.2-.2.3-.5.3-.8v-5c0-.3-.1-.6-.3-.8-.1-.2-.4-.3-.7-.3zM14.8 3.9l.8-1.5c.1-.1 0-.2-.1-.2s-.2 0-.2.1l-.8 1.5c-.7-.4-1.5-.5-2.3-.5-.8 0-1.6.2-2.3.5L9 2.2c0-.1-.1-.1-.2-.1-.1.1-.1.2-.1.3l.8 1.5c-.8.4-1.5 1-2 1.8-.4.8-.7 1.6-.7 2.5h10.7c0-.9-.2-1.7-.7-2.5-.5-.8-1.1-1.4-2-1.8zm-4.7 2.2c-.1.1-.2.2-.3.2-.1 0-.2 0-.3-.1-.1-.2-.2-.3-.2-.4 0-.1 0-.2.1-.3.1-.1.2-.1.3-.1s.3 0 .4.1c.1.1.1.2.1.3 0 .1 0 .2-.1.3zm4.9 0c-.1.1-.2.1-.3.1-.1 0-.2 0-.3-.1-.1-.1-.1-.2-.1-.3 0-.1 0-.2.1-.3.1-.1.2-.1.3-.1.1 0 .2 0 .3.1.1.1.1.2.1.3 0 .1 0 .2-.1.3zM6.9 16.7c0 .4.1.7.4.9.2.2.5.4.9.4H9v2.6c0 .3.1.6.3.8.2.2.5.3.8.3.3 0 .6-.1.8-.3.2-.2.3-.5.3-.8V18H13v2.6c0 .3.1.6.3.8.2.2.5.3.8.3.3 0 .6-.1.8-.3.2-.2.3-.5.3-.8V18h.9c.3 0 .6-.1.9-.4.2-.2.4-.5.4-.9V9H6.9v7.7zM19.5 8.8c-.3 0-.6.1-.8.3-.2.2-.3.5-.3.8v5c0 .3.1.6.3.8s.5.3.8.3c.3 0 .6-.1.8-.3.2-.2.3-.5.3-.8v-5c0-.3-.1-.6-.3-.8-.2-.2-.4-.3-.8-.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-app"><path d="M20.7 1h-17C2.2 1 1 2.2 1 3.7v17c0 1.5 1.2 2.7 2.7 2.7h17c1.5 0 2.6-1.2 2.6-2.7v-17c0-1.5-1.2-2.7-2.6-2.7zm-17 1.4h17c.7 0 1.3.6 1.3 1.3V4H2.3v-.3c0-.7.6-1.3 1.4-1.3zm17 19.6h-17c-.7 0-1.4-.6-1.4-1.3V5.4H22v15.3c0 .7-.6 1.3-1.3 1.3zM6.2 8.8l1.1.7 1-1.5-1.2-.7-.9 1.5zm-2-1.3v1.3h1V7.5h-1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-app-plus"><path d="M22.91 14.752V3.154A2.643 2.643 0 0 0 20.256.5H3.154C1.778.5.5 1.68.5 3.154v17.102a2.643 2.643 0 0 0 2.654 2.654h11.598c.786.393 1.573.59 2.556.59a6.167 6.167 0 0 0 6.192-6.192 9.753 9.753 0 0 0-.59-2.556zM3.154 1.778h17.102c.787 0 1.376.59 1.376 1.376v.393H1.778v-.393c0-.786.688-1.376 1.376-1.376zm0 19.854c-.786 0-1.376-.59-1.376-1.376V4.825h19.854v8.06c-1.08-1.18-2.653-1.868-4.423-1.868a6.167 6.167 0 0 0-6.192 6.192c0 1.671.688 3.244 1.868 4.423H3.154zm14.154.492c-2.654 0-4.915-2.162-4.915-4.915 0-2.752 2.163-4.914 4.915-4.914 2.752 0 4.914 2.162 4.914 4.914 0 2.753-2.26 4.915-4.914 4.915zm.59-7.372H16.62v1.868h-1.868v1.277h1.868v1.868h1.277v-1.868h1.868V16.62h-1.868v-1.868z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-apple"><path d="M19.3 15.9c-.3.7-.6 1.3-1 1.8-.5.8-1 1.3-1.3 1.6-.5.5-1.1.7-1.7.7-.4 0-1-.1-1.6-.4-.6-.2-1.2-.4-1.7-.4s-1.1.1-1.7.4c-.6.2-1.1.4-1.5.4-.6 0-1.2-.2-1.7-.8-.4-.3-.8-.9-1.4-1.6-.6-.8-1.1-1.8-1.5-2.9-.4-1.2-.6-2.3-.6-3.4 0-1.3.3-2.4.8-3.3.4-.7 1-1.3 1.7-1.8.8-.3 1.5-.5 2.4-.5.5 0 1.1.1 1.8.4.7.3 1.2.4 1.4.4.2 0 .7-.2 1.6-.5.9-.3 1.6-.4 2.2-.4 1.6.1 2.8.8 3.6 1.9-1.4.9-2.1 2.1-2.1 3.6 0 1.2.5 2.2 1.3 3 .4.4.8.7 1.3.9-.1.4-.2.6-.3.9zM15.6 1.5c0 1-.3 1.8-1 2.7-.8 1-1.8 1.5-2.9 1.5v-.4c0-.9.4-1.9 1.1-2.7.4-.4.8-.7 1.3-1 .5-.3 1.1-.4 1.5-.4v.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-arrow-inbound"><path d="M4.8 20.1h7.4v1.3H2.6v-9.6h1.3v7.4L20.8 2.3l.9.9L4.8 20.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-arrow-left"><path d="M7.1 13.2h12.6c.8 0 1.3-.5 1.3-1.2s-.5-1.2-1.2-1.2H7.1l4-4c.5-.5.5-1.2 0-1.7s-1.2-.5-1.7 0l-6 6c-.5.5-.5 1.2 0 1.7l6.1 6.1c.5.5 1.2.5 1.7 0s.5-1.2 0-1.7l-4.1-4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-arrow-outbound"><path d="M19.5 3.6h-7.4V2.3h9.6v9.6h-1.3V4.5L3.5 21.4l-.9-.9L19.5 3.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-arrow-right"><path d="M16.9 13.2H4.2c-.7 0-1.2-.5-1.2-1.2s.5-1.2 1.2-1.2h12.6l-4-4c-.5-.5-.5-1.2 0-1.7s1.2-.5 1.7 0l6.1 6.1c.5.5.5 1.2 0 1.7L14.5 19c-.5.5-1.2.5-1.7 0s-.5-1.2 0-1.7l4.1-4.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-arrow-thin-down"><path class="st0" d="M12.6 21.3c.1 0 .2-.1.2-.2l6-6c.3-.3.3-.7 0-1-.3-.3-.7-.3-1 0L13 19V2.7c0-.4-.3-.7-.7-.7-.4 0-.7.3-.7.7V19l-4.8-4.8c-.3-.3-.7-.3-1 0-.1.1-.2.3-.2.5s.1.4.2.5l6 6 .2.2c.2 0 .4 0 .6-.1"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-arrow-thin-left"><path class="st0" d="M2.7 12.6c0 .1.1.2.2.2l6 6c.3.3.7.3 1 0 .3-.3.3-.7 0-1L5 13h16.3c.4 0 .7-.3.7-.7 0-.4-.3-.7-.7-.7H5l4.8-4.8c.3-.3.3-.7 0-1-.1-.1-.3-.2-.5-.2s-.4.1-.5.2l-6 6-.2.2c0 .2 0 .4.1.6"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-arrow-thin-right"><path class="st0" d="M21.3 11.4c0-.1-.1-.2-.2-.2l-6-6c-.3-.3-.7-.3-1 0-.3.3-.3.7 0 1L19 11H2.7c-.4 0-.7.3-.7.7 0 .4.3.7.7.7H19l-4.8 4.8c-.3.3-.3.7 0 1 .1.1.3.2.5.2s.4-.1.5-.2l6-6 .2-.2c0-.2 0-.4-.1-.6"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-arrow-thin-up"><path class="st0" d="M11.4 2.7c-.1 0-.2.1-.2.2l-6 6c-.3.3-.3.7 0 1 .3.3.7.3 1 0L11 5v16.3c0 .4.3.7.7.7.4 0 .7-.3.7-.7V5l4.8 4.8c.3.3.7.3 1 0 .1-.1.2-.3.2-.5s-.1-.4-.2-.5l-6-6-.2-.2c-.2 0-.4 0-.6.1"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-asterisk"><path d="M9.7 13.4H1.3c-.7 0-1.3-.6-1.3-1.3s.6-1.3 1.3-1.3h8.4L5.5 3.6c-.2-.3-.2-.7-.1-1s.3-.6.6-.8c.6-.4 1.5-.1 1.8.5L12 9.5l4.2-7.2c.4-.6 1.2-.9 1.8-.5.3.2.5.5.6.8s0 .7-.1 1l-4.2 7.2h8.4c.7 0 1.3.6 1.3 1.3s-.6 1.3-1.3 1.3h-8.4l4.2 7.2c.2.3.2.7.1 1s-.3.6-.6.8c-.6.4-1.5.1-1.8-.5L12 14.7l-4.2 7.2c-.4.6-1.2.9-1.8.5-.3-.2-.5-.5-.6-.8s0-.7.1-1l4.2-7.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-atoms"><path d="M12.35 6.65a5.35 5.35 0 1 0-10.7 0 5.35 5.35 0 0 0 10.7 0zM13.101 4h2.41a4.152 4.152 0 0 1 8.139 1.15 4.15 4.15 0 0 1-8.297.15h-1.84c.09.436.137.887.137 1.35a6.623 6.623 0 0 1-1.51 4.22l1.825 1.826a5.65 5.65 0 1 1-.803 1.035L11.22 11.79a6.623 6.623 0 0 1-4.453 1.506l.292 1.753a3.15 3.15 0 1 1-1.311.041l-.33-1.98A6.652 6.652 0 0 1 7 0a6.651 6.651 0 0 1 6.101 4zm9.249 12.65a4.35 4.35 0 1 0-8.701.001 4.35 4.35 0 0 0 8.701-.001zm0-11.5a2.85 2.85 0 1 0-5.7 0 2.85 2.85 0 0 0 5.7 0zm-14 13a1.85 1.85 0 1 0-3.7 0 1.85 1.85 0 0 0 3.7 0z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-attachment"><path d="M11.1 3.6c.3-.2.7-.2.9 0 .3.2.3.7 0 .9l-9.1 9c-.7.7-1.1 1.7-1.1 2.8V20c0 .7.6 1.2 1.2 1.2h3.8c1 0 2-.4 2.8-1.1L21.4 8.3c.5-.5.8-1.2.8-2s-.3-1.4-.8-2l-.8-.8c-.5-.5-1.2-.8-2-.8s-1.4.3-2 .8L6 14.1c-.3.3-.5.7-.5 1.2v1.9c0 .2.1.3.3.3h1.9c.4 0 .9-.2 1.2-.5l7.8-7.8c.3-.2.7-.2.9 0 .3.2.3.7 0 .9l-7.8 7.8c-.5.5-1.3.9-2.1.9H5.9c-.9 0-1.6-.7-1.6-1.6v-1.9c0-.8.3-1.5.9-2.1L15.7 2.7c.8-.8 1.8-1.2 2.9-1.2 1.1 0 2.1.4 2.9 1.2l.8.8c.8.8 1.2 1.8 1.2 2.9s-.4 2.1-1.2 2.9L10.5 21c-1 1-2.3 1.5-3.7 1.5H3C1.6 22.5.5 21.4.5 20v-3.8c0-1.4.5-2.7 1.5-3.7l9.1-8.9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-backspace"><path fill-rule="evenodd" d="M17.4 15.335a.65.65 0 0 1-.92.92l-3.42-3.42-3.418 3.42a.649.649 0 0 1-.92 0 .65.65 0 0 1 0-.92l3.418-3.42-3.418-3.418a.65.65 0 0 1 .92-.92l3.418 3.419 3.42-3.42a.65.65 0 0 1 .92.92l-3.42 3.42 3.42 3.419zM13 2C9.723 2 6.823 3.583 5 6.019V6l-5 6 5 6v-.018C6.824 20.417 9.723 22 13 22c5.523 0 10-4.477 10-10 0-5.522-4.477-10-10-10z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-bar-chart"><path d="M2.15 21.85H22.5a.65.65 0 1 1 0 1.3H.85V1.5a.65.65 0 1 1 1.3 0v20.35zM5.5 21h-1a1 1 0 0 1-1-1V8.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1zM5.2 8.8h-.4v10.9h.4V8.8zM10 21H9a1 1 0 0 1-1-1v-6.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1zm-.3-7.2h-.4v5.9h.4v-5.9zm4.8 7.2h-1a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1V20a1 1 0 0 1-1 1zm-.3-17.2h-.4v15.9h.4V3.8zM19 21h-1a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h1a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1zm-.3-3.7h-.4v2.4h.4v-2.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-bar-chart-2"><path d="M21.2 22H1.5V3l-.4.5-.7-.7L2.2 1 4 2.8l-.8.7-.4-.5v17.7h18.7l-.5-.5.7-.7 1.8 1.7-1.7 1.8-.8-.8.2-.2zM8.8 20H4.1V3.5h4.7V20zm-3.5-1.2h2.1v-14H5.3v14zm8.8 1.2H9.4V7.8h4.7V20zm-3.3-1.2h2.1V9.1h-2.1v9.7zm8.7 1.2h-4.8v-6.6h4.7l.1 6.6zM16 18.8h2.1v-4H16v4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-bin"><path d="M18.7 5.8H5.3L6 19.2c.1 1.4 1.3 2.5 2.7 2.5h6.4c1.4 0 2.6-1.1 2.7-2.6l.9-13.3zM4 5.8H2.7c-.4 0-.7-.3-.7-.6 0-.4.3-.7.7-.7H8v-2C8 1.6 8.7.9 9.7.9h4.6c.9 0 1.7.7 1.7 1.6v2h5.4c.4 0 .6.3.6.7 0 .4-.3.6-.6.6H20l-.7 13.4c-.1 2.1-1.9 3.8-4 3.8H8.8c-2.1 0-3.9-1.7-4-3.8L4 5.8zm5.4-1.3h5.3v-2c0-.2-.2-.3-.4-.3H9.7c-.2 0-.3.2-.3.3v2zM9 9h1.3v9H9V9zm4.7 0H15v9h-1.3V9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-block"><path d="M12 21.658a9.612 9.612 0 0 1-6.589-2.61L19.257 5.64A9.616 9.616 0 0 1 21.658 12 9.658 9.658 0 0 1 12 21.658M2.342 12c0-5.334 4.324-9.659 9.658-9.659a9.61 9.61 0 0 1 6.336 2.381L4.517 18.103A9.615 9.615 0 0 1 2.342 12M12 1C5.925 1 1 5.925 1 12c0 2.678.959 5.131 2.55 7.04l-.002.001.075.078A10.967 10.967 0 0 0 12 23c6.075 0 11-4.925 11-11S18.075 1 12 1"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-blocks"><path d="M2.3 14.4h5.3v1.2H1V1h14.6v6.5h-1.2V2.3H2.3v12.1zM8.4 23V8.3H23V23H8.4zm13.4-1.2V9.6H9.7v12.1l12.1.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-bookmark"><path d="M12 14.004l.5.582 5.933 6.908V2.314H5.567v19.18L12 14.004zm-5.631 8.575a1.202 1.202 0 1 1-2.119-.781V2.202C4.25 1.538 4.79 1 5.454 1h13.092c.665 0 1.204.538 1.204 1.201V21.8a1.202 1.202 0 0 1-1.204 1.2c-.35 0-.684-.152-.915-.42L12 16.023 6.369 22.58z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-books"><path d="M5.6 1.115H2.1c-.6 0-1.1.5-1.1 1.2v20c0 .6.5 1.2 1.1 1.2h3.5c.6 0 1.2-.5 1.2-1.2v-20c-.1-.6-.6-1.2-1.2-1.2zm-.2 21H2.2v-19.6h3.2v19.6zm-2.3-3v1.3h1.5v-1.3H3.1zm0-2v1.3h1.5v-1.3H3.1zm0-12v1.3h1.5v-1.3H3.1zm9-4c.6 0 1.1.6 1.2 1.2v20c0 .7-.6 1.2-1.2 1.2H8.6c-.6 0-1.1-.6-1.1-1.2v-20c0-.7.5-1.2 1.1-1.2h3.5zm-.2 21v-19.6H8.7v19.6h3.2zm-2.3-3h1.5v1.3H9.6v-1.3zm0-2h1.5v1.3H9.6v-1.3zm0-12h1.5v1.3H9.6v-1.3zm9.7-3.2l3.6 19.7c.1.6-.3 1.2-.9 1.3l-3.4.6c-.6.1-1.2-.3-1.3-.9l-3.6-19.7c-.1-.6.3-1.2.9-1.3l3.4-.6c.6-.1 1.2.3 1.3.9zm-.8 20.4l3.2-.6-3.6-19.4-3.2.6 3.6 19.4zm.29-3.149l1.475-.274.238 1.278-1.475.274-.237-1.278zm-.29-1.911l1.475-.274.237 1.278-1.475.274-.237-1.278zM16.3 5.457l1.475-.274.237 1.278-1.475.274-.237-1.278z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-bottom-tabs"><path d="M21.3 1.4H2.6C1.7 1.4 1 2.1 1 3v17.8c0 .9.7 1.7 1.6 1.7h18.7c.9 0 1.7-.7 1.7-1.7V3c0-.9-.8-1.6-1.7-1.6zM2.6 2.6h18.7c.2 0 .3.2.3.4v11.6H2.2V3c0-.2.2-.4.4-.4zM14.7 16v5.1H9.2V16h5.5zM2.2 20.7V16h5.6v5.1H2.6c-.2-.1-.4-.2-.4-.4zm19.1.3h-5.2v-5.1h5.6v4.8c-.1.2-.2.3-.4.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-bounce"><path d="M4.9 9.7l7.8 6.9 8.1-8.3c.3-.3.8-.3 1.1 0 .3.3.3.9 0 1.2l-9.2 9.4-9.1-8.1v6.1c0 .5-.4.8-.8.8s-.8-.3-.8-.8V8h9.4c.4 0 .8.4.8.8s-.3.9-.7.9H4.9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-broadcast"><path d="M12 13.2c.7 0 1.2-.5 1.2-1.2s-.5-1.2-1.2-1.2-1.2.5-1.2 1.2.5 1.2 1.2 1.2zm0 1.3c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zM8.4 7.4c.3-.3.7-.3.9 0 .3.2.3.7 0 .9-2 2-2 5.3 0 7.4.3.3.3.7 0 .9-.3.3-.7.2-.9 0-2.5-2.5-2.5-6.7 0-9.2zm7.2 9.2c-.3.3-.7.3-.9 0-.3-.2-.3-.7 0-.9 2-2 2-5.3 0-7.4-.3-.3-.3-.7 0-.9.3-.3.7-.2.9 0 2.5 2.5 2.5 6.7 0 9.2zM6.5 5.5c.3-.3.7-.3.9 0 .3.2.3.7 0 .9-3.1 3.1-3.1 8.1 0 11.3.3.3.3.7 0 .9-.3.3-.7.2-.9 0-3.6-3.7-3.6-9.5 0-13.1zm11 13c-.3.3-.7.3-.9 0-.3-.2-.3-.7 0-.9 3.1-3.1 3.1-8.1 0-11.3-.3-.3-.3-.7 0-.9.3-.3.7-.2.9 0 3.6 3.7 3.6 9.5 0 13.1zm2.1 1.8c-.3.3-.7.3-.9 0-.3-.2-.3-.7 0-.9 4.1-4.1 4.1-10.7 0-14.8-.3-.3-.3-.7 0-.9.3-.3.7-.2.9 0 4.5 4.6 4.5 12 0 16.6zM4.4 3.7c.3-.3.7-.3.9 0 .3.2.3.7 0 .9-4.1 4.1-4.1 10.7 0 14.8.3.3.3.7 0 .9-.3.3-.7.2-.9 0-4.5-4.6-4.5-12 0-16.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-calendar"><path d="M21 13.1c1.3 1.1 2 2.8 2 4.4 0 3.3-2.6 5.9-5.8 5.9-.3 0-.5 0-.7-.1v.1H2.6c-.9 0-1.6-.7-1.6-1.6V4.2c0-.9.7-1.7 1.6-1.7h2.3V2c0-.9.7-1.5 1.6-1.5s1.7.7 1.7 1.5v.5h5.6V2c0-.9.7-1.5 1.6-1.5.9 0 1.6.7 1.6 1.5v.5h2.3c.9 0 1.6.7 1.6 1.7v8.9zm-3.8 9.1c2.5 0 4.5-2.1 4.5-4.7s-2-4.7-4.5-4.7-4.5 2.1-4.5 4.7c-.1 2.6 2 4.7 4.5 4.7zm-14.6 0h10.9c-1.3-1.1-2.1-2.6-2.2-4.3h-.7v1.4c0 .4-.3.6-.6.6s-.6-.3-.6-.6v-2.7h2c.4-2.9 2.8-5 5.7-5 .9 0 1.8.2 2.6.6v-8c0-.2-.2-.4-.3-.4h-2.3v.3c0 .9-.7 1.5-1.6 1.5s-1.7-.6-1.7-1.5v-.3H8.2v.4c0 .9-.7 1.5-1.6 1.5S4.9 5 4.9 4.1v-.3H2.6c-.2 0-.3.2-.3.4v17.7c0 .1.1.3.3.3zM6.2 2v2.1c0 .1.1.2.3.2.2 0 .3-.1.3-.2V2c0-.1-.1-.2-.3-.2s-.3.1-.3.2zm8.9 0v2.1c0 .1.1.2.3.2.2 0 .3-.1.3-.2V2c0-.1-.1-.2-.3-.2-.2 0-.3.1-.3.2zm2.5 15.5l1.9 1.5c.3.2.3.6.1.9-.2.3-.6.3-.9.1h-.1l-2.3-1.9v-2.8c0-.4.3-.6.6-.6s.6.3.6.6v2.2zm-10-.8c.4 0 .6.3.6.6 0 .4-.3.6-.6.6H6.2v1.4c0 .4-.3.6-.6.6s-.6-.3-.6-.6v-2.7c-.1.1 2.6.1 2.6.1zm0-5.1c.4 0 .6.3.6.6 0 .4-.3.6-.6.6H6.2v1.4c0 .4-.3.6-.6.6s-.6-.3-.6-.6v-2.7l2.6.1zm0-4.5c.4 0 .6.3.6.6 0 .4-.3.6-.6.6H6.2v1.4c0 .4-.3.6-.6.6S5 10 5 9.7V7.1h2.6zm6.9 3.3c-.4 0-.6-.3-.6-.6V7.1h2.6c.4 0 .6.3.6.6 0 .4-.3.6-.6.6h-1.3v1.4c-.1.4-.4.7-.7.7zm-4.5 0c-.4 0-.6-.3-.6-.6V7.1H12c.4 0 .6.3.6.6 0 .4-.3.6-.6.6h-1.3v1.4c0 .4-.3.7-.7.7zm0 4.5c-.4 0-.6-.3-.6-.6v-2.7H12c.4 0 .7.3.7.6 0 .4-.3.7-.6.7H10.7v1.4c0 .3-.3.6-.7.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-calendar-2"><path d="M21.7 17.2V3c0-.5-.4-.9-.8-.9h-1.5c.5.6.7 1.4.6 2.1-.2.9-.9 1.6-1.8 1.8-.7.2-1.5 0-2.1-.5s-.9-1.1-.9-1.9c0-.6.2-1.2.6-1.6h-1.9c.5.7.8 1.5.6 2.3-.2.9-.9 1.6-1.8 1.8-.7.2-1.5 0-2.1-.5-.5-.4-.8-1.1-.8-1.9 0-.7.2-1.2.6-1.7h-2c.5.7.8 1.5.6 2.2-.2 1-.9 1.6-1.8 1.9-.7.2-1.5 0-2.1-.5-.5-.4-.8-1.2-.8-1.9s.2-1.2.6-1.7h-2c-.5 0-.9.5-.9 1v18c0 .5.4.8.9.8h14.4v-2.3c0-1.2 1-2.2 2.2-2.2h2.2zm-.9 1.3h-1.4c-.5 0-.8.4-.8.8v1.4l2.2-2.2zm-4.6-7.1L11 16.9l-3-2.4.8-1 2 1.6 7.9-8.2.9.9-2.5 2.6c.6.9.9 2 .9 3.2.1 3.3-2.7 6.1-6.1 6.1s-6.1-2.8-6.1-6.2 2.8-6.1 6.1-6.1c1.1 0 2.2.3 3.2.9l-.7 1.1c-.8-.5-1.6-.7-2.5-.7C9.2 8.6 7 10.9 7 13.6s2.2 4.8 4.9 4.8 4.8-2.2 4.8-4.8c0-.8-.2-1.5-.5-2.2zm2 11.7H2.9c-1.2 0-2.1-1-2.1-2.2V3C.8 1.8 1.8.9 2.9.9h3.6v1.7l-.3.2c-.4.2-.6.5-.6 1 0 .3.2.7.4.9.3.2.6.3 1 .2s.7-.4.8-.8c.1-.6-.2-1.1-.6-1.3l-.4-.3V.9h5.3v1.7l-.4.2c-.4.2-.6.6-.6 1 0 .3.2.7.4.9.3.2.6.3 1 .2s.7-.4.8-.8c.1-.6-.2-1.1-.6-1.3l-.4-.2V.9h5.3v1.7l-.4.2c-.4.2-.6.6-.6 1 0 .3.2.7.4.9.3.2.6.3 1 .2s.7-.4.8-.8c.1-.6-.2-1.1-.6-1.3l-.4-.2V.9H21c1.2 0 2.2 1 2.2 2.1v15.3l-5 4.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-call"><path d="M2.8 4.8c-.3.7-.4 1.5-.1 2.5.2 1 .6 2 1.2 3.1s1.2 2.1 2 3.1c.7 1 1.5 1.9 2.2 2.6.7.7 1.6 1.5 2.6 2.2 1 .7 2 1.4 3.1 2 1.1.6 2.1 1 3.1 1.2s1.8.2 2.5-.1c.8-.4 1.3-.9 1.5-1.6l.4-1c.1-.2 0-.4 0-.6-.1-.2-.3-.4-.5-.5-.2-.2-.9-.6-2.1-1.4-1.1-.7-2-1-2.7-.8-.6.2-1 .5-1.2.8-.2.3-.6.4-1.1.3-.5-.1-1.2-.5-1.9-1.1-.7-.6-1.3-1.1-1.6-1.4-.3-.3-.8-.9-1.4-1.6-.6-.7-1-1.4-1.1-1.9-.1-.6 0-1 .3-1.1.3-.2.6-.6.8-1.2.2-.6-.1-1.5-.8-2.7L6.4 3.4c-.1-.2-.3-.4-.5-.5-.2-.1-.4-.1-.6 0l-1 .4c-.6.2-1.2.7-1.5 1.5zm6.8 6.9c.6.7 1 1.2 1.3 1.5.3.3.8.7 1.5 1.3.6.5 1 .7 1.3.8.4-.5 1-.8 1.8-1.1 1.1-.3 2.3.1 3.7 1 1.1.7 1.8 1.2 2.1 1.4.5.3.8.6 1 1.1.2.5.2 1 .1 1.4v.1l-.4 1c-.4 1-1.1 1.8-2.2 2.3-.9.4-2.1.5-3.3.2-1.1-.3-2.2-.7-3.4-1.3-1.1-.6-2.2-1.3-3.3-2.1-1.1-.8-2-1.6-2.7-2.3-.8-.8-1.5-1.7-2.3-2.8-.8-.9-1.5-2-2.1-3.2-.6-1.2-1-2.3-1.3-3.4-.3-1.3-.3-2.4.2-3.4.5-1.1 1.3-1.8 2.3-2.2l1-.4H5c.5-.1 1-.1 1.4.1.5.2.8.6 1.1 1l1.3 2.1c.9 1.4 1.3 2.7 1 3.8-.2.8-.5 1.4-1 1.8 0 .3.3.7.8 1.3zm2.8-5.4c-.4 0-.7-.3-.7-.7 0-.4.3-.7.6-.7 4 0 7.3 3.2 7.3 7.2v.1c0 .4-.3.6-.7.6-.4 0-.7-.3-.7-.7 0-3.3-2.6-5.9-5.8-6 .1.2.1.2 0 .2zm.8-3.1c-.4 0-.7-.3-.7-.7 0-.4.3-.7.6-.7 5.2-.1 9.5 4.2 9.6 9.4v.2c0 .4-.3.6-.7.6-.4 0-.7-.3-.7-.7 0-4.5-3.6-8.2-8.1-8.2.1.1.1.1 0 .1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-call-2"><path d="M21.6 18.1c.6.4.7.7.6 1.2 0 0-.4 1.9-2.1 2.7-2.9 1.3-9.4-2.5-12.5-5.5-3.2-3-7.2-9.1-5.8-11.9.8-1.6 2.8-2 2.8-2 .5-.1.9.1 1.3.6s2.8 3.6 2.4 5C7.8 9.6 6.8 9.5 7 10.7s2 3 2.8 3.7c.7.7 2.7 2.3 3.9 2.6 1.2.3 1.2-.7 2.6-1.1 1.5-.4 4.8 1.9 5.3 2.2zM19.4 4.7c1.6 1.6 2.7 3.6 3.1 5.9 0 .4-.1.7-.3.9-.1.2-.3.3-.5.3-.5.1-1.1-.2-1.2-.8-.3-1.8-1.2-3.5-2.5-4.8-1.3-1.3-3.1-2.1-4.9-2.4-.5-.1-.9-.6-.8-1.1.1-.6.6-.9 1.1-.9 2.3.3 4.4 1.3 6 2.9zm-4.2 4.5c-.6-.6-1.3-1-2.1-1.2-.5-.1-.9-.7-.7-1.2 0-.6.6-.9 1.1-.8 1.2.3 2.2.8 3.1 1.7.8.8 1.4 1.8 1.7 3 .1.4 0 .7-.3 1-.1.1-.3.2-.5.3-.5.2-1.1-.1-1.2-.7-.1-.8-.5-1.6-1.1-2.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-call-block"><path d="M9.7 11.4c.6.7 1.1 1.2 1.3 1.5.3.3.8.8 1.6 1.4.6.5 1 .7 1.4.8.4-.5 1-.8 1.9-1.1 1.1-.3 2.4.1 3.8 1 1.1.7 1.9 1.2 2.2 1.4.5.3.8.7 1 1.1.2.5.2 1 .1 1.5v.1l-.4 1c-.4 1-1.2 1.8-2.3 2.4-1 .5-2.1.5-3.4.2-1.1-.3-2.3-.7-3.5-1.3-1.2-.6-2.3-1.3-3.4-2.1s-2-1.6-2.8-2.4-1.6-1.7-2.4-2.8-1.5-2.2-2.1-3.4c-.8-1.2-1.2-2.3-1.5-3.5-.3-1.3-.3-2.4.2-3.4.5-1.1 1.3-1.9 2.4-2.3l1-.4h.1c.5-.1 1-.1 1.5.1s.9.6 1.1 1c.2.3.6 1 1.4 2.1.9 1.5 1.3 2.7 1 3.8-.2.9-.5 1.6-1 2 0 .3.3.8.8 1.3zm-7.1-7c-.3.6-.3 1.5-.1 2.5s.6 2.1 1.2 3.2 1.3 2.2 2 3.2c.8 1 1.5 1.9 2.3 2.7.7.7 1.6 1.5 2.7 2.3 1 .8 2.1 1.4 3.2 2s2.2 1 3.2 1.2 1.9.2 2.5-.1c.8-.4 1.3-.9 1.6-1.6l.4-1c.1-.2 0-.4 0-.6-.1-.2-.3-.4-.5-.5-.3-.2-1-.6-2.1-1.4s-2.1-1-2.8-.8c-.7.2-1.1.5-1.3.8-.2.3-.6.4-1.2.3-.6-.1-1.2-.5-2-1.1s-1.3-1.1-1.7-1.4c-.3-.3-.8-.9-1.4-1.6-.6-.8-1-1.4-1.1-2s0-1 .3-1.2c.4-.3.6-.8.8-1.4.2-.7-.1-1.6-.8-2.8C7 3.9 6.6 3.2 6.4 3c-.1-.3-.3-.5-.5-.6s-.4-.1-.6 0l-1 .4c-.8.2-1.3.8-1.7 1.6z"/><path d="M22.9 7.3c0 2.9-2.3 5.2-5.1 5.3-2.9 0-5.2-2.3-5.3-5.1v-.1c0-2.9 2.4-5.2 5.3-5.1 2.8-.1 5.1 2.1 5.1 5zm-5.2-4.2c-2.3 0-4.2 1.9-4.2 4.2 0 1 .3 1.8.9 2.5L20.2 4c-.7-.6-1.6-.9-2.5-.9zm0 8.3c2.3 0 4.2-1.9 4.2-4.2 0-1-.3-1.8-.9-2.5l-5.8 5.8c.7.6 1.6.9 2.5.9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-call-bounce"><path d="M12 11.8c-1 0-2.1.1-3.3.3-1.2.2-2.3.5-3.4.8-1.1.4-2.2.8-3 1.4-1 .7-1.7 1.4-2 2.4-.4 1.1-.4 2.1 0 3.1l.4.9v.2c.2.4.6.7 1 .9.2.1.5.1.8.1.2 0 .4 0 .6-.1.2 0 .7-.1 2.2-.5 1.6-.4 2.6-1 3.1-1.9.4-.7.6-1.3.6-1.9.2-.1.6-.2 1.3-.3.8-.1 1.4-.1 1.8-.1.4 0 1 0 1.8.1.7.1 1.1.2 1.2.3 0 .6.1 1.2.5 1.9.5.9 1.5 1.5 3.1 1.9l2.2.5c.2.1.4.1.6.1.3 0 .5 0 .8-.1.4-.2.8-.5 1-.9v-.2l.4-.9c.4-.9.4-1.9.1-3-.3-.9-1-1.7-2-2.4-.9-.6-1.9-1-3-1.4-1.1-.4-2.3-.6-3.4-.8-1.2-.3-2.3-.4-3.4-.4M5.7 3.3L12 8.6l6.6-6.4c.3-.3.7-.2.9 0 .3.3.2.7 0 .9L12 10.3 4.7 4.1v4.7c0 .4-.3.6-.7.6-.4 0-.6-.3-.6-.6V2H11c.4 0 .6.3.6.7s-.2.6-.6.6H5.7zm6.3 9.8c.9 0 1.9.1 3 .3 1.1.2 2.2.4 3.2.8s1.9.7 2.7 1.2c.8.5 1.3 1.1 1.5 1.7.3.8.3 1.4 0 2l-.4.9c-.1.2-.2.3-.4.4-.1 0-.2.1-.3.1-.1 0-.2 0-.4-.1l-2.2-.5c-1.2-.3-1.9-.7-2.2-1.2-.3-.5-.4-1-.3-1.3.1-.3-.1-.7-.5-1-.4-.3-1.1-.5-1.9-.6-.8-.1-1.5-.1-1.9-.1-.4 0-1.1 0-1.9.1-.8.1-1.5.3-1.9.6-.4.3-.6.6-.5 1 .1.3 0 .8-.3 1.3s-1 .9-2.2 1.2c-1.2.3-1.9.4-2.2.5-.1 0-.2.1-.4.1-.1 0-.2 0-.3-.1-.2-.1-.3-.2-.4-.4l-.4-.9c-.3-.6-.3-1.3 0-2 .2-.6.7-1.2 1.5-1.7s1.7-.9 2.7-1.3c1.1-.3 2.1-.6 3.2-.8 1.2-.1 2.2-.2 3.2-.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-call-disabled"><path class="st0" d="M4.6 13.8c-.8-1.1-1.5-2.2-2.1-3.3-.6-1.2-1.1-2.3-1.3-3.4-.3-1.3-.3-2.4.2-3.4.5-1.1 1.3-1.9 2.3-2.2l1-.4h.1c.5-.1 1-.1 1.4.1.5.2.8.6 1.1 1 .2.3.6 1 1.3 2.1C9.6 5.7 10 7 9.7 8c-.2.8-.6 1.4-1.1 1.9.1.3.3.8.8 1.4.1.2.3.3.4.4l-.9.9c-.1-.2-.3-.3-.5-.5-.6-.7-1-1.4-1.1-1.9-.1-.6 0-1 .3-1.1.4-.3.7-.8.8-1.4.2-.7 0-1.6-.8-2.7-.7-1.2-1.2-1.9-1.3-2.1-.2-.3-.4-.5-.5-.5-.2-.1-.4-.1-.6 0l-1 .4c-.7.2-1.3.7-1.6 1.5-.4.6-.4 1.5-.2 2.5s.6 2 1.2 3.1 1.3 2.1 2 3.1c.4.6.8 1.1 1.3 1.6l-.9.9c-.5-.5-.9-1.1-1.4-1.7zm17.7 3.4c.2.5.2.9.1 1.4v.1l-.4 1c-.4 1-1.1 1.8-2.2 2.3-1 .4-2.1.5-3.3.2-1.2-.2-2.3-.6-3.5-1.2-1.1-.6-2.2-1.3-3.3-2.1-.3-.2-.6-.5-.9-.7l.9-.9c.3.2.5.4.8.6 1 .8 2.1 1.4 3.2 2 1.1.6 2.1 1 3.1 1.2 1 .2 1.8.2 2.5-.1.8-.4 1.3-.9 1.6-1.6l.4-1c.1-.2 0-.4 0-.6-.1-.2-.3-.4-.5-.5-.3-.2-1-.6-2.1-1.4-1.2-.7-2.1-1-2.7-.8-.6.2-1.1.5-1.3.8-.2.3-.6.4-1.1.3-.5-.1-1.1-.4-1.7-.9l.9-.9c.4.3.8.5 1 .6.4-.5 1-.8 1.8-1.1 1.1-.3 2.3.1 3.7 1 1.1.7 1.8 1.2 2.1 1.4.4.1.7.5.9.9zm-.2-15.3c.2.2.2.6 0 .9L2.8 22.4c-.2.2-.6.2-.9 0-.2-.2-.2-.6 0-.9L21.2 1.9c.2-.2.6-.2.9 0z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-call-dots"><path d="M9.5 17.8c.2.9.3 1.7.5 2.7.1 1.4-.7 2.2-2.1 2.4-1 .2-2.2 0-2.8-.3-2.2-1.2-3.4-4.1-4-9.3-.5-5 .3-9 2.3-11.1C4.9.4 7.3.9 8.6 2c.9.8.8 2 0 6-.1.6-.5.8-1.6 1h-.1c-.6.2-.8.3-.8.3-.4 1.3-.3 3.8.2 5.4 0 .2.1.2.7.3h.1c.7 0 1.1.2 1.5.6.4.5.7 1.3.9 2.2zm-1.8 3.9c.8-.1 1.1-.4 1-1-.1-1.1-.2-1.7-.4-2.5s-.5-1.4-.7-1.8c-.1-.1-.1-.1-.5-.1H7h-.1c-1.1-.1-1.6-.3-1.9-1.2-.6-1.9-.7-4.6-.2-6.1.2-.8.4-.8 1.8-1.1.3-.1.5-.1.6-.2.9-3.6.9-4.5.6-4.7-1-.9-2.5-1-3.4 0-1.7 1.8-2.5 5.6-2 10.1C3 18 4 20.5 5.7 21.5c.4.2 1.3.3 2 .2zM20.6 2.1c1.9 2.1 2.8 6.2 2.3 11.1-.6 5.3-1.8 8.1-4 9.3-.6.3-1.8.5-2.8.3-1.4-.2-2.2-1-2.1-2.4.1-1.1.2-1.8.5-2.7.2-.9.5-1.7 1-2.2.3-.5.8-.6 1.5-.6h.1c.6 0 .6-.1.7-.2.5-1.6.6-4.1.2-5.4 0 0-.2-.1-.8-.3h-.1c-1.1-.2-1.5-.4-1.6-1-.8-4-.9-5.2 0-6 1.2-1.1 3.6-1.6 5.1.1zm1 11c.5-4.6-.3-8.3-1.9-10.1-.9-1-2.4-.9-3.4 0-.3.3-.3 1.1.4 4.7.1 0 .3.1.6.2 1.4.3 1.6.4 1.8 1.1.5 1.6.4 4.2-.2 6.1-.3.9-.8 1.1-1.9 1.2h-.1-.1c-.4 0-.5 0-.5.1-.3.4-.5 1-.7 1.8s-.3 1.4-.4 2.5c-.1.6.2.9 1 1 .7.1 1.6 0 2-.2 1.8-1 2.8-3.5 3.4-8.4zM15 13c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1zm-6 0c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1zm3 0c-.6 0-1-.4-1-1s.4-1 1-1 1 .4 1 1-.4 1-1 1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-call-flip"><path d="M9.5 17.8c.2.9.3 1.7.5 2.7.1 1.4-.7 2.2-2.1 2.4-1 .2-2.2 0-2.8-.3-2.2-1.2-3.4-4.1-4-9.3-.5-5 .3-9 2.3-11.1C4.9.4 7.3.9 8.6 2c.9.8.8 2 0 6-.1.6-.5.8-1.6 1h-.1c-.6.2-.8.3-.8.3-.4 1.4-.3 3.8.2 5.4 0 .2.1.2.7.3h.1c.7 0 1.1.2 1.5.6.4.5.7 1.3.9 2.2zm-1.8 3.9c.8-.1 1.1-.4 1-1-.1-1.1-.2-1.7-.4-2.5s-.5-1.4-.7-1.8c-.1-.1-.1-.1-.5-.1H7h-.1c-1.1-.1-1.6-.2-1.9-1.2-.6-1.9-.7-4.6-.2-6.1.2-.8.4-.8 1.8-1.1.2 0 .4-.1.6-.2.9-3.6.9-4.5.6-4.7-1-.9-2.5-1-3.4 0-1.7 1.8-2.5 5.6-2 10.1C3 18 4 20.5 5.7 21.5c.4.2 1.3.3 2 .2zM20.6 2.1c1.9 2.1 2.8 6.2 2.3 11.1-.6 5.3-1.8 8.1-4 9.3-.6.3-1.8.5-2.8.3-1.4-.2-2.2-1-2.1-2.4.1-1.1.2-1.8.5-2.7.2-.9.6-1.7 1-2.2.3-.5.8-.6 1.5-.6h.1c.6 0 .6-.1.7-.2.5-1.6.6-4.1.2-5.4 0 0-.2-.1-.8-.3H17c-1.1-.2-1.5-.4-1.6-1-.8-4-.9-5.2 0-6 1.3-1.1 3.7-1.6 5.2.1zm1 11c.5-4.6-.3-8.3-1.9-10.1-.9-1-2.4-.9-3.4 0-.3.3-.3 1.1.4 4.7.1 0 .3.1.6.2 1.4.3 1.5.4 1.8 1.1.5 1.6.4 4.2-.2 6.1-.3.9-.8 1.1-1.9 1.2h-.2c-.4 0-.5 0-.5.1-.3.4-.5 1-.7 1.8-.2.8-.3 1.4-.4 2.5-.1.6.2.9 1 1 .7.1 1.6 0 2-.2 1.8-1 2.8-3.5 3.4-8.4zm-5.3-1.4l-.9.7-3.7 3-.9-.7 3.1-2.5H8v-1h6l-3.1-2.5.9-.7 4.5 3.7z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-call-forward"><path d="M24 20.5c.1 1.4-.7 2.2-2.1 2.4-1 .2-2.2 0-2.8-.3-1.8-1-2.9-3-3.6-6.5h1.3c.6 3 1.5 4.7 2.9 5.4.3.2 1.3.3 2 .2.8-.1 1.1-.4 1-1-.1-1.1-.2-1.7-.4-2.5s-.5-1.4-.7-1.8c-.1-.1-.1-.1-.5-.1h-.2c-1.1-.1-1.6-.2-1.9-1.2-.6-1.9-.7-4.6-.2-6.1.2-.8.4-.8 1.8-1.1.3-.1.5-.1.6-.2.7-3.5.7-4.4.4-4.6-1-.9-2.5-1-3.4 0-.8.9-1.4 2.2-1.7 3.8h-1.3c.4-2 1.1-3.6 2.1-4.7 1.5-1.7 3.9-1.3 5.2-.1.9.8.8 2 0 6-.1.6-.5.8-1.6 1h-.1c-.6.1-.8.2-.8.3-.4 1.3-.3 3.8.2 5.4.1.2.1.2.7.2h.1c.7 0 1.1.2 1.5.6.4.5.7 1.3 1 2.2.3.9.4 1.7.5 2.7zM13.2 7.8l3.9 3.9-3.9 3.9-.9-.9 2.4-2.4H7.1V11h7.4l-2.2-2.2.9-1zm-4.7 10c.2.9.3 1.7.5 2.7.1 1.4-.7 2.2-2.1 2.4-1 .2-2.2 0-2.8-.3-2.2-1.2-3.4-4.1-4-9.3-.5-5 .3-9 2.3-11.1C4 .4 6.3.9 7.6 2c.9.8.8 2 0 6-.1.6-.5.8-1.6 1h-.1c-.6.2-.8.3-.8.3-.4 1.4-.3 3.8.2 5.4 0 .2.1.2.7.3h.1c.7 0 1.1.2 1.5.6.4.5.7 1.3.9 2.2zm-1.8 3.9c.8-.1 1.1-.4 1-1-.1-1.1-.2-1.7-.4-2.5s-.5-1.4-.7-1.8c-.1-.1-.1-.1-.5-.1h-.2c-1.1-.1-1.6-.3-1.9-1.2-.6-1.9-.7-4.6-.2-6.1.2-.8.4-.8 1.8-1.1.3-.1.5-.1.6-.2.9-3.6.9-4.5.6-4.7-1-.9-2.5-1-3.4 0-1.7 1.8-2.5 5.6-2 10.1C2 18 3 20.5 4.8 21.5c.3.2 1.2.3 1.9.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-call-inbound"><path d="M3 4.7c-.2.7-.3 1.5-.1 2.4.2 1 .6 2 1.2 3 .6 1.1 1.2 2.1 1.9 3.1s1.5 1.8 2.2 2.5c.7.7 1.6 1.4 2.5 2.2 1 .7 2 1.4 3.1 1.9 1.1.6 2.1.9 3 1.2 1 .2 1.8.2 2.4-.1.8-.4 1.3-.9 1.5-1.5l.4-1c.1-.2 0-.4 0-.6-.1-.2-.2-.4-.5-.5-.2-.2-.9-.6-2-1.3-1.1-.7-2-1-2.6-.8-.6.2-1 .4-1.2.8s-.6.4-1.1.3c-.5-.1-1.2-.5-1.9-1.1-.7-.6-1.2-1-1.6-1.4-.3-.3-.8-.8-1.4-1.6-.6-.7-.9-1.3-1.1-1.9-.1-.5 0-.8.3-1 .3-.2.6-.6.7-1.2.3-.7 0-1.6-.7-2.7l-1.3-2c-.2-.3-.4-.5-.5-.5-.2-.1-.4-.1-.6-.1l-1 .4c-.7.2-1.2.7-1.6 1.5zm11.1 4.2L21 2c.3-.3.7-.3.9 0s.3.7 0 .9L15 9.8h6.4c.4 0 .6.3.6.6s-.3.6-.6.6h-8.6V2.5c0-.4.3-.6.6-.6s.6.3.6.6v6.4zm-4.3 2.6c.6.7 1 1.2 1.3 1.5.3.3.8.7 1.5 1.3.5.4 1 .7 1.3.8.4-.5 1-.8 1.8-1 1.1-.3 2.3.1 3.7 1 1.1.7 1.8 1.1 2.1 1.3.5.3.8.6 1 1.1.2.5.2.9.1 1.4v.1l-.4 1c-.4 1-1.1 1.7-2.2 2.3-.9.4-2 .5-3.3.2-1.1-.3-2.2-.7-3.3-1.3-1.1-.6-2.2-1.3-3.2-2-1-.8-1.9-1.5-2.7-2.3-1-.9-1.7-1.8-2.5-2.9-.8-1-1.4-2.1-2-3.2-.6-1.1-1-2.3-1.3-3.3-.3-1.3-.3-2.4.2-3.3.5-1.1 1.2-1.8 2.2-2.2l1-.4h.1c.5-.1 1-.1 1.4.1.5.2.8.6 1.1 1 .2.2.6.9 1.3 2 1 1.4 1.3 2.6 1 3.7-.2.8-.5 1.4-1 1.8.1.3.3.7.8 1.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-call-outbound"><path d="M3 4.7c-.2.7-.3 1.5-.1 2.4.2 1 .6 2 1.2 3 .6 1.1 1.2 2.1 1.9 3.1s1.5 1.8 2.2 2.5c.7.7 1.6 1.4 2.5 2.2 1 .7 2 1.4 3.1 1.9 1.1.6 2.1.9 3 1.2 1 .2 1.8.2 2.4-.1.8-.4 1.3-.9 1.5-1.5l.4-1c.1-.2 0-.4 0-.6-.1-.2-.2-.4-.5-.5-.2-.2-.9-.6-2-1.3-1.1-.7-2-1-2.6-.8-.6.2-1 .4-1.2.8s-.6.4-1.1.3c-.5-.1-1.2-.5-1.9-1.1-.7-.6-1.2-1-1.6-1.4-.3-.3-.8-.8-1.4-1.6-.6-.7-.9-1.3-1.1-1.9-.1-.5 0-.8.3-1 .3-.2.6-.6.7-1.2.3-.7 0-1.6-.7-2.7l-1.3-2c-.2-.3-.4-.5-.5-.5-.2-.1-.4-.1-.6-.1l-1 .4c-.7.2-1.2.7-1.6 1.5zm6.8 6.8c.6.7 1 1.2 1.3 1.5.3.3.8.7 1.5 1.3.5.4 1 .7 1.3.8.4-.5 1-.8 1.8-1 1.1-.3 2.3.1 3.7 1 1.1.7 1.8 1.1 2.1 1.3.5.3.8.6 1 1.1.2.5.2.9.1 1.4v.1l-.4 1c-.4 1-1.1 1.7-2.2 2.3-.9.4-2 .5-3.3.2-1.1-.3-2.2-.7-3.3-1.3-1.1-.6-2.2-1.3-3.2-2-1-.8-1.9-1.5-2.7-2.3-1-.9-1.7-1.8-2.5-2.9-.8-1-1.4-2.1-2-3.2-.6-1.1-1-2.3-1.3-3.3-.3-1.3-.3-2.4.2-3.3.5-1.1 1.2-1.8 2.2-2.2l1-.4h.1c.5-.1 1-.1 1.4.1.5.2.8.6 1.1 1 .2.2.6.9 1.3 2 1 1.4 1.3 2.6 1 3.7-.2.8-.5 1.4-1 1.8.1.3.3.7.8 1.3zm11-7.3L14 11c-.3.2-.7.2-.9 0-.2-.2-.2-.6 0-.9L20 3.2h-6.4c-.4 0-.6-.3-.6-.6s.1-.6.5-.6h8.6v8.6c0 .4-.3.6-.6.6-.4 0-.6-.3-.6-.6l-.1-6.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-call-park"><path d="M2.6 4.8c-.3.7-.4 1.5-.1 2.5s.6 2 1.2 3.1 1.2 2.1 2 3.1 1.5 1.9 2.2 2.6 1.6 1.5 2.6 2.2 2 1.4 3.1 2 2.1 1 3.1 1.2 1.8.2 2.5-.1c.8-.4 1.3-.9 1.5-1.6l.4-1c.1-.2 0-.4 0-.6-.1-.2-.3-.4-.5-.5-.2-.2-.9-.6-2.1-1.4-1.1-.7-2-1-2.7-.8-.6.2-1 .5-1.2.8-.2.3-.6.4-1.1.3s-1.2-.5-1.9-1.1-1.3-1.1-1.6-1.4c-.3-.3-.8-.9-1.4-1.6-.6-.7-1-1.4-1.1-1.9-.1-.6 0-1 .3-1.1.3-.2.6-.6.8-1.3.2-.6-.1-1.5-.8-2.7S6.4 3.7 6.2 3.4c-.1-.2-.3-.4-.5-.5-.2-.1-.4-.1-.6 0l-1 .4c-.6.2-1.2.7-1.5 1.5zm6.8 6.9c.6.7 1 1.2 1.3 1.5s.8.7 1.5 1.3c.5.5 1 .7 1.3.8.4-.5 1-.8 1.8-1.1 1.1-.3 2.3.1 3.7 1 1.1.7 1.8 1.2 2.1 1.4.5.3.8.6 1 1.1s.2 1 .1 1.4v.1l-.4 1c-.4 1-1.1 1.8-2.2 2.3-.9.4-2.1.5-3.3.2-1.1-.3-2.2-.7-3.4-1.3-1.1-.6-2.2-1.3-3.3-2.1-1.1-.8-2-1.6-2.7-2.3-.8-.8-1.5-1.7-2.3-2.8S3.1 12 2.5 10.9c-.6-1.2-1-2.3-1.3-3.4-.3-1.3-.2-2.4.2-3.3.5-1.1 1.3-1.8 2.3-2.2l1-.4h.1c.5-.1 1-.1 1.4.1.5.2.8.6 1.1 1 .2.3.6 1 1.3 2.1.9 1.4 1.3 2.7 1 3.8-.2.8-.5 1.4-1 1.8 0 .3.3.7.8 1.3zm7.9.9c-3.3 0-6.1-2.7-6.1-6.1S13.9.4 17.3.4s6.1 2.7 6.1 6.1-2.8 6.1-6.1 6.1zm.1-9c.4 0 .8 0 1.1.1.3.1.5.2.7.4.2.2.3.4.4.6s.1.5.1.8 0 .6-.1.8c-.1.2-.2.5-.4.6-.2.2-.4.3-.7.4s-.7.1-1.1.1h-.7v2h-1.4v-6h2.1v.2zm0 3c.4 0 .6-.1.8-.3.2-.2.2-.4.2-.7 0-.1 0-.3-.1-.4 0-.1-.1-.2-.2-.3-.1-.1-.2-.1-.3-.2-.1 0-.3-.1-.5-.1h-.7v1.9l.8.1zm-.1 4.8c2.7 0 4.9-2.2 4.9-4.9S20 1.6 17.3 1.6s-4.9 2.2-4.9 4.9 2.2 4.9 4.9 4.9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-call-pause"><path d="M2.7 4.7c-.3.7-.4 1.5-.1 2.5s.6 2 1.2 3.1 1.2 2.1 2 3.2 1.5 1.9 2.2 2.6c.7.7 1.6 1.5 2.6 2.2 1 .8 2.1 1.4 3.1 2s2.1 1 3.1 1.2 1.8.2 2.5-.1c.8-.4 1.3-.9 1.6-1.6l.4-1c.1-.2 0-.4 0-.6-.1-.2-.3-.4-.5-.5-.2-.2-.9-.6-2.1-1.4-1.1-.7-2-1-2.7-.8-.6.2-1.1.5-1.2.8-.1.3-.6.4-1.1.3-.6-.1-1.2-.5-1.9-1.1s-1.3-1.1-1.6-1.4c-.3-.3-.8-.9-1.4-1.6-.6-.7-1-1.4-1.1-1.9-.1-.6 0-1 .3-1.1.3-.2.6-.6.8-1.3.2-.6-.1-1.5-.8-2.7S6.5 3.6 6.4 3.3l-.5-.5c-.2-.1-.4-.1-.6 0l-1 .4c-.7.2-1.2.7-1.6 1.5zm6.8 6.9c.6.7 1 1.2 1.3 1.5s.8.8 1.5 1.3c.6.5 1 .7 1.3.8.4-.5 1-.8 1.8-1.1 1.1-.3 2.3.1 3.7 1 1.1.7 1.8 1.2 2.1 1.4.5.3.8.7 1 1.1.2.5.2 1 .1 1.5v.1l-.4 1c-.4 1-1.1 1.8-2.2 2.3-1 .4-2.1.5-3.3.2-1.1-.3-2.2-.7-3.4-1.3-1.1-.6-2.2-1.3-3.3-2.1-1.1-.8-2-1.6-2.7-2.3-.8-.8-1.5-1.7-2.3-2.8S3.2 12 2.6 10.9s-1-2.3-1.3-3.4c-.3-1.2-.2-2.4.2-3.3.5-1.1 1.3-1.9 2.3-2.3l1-.4h.1c.5-.1 1-.1 1.4.1.5.2.8.6 1.1 1 .2.3.6 1 1.3 2.1.9 1.4 1.3 2.7 1 3.8-.2.8-.5 1.4-1 1.8.1.3.4.8.8 1.3zm3.1-1.2c-.4 0-.7-.3-.7-.6V2.1c0-.4.3-.6.7-.6h3.3c.4 0 .6.3.6.6v7.7c0 .4-.3.6-.6.6h-3.3zm2.6-1.3V2.7h-2v6.4h2zm3.4 1.3c-.4 0-.6-.3-.6-.6V2.1c0-.4.3-.6.6-.6h3.3c.4 0 .6.3.6.6v7.7c0 .4-.3.6-.6.6h-3.3zm2.6-1.3V2.7h-2v6.4h2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-call-pending"><path d="M2.7 4.7c-.3.7-.4 1.5-.1 2.5s.6 2 1.2 3.1 1.2 2.1 2 3.2 1.5 1.9 2.2 2.6c.7.7 1.6 1.5 2.6 2.2 1 .8 2.1 1.4 3.1 2s2.1 1 3.1 1.2 1.8.2 2.5-.1c.8-.4 1.3-.9 1.6-1.6l.4-1c.1-.2 0-.4 0-.6-.1-.2-.3-.4-.5-.5-.2-.2-.9-.6-2.1-1.4-1.1-.7-2-1-2.7-.8-.6.2-1.1.5-1.2.8-.1.3-.6.4-1.1.3-.6-.1-1.2-.5-1.9-1.1s-1.3-1.1-1.6-1.4c-.3-.3-.8-.9-1.4-1.6-.6-.7-1-1.4-1.1-1.9-.1-.6 0-1 .3-1.1.3-.2.6-.6.8-1.3.2-.6-.1-1.5-.8-2.7S6.5 3.6 6.4 3.3l-.5-.5c-.2-.1-.4-.1-.6 0l-1 .4c-.7.2-1.2.7-1.6 1.5zm18 5.2h.1c.4 0 .7.3.7.7s-.3.7-.7.7h-6.9c-.4 0-.7-.3-.7-.7s.3-.7.7-.7v-.7c0-1.3.7-2.4 1.7-3-1-.6-1.7-1.7-1.7-3v-.7c-.4 0-.7-.3-.7-.7s.3-.7.7-.7h6.9c.4 0 .7.3.7.7s-.3.7-.7.7h-.1v.7c0 1.3-.7 2.4-1.7 3 1 .6 1.7 1.7 1.7 3v.7zm-1.4 0v-.7c0-1.1-.9-2-2-2s-2 .9-2 2v.6l4 .1zm0-7.4h-4v.7c0 1.1.9 2 2 2s2-.9 2-2v-.7zm-9.8 9.1c.6.7 1 1.2 1.3 1.5s.8.8 1.5 1.3c.6.5 1 .7 1.3.8.4-.5 1-.8 1.8-1.1 1.1-.3 2.3.1 3.7 1 1.1.7 1.8 1.2 2.1 1.4.5.3.8.7 1 1.1.2.5.2 1 .1 1.5v.1l-.4 1c-.4 1-1.1 1.8-2.2 2.3-1 .4-2.1.5-3.3.2-1.1-.3-2.2-.7-3.4-1.3-1.1-.6-2.2-1.3-3.3-2.1-1.1-.8-2-1.6-2.7-2.3-.8-.8-1.5-1.7-2.3-2.8S3.2 12 2.6 10.9s-1-2.3-1.3-3.4c-.3-1.2-.2-2.4.2-3.3.5-1.1 1.3-1.9 2.3-2.3l1-.4h.1c.5-.1 1-.1 1.4.1.5.2.8.6 1.1 1 .2.3.6 1 1.3 2.1.9 1.4 1.3 2.7 1 3.8-.2.8-.5 1.4-1 1.8.1.3.4.8.8 1.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-call-transfer"><path d="M16.7 1.5c.6.2 1.2.7 1.6 1.5.5.8.9 1.7 1.2 2.7.3 1 .6 2.1.7 3.2.2 1.1.3 2.1.3 3s-.1 1.9-.3 3c-.2 1.1-.4 2.2-.7 3.2s-.7 1.9-1.2 2.7c-.5.8-1 1.3-1.6 1.5-.7.3-1.4.3-2 0l-.9-.4c-.2-.1-.3-.2-.4-.4-.1-.2-.1-.4 0-.7 0-.3.2-1 .5-2.2.3-1.2.7-1.9 1.2-2.2.5-.3 1-.4 1.3-.3.3.1.6-.1.9-.5.3-.4.4-1.1.5-1.9.2-.7.2-1.3.2-1.7 0-.4 0-1-.1-1.9-.1-.8-.3-1.5-.5-1.9-.3-.4-.6-.6-.9-.5-.3.1-.8 0-1.3-.3s-.9-1-1.2-2.2-.4-1.9-.5-2.2c-.1-.3-.1-.5 0-.7.1-.2.2-.3.4-.4l.9-.4c.5-.2 1.2-.2 1.9 0zm0 8.7c.1.8.1 1.4.1 1.8 0 .4 0 1-.1 1.8-.1.6-.2 1.1-.3 1.3-.6-.1-1.2.1-1.8.5-.9.5-1.4 1.5-1.8 3-.3 1.2-.4 1.9-.5 2.2-.1.5-.1.9.1 1.3s.5.7.8 1l.1.1.9.4c.9.4 1.9.4 2.9 0 .9-.3 1.6-1 2.2-2 .5-.9 1-1.9 1.3-3 .3-1.1.6-2.2.8-3.4.2-1.2.3-2.2.3-3.2s-.1-2-.3-3.2c-.2-1.2-.4-2.3-.8-3.4s-.8-2.1-1.3-3c-.6-1-1.3-1.7-2.2-2-1-.4-2-.4-2.9 0l-.9.4-.1.1c-.4.2-.7.6-.8 1-.2.4-.2.9-.1 1.4.1.3.2 1 .5 2.2.3 1.5.9 2.5 1.8 3 .6.4 1.2.5 1.8.5.1.1.3.6.3 1.2zm-4.1 2c.1-.2.1-.3 0-.5 0-.1-.1-.2-.1-.2L7.2 6.3c-.1-.2-.3-.2-.4-.2-.2 0-.3.1-.5.2-.3.2-.3.6 0 .9l4.1 4.1H2c-.4 0-.7.3-.7.7 0 .4.3.6.6.6h8.4l-4.1 4.1c-.3.3-.3.7 0 .9.3.3.7.3.9 0l5.2-5.2c.2-.1.2-.1.3-.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-card"><path d="M21.9 20.6H2.2c-.9 0-1.7-.5-1.7-1.4V4.4c0-.8.8-1.4 1.7-1.4h19.7c.9 0 1.6.5 1.6 1.4v14.8c0 .8-.7 1.4-1.6 1.4zm0-1.3c.2 0 .4-.1.4-.1V4.4s-.1-.1-.4-.1H2.2c-.1 0-.2 0-.3.1v14.8s.1.1.4.1h19.6zm-9.8-7.6c-1.5 0-2.8-1.3-2.8-2.8s1.3-2.8 2.8-2.8c1.5 0 2.8 1.3 2.8 2.8-.1 1.5-1.4 2.8-2.8 2.8zm0-1.3c.8 0 1.5-.7 1.5-1.5s-.7-1.5-1.5-1.5-1.5.6-1.5 1.5.7 1.5 1.5 1.5zm-2 2.8H14v1.3h-3.9v-1.3zm-2 2.9H16v1.3H8.1v-1.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-cart"><path d="M20.8 10.9H9.3V9.6h11.8l.4-1.6 1.3.3-1.9 7.4c-.2.7-.9 1.3-1.6 1.3H9c-.7 0-1.4-.5-1.6-1.2L3.2 2.2H1.1V.9h3l4.5 14.6c0 .2.2.3.4.3h10.2c.2 0 .3-.1.4-.3l1.2-4.6zm-10 12.3c-1.5 0-2.7-1.2-2.7-2.7s1.2-2.7 2.7-2.7 2.7 1.2 2.7 2.7-1.2 2.7-2.7 2.7zm0-1.3c.8 0 1.4-.6 1.4-1.4s-.6-1.4-1.4-1.4-1.4.6-1.4 1.4c0 .8.7 1.4 1.4 1.4zm7.7 1.3c-1.5 0-2.7-1.2-2.7-2.7s1.2-2.7 2.7-2.7 2.7 1.2 2.7 2.7-1.2 2.7-2.7 2.7zm0-1.3c.8 0 1.4-.6 1.4-1.4s-.6-1.4-1.4-1.4-1.4.6-1.4 1.4.6 1.4 1.4 1.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-cart-full"><path d="M18.7 17.1H8.4c-.7 0-1.3-.5-1.6-1.1L2.6 2.2H.5V1h3L8 15.6c.1.2.2.3.4.3h10.2c.2 0 .4-.1.4-.3l1.3-5.3H7.5V9H8V7.7c0-.6.4-1 1-1h.2V4.2c0-.7.5-1.2 1.1-1.2h2.6c.4 0 .8.3 1 .6l2.5-1c.8-.3 1.7 0 2.1.7l2.1 3.8c.3.6.2 1.3-.2 1.8h.4L21 8l1.2.3-1.9 7.4c-.3.8-.9 1.4-1.6 1.4zM9.2 7.9V9h3.2l-.6-1.1H9.2zm1.2-3.7v2.5h.8c-.4-.8-.1-1.8.7-2.2h.1l.4-.2h-2zm6.4-.4l-4.3 1.8c-.2.1-.3.3-.2.6L13.7 9h4v-.1l1.5-.6c.2-.1.3-.3.2-.6l-2.1-3.8c-.1-.1-.3-.2-.5-.1zm-6.6 14.1c1.5 0 2.6 1.2 2.6 2.6s-1.2 2.6-2.6 2.6-2.6-1.1-2.6-2.5 1.2-2.7 2.6-2.7zm0 4.1c.8 0 1.4-.6 1.4-1.4 0-.8-.6-1.4-1.4-1.4-.8 0-1.4.6-1.4 1.4 0 .8.6 1.4 1.4 1.4zm7.7-4.1c1.5 0 2.6 1.2 2.6 2.7 0 1.5-1.2 2.6-2.7 2.6s-2.6-1.2-2.6-2.7c.1-1.4 1.3-2.6 2.7-2.6zm0 4.1c.8 0 1.4-.6 1.4-1.4s-.6-1.4-1.4-1.4-1.4.6-1.4 1.4.6 1.4 1.4 1.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-chat"><path d="M18 15.7l2 1.6V14h1c1.1 0 1.7-1 1.7-2.1V3.8c0-1.1-.9-2-2-2H9.3c-1.1 0-2 .9-2 2v1.7h7.4C16.5 5.5 18 7 18 8.8v6.9zm0 1.7c-.1 1.7-1.5 3.1-3.3 3.1H8.5L6 23.1c-.5.5-1.3.5-1.8 0-.2-.2-.4-.6-.4-.9v-1.7h-.5C1.5 20.5 0 19 0 17.2V8.8C0 7 1.5 5.5 3.3 5.5H6V3.8C6 2 7.8.6 9.6.6L20.8.5C22.5.5 24 2 24 3.8v8.1c0 1.8-.9 3.3-2.7 3.4v2c0 .7-.6 1.3-1.3 1.3-.3 0-.6-.1-.9-.4l-1.1-.8zM14.7 6.8H3.3c-1.1 0-2 .9-2 2v8.4c0 1.1.9 2 2 2h1.8v3l3-3h6.7c1.1 0 2-.9 2-2V8.8c-.1-1.1-1-2-2.1-2zM3 10.5h12v1.3H3v-1.3zm0 3h7v1.3H3v-1.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-check"><path d="M9 16.1L3.8 11c-.4-.4-1.1-.4-1.5 0-.4.4-.4 1 0 1.4L9 19 21.7 6.7c.4-.4.4-1 0-1.4-.4-.4-1.1-.4-1.5 0L9 16.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-check-circle"><path d="M12 21.658a9.658 9.658 0 1 0 0-19.316 9.658 9.658 0 0 0 0 19.316zM12 23C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11-4.925 11-11 11zm-2-7.99l-3.505-3.505a.7.7 0 1 0-.99.99L10 16.99l8.495-8.495a.7.7 0 1 0-.99-.99L10 15.01z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-check-circle-negative"><path d="M19.3 8.4l-8.7 8.7c-.2.2-.5.3-.8.3-.3 0-.6-.1-.8-.3l-4.4-4.4c-.4-.4-.4-1.1 0-1.5.4-.4 1.1-.4 1.5 0l3.6 3.6 8-8c.4-.4 1.1-.4 1.5 0 .5.5.5 1.2.1 1.6zM12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.6 0 12 0z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-checkbox"><path d="M18.5 20.7c1.2 0 2.3-1 2.3-2.2V5.6c0-1.4-1-2.4-2.3-2.4H5.6c-1.3 0-2.4 1-2.4 2.3v12.8c0 1.2 1.1 2.3 2.4 2.3l12.9.1zm0 1.3H5.6c-2 0-3.6-1.6-3.6-3.5V5.6C2 3.6 3.6 2 5.6 2h12.8c2 0 3.5 1.6 3.5 3.6v12.8c.1 2-1.5 3.6-3.4 3.6zM18 6.5l-7.2 8.7-4.1-2.7-.7 1.1 5.1 3.4L19 7.3l-1-.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-chevron-down"><path fill-rule="evenodd" d="M12 16L5.245 9.394a.798.798 0 0 1 .009-1.158.873.873 0 0 1 1.201.008L12 13.667l5.545-5.423a.873.873 0 0 1 1.201-.008.798.798 0 0 1 .01 1.158L12 16z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-chevron-left"><path d="M14.7 6.6c.3-.4.3-.9 0-1.3-.3-.3-.9-.4-1.2 0L7 12l6.5 6.7c.3.3.9.4 1.2 0 .3-.4.3-.9 0-1.3L9.5 12l5.2-5.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-chevron-right"><path d="M13.508 12l-5.25 5.441a.937.937 0 0 0 0 1.292.86.86 0 0 0 1.246 0L16 12 9.504 5.267a.86.86 0 0 0-1.246 0 .937.937 0 0 0 0 1.292L13.508 12z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-chevron-up"><path fill-rule="evenodd" d="M18.15 16a.862.862 0 0 1-.605-.244L12 10.334l-5.545 5.422a.872.872 0 0 1-1.202.008.798.798 0 0 1-.008-1.158L12 8l6.755 6.606a.798.798 0 0 1-.008 1.158.864.864 0 0 1-.597.236"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-circle-down"><path fill-rule="evenodd" d="M12 23C5.955 23 1 18.045 1 12S5.955 1 12 1s11 4.955 11 11-4.955 11-11 11zm0-1.288c5.351 0 9.712-4.36 9.712-9.712 0-5.351-4.36-9.712-9.712-9.712-5.351 0-9.712 4.36-9.712 9.712 0 5.351 4.36 9.712 9.712 9.712zm5.45-13.18l.991.99L12 15.866 5.559 9.523l.99-.991L12 14.082l5.45-5.55z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-circle-nested"><path d="M12 23C6 23 1 18 1 12S6 1 12 1s11 5 11 11-5 11-11 11zm0-1.3c5.4 0 9.7-4.4 9.7-9.7 0-5.4-4.4-9.7-9.7-9.7-5.4 0-9.7 4.4-9.7 9.7 0 5.4 4.3 9.7 9.7 9.7zm0-3.9c-3.2 0-5.8-2.6-5.8-5.8S8.8 6.2 12 6.2s5.8 2.6 5.8 5.8-2.6 5.8-5.8 5.8zm0-1.2c2.5 0 4.6-2 4.6-4.5 0-2.6-2-4.6-4.6-4.6s-4.6 2-4.6 4.6c0 2.4 2.1 4.5 4.6 4.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-clipboard-add"><path d="M17.9 16.6h2.3v1h-2.3V20h-1v-2.3h-2.3v-1h2.3v-2.3h1v2.2zm-6-1.4H7.2v-1h5.2c.3-.5.6-1 1-1.4H7.2v-1h7.6c.8-.4 1.7-.6 2.5-.6V5.8h-1l.3.9H6.1l.3-.9h-1v10.8h3.2v3.3h3.7c-.5-.9-.7-1.8-.7-2.8 0-.6.1-1.3.3-1.9zM6 17.6l1.6 1.6v-1.6H6zM16.1 4.8h2.2v6.6c.2 0 .5.1.7.2V4.8c0-.4-.3-.8-.7-.8h-2.4l.2.8zm-9.5 0l.2-.8H4.4c-.4 0-.8.4-.8.8v16.1c0 .4.3.8.7.8h9.4c-.3-.2-.5-.5-.8-.7h-5l-3.5-3.6V4.8h2.2zm8.9-2.1h2.8c1.1 0 2 .9 2 2.1v7.3c1.7 1.1 2.8 3 2.8 5 0 3.2-2.6 5.9-5.8 5.9h-13c-1.1 0-2-.9-2-2.1V4.8c0-1.1.9-2.1 2-2.1h2.8l.1-.3h2.2c0-1 .9-1.9 1.9-1.9 1 0 1.9.8 1.9 1.9h2.2l.1.3zm-8.3 7.8v-1h3.2v1H7.2zm5-7.1v-1c0-.5-.4-.9-.9-.9s-.9.4-.9.9v1H8l-.6 2.3h8l-.6-2.3h-2.6zm5.2 18.3c2.5 0 4.4-2 4.4-4.6 0-2.5-2-4.6-4.5-4.6s-4.4 2-4.4 4.6c0 2.5 2 4.6 4.5 4.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-clock"><path d="M12 21.7c5.4 0 9.7-4.3 9.7-9.7S17.4 2.3 12 2.3 2.3 6.6 2.3 12s4.3 9.7 9.7 9.7zm0 1.3C5.9 23 1 18.1 1 12S5.9 1 12 1s11 4.9 11 11-4.9 11-11 11zm5.4-6.5l-4.8-4.9V5.2c0-.4-.3-.7-.7-.7-.4 0-.6.3-.6.7v7l5.1 5.2c.3.3.7.3.9 0s.4-.6.1-.9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-cloud"><path d="M18.2 19.1H5.6c-2 0-3.7-1.7-3.7-3.9s1.7-3.9 3.7-3.9c1 0 1.9.4 2.6 1.1l1.9 2-.8-2.6c-.1-.4-.2-.9-.2-1.4 0-3.1 2.3-5.5 5.3-5.5 2.7 0 4.8 2.1 5.2 4.8-.4-.1-.9-.2-1.3-.2v1.4c.8 0 1.5.2 2.1.6 1.1.8 1.9 2.1 1.9 3.5-.1 2.3-1.9 4.1-4.1 4.1m2.7-8.9c-.1-3.7-3-6.7-6.6-6.7-3.7 0-6.6 3.1-6.6 6.9v.1c-.7-.4-1.4-.5-2.1-.5-2.8 0-5.1 2.4-5.1 5.3s2.3 5.3 5.1 5.3h12.6c3 0 5.3-2.5 5.3-5.5 0-2.1-1-3.9-2.6-4.9"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-cloud-upload"><path d="M11.9 8.5l4.9 5c.3.3.3.7 0 1-.3.3-.7.3-1 0l-3.2-3.3v10.1c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7v-10L8 14.5c-.3.3-.7.3-1 0-.3-.3-.3-.7 0-1l4.9-5zm3.9 9.5c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7h3.4c1.9 0 3.4-1.5 3.4-3.4 0-1.2-.7-2.4-1.8-3l-.5-.3.1-.5c.1-.3.1-.6.1-.9 0-2.8-2.2-5-4.9-5-1.8 0-3.5 1-4.4 2.7l-.4.8-.7-.5c-.4-.5-1-.7-1.7-.7-1.7 0-3 1.4-3 3.1V9.7h-.7c-1.8.1-3.3 1.6-3.3 3.4 0 1.9 1.5 3.4 3.4 3.4H8c.4 0 .7.3.7.7 0 .5-.3.8-.7.8H4.8C2.2 18 0 15.8 0 13.1c0-2.4 1.7-4.4 4-4.8.3-2.3 2.2-4 4.5-4 .7 0 1.4.2 2 .5 1.1-1.7 3-2.8 5.1-2.8C19.1 2 22 4.9 22 8.4v.7c1.3.9 2.1 2.4 2.1 4 0 2.7-2.2 4.9-4.8 4.9h-3.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-code"><path d="M0 12.3l6.1-6.1c.3-.3.7-.3 1 0s.3.7 0 1l-5 5 5 5c.3.3.3.7 0 1-.3.3-.7.3-1 0L0 12.3zm24 0l-6.1 6.1c-.3.3-.7.3-1 0-.3-.3-.3-.7 0-1l5-5-5-5c-.3-.3-.3-.7 0-1 .3-.3.7-.3 1 0l6.1 5.9zM9.7 20.5c-.1.4-.5.6-.9.5-.3-.2-.5-.5-.4-.9L14 4.5c.2-.3.6-.6.9-.4.3.2.5.5.4.9L9.7 20.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-code-snippet"><path d="M7.6 22.2h14.3c.2 0 .4-.2.4-.4V2c0-.2-.2-.4-.4-.4H7.6v20.6zm-1.3 0V1.6H2.1c-.2.1-.4.3-.4.4v19.8c0 .2.2.4.4.4h4.2zm15.6 1.3H2.1c-.9 0-1.6-.7-1.6-1.5V2.1c0-.9.7-1.6 1.6-1.6h19.8c.9 0 1.6.7 1.6 1.6v19.8c0 .9-.7 1.6-1.6 1.6zM9 5.3V4h1.5v1.3H9zm3 0V4h5.5v1.3H12zm6.9 0V4h1.3v1.3h-1.3zM9 8.2V6.9h2v1.3H9zm4 0V6.9h1.5v1.3H13zm3 0V6.9h4.5v1.3H16zm-7 3V9.9h4v1.3H9zm5 0V9.9h2v1.3h-2zm3 0V9.9h1.3v1.3H17zm-8 3v-1.3h1.5v1.3H9zm3 0v-1.3h1.3v1.3H12zm3 0v-1.3h4.5v1.3H15zm-6 3v-1.3h4.5v1.3H9zm6 0v-1.3h3v1.3h-3zm3.9 0v-1.3h2v1.3h-2zM9 20.1v-1.3h1.3v1.3H9zm2 0v-1.3h4.5v1.3H11zM3.1 5.3V4h2v1.3h-2zm0 2.9V6.9h2v1.3h-2zm0 3V9.9h2v1.3h-2zm0 3v-1.3h2v1.3h-2zm0 3v-1.3h2v1.3h-2zm0 2.9v-1.3h2v1.3h-2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-collapse"><path d="M21.5 21.135V22.5H4.611A2.112 2.112 0 0 1 2.5 20.4V3.6c0-1.155.95-2.1 2.111-2.1H21.5v1.365h-8.128v6.09H12v-6.09H4.611a.72.72 0 0 0-.739.735v16.8c0 .42.317.735.74.735H12V14.1h1.372v7.035H21.5zM10.206 9.375l-1.69 1.575h8.762v1.47H8.41l1.9 1.785-.95.945-3.694-3.465 3.589-3.36.95 1.05z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-compose"><path d="M13.2 2.9c.4 0 .7.3.7.6 0 .4-.3.7-.6.7H4c-.7 0-1.3.6-1.3 1.3v14c0 .7.6 1.4 1.3 1.4h13.7c.7 0 1.4-.6 1.4-1.4v-8.8c0-.4.3-.7.6-.7.4 0 .7.3.7.6v8.8c0 1.5-1.2 2.6-2.6 2.6H4c-1.5 0-2.6-1.2-2.7-2.6v-14c0-1.5 1.2-2.7 2.7-2.7 0 .2 9.2.2 9.2.2zm9.2-1.2l.9.9-.9.9-11.1 11.2c-.2.2-.4.4-1.4.5-.1 0-.3 0-.4.1l-1.5.1.1-1.5v-.5c.1-1 .4-1.2.5-1.4l5.7-5.7 3.9-3.9L19.6 1l1.1-1 .9.9.8.8zm-3.6 3.6l2.6-2.6-.8-.8-1.4 1.4L18 4.5l.8.8zm-8.4 8.5l7.5-7.5-.8-.8-1.8 1.8L9.6 13s-.1.3-.1.6v.4h.4c.2-.2.5-.2.5-.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-copy"><path d="M20.7 7.5h-3.1c-.9 0-1.6-.7-1.6-1.6V2.3H7.8c-.2 0-.3.1-.3.3v2.2h5.3l5 5.6V18h2.6c.2 0 .3-.1.3-.3V7.5zm-.8-1.3l-2.6-2.9v2.5c0 .2.2.3.3.3h2.3zM6.2 4.8V2.6c0-.9.7-1.6 1.6-1.6H17l5 5.6v11.1c0 .9-.7 1.6-1.6 1.6h-2.6v2.2c0 .9-.7 1.6-1.6 1.6H3.6C2.7 23 2 22.3 2 21.4v-15c0-.9.7-1.6 1.6-1.6h2.6zm6.9 2.3v2.5c0 .2.2.3.3.3h2.2c.1 0-2.5-2.8-2.5-2.8zm3.4 4.1h-3.1c-.9 0-1.6-.7-1.6-1.6V6.1H3.6c-.2 0-.3.1-.3.3v15.1c0 .2.1.3.3.3h12.6c.2 0 .3-.1.3-.3V11.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-credit-card"><path d="M20.5 4C21.9 4 23 5.1 23 6.6v11.2c0 1.4-1.1 2.5-2.5 2.6h-17c-1.4 0-2.5-1.1-2.5-2.6V6.6C1 5.1 2.1 4 3.5 4h17zm0 15c.7 0 1.3-.6 1.3-1.3V9H2.2v8.7c0 .7.6 1.3 1.3 1.3h17zM3.5 5.2c-.7 0-1.3.6-1.3 1.3v1.2h19.5V6.6c0-.7-.6-1.3-1.3-1.3L3.5 5.2zm8.7 10.4v-1.2h7.2v1.2h-7.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-crop-fill"><path d="M4.9 19.2h14.3V4.9H4.9v14.3zM6.2 8.9l2.7-2.7h1.5l-4.2 4.2V8.9zm0 3.4l6.1-6.1h1.5l-7.6 7.6v-1.5zm11.7 3.2l-2.4 2.4H14l3.9-3.9v1.5zm0-3.4l-5.7 5.7h-1.5l7.2-7.2v1.5zm0-3.3l-9.1 9.1H7.3L17.9 7.3v1.5zM6.2 17.1v-1.5l9.4-9.4h1.5L6.2 17.1zm11.1.8l.5-.5v.5h-.5zM7 6.2l-.8.9v-.9H7zM17.9 1h1.3v3h-1.3V1zM20 4.9h3v1.3h-3V4.9zM4.9 20h1.3v3H4.9v-3zM1 17.9h3v1.3H1v-1.3zm19 0h3v1.3h-3v-1.3zM17.9 20h1.3v3h-1.3v-3zM1 4.9h3v1.3H1V4.9zM4.9 1h1.3v3H4.9V1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-cross"><path d="M11.9 10.7l6.5-6.5c.3-.3.8-.3 1.1 0s.3.8 0 1.1L13 11.9l6.5 6.5c.3.3.3.8 0 1.1s-.8.3-1.1 0L11.9 13l-6.5 6.5c-.3.3-.8.3-1.1 0s-.3-.8 0-1.1l6.5-6.5-6.6-6.5c-.3-.3-.3-.8 0-1.1s.8-.3 1.1 0l6.6 6.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-cross-circle"><path d="M12 21.7c5.3 0 9.7-4.3 9.7-9.7S17.3 2.3 12 2.3 2.3 6.7 2.3 12s4.4 9.7 9.7 9.7zm0 1.3C5.9 23 1 18.1 1 12S5.9 1 12 1s11 4.9 11 11-4.9 11-11 11zm.9-11l3.9-3.9c.3-.3.2-.7 0-.9-.3-.2-.7-.2-.9 0L12 11.1 8.1 7.2c-.2-.3-.7-.2-.9 0-.2.3-.2.7 0 .9l3.9 3.9-3.9 3.9c-.3.3-.3.7 0 .9s.7.3.9 0l3.9-3.9 3.9 3.9c.3.3.7.3.9 0 .3-.3.3-.7 0-.9L12.9 12z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-cross-circle-negative"><path d="M17.1 15.6c.4.4.4 1.1 0 1.5-.2.2-.5.3-.8.3s-.6-.1-.8-.3L12 13.5l-3.6 3.6c-.2.2-.5.3-.8.3s-.6-.1-.8-.3c-.4-.4-.4-1.1 0-1.5l3.6-3.6-3.5-3.6c-.5-.4-.5-1.1 0-1.5.4-.4 1.1-.4 1.5 0l3.6 3.6 3.6-3.6c.4-.4 1.1-.4 1.5 0s.4 1.1 0 1.5L13.5 12l3.6 3.6zM12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.6 0 12 0z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-cursor"><path d="M10.9 15.2c.3-.3.7-.3.9 0 0 0 0 .1.1.1l3.1 4.3L20 4 4.4 9l4.5 3.2c.3.2.4.6.2.9 0 0 0 .1-.1.1l-4.5 4.5 1.9 2 4.5-4.5zm.4 1.5l-4.4 4.4c-.3.3-.7.3-.9 0l-2.8-2.9c-.2-.3-.2-.7 0-.9l4.4-4.4-5-3.6c-.3-.2-.3-.6-.1-.9.1-.1.2-.2.3-.2l18-5.8c.3-.1.7.1.8.4v.4l-5.8 18c-.1.3-.5.5-.8.4-.1 0-.2-.1-.3-.2l-3.4-4.7z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-cursor-2"><path d="M12.7 16.7l4.4 4.4c.3.3.7.3.9 0l2.8-2.9c.2-.3.2-.7 0-.9l-4.4-4.4 4.9-3.5c.4-.3.3-1-.2-1.1l-18-5.8c-.5-.2-1 .3-.8.8l5.8 18c.2.5.8.6 1.1.2l3.5-4.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-density-high"><path d="M21.2 6H2.8c-.5 0-.8-.3-.8-.7 0-.4.3-.8.7-.8h18.6c.4 0 .8.3.8.7-.1.4-.4.8-.9.8.1 0 .1 0 0 0zm0 6.8H2.8c-.5 0-.8-.4-.8-.8s.3-.8.8-.8h18.5c.4 0 .8.3.8.8-.1.4-.4.8-.9.8zm0 3.3H2.8c-.4 0-.8-.3-.8-.8 0-.4.3-.8.8-.8h18.5c.4 0 .8.3.8.8-.1.5-.4.8-.9.8zm0-6.7H2.8c-.5 0-.8-.4-.8-.8s.3-.8.8-.8h18.5c.4 0 .8.3.8.8-.1.4-.4.8-.9.8zm0 10.1H2.8c-.4 0-.8-.3-.8-.7 0-.4.3-.8.7-.8h18.6c.4 0 .8.3.8.7-.1.4-.4.8-.9.8.1 0 .1 0 0 0z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-density-medium"><path d="M21.2 5.3H2.8c-.5 0-.8-.3-.8-.7s.3-.8.7-.8h18.6c.4 0 .8.3.8.7s-.4.8-.9.8c.1 0 .1 0 0 0zm0 9.8H2.8c-.4 0-.8-.3-.8-.7s.3-.8.7-.8h18.6c.4 0 .8.3.8.7s-.4.8-.9.8c.1 0 .1 0 0 0zm0-4.9H2.8c-.5 0-.8-.3-.8-.8 0-.4.3-.7.8-.7h18.5c.4 0 .7.3.7.7 0 .5-.3.8-.8.8zm0 9.8H2.8c-.5 0-.8-.4-.8-.8s.3-.8.8-.8h18.5c.4 0 .8.3.8.8-.1.4-.4.8-.9.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-design-tools"><path d="M9.5 0H3v22.8h6.6c.9 0 1.7-.6 1.7-1.6V1.6c0-.9-.8-1.6-1.8-1.6zm.5 21.2c0 .1-.2.3-.4.3H4.3v-.7h2.1v-1.3H4.3v-.7h3.5v-1.3H4.3v-.7h2.1v-1.3H4.3v-.7h3.5v-1.3H4.3v-.7h2.1v-1.3H4.3v-.7h3.5V9.5H4.3v-.7h2.1V7.5H4.3v-.7h3.5V5.5H4.3v-.7h2.1V3.5H4.3V1.3h5.3c.2 0 .4.2.4.4v19.5zM20.1.5c.7 0 1.2.5 1.1 1.1v15.1c0 .6-.4 1-.9 1.1l-2.4 5.4-2.5-5.6c-.3-.2-.5-.5-.5-.9V1.6c0-.6.6-1.1 1.2-1.1h4zm-.1 16V1.8h-1.2v14.7H20zM16.3 1.8v14.7h1.2V1.8h-1.2zm.7 16l.9 2.2 1-2.2H17z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-device-cloud"><path d="M9.2 20c-.9 0-1.6-.7-1.6-1.6V2.6c0-.9.7-1.6 1.6-1.6H16c.9 0 1.6.7 1.6 1.6v15.8c0 .9-.7 1.6-1.6 1.6H9.2zM8.8 2.6v15.8c0 .2.1.3.3.3H16c.2 0 .3-.2.3-.3V2.6c0-.2-.1-.3-.3-.3H9.2c-.2 0-.4.1-.4.3zm1.1 7.6V4.1h5.4v6.1H9.9zM11.2 9H14V5.4h-2.9V9zm-.1 2.9c.6 0 1 .5 1 1 0 .6-.5 1-1 1-.6 0-1-.5-1-1 0-.6.4-1 1-1zm2.9 0c.6 0 1 .5 1 1 0 .6-.5 1-1 1-.6 0-1-.5-1-1 0-.6.5-1 1-1zm-2.9 3c.6 0 1 .5 1 1 0 .6-.5 1-1 1-.6 0-1-.5-1-1 0-.6.4-1 1-1zm2.9 0c.6 0 1 .5 1 1 0 .6-.5 1-1 1-.6 0-1-.5-1-1 0-.6.5-1 1-1zm6.2-3.7c2.3.9 3.8 3 3.8 5.5 0 3.2-2.7 5.9-5.9 5.9L6 22.5c-2.8 0-5-2.2-5-4.9 0-2 1.3-3.8 3.2-4.5.3-1.2.8-2.4 1.6-3.4.2-.2.6-.3.9-.1.3.2.3.6.1.9-.7.9-1.2 2-1.5 3.2l-.1.4-.4.1c-1.6.5-2.6 1.9-2.6 3.5 0 2 1.7 3.6 3.7 3.6H18c2.6 0 4.7-2.1 4.7-4.6 0-2-1.3-3.7-3.2-4.4l-.3-.1-.1-.2c-.2-.4-.5-.9-.8-1.3-.2-.3-.1-.7.1-.9.3-.2.7-.1.9.1.4.4.7.9.9 1.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-devices"><path d="M17.2 10c-.4 0-.7.3-.7.7v9c0 .4.3.7.7.7h4.3c.4 0 .7-.3.7-.7v-9c0-.4-.3-.7-.7-.7h-4.3zm0-1.3h4.3c1.1 0 2 .9 2 2v9c0 1.1-.9 2-2 2h-4.3c-1.1 0-2-.9-2-2v-9c0-1.1.9-2 2-2zm-3.6 10.6H1.5v.3c0 .4.3.7.7.7h11.3c.4 0 .7.3.7.6 0 .4-.3.7-.6.7H2.2c-1.1 0-2-.9-2-2v-1c0-.4.3-.6.6-.6h12.7c.4 0 .6.3.6.7.1.3-.2.6-.5.6zm0-3.6c.4 0 .7.3.7.6 0 .4-.3.7-.6.7h-9c-1.3 0-2.3-1-2.3-2.3V5.3C2.3 4 3.3 3 4.6 3h14.3c1.3 0 2.3 1 2.3 2.3v1.6c0 .4-.3.7-.6.7-.4 0-.7-.3-.7-.6V5.3c0-.6-.5-1-1-1H4.6c-.6 0-1 .5-1 1v9.3c0 .6.5 1 1 1l9 .1zm5.8 3.5c.6 0 1-.4 1-1s-.4-1-1-1-1 .4-1 1 .5 1 1 1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-download"><path d="M18.2 10.1c.3.3.3.7 0 1L12 17.4l-6.2-6.3c-.3-.3-.3-.7 0-1 .3-.3.7-.3 1 0l4.4 4.5V2.2c0-.4.3-.7.7-.7s.7.3.7.7v12.5l4.4-4.5c.4-.4.9-.4 1.2-.1zm1.5 12.4H4.3c-1.3 0-2.3-1-2.3-2.3v-3.9c0-.4.3-.7.7-.7s.7.3.7.7v4c0 .5.4.8.8.8h15.5c.5 0 .8-.4.8-.8v-3.9c0-.4.3-.7.7-.7.4 0 .7.3.7.7v4c.1 1.1-.9 2.1-2.2 2.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-drag"><path class="st0" d="M15.8 6.4c-1.2 0-2.2-1-2.2-2.2s1-2.2 2.2-2.2S18 3 18 4.2s-1 2.2-2.2 2.2zm0 7.8c-1.2 0-2.2-1-2.2-2.2s1-2.2 2.2-2.2 2.2 1 2.2 2.2-1 2.2-2.2 2.2zm0 7.8c-1.2 0-2.2-1-2.2-2.2 0-1.2 1-2.2 2.2-2.2s2.2 1 2.2 2.2c0 1.2-1 2.2-2.2 2.2zM8.2 6.4C7 6.4 6 5.4 6 4.2S7 2 8.2 2s2.2 1 2.2 2.2-1 2.2-2.2 2.2zm0 7.8C7 14.2 6 13.2 6 12s1-2.2 2.2-2.2 2.2 1 2.2 2.2-1 2.2-2.2 2.2zm0 7.8C7 22 6 21 6 19.8c0-1.2 1-2.2 2.2-2.2s2.2 1 2.2 2.2c0 1.2-1 2.2-2.2 2.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-duplicate"><path d="M21.6 19.8V18H23v1.8h-1.4zm0-6.5v-1.8H23v1.8h-1.4zm0 3.3v-1.8H23v1.8h-1.4zm0 5H23v.8c0 .4-.3.7-.7.7h-.7v-1.5zM17.9 23v-1.4h1.9V23h-1.9zm-3.3 0v-1.4h1.9V23h-1.9zm-3.4 0v-1.4h1.9V23h-1.9zm-1.4-1.4V23h-.7c-.4 0-.7-.3-.7-.7v-.7h1.4zm-1.5-1.8v-1.9h1.4v1.9H8.3zm-4.1-4.1v-1.4h1.9v1.4H4.2zm-1.8-1.5v1.5h-.7c-.4 0-.7-.3-.7-.7v-.8h1.4zM1 12.5v-1.8h1.4v1.8H1zm0-3.2V7.4h1.4v1.8L1 9.3zm0-3.2V4.2h1.4V6L1 6.1zm1.4-3.7H1v-.7c0-.4.3-.7.7-.7h.7v1.4zm8.5 0V1h1.9v1.4h-1.9zm-3.4 0V1h1.9v1.4H7.5zm-3.3 0V1h1.9v1.4H4.2zm10 0V1h.7c.4 0 .7.3.7.7v.7h-1.4zm0 3.7V4.2h1.4v1.9h-1.4zm3.7 3.7V8.3h1.9v1.4l-1.9.1zm4.4-1.5c.4 0 .7.3.7.7v.7h-1.4V8.3h.7zm-14 8.1v-.8h-.7v-1.4h.8V9.1c0-.4.3-.7.7-.7h5.2v-.8h1.4v.8h.8v1.4h-.8V15c0 .4-.3.7-.7.7H9.8v.8l-1.5-.1zm1.5-2.2h4.4V9.8H9.8v4.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-edit"><path d="M20.225 5.9l-1.708 1.713-3.139-3.147 1.71-1.714c.53-.534 1.461-.536 1.996 0l1.141 1.145c.268.267.414.623.414 1.001 0 .379-.146.735-.414 1.002zM4.422 15.88l2.71 2.718-4.301 1.574 1.59-4.292zm3.889 1.97L5.172 14.7l9.245-9.27 3.138 3.148-9.244 9.27zM21.188 2.932l-1.14-1.145c-1.05-1.05-2.878-1.05-3.923.001L3.605 14.342a.692.692 0 0 0-.155.245L1.042 21.08a.686.686 0 0 0 .155.718.679.679 0 0 0 .716.161l6.508-2.38a.674.674 0 0 0 .248-.159L21.187 6.865A2.765 2.765 0 0 0 22 4.898c0-.743-.289-1.441-.812-1.966z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-emoji"><path d="M12 21c5 0 9-4 9-9s-4-9-9-9-9 4-9 9 4 9 9 9zm0 1.4C6.3 22.4 1.6 17.7 1.6 12S6.3 1.6 12 1.6 22.4 6.3 22.4 12 17.7 22.4 12 22.4zM9.1 11c.7 0 1.2-.7 1.2-1.6s-.5-1.5-1.2-1.5-1.2.7-1.2 1.6c0 .8.5 1.5 1.2 1.5zm5.8 0c.7 0 1.2-.7 1.2-1.6s-.5-1.6-1.2-1.6-1.2.7-1.2 1.6c0 .9.5 1.6 1.2 1.6zm-7.3 3.9l-.3-.6c1.4.4 2.9.6 4.7.6 1.8 0 3.4-.2 4.7-.6l-.3.6c-1 1.8-2.4 2.8-4.4 2.8-2 .1-3.4-1-4.4-2.8zm4.5 4.2c6 0 6.7-7 6.8-7.1 0 0-2.1 1.5-6.8 1.5-4.6 0-6.8-1.6-6.8-1.6s.8 7.2 6.8 7.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-enlarge"><path d="M21.5 22.3c.4 0 .6.3.6.6 0 .4-.3.7-.6.7h-2c-.4 0-.6-.3-.6-.7 0-.4.3-.6.6-.6h2zM9.6 1.6c-.4 0-.7-.3-.7-.7s.3-.6.7-.6h2c.4 0 .7.3.7.6s-.3.7-.7.7h-2zm6 0c-.4 0-.6-.3-.6-.7s.3-.6.6-.6h2c.4 0 .6.3.6.6s-.3.7-.6.7h-2zm7.3 3.7c.4 0 .6.3.6.6v2c0 .4-.3.6-.6.6-.4 0-.6-.3-.6-.6V6c0-.4.3-.7.6-.7zm-22 .1c-.4 0-.6-.3-.6-.7v-2c0-.4.3-.6.6-.6s.7.3.7.6v2c0 .4-.3.7-.7.7zm2.7-3.8c-.4 0-.6-.3-.6-.7s.3-.6.6-.6h2c.4 0 .7.3.7.6s-.4.7-.7.7h-2zM.9 9.3c-.3 0-.6-.3-.6-.7v-1c0-.3.3-.6.6-.6s.7.3.7.7v1c0 .3-.3.6-.7.6zm22 8c.4 0 .6.3.6.6v2c0 .4-.3.7-.6.7-.4 0-.6-.3-.6-.7v-2c0-.3.3-.6.6-.6zm0-14.7c-.4 0-.6-.3-.6-.6 0-.2-.1-.4-.3-.4h-.4c-.4 0-.6-.3-.6-.6s.3-.6.6-.6h.4c.9 0 1.6.7 1.6 1.6 0 .3-.3.6-.7.6zm0 8.7c.4 0 .6.3.6.6v2c0 .4-.3.7-.6.7-.4 0-.6-.3-.6-.7v-2c0-.3.3-.6.6-.6zm-6.6 11c.4 0 .6.3.6.6 0 .4-.3.7-.6.7h-1c-.4 0-.7-.3-.7-.7 0-.4.3-.6.7-.6h1zM20 8.1c0 .4-.3.7-.6.7-.4 0-.7-.3-.7-.7V5.9L14.5 10c-.1.1-.3.2-.5.2s-.3-.1-.5-.2c-.3-.3-.3-.7 0-.9l4.2-4.2h-2.3c-.4 0-.7-.3-.7-.7 0-.4.3-.6.7-.6h4c.2.1.3.2.3.4 0 .1.1.2.1.2v3.9zm-8.5 2.7c.8 0 1.5.7 1.5 1.5V22c0 .8-.7 1.5-1.5 1.5H1.8C1 23.5.3 22.8.3 22v-9.7c0-.8.7-1.5 1.5-1.5h9.7zm.3 11.3v-9.7c0-.1-.1-.2-.2-.2H1.8c-.1 0-.2.1-.2.2v9.7c0 .1.1.2.2.2h9.7c.2 0 .3-.1.3-.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-enter"><path d="M19.1 18.9h2.5v-14h-2.5v14zm-5.8-6.4H1.2c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7h12.1L8.1 5.8c-.3-.3-.3-.8 0-1 .3-.3.8-.3 1.1 0l6.4 6.4c.1 0 .1.1.2.2l.5.4-.5.4c0 .1-.1.1-.2.2L8.9 19c-.3.3-.8.3-1.1 0-.3-.3-.3-.8 0-1l5.5-5.5zm5.5-9H22c.6 0 1 .5 1 1v14.6c0 .6-.5 1-1 1h-3.1c-.6 0-1-.5-1-1V4.5c-.1-.5.3-1 .9-1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-envelope"><path d="M20.787 19.586H3.213c-.973 0-1.764-.83-1.764-1.85v-7.628l10.474 4.078 10.628-4.11v7.66c0 1.02-.792 1.85-1.764 1.85M3.213 4.415h17.574c.972 0 1.764.829 1.764 1.85v2.304l-10.626 4.109L1.449 8.599V6.264c0-1.02.79-1.85 1.764-1.85M20.787 3H3.213C1.493 3 .1 4.461.1 6.264v11.472C.1 19.54 1.494 21 3.213 21h17.574c1.72 0 3.113-1.461 3.113-3.264V6.264C23.9 4.461 22.506 3 20.787 3"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-exit"><path d="M4.4 4.9H1.9v14h2.5v-14zm11.2 13c.3.3.3.8 0 1-.3.3-.8.3-1.1 0l-6.6-6.6c-.1 0-.1-.1-.2-.2l-.5-.4.5-.4c0-.1.1-.1.2-.2l6.4-6.4c.3-.3.8-.3 1.1 0 .3.3.3.8 0 1L10.2 11h12.1c.4 0 .7.3.7.7 0 .4-.3.7-.7.7H10.2c0 .1 5.4 5.5 5.4 5.5zM5.7 4.5v14.7c0 .6-.5 1-1 1H1.5c-.6 0-1-.5-1-1V4.5c0-.6.5-1 1-1h3.1c.7 0 1.1.5 1.1 1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-expand"><path d="M21.5 21.1v1.4H4.6c-1.2 0-2.1-.9-2.1-2.1V3.6c0-1.2 1-2.1 2.1-2.1h16.9v1.4h-8.1V9H12V2.9H4.6c-.4 0-.7.3-.7.7v16.8c0 .4.3.7.7.7H12v-7h1.4v7h8.1zM15.3 9.4l1-1.1 3.6 3.3-3.7 3.4-.9-.9 1.9-1.8H7.8v-1.4H17l-1.7-1.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-eye"><path d="M11.8 19.1c4.6 0 8.7-2.8 10.4-6.9-1.7-4.2-5.8-6.9-10.4-6.9-4.6 0-8.7 2.7-10.4 6.9 1.7 4.1 5.8 6.9 10.4 6.9zm0 1.3c-5.1 0-9.7-3.1-11.6-7.7l-.2-.5.2-.5C2.1 7 6.7 4 11.8 4s9.7 3.1 11.6 7.7l.2.5-.2.5c-1.9 4.6-6.5 7.7-11.6 7.7zm2.7-7.7c-.2 0-.4-.2-.4-.4 0-1.2-1-2.2-2.2-2.2-.2 0-.4-.2-.4-.4s.2-.4.4-.4c1.7 0 3.1 1.4 3.1 3.1-.1.1-.3.3-.5.3zm-2.6-5c-2.5 0-4.5 2-4.5 4.5s2 4.5 4.5 4.5 4.5-2 4.5-4.5-2-4.5-4.5-4.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-eye-hide"><path class="st0" d="M12 19.2c1.9 0 3.6-.5 5.2-1.3l1 1c-1.9 1-4 1.6-6.2 1.6-5.2 0-9.8-3.1-11.8-7.8l-.2-.5.2-.5A13 13 0 0 1 5 5.9l1 1c-2 1.2-3.6 3-4.5 5.3 1.6 4.1 5.8 7 10.5 7zM8.6 5.7l-.5-.5-.6-.5c1.4-.5 2.9-.8 4.5-.8 5.2 0 9.8 3.1 11.8 7.8l.2.5-.2.5c-.7 1.8-1.9 3.4-3.4 4.6l-.1-.1-.8-.8c1.3-1.1 2.4-2.6 3.1-4.2-1.7-4.3-5.9-7-10.6-7-1.2 0-2.4.2-3.4.5zm14.2 16c.2.2.2.6 0 .9-.2.2-.6.2-.9 0l-3.8-3.7-1-1-2.3-2.2c-.8.8-2 1.3-3.2 1.3C9.1 17 7 15 7 12.4c0-1.2.5-2.4 1.3-3.2L5.9 6.9l-1-1L2 3.1c-.2-.3-.2-.7 0-.9.2-.2.6-.2.9 0l3.2 3.1 1 1 2.3 2.3 6.3 6.2 2.6 2.6 1 .9 3.5 3.4zm-6.6-8.3L10.7 8c.3-.1.6-.1 1-.1 2.5 0 4.6 2 4.6 4.6-.1.3-.1.6-.1.9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-eye-negative"><path fill-rule="evenodd" d="M12 4c5.4 0 10.1 3.5 12 8.4-1.9 4.9-6.5 8.4-12 8.4S1.9 17.3 0 12.4C1.9 7.5 6.6 4 12 4zm0 13.5c2.7 0 4.9-2.2 4.9-4.9S14.7 7.7 12 7.7s-4.9 2.2-4.9 4.9 2.2 4.9 4.9 4.9zm0-7.5c-.3 0-.5-.2-.4-.4 0-.3.2-.5.5-.5 1.8 0 3.3 1.5 3.3 3.4 0 .3-.2.5-.5.5s-.5-.2-.5-.5c0-1.4-1.1-2.5-2.4-2.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-facebook"><path d="M21.2.5H2.8C1.5.5.5 1.5.5 2.8v18.4c0 1.3 1 2.3 2.3 2.3h10.3c.2 0 .4-.2.4-.4v-8.4c0-.2-.2-.4-.4-.4h-2.7V12h2.7c.2 0 .4-.2.4-.4v-3c0-2.5 1.8-4.2 4.2-4.2h1.9v2.3h-1.5c-1.3 0-2.3 1-2.3 2.3v2.7c0 .2.2.4.4.4h3.3l-.8 2.3h-2.5c-.2 0-.4.2-.4.4v8.4c0 .2.2.4.4.4h5c1.3 0 2.3-1 2.3-2.3V2.8c0-1.3-1-2.3-2.3-2.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-fax"><path d="M20.3 2.8C21.8 2.8 23 4 23 5.5v13c0 1.5-1.2 2.7-2.7 2.7h-9.5c-.3.9-1.1 1.5-2 1.5H5.2c-.9 0-1.8-.6-2-1.6-1.3-.2-2.2-1.3-2.2-2.6v-13c0-1.3.9-2.4 2.2-2.7.2-.9 1-1.6 2-1.6h3.6c.9 0 1.7.6 2 1.5h2.3L14.4 1h5v1.8h.9zm1.6 15.7v-13c0-.9-.7-1.6-1.6-1.6h-.9v3.4h.7v1.2h-8V7.3h.6V3.9h-1.9v16.2h9.5c.8 0 1.6-.7 1.6-1.6zm-8.5-8.4c.5 0 .9.4.9.9s-.4.9-.9.9-.9-.4-.9-.9.4-.9.9-.9zm2.7 0c.5 0 .9.4.9.9s-.4.9-.9.9-.9-.4-.9-.9.4-.9.9-.9zm2.7 0c.5 0 .9.4.9.9s-.4.9-.9.9-.9-.4-.9-.9.4-.9.9-.9zm-5.4 2.7c.5 0 .9.4.9.9s-.4.9-.9.9-.9-.4-.9-.9.4-.9.9-.9zm2.7 0c.5 0 .9.4.9.9s-.4.9-.9.9-.9-.4-.9-.9.4-.9.9-.9zm2.7 0c.5 0 .9.4.9.9s-.4.9-.9.9-.9-.4-.9-.9.4-.9.9-.9zm-5.4 2.6c.5 0 .9.4.9.9s-.4.9-.9.9-.9-.4-.9-.9.4-.9.9-.9zm2.7 0c.5 0 .9.4.9.9s-.4.9-.9.9-.9-.4-.9-.9.4-.9.9-.9zm2.7 0c.5 0 .9.4.9.9s-.4.9-.9.9-.9-.4-.9-.9.4-.9.9-.9zm-5-11.7v3.6h4.4V2.2H15l-1.2 1.5zm-4.2.2v-.6c0-.1 0-.2-.1-.3 0-.1-.1-.2-.2-.3 0-.1-.3-.3-.6-.3H5.2c-.3 0-.5.1-.7.3-.1.2-.2.2-.2.3 0 .1-.1.2-.1.3v17.3c0 .2.1.4.2.6.2.2.4.3.7.3h3.6c.3 0 .5-.1.7-.3.1-.2.2-.4.2-.6V3.9zM3.1 20V4.1c-.6.2-.9.8-.9 1.4v13c0 .7.3 1.2.9 1.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-fax-2"><path d="M6.3 8h11.4v1.3H6.3zM6.3 11.5h7v1.3h-7z"/><path d="M.5 2.2v1.3h2.4v16.8c0 .9.7 1.7 1.6 1.7h10.1c.5 0 .9-.2 1.2-.5l4.9-5.5c.3-.3.4-.7.4-1.1V3.5h2.3V2.2H.5zm15.2 17.4v-3.4c0-.2.2-.4.3-.4h3l-3.3 3.8zm4.2-5H16c-.9 0-1.6.8-1.6 1.7v4.5H4.5c-.2 0-.3-.2-.3-.4V3.5h15.7v11.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-fax-add"><path d="M9.8 9.5V5.7h1.3v3.8H15v1.3h-3.9v3.9H9.8v-3.9H6V9.5h3.8zm13.7-7.3v1.3h-2.3v11.3c0 .4-.2.8-.4 1.1l-4.9 5.5c-.4.4-.9.6-1.3.6H4.5c-.9 0-1.6-.8-1.6-1.7V3.5H.5V2.2h23zm-3.7 12.4V3.5H4.2v16.8c0 .2.2.4.3.4h9.9v-4.5c0-.9.7-1.7 1.7-1.7h3.7v.1zm-4.1 5l3.4-3.8h-3c-.2 0-.3.2-.3.4v3.4h-.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-fax-failed"><path d="M23.5 2.2v1.3h-2.3v11.3c0 .4-.2.8-.4 1.1l-4.9 5.5c-.4.4-.9.6-1.3.6H4.5c-.9 0-1.6-.8-1.6-1.7V3.5H.5V2.2h23zm-3.7 12.4V3.5H4.2v16.8c0 .2.2.4.3.4h9.9v-4.5c0-.9.7-1.7 1.7-1.7h3.7zm-4.1 5l3.4-3.8h-3c-.2 0-.3.2-.3.4v3.4zM10.8 5c2.7 0 4.8 2.1 4.8 4.8s-2.1 4.8-4.8 4.8C8.1 14.6 6 12.5 6 9.8S8.1 5 10.8 5zm0 8.3c1.9 0 3.5-1.6 3.5-3.5 0-.7-.2-1.3-.5-1.9l-4.9 4.8c.5.4 1.2.6 1.9.6zm0-7c-1.9 0-3.5 1.6-3.5 3.5 0 .7.2 1.4.6 2l5-4.8c-.6-.4-1.3-.7-2.1-.7z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-fax-inbound"><path d="M13.7 12.2H8.8l6.4-6.3-1-.9-6.3 6.3.1-4.8H6.7l-.1 7.1 7.1-.1z"/><path d="M.5 2.2v1.3h2.4v16.8c0 .9.7 1.7 1.6 1.7h10.1c.5 0 .9-.2 1.2-.5l4.9-5.5c.3-.3.4-.7.4-1.1V3.5h2.3V2.2H.5zm15.2 17.4v-3.4c0-.2.2-.4.3-.4h3l-3.3 3.8zm4.1-5H16c-.9 0-1.6.8-1.6 1.7v4.5H4.5c-.2 0-.3-.2-.3-.4V3.5h15.7v11.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-fax-outbound"><path d="M7.5 14.1l6.3-6.4v4.9h1.3l.1-7.1-7.1.1v1.3l4.8-.1-6.3 6.3z"/><path d="M.5 2.2v1.3h2.4v16.8c0 .9.7 1.7 1.6 1.7h10.1c.5 0 .9-.2 1.2-.5l4.9-5.5c.3-.3.4-.7.4-1.1V3.5h2.3V2.2H.5zm15.2 17.4v-3.4c0-.2.2-.4.3-.4h3l-3.3 3.8zm4.2-5H16c-.9 0-1.6.8-1.6 1.7v4.5H4.5c-.2 0-.3-.2-.3-.4V3.5h15.7v11.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-fax-pending"><path d="M12.4 13.3h.1c.4 0 .6.3.6.6s-.3.7-.6.7H6.2c-.4 0-.7-.3-.7-.7 0-.3.3-.6.6-.6v-.6c0-1.2.6-2.2 1.6-2.7-.9-.5-1.5-1.6-1.5-2.7v-.7c-.3 0-.6-.3-.6-.6 0-.4.3-.7.7-.7h6.3c.4 0 .6.3.6.7 0 .4-.3.6-.6.6h-.1v.7c0 1.2-.6 2.2-1.6 2.7.9.5 1.6 1.6 1.6 2.7v.6zm-1.3 0v-.6c0-1-.8-1.8-1.8-1.8s-1.8.8-1.8 1.8v.6h3.6zm0-6.7H7.5v.7c0 1 .8 1.8 1.8 1.8s1.8-.8 1.8-1.8v-.7zm12.4-4.4v1.3h-2.3v11.3c0 .4-.2.8-.4 1.1l-4.9 5.5c-.4.4-.9.6-1.3.6H4.5c-.9 0-1.6-.8-1.6-1.7V3.5H.5V2.2h23zm-3.7 12.4V3.5H4.2v16.8c0 .2.2.4.3.4h9.9v-4.5c0-.9.7-1.7 1.7-1.7h3.7zm-4.1 5l3.4-3.8h-3c-.2 0-.3.2-.3.4v3.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-fax-scheduled"><path d="M23.5 2.2v1.3h-2.3v11.3c0 .4-.2.8-.4 1.1l-4.9 5.5c-.4.4-.9.6-1.3.6H4.5c-.9 0-1.6-.8-1.6-1.7V3.5H.5V2.2h23zm-3.7 12.4V3.5H4.2v16.8c0 .2.2.4.3.4h9.9v-4.5c0-.9.7-1.7 1.7-1.7h3.7zm-4.1 5l3.4-3.8h-3c-.2 0-.3.2-.3.4v3.4zm-4.9-5C8.1 14.6 6 12.5 6 9.8S8.1 5 10.8 5s4.8 2.1 4.8 4.8-2.1 4.8-4.8 4.8zm0-1.3c1.9 0 3.5-1.6 3.5-3.5s-1.6-3.5-3.5-3.5-3.5 1.6-3.5 3.5 1.6 3.5 3.5 3.5zm1.9-2.3l-.8 1-2.1-1.5V7.6h1.3v2.3l1.6 1.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-file"><path d="M19.6 22.7H4.4c-.6 0-1.1-.5-1.1-1.1V2.4c0-.6.5-1.1 1.1-1.1h10.3v5.6c0 .4.3.7.6.7h5.4v14.1c0 .5-.5 1-1.1 1zM16 1.8l4.2 4.4H16V1.8zM16 0H4.4C3.1 0 2 1.1 2 2.4v19.1C2 22.9 3.1 24 4.4 24h15.1c1.3 0 2.4-1.1 2.4-2.4V6.2L16 0z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-file-2"><path d="M6 17h8v1H6zM6 8h7v1H6zM6 14h8v1H6zM6 11h11.9v1H6z"/><path d="M15.1 1H4.3C3.6 1 3 1.6 3 2.3v19.4c0 .7.6 1.3 1.3 1.3h15.4c.7 0 1.3-.6 1.3-1.3V7l-5.9-6zm.7 2.6L19.2 7h-3.4V3.6zm3.9 18.1H4.3V2.3h10.2v6h5.2v13.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-file-3"><path d="M7.8 12.9h2.7c.4 0 .8-.3.8-.8 0-.4-.3-.8-.8-.8H7.8c-.4 0-.8.3-.8.8s.3.8.8.8zM16 17H7.8c-.5 0-.8.3-.8.8 0 .4.3.8.8.8H16c.4 0 .8-.3.8-.8s-.3-.8-.8-.8z"/><path d="M16 0H4.4C3.1 0 2 1.1 2 2.4v19.1C2 22.9 3.1 24 4.4 24h15.1c1.3 0 2.4-1.1 2.4-2.4V6.2L16 0zm0 1.8l4.2 4.4H16V1.8zm4.7 19.8c0 .6-.5 1.1-1.1 1.1H4.4c-.6 0-1.1-.5-1.1-1.1V2.4c0-.6.5-1.1 1.1-1.1h10.3v5.6c0 .4.3.7.6.7h5.4v14z"/><path d="M7 15c0 .4.3.8.8.8H16c.4 0 .8-.3.8-.8 0-.4-.3-.8-.8-.8H7.8c-.5 0-.8.3-.8.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-file-add"><path d="M19.648 21.501a4.973 4.973 0 1 1 0-9.812V2.594a.338.338 0 0 0-.338-.338H6.418V5.49c0 .88-.713 1.594-1.593 1.594h-2.27v14.823c0 .186.152.338.338.338H19.31a.338.338 0 0 0 .338-.338V21.5zm1.255-.385v.79c0 .88-.713 1.594-1.593 1.594H2.893c-.88 0-1.593-.713-1.593-1.593V6.236L5.489 1h13.82c.88 0 1.594.713 1.594 1.593v9.482a4.974 4.974 0 0 1 0 9.04zM5.163 3.417l-1.93 2.411h1.592a.338.338 0 0 0 .338-.338V3.417zm13.664 16.896a3.718 3.718 0 1 0 0-7.435 3.718 3.718 0 0 0 0 7.435zm-1.583-4.047l1.02.68 2.05-2.05a.628.628 0 1 1 .888.888l-2.778 2.778-1.877-1.251a.628.628 0 1 1 .697-1.045zM7.239 8.05a.628.628 0 1 1 0-1.255h7.725a.628.628 0 0 1 0 1.255H7.24zm0 2.897a.628.628 0 1 1 0-1.255h7.725a.628.628 0 0 1 0 1.255H7.24zm0 2.897a.628.628 0 1 1 0-1.255h4.345a.628.628 0 0 1 0 1.255H7.24zm0 2.897a.628.628 0 1 1 0-1.255h4.345a.628.628 0 0 1 0 1.255H7.24zm0 2.897a.628.628 0 0 1 0-1.255h4.828a.628.628 0 0 1 0 1.255H7.24z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-file-audio"><path d="M14.7 9.1c-.7.2-3.7 1.1-4.4 1.3s-1 .7-1 1.3v4.7c-.4-.2-1-.2-1.6 0-1 .3-1.7 1.2-1.4 2 .2.8 1.3 1.1 2.3.8.9-.3 1.5-1 1.5-1.7v-4c0-.3.1-.5.6-.7.4-.1 3.4-1.1 3.8-1.2.4-.1.5.1.5.3v3.2c-.4-.2-1-.2-1.6 0-1 .3-1.7 1.2-1.4 2 .2.8 1.3 1.1 2.3.8.9-.3 1.5-1 1.5-1.7V9.8c0-.6-.4-.9-1.1-.7z"/><path d="M16 0H4.4C3.1 0 2 1.1 2 2.4v19.1C2 22.9 3.1 24 4.4 24h15.1c1.3 0 2.4-1.1 2.4-2.4V6.2L16 0zm0 1.8l4.2 4.4H16V1.8zm4.7 19.8c0 .6-.5 1.1-1.1 1.1H4.4c-.6 0-1.1-.5-1.1-1.1V2.4c0-.6.5-1.1 1.1-1.1h10.3v5.6c0 .4.3.7.6.7h5.4v14z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-file-doc"><path d="M19.6 22.7H4.4c-.6 0-1.1-.5-1.1-1.1V2.4c0-.6.5-1.1 1.1-1.1h10.3v5.6c0 .4.3.7.6.7h5.4v14.1c0 .5-.5 1-1.1 1zM16 1.8l4.2 4.4H16V1.8zM16 0H4.4C3.1 0 2 1.1 2 2.4v19.1C2 22.9 3.1 24 4.4 24h15.1c1.3 0 2.4-1.1 2.4-2.4V6.2L16 0z"/><path d="M9.6 12.5c0 .4-.1.7-.2 1-.1.3-.2.5-.4.8-.2.2-.4.4-.7.5-.3.1-.6.2-.9.2H5.6v-4.9h1.7c.3 0 .7.1.9.2.3.1.5.3.7.5.2.2.4.5.5.8.1.2.2.5.2.9zm-1.1 0c0-.2 0-.5-.1-.7 0-.2-.1-.3-.2-.5-.1-.1-.2-.2-.4-.3-.2-.1-.3-.1-.5-.1h-.7V14h.7c.2 0 .4 0 .5-.1.2-.1.3-.2.4-.3.1-.1.2-.3.2-.5.1-.1.1-.4.1-.6zm6 0c0 .4-.1.7-.2 1-.1.3-.3.6-.5.8-.2.2-.4.4-.7.5-.3.1-.6.2-.9.2-.3 0-.7-.1-.9-.2-.3-.1-.5-.3-.7-.5-.2-.2-.4-.5-.5-.8-.1-.3-.2-.7-.2-1 0-.4.1-.7.2-1 .1-.3.3-.6.5-.8.2-.2.4-.4.7-.5.3-.1.6-.2.9-.2.6 0 1.2.3 1.7.7.2.2.4.5.5.8 0 .3.1.6.1 1zm-1 0c0-.2 0-.5-.1-.7 0-.2-.1-.3-.2-.5-.1-.1-.2-.2-.4-.3-.2-.1-.3-.1-.5-.1s-.4 0-.5.1c-.2.1-.3.2-.4.3-.1.1-.2.3-.2.5-.2.3-.2.5-.2.7 0 .2 0 .5.1.7.1.2.1.4.2.5.1.1.2.2.4.3.2.1.3.1.5.1s.4 0 .5-.1c.2-.1.3-.2.4-.3.1-.1.2-.3.2-.5.1-.2.2-.5.2-.7zm4.6 1.2c.1 0 .1 0 .1.1l.4.5c-.2.2-.4.4-.7.6-.3 0-.6.1-.9.1-.6 0-1.2-.2-1.6-.7-.2-.2-.3-.5-.4-.8-.1-.3-.2-.7-.1-1 0-.4.1-.7.2-1 .1-.3.3-.6.4-.8.2-.2.4-.4.7-.5.3-.1.6-.2.9-.2.3 0 .6.1.9.2.2.1.5.3.6.5l-.3.5s0 .1-.1.1h-.1-.1s-.1 0-.1-.1l-.1-.1s-.1-.1-.2-.1c-.2-.1-.3-.1-.5-.1s-.3 0-.5.1c-.1.1-.3.2-.4.3-.1.1-.2.3-.2.5-.1.2-.1.4-.1.7 0 .3 0 .5.1.7.1.2.1.4.2.5.1.1.2.2.4.3.1.1.3.1.5.1h.3c.1 0 .1 0 .2-.1.1 0 .1-.1.2-.1s.1-.1.2-.1c-.1-.1-.1-.1.1-.1-.1 0-.1 0 0 0z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-file-dollar"><path d="M9.2 16.3c-1.3-.2-1.7-1.2-1.7-1.2l.9-.4s.2.4.8.6v-2.6h-.1c-1.4-.5-1.7-1.6-1.5-2.3.2-.8.7-1.5 1.6-1.7V8h1v.7c1.1.2 1.5 1.1 1.5 1.1l-.9.4s-.2-.3-.6-.5V12c1.7.8 1.6 2.1 1.5 2.6 0 .9-.7 1.6-1.5 1.8v.7h-1v-.8zm1-1c.3-.1.6-.5.6-.8.1-.4-.1-.9-.6-1.2v2zm-1-5.6c-.4.2-.6.5-.7.8-.1.4.1.9.7 1.1V9.7zM14 0l5.9 6.2v15.4c0 1.3-1.1 2.4-2.4 2.4H2.4C1.1 24 0 22.9 0 21.5V2.4C0 1.1 1.1 0 2.4 0H14zm3.6 22.7c.6 0 1.1-.5 1.1-1V7.6h-5.4c-.3 0-.6-.3-.6-.7V1.3H2.4c-.6 0-1.1.5-1.1 1.1v19.2c0 .6.5 1.1 1.1 1.1h15.2zM14 1.8v4.4h4.2L14 1.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-file-edit"><path d="M20.1 15.7l2.8 2.8-4.5 4.5-3.8 1 1-3.8 4.5-4.5zm-3.7 6l-.2.7.7-.2-.5-.5zm1.7 0l3.2-3.2-1.2-1.2-3.2 3.2 1.2 1.2zm-14.5.4c0 .2.2.4.4.4h8.8v1.1H4.1c-.9 0-1.6-.7-1.6-1.6V2.6c0-.9.7-1.6 1.6-1.6h11l6.2 6.2v6.6h-1.1V8h-5.9V2.1H4.1c-.2 0-.4.2-.4.4-.1.1-.1 19.6-.1 19.6zM15.4 3v3.9h3.9L15.4 3zM6 8.8V7.7h5.9v1.1H6zm0 2.9v-1.1h11.8v1.1H6zm0 2.9v-1.1h6.9v1.1H6zm0 2.9v-1.1h6.9v1.1H6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-file-gear"><path d="M4.1 22.1c0 .2.2.4.4.4h9.8v1.1H4.6c-.9.1-1.6-.6-1.6-1.5V2.6C3 1.7 3.7 1 4.6 1h11l6.2 6.2v5.6h-1.1V8h-5.9V2.1H4.6c-.2 0-.4.2-.4.4v19.6h-.1zM15.9 3v3.9h3.9L15.9 3zM6.5 8.8V7.7h5.9v1.1H6.5zm0 2.9v-1.1h11.8v1.1H6.5zm0 2.9v-1.1h6.9v1.1H6.5zm0 2.9v-1.1h6.9v1.1H6.5zM22.6 19l1.2 1.1-1.2 2.2-1.8-.6-.2 1.8h-2.5l-.2-1.7-1.7.7-1.3-2.1 1.3-1.2-1.4-1.1 1.4-2.2 1.8.6.2-1.8h2.5l.2 1.7 1.7-.7 1.3 2.1-1.3 1.2zm-.5 1.7l.2-.4-.7-.6c-.5-.5-.5-1.3 0-1.7l.7-.6-.2-.4-.9.3c-.7.3-1.4-.2-1.4-.9l-.1-.9h-.4l-.1 1c-.1.8-.8 1.2-1.4 1l-1.1-.3-.2.4.7.6c.5.5.5 1.3 0 1.7l-.7.6.2.4.9-.3c.7-.3 1.4.2 1.4.9l.1.9h.4l.1-1c.1-.8.8-1.2 1.4-1 .1 0 1.1.3 1.1.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-file-pdf"><path d="M19.6 22.7H4.4c-.6 0-1.1-.5-1.1-1.1V2.4c0-.6.5-1.1 1.1-1.1h10.3v5.6c0 .4.3.7.6.7h5.4v14.1c0 .5-.5 1-1.1 1zM16 1.8l4.2 4.4H16V1.8zM16 0H4.4C3.1 0 2 1.1 2 2.4v19.1C2 22.9 3.1 24 4.4 24h15.1c1.3 0 2.4-1.1 2.4-2.4V6.2L16 0z"/><path d="M16.4 15.2c-.7 0-1.8-.2-2.7-.7-1.6.2-2.7.4-3.7.8-.1 0-.1 0-.2.1-1.1 2-2 2.9-2.7 2.9-.2 0-.3 0-.4-.1l-.5-.3v-.1c-.1-.2-.1-.3-.1-.5.1-.5.6-1.3 1.7-2 .2-.1.5-.3.8-.5.3-.5.6-1 .9-1.7.5-.9.7-1.9 1-2.7-.4-1.1-.6-1.8-.2-3.1.1-.4.4-.8.7-.8h.2c.2 0 .4.1.5.2.6.7.4 2.2 0 3.4v.1c.4 1 .9 1.9 1.5 2.4.3.2.5.4.8.6.5 0 .8-.1 1.2-.1 1.1 0 1.8.2 2.1.7.1.2.1.4.1.6-.1.1-.2.4-.4.6-.1.1-.3.2-.6.2zm-5.1-6.9v-.2c.1-.5.1-.8 0-.9v-.1l-.1-.1s0 .1-.1.1c-.2.6-.2 1.2 0 2.1.1-.4.2-.6.2-.9zm-3.4 7.6c-.6.6-1.1 1.2-1.2 1.5.6-.1 1.1-.7 1.6-1.8-.1.1-.3.2-.4.3zm7.2-2.1h-.2v.1c.6.3 1.3.5 1.7.5h.3v-.1s-.1 0-.1-.1c-.1-.1-.4-.4-1.7-.4zm-4.8-.2c-.2.4-.4.7-.5 1h.2c1.2-.5 2.3-.8 3-.8-.1-.1-.3-.2-.4-.3-.5-.6-1-1.3-1.4-2.2-.1.7-.5 1.4-.9 2.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-file-plus"><path d="M9.2 9.3h2.3v1.3H9.2v2.3H7.9v-2.3H5.6V9.3h2.3V6.9h1.3v2.4zm5-7.7H3.9v-.1c-.2 0-.4.3-.4.5v20c0 .2.2.3.4.3h16c.2 0 .3-.2.3-.3V7.6h-6v-6zm1.4 1.1v3.7h3.7l-3.7-3.7zM20 23.6H4c-1 0-1.7-.6-1.7-1.6V2C2.3 1 3 .3 3.9.3h11.3l6.4 6.4V22c0 .9-.7 1.6-1.6 1.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-file-ppt"><path d="M19.6 22.7H4.4c-.6 0-1.1-.5-1.1-1.1V2.4c0-.6.5-1.1 1.1-1.1h10.3v5.6c0 .4.3.7.6.7h5.4v14.1c0 .5-.5 1-1.1 1zM16 1.8l4.2 4.4H16V1.8zM16 0H4.4C3.1 0 2 1.1 2 2.4v19.1C2 22.9 3.1 24 4.4 24h15.1c1.3 0 2.4-1.1 2.4-2.4V6.2L16 0z"/><path d="M7.7 10c.3 0 .6 0 .9.1l.6.3c.2.1.3.3.4.5.1.2.1.4.1.6 0 .2 0 .5-.1.7-.1.2-.2.4-.4.5-.2.3-.4.4-.6.5-.3.1-.6.1-.9.1h-.6V15H6v-5h1.7zm0 2.5c.3 0 .5-.1.6-.2.1-.1.2-.3.2-.6 0-.1 0-.2-.1-.3-.1-.2-.2-.3-.4-.4-.1 0-.2-.1-.4-.1h-.5v1.6h.6zM12 10c.3 0 .6 0 .9.1l.6.3c.2.1.3.3.4.5.1.2.1.4.1.6 0 .2 0 .5-.1.7-.1.2-.2.4-.4.5-.2.1-.4.3-.6.3-.3.1-.6.1-.9.1h-.6V15h-1.1v-5H12zm0 2.5c.3 0 .5-.1.6-.2.1-.1.2-.3.2-.6 0-.1 0-.2-.1-.3-.1-.2-.2-.3-.4-.4-.1 0-.2-.1-.4-.1h-.6v1.6h.7zm6-1.6h-1.4V15h-1.1v-4.1h-1.4V10H18v.9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-file-search"><path d="M3.1 22.1c0 .2.2.4.4.4h10.8v1.1H3.6c-.9.1-1.6-.6-1.6-1.5V2.6C2 1.7 2.7 1 3.6 1h11l6.2 6.2v6.6h-1.1V8h-5.9V2.1H3.6c-.2 0-.4.2-.4.4l-.1 19.6zM14.9 3v3.9h3.9L14.9 3zM5.5 8.8V7.7h5.9v1.1H5.5zm0 2.9v-1.1h11.8v1.1H5.5zm0 2.9v-1.1h6.9v1.1H5.5zm0 2.9v-1.1h6.9v1.1H5.5zm17.1 4.3c.3.2.3.7 0 1l-.3.3c-.3.3-.7.3-1 0l-2.5-2.4c-.5.3-1.1.5-1.7.5-1.9 0-3.4-1.5-3.4-3.3 0-1.9 1.5-3.3 3.4-3.3s3.4 1.5 3.4 3.3c0 .6-.2 1.1-.5 1.6l2.6 2.3zm-7.6-4c0 1.1.9 2.1 2.2 2.1 1.2 0 2.2-1 2.2-2.1s-1-2.1-2.2-2.1c-1.2 0-2.2 1-2.2 2.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-file-voicemail"><path d="M16 21.7c-.6-.7-1-1.7-1-2.7 0-2.2 1.8-4 4-4s4 1.8 4 4c0 2.1-1.6 3.8-3.7 4H9.4c-2.1-.2-3.7-1.9-3.7-4 0-2.2 1.8-4 4-4s4 1.8 4 4c0 1-.4 2-1 2.7H16zm-12.9.4c0 .2.2.4.4.4h1.8v1.1H3.6c-.9.1-1.6-.6-1.6-1.5V2.6C2 1.7 2.7 1 3.6 1h11l6.2 6.2v6.6h-1.1V8h-5.9V2.1H3.6c-.2 0-.4.2-.4.4l-.1 19.6zM14.9 3v3.9h3.9L14.9 3zM5.5 7.4V6.3h5.9v1.1H5.5zm0 3V9.3h11.8v1.1H5.5zm0 2.8V12h6.9v1.1l-6.9.1zM19 21.7c1.5 0 2.7-1.2 2.7-2.7s-1.2-2.7-2.7-2.7-2.7 1.2-2.7 2.7 1.2 2.7 2.7 2.7zm-9.3 0c1.5 0 2.7-1.2 2.7-2.7s-1.2-2.7-2.7-2.7S7 17.5 7 19s1.2 2.7 2.7 2.7z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-file-xls"><path d="M19.6 22.7H4.4c-.6 0-1.1-.5-1.1-1.1V2.4c0-.6.5-1.1 1.1-1.1h10.3v5.6c0 .4.3.7.6.7h5.4v14.1c0 .5-.5 1-1.1 1zM16 1.8l4.2 4.4H16V1.8zM16 0H4.4C3.1 0 2 1.1 2 2.4v19.1C2 22.9 3.1 24 4.4 24h15.1c1.3 0 2.4-1.1 2.4-2.4V6.2L16 0z"/><path d="M10.6 14.9H9.5c-.1 0-.1 0-.2-.1l-.1-.1-.9-1.7s0 .1-.1.1l-.9 1.6-.1.1s-.1.1-.2.1H6l1.5-2.5L6 10h1.3l.1.1.9 1.6v-.2l.8-1.5.1-.1H10.4L9 12.4l1.6 2.5zm3.6-.9v.9h-2.8V10h1.1v4h1.7zm3.5-3l-.1.1H17.3c-.1 0-.1-.1-.2-.1s-.2-.1-.2-.1h-.3c-.2 0-.4 0-.5.1-.1.1-.2.2-.2.4 0 .1 0 .2.1.2l.2.2c.1 0 .2.1.3.1.1 0 .3.1.4.1s.3.1.4.2c.1.1.2.1.3.2.1.1.2.2.2.4s.1.3.1.5 0 .4-.1.6c-.1.2-.2.4-.3.5-.2.2-.3.3-.5.3-.2.3-.4.3-.7.3h-.4c-.3-.1-.6-.2-.8-.3l-.3-.3.3-.5.1-.1h.1c.1 0 .1 0 .2.1.1 0 .1.1.2.1.1.1.2.1.3.1.1 0 .2.1.4.1s.4 0 .5-.1c.1-.1.2-.2.2-.4 0-.1 0-.2-.1-.3l-.2-.2c-.3-.2-.4-.2-.5-.2-.1 0-.3-.1-.4-.1-.1 0-.3-.1-.4-.2-.1-.1-.2-.1-.3-.3-.1-.1-.2-.2-.2-.4-.1-.2-.1-.4-.1-.6 0-.4.2-.7.4-1 .1-.1.3-.2.5-.3.2-.1.4-.1.7-.1h.4c.3 0 .5.1.7.3.1.1.2.1.3.2l-.2.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-files"><path d="M21.2 6.4c.1.1.2.3.2.4v10.3c0 1.3-1 2.3-2.3 2.3H8.4c-1.3 0-2.3-1-2.3-2.3V3.3C6.1 2 7.1 1 8.4 1h7.4c.2 0 .3.1.5.2l4.9 5.2zm-2.1 11.7c.6 0 1-.4 1-1v-9H16c-.9 0-1.6-.7-1.6-1.7V2.3H8.5c-.6 0-1 .4-1 1v13.8c0 .6.4 1 1 1h10.6zm.7-11.3l-4.2-4.4v4c0 .2.2.3.4.3h3.8v.1z"/><path d="M17.2 14.3c.4 0 .6.3.6.6 0 .4-.3.7-.6.7h-6.9c-.4 0-.7-.3-.7-.7 0-.4.3-.6.7-.6h6.9zm0-2.7c.4 0 .6.3.6.6 0 .4-.3.7-.6.7h-6.9c-.4 0-.7-.3-.7-.7 0-.4.3-.6.7-.6h6.9zm-.5 8.5c.4 0 .6.3.6.6 0 1.2-1 2.1-2.1 2.1H4.8c-1.3 0-2.3-1-2.3-2.3v-14c0-1.2 1-2.1 2.1-2.1.4 0 .7.3.7.7 0 .4-.3.7-.7.7-.5 0-.8.4-.8.8v14c0 .6.4 1 1 1h10.4c.5 0 .8-.4.8-.8s.3-.7.7-.7zm-6.5-9.8c-.4 0-.7-.3-.7-.7.1-.3.4-.6.7-.6h2.2c.4 0 .7.3.7.7 0 .4-.3.7-.7.7h-2.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-filter"><path d="M14.1 17.3V11c0-.2.1-.3.2-.5l7.1-6.8c.1-.1.1-.2.1-.3 0-.2-.2-.4-.4-.4H4c-.1 0-.2 0-.3.1s-.1.4 0 .5l6.9 6.8c.1.1.2.3.2.5v9.5l3.3-3.1zm1.3-6v6.2c0 .2-.1.3-.2.5l-4.6 4.6c-.4.4-1.1.1-1.1-.5V11.3L2.8 4.7c-.7-.7-.7-1.8 0-2.4.3-.3.7-.5 1.2-.5h17.1c.9 0 1.7.7 1.7 1.7 0 .5-.2.9-.5 1.2l-6.9 6.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-flash"><path d="M10.1 10.4l-4.1.4L9.5 1h8.4l-4.2 5.9h3.4L6.5 23.1l3.6-12.7zm.3-8.1l-2.5 7 3.9-.4-1.8 6.5 4.6-7.1h-3.4l4.2-5.8h-5v-.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-flash-2"><path d="M5 13.8L18.8 0l-3.5 10H20L5.8 23.8l3.8-10H5zm3.1-1.3h3.4l-2.4 6.3 7.8-7.6h-3.4l2.3-6.3-7.7 7.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-flow"><path d="M4.7 16.2h.8c.9 0 1.6.7 1.6 1.7v2.5c0 .9-.7 1.7-1.6 1.7h-3C1.7 22 1 21.3 1 20.3v-2.5c0-.9.7-1.7 1.6-1.7h.8v-2.4C3.4 12.2 4.6 11 6 11h5.3V8.3H10c-.9 0-1.6-.7-1.6-1.7v-3c0-.9.7-1.6 1.6-1.6h4c.9 0 1.6.7 1.6 1.7v3c0 .9-.7 1.7-1.6 1.7h-1.3v2.8H18c1.4 0 2.6 1.2 2.6 2.7v2.4h.8c.9 0 1.6.7 1.6 1.7v2.5c0 .9-.7 1.7-1.6 1.7h-3c-.9 0-1.6-.7-1.6-1.7V18c0-.9.7-1.7 1.6-1.7h.8v-2.4c0-.8-.6-1.4-1.3-1.4h-5.3v3.8h.8c.9 0 1.6.7 1.6 1.7v2.5c0 .9-.7 1.7-1.6 1.7h-3c-.9 0-1.6-.7-1.6-1.7V18c0-.9.7-1.7 1.6-1.7h.8v-3.8H6.1c-.7 0-1.3.6-1.3 1.4l-.1 2.3zM14 7.1c.2 0 .3-.2.3-.4v-3c0-.2-.2-.4-.3-.4h-4c-.2 0-.3.2-.3.4v3c0 .2.2.4.3.4h4zm-.5 13.6c.2 0 .3-.2.3-.4v-2.5c0-.2-.2-.4-.3-.4h-3c-.2 0-.3.2-.3.4v2.5c0 .2.2.4.3.4h3zm7.9 0c.2 0 .3-.2.3-.4v-2.5c0-.2-.2-.4-.3-.4h-3c-.2 0-.3.2-.3.4v2.5c0 .2.2.4.3.4h3zm-15.8 0c.2 0 .3-.2.3-.4v-2.5c0-.2-.2-.4-.3-.4h-3c-.2 0-.3.2-.3.4v2.5c0 .2.2.4.3.4h3z"/></symbol><symbol viewBox="0 0 25 24" id="Vlt-icon-fork"><path d="M22.3 7c0-1.5-1.2-2.7-2.7-2.7S16.9 5.5 16.9 7c0 1.3.9 2.4 2.1 2.6v.4c0 3.1-1.6 4.2-5.1 4.4h-2.1c-1.5 0-2.5.3-3.3.9V5.6c1.2-.3 2.1-1.3 2.1-2.6C10.6 1.5 9.3.3 7.8.3S5.1 1.5 5.1 3c0 1.2.9 2.3 2.1 2.6v12.8c-1.1.3-1.9 1.4-1.9 2.6 0 1.5 1.2 2.7 2.7 2.7s2.7-1.2 2.7-2.7c0-1.3-1-2.4-2.2-2.6h.1v-.3c0-.2.1-.5.2-.8.4-1 1.3-1.6 3.1-1.6H14c4-.2 6.3-1.8 6.3-5.7v-.4c1.1-.3 2-1.3 2-2.6zM9.4 21c0 .8-.6 1.4-1.4 1.4s-1.4-.6-1.4-1.4.6-1.4 1.4-1.4 1.4.6 1.4 1.4zM7.9 4.3c-.8 0-1.5-.5-1.5-1.3s.8-1.4 1.5-1.4 1.4.5 1.4 1.3-.6 1.4-1.4 1.4zm11.7 4.1c-.8 0-1.4-.6-1.4-1.4s.6-1.4 1.4-1.4S21 6.2 21 7s-.6 1.4-1.4 1.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-gallery"><path d="M2.7 18L1.4 6.3c-.1-.9.5-1.7 1.4-1.8L17 2.9c.8-.1 1.5.4 1.7 1.1.1.4.5.6.9.4.4-.1.6-.4.5-.8-.4-1.4-1.8-2.2-3.2-2.1L2.6 3.2C1 3.4-.2 4.9 0 6.5l1.4 11.6c.1.6.3 1.1.7 1.6.2.3.7.3.9.1s.3-.7.1-1c-.2-.2-.3-.5-.4-.8"/><path d="M22.6 11.2c-1.6 0-3 .8-4.9 2.4-.6-1.4-1.9-2.3-3.4-2.3-1.6 0-3 1-3.5 2.5-1.9-.8-3.7-.8-5.1-.3V7.9c0-.7.6-1.3 1.3-1.3h14.4c.7 0 1.3.6 1.3 1.3l-.1 3.3zm-10.5 3.2c.4-1.2 1.6-1.9 2.9-1.6.8.2 1.5.9 1.6 1.8l-.3.3c-.6.5-1 1-1.4 1.3-1-.8-1.9-1.4-2.8-1.8zm10.5 5.3c0 .7-.6 1.3-1.3 1.3H7c-.7 0-1.3-.6-1.3-1.3V15c.2-.1.3-.2.5-.2 1.9-.7 4.5-.2 7.6 2.3-1 .9-1.5 1.1-2.1 1.1-.4 0-.7.3-.7.7 0 .4.3.7.7.7 1.4 0 2-.4 5.5-3.7 2.4-2.3 4-3.3 5.4-3.3v7.1zM21.3 5.3H7c-1.5 0-2.7 1.2-2.7 2.6v11.7c0 1.5 1.2 2.6 2.7 2.6h14.4c1.5 0 2.7-1.2 2.7-2.6V7.9c-.1-1.4-1.3-2.6-2.8-2.6z"/><path d="M10.2 9.5c-.3-.2-.7-.2-1 .1-.2.3-.2.7.1.9l1 .9c.3.2.7.2 1-.1.2-.3.2-.7-.1-.9 0-.1-1-.9-1-.9zm4.2-1.8c-.4 0-.7.3-.7.7v1.2c0 .4.3.7.7.7.4 0 .7-.3.7-.7V8.4c0-.4-.3-.7-.7-.7m4.1 1.8l-.9.9c-.3.3-.3.7 0 1 .3.3.7.3 1 0l.9-.9c.3-.3.3-.7 0-1-.3-.2-.7-.3-1 0"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-gear"><path d="M14 1H9.8c-.6 0-1.1.5-1.2 1l-.4 2.4-1.2.7-2.2-.9c-.5-.2-1.2 0-1.5.5L1.2 8.3c-.3.5-.2 1.2.3 1.6l2 1.4v1.3l-2 1.5c-.5.4-.6 1.1-.3 1.6l2.1 3.5c.3.5.9.7 1.5.5l2.3-.9 1.2.7.5 2.5c.1.6.6 1 1.2 1h4.2c.6 0 1.1-.4 1.2-1l.4-2.4 1.2-.7 2.2.9c.6.2 1.2 0 1.5-.5l2.1-3.5c.3-.5.2-1.2-.3-1.6l-2-1.6-.1-1.2 2-1.5c.5-.4.6-1.1.3-1.6l-2.2-3.5c-.3-.6-.9-.8-1.5-.6l-2.2.9-1.2-.7-.4-2.4c-.1-.6-.6-1-1.2-1m0 1.2l.5 3 2.2 1.2 2.8-1.1 2.2 3.5-2.7 2 .3 2.4 2.4 1.9-2.1 3.5-2.8-1.1-2.2 1.2-.5 3H10l-.6-3-2.2-1.2-2.8 1.1-2.1-3.5 2.4-1.9v-2.5L2.2 8.9l2.2-3.6 2.7 1.1 2.3-1.2.5-3H14zM12 8c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm0 1.3c1.5 0 2.7 1.2 2.7 2.7s-1.2 2.7-2.7 2.7-2.7-1.2-2.7-2.7 1.2-2.7 2.7-2.7z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-github"><path d="M12.1 2.1C6.5 2.1 1.9 6.7 1.9 12.3c0 4.5 2.9 8.4 7 9.7.5.1.7-.2.7-.5v-1.9c-2.8.6-3.4-1.2-3.4-1.2C5.7 17.3 5 17 5 17c-.9-.6.1-.6.1-.6 1 .1 1.6 1.1 1.6 1.1.9 1.6 2.4 1.1 3 .8.1-.7.4-1.1.6-1.4-2.3-.3-4.7-1.1-4.7-5.1 0-1.1.4-2 1.1-2.7-.1-.3-.5-1.3.1-2.8 0 0 .9-.3 2.8 1 .8-.2 1.7-.3 2.6-.3.9 0 1.7.1 2.6.3 2-1.3 2.8-1 2.8-1 .6 1.4.2 2.5.1 2.7.7.7 1.1 1.6 1.1 2.7 0 3.9-2.4 4.8-4.7 5.1.4.3.7.9.7 1.9v2.8c0 .3.2.6.7.5 4.1-1.4 7-5.2 7-9.7-.1-5.6-4.7-10.2-10.4-10.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-grid"><path d="M2 11.4h9.3V2.6H2.5c-.3 0-.5.2-.5.4v8.4zm0 1.2V21c0 .2.2.3.4.3h8.9v-8.6L2 12.6zm19.8 1.6V9.6h-9.1v4.6h9.1zm0 1.4h-9.1v5.7h8.8c.2 0 .3-.2.3-.3v-5.4zm0-7.3V3c0-.2-.2-.4-.3-.4h-8.8v5.8l9.1-.1zm-.3 14.3h-19c-.9 0-1.6-.7-1.6-1.7V3c0-.9.7-1.6 1.6-1.6h19c.9 0 1.7.7 1.7 1.6v18c-.1.9-.8 1.6-1.7 1.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-grid-two"><path d="M21.2 2.7H2.7v18.5h18.4V2.7zm.1 19.8H2.6c-.6 0-1.1-.5-1.1-1.1V2.6c0-.6.5-1.1 1.1-1.1h18.8c.6 0 1.1.5 1.1 1.1v18.9c-.1.5-.6 1-1.2 1zM5.1 5.1h5.4v13.8H5.1V5.1zm6.5-1.2H3.9v16.3h7.7V3.9zm1.9 1.2h5.4v13.8h-5.4V5.1zM20 3.9h-7.7v16.3H20V3.9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-group"><path d="M3.2 8.1v-.6C3.1 5.9 3.9 5 6 5c.4 0 .7.3.7.7 0 .4-.3.6-.7.6-1.4 0-1.6.3-1.6 1.1v.7c0 .2 0 .4.1.5.1.4-.1.7-.5.8l.1.7c.3 0 .6.3.6.6 0 .6.3 1.2.8 1.6.2.2.2.4.2.6l-.2 1c-.1.2-.2.4-.5.5l-2.1.5c-.6.2-1.1.6-1.3 1.2h1.2c.4 0 .6.3.6.7 0 .4-.3.7-.7.7H.8c-.4 0-.6-.3-.6-.7 0-1.5 1-2.8 2.4-3.1l1.7-.4.1-.3c-.5-.5-.8-1.1-.9-1.7-.4-.2-.6-.5-.7-.9l-.1-1c0-.5.2-.9.5-1.1v-.2zM15 15.4l2.6.7c1.9.5 3.3 2.2 3.3 4.2 0 .4-.3.7-.7.7H3.7c-.4 0-.7-.3-.7-.7 0-2 1.4-3.8 3.3-4.2l2.7-.7.2-.7c-.7-.6-1.2-1.5-1.3-2.5-.5-.2-.9-.6-.9-1.1l-.2-1.5c-.1-.6.2-1.1.7-1.4V8v-.2c0-.4-.1-.7-.1-.9 0-2 1-3.1 3.7-3.2.8-.5 1.7-.7 2.8-.7 1.3 0 2.4.5 3 1.4.6 1 .6 1.9-.1 2.6l-.2.2-.1 1.1c.5.3.7.8.7 1.4l-.2 1.4c0 .5-.4.9-.8 1.1-.2 1-.7 1.9-1.3 2.7l.1.5zm2.3 2l-3-.7c-.2-.1-.4-.2-.5-.5l-.3-1.4c-.1-.2 0-.5.2-.6.7-.6 1.2-1.6 1.2-2.6.1-.4.4-.6.7-.6.1 0 .1 0 .1-.1l.2-1.5s0-.1-.1-.1c-.4 0-.7-.3-.6-.7l.1-1.8c0-.2.1-.3.2-.4l.3-.3c.2-.3.2-.5-.1-1s-.9-.8-1.9-.8c-.9 0-1.6.1-2.2.6 0 .1-.2.1-.3.1-2.1 0-2.6.5-2.6 1.9 0 .1 0 .4.1.8v.2c0 .3.1.6.1.7 0 .4-.3.7-.6.7h-.2s-.1 0-.1.1l.2 1.5s0 .1.1.1h.1c.3 0 .6.3.6.6.1.9.5 1.9 1.2 2.5.2.2.2.4.2.6l-.4 1.4c-.1.2-.2.4-.5.5l-3 .7c-1.1.3-2 1.2-2.2 2.3h15.1c-.1-1-1-1.9-2.1-2.2zm4.1-3.5c1.4.4 2.4 1.7 2.4 3.1 0 .4-.3.7-.6.7h-1.8c-.4 0-.7-.3-.7-.7s.3-.7.7-.7h1.1c-.2-.6-.7-1.1-1.3-1.2l-2.2-.4c-.2-.1-.4-.2-.5-.5l-.2-.9c-.1-.4.2-.8.5-.8.4-.1.8-.1 1.2-.3h.1s-.1-.1-.1-.2c-.4-.8-.6-1.8-.6-3.1 0-1.1-.1-1.8-.4-2.2-.1-.1-.1-.2-.2-.2h-.2c-.4 0-.6-.3-.6-.7 0-.4.3-.7.6-.7h.2c1.2 0 1.9 1.1 1.9 3.7 0 1.1.2 1.9.4 2.5.3.5.4.7.5.7.4.3.3.9-.1 1.1-.2.1-.6.3-1.1.4-.1 0-.2.1-.3.1l1.3.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-group-2"><path d="M20.5 15.7c2 .5 3.4 2.3 3.4 4.3v1c0 .4-.3.7-.6.7h-2.9c-.4 0-.6-.3-.6-.7 0-.4.3-.6.6-.6h2.2V20c0-1.4-1-2.7-2.5-3.1l-2-.8c-.2-.1-.3-.2-.4-.4l-.5-1.3c-.2-.4.1-.8.5-.9.7-.1 1.2-.2 1.7-.4.2-.1.3-.1.4-.1l-.3-.6c-.5-1.1-.8-2.5-.8-4.4 0-3-.5-3.8-1.2-3.8h-.4c-.2 0-.3-.1-.5-.2-.2-.2-.4-.3-.7-.4-.1 0-.2-.1-.4-.2-.3-.1-.5-.4-.4-.8s.5-.4.8-.4c.2 0 .4.2.6.2.3.1.6.3.9.5h.1C19 2.9 20 4.4 20 8c0 1.7.3 2.9.7 3.8.2.5.4.7.5.8.3.3.3.8 0 1-.2.2-.7.4-1.4.7-.3.1-.7.2-1.1.3l.1.3 1.7.8zm-5.4 0c2 .5 3.4 2.3 3.4 4.3v1c0 .4-.3.6-.6.6H.9c-.4 0-.7-.3-.7-.6v-1c0-2 1.4-3.8 3.4-4.3l2.6-.7.2-.7c-.7-.7-1.1-1.6-1.3-2.6-.5-.2-.9-.6-.9-1.1L4 9.1c-.1-.6.2-1.2.7-1.4v-.2-.3c0-.4-.1-.7-.1-.9 0-2.1 1-3.2 3.8-3.2.9-.6 1.8-.7 2.9-.7 1.4 0 2.4.5 3 1.4.6 1 .6 1.9-.1 2.7l-.2.2v1c.5.3.8.8.7 1.4l-.2 1.5c-.1.5-.4.9-.8 1.1-.2 1-.7 2-1.4 2.7l.2.6 2.6.7zm2.1 4.3c0-1.4-1-2.7-2.4-3l-3-.8c-.2-.1-.4-.2-.5-.5l-.3-1.4c-.1-.2 0-.5.2-.6.7-.6 1.2-1.6 1.3-2.6 0-.3.3-.6.6-.6.1 0 .1 0 .1-.1l.2-1.5c0-.1 0-.1-.1-.1-.4 0-.7-.3-.6-.7l.1-1.8c0-.2.1-.3.2-.4l.4-.4c.3-.3.3-.6-.1-1-.3-.5-1-.8-1.9-.8-1 0-1.6.1-2.3.6-.2 0-.4.1-.5.1-2.2 0-2.7.5-2.7 1.9 0 .1 0 .4.1.8v.2c0 .3.1.6.1.7 0 .4-.3.7-.6.7h-.1c-.1 0-.1 0-.1.1l.2 1.5s0 .1.1.1h.1c.3 0 .6.3.6.6.1 1 .6 2 1.3 2.6.2.2.2.4.2.6l-.4 1.4c-.1.2-.2.4-.5.5l-3 .8c-1.4.3-2.4 1.6-2.4 3v.4h15.7V20z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-group-3"><path d="M14.8 21.8c.2 0 .3-.1.3-.3v-9c0-1.7-1.4-3.2-3.2-3.2-1.7 0-3.2 1.4-3.2 3.2v9c0 .2.1.3.3.3h5.8zm0 1.2H9.2c-.9 0-1.6-.7-1.6-1.6v-9C7.6 10 9.6 8 12 8s4.4 2 4.4 4.4v9c0 .9-.7 1.6-1.6 1.6zm2.8-11.3c-.3 0-.6-.3-.6-.6s.3-.6.6-.6h.5c2.4 0 4.4 2 4.4 4.4v6.6c0 .9-.7 1.6-1.6 1.6h-3.3c-.3 0-.6-.3-.6-.6s.3-.6.6-.6h3.3c.2 0 .3-.1.3-.3V15c0-1.7-1.4-3.2-3.2-3.2l-.4-.1zM6.3 21.8c.4 0 .7.2.7.6 0 .3-.3.6-.7.6H3.1c-.9 0-1.6-.7-1.6-1.6v-6.6c0-2.4 2-4.4 4.4-4.4h.5c.3 0 .6.3.6.6s-.3.6-.6.6h-.5c-1.7 0-3.2 1.4-3.2 3.2v6.6c0 .2.1.3.3.3.1.1 3.3.1 3.3.1zM12 7.9c-1.9 0-3.4-1.5-3.4-3.4 0-2 1.5-3.5 3.4-3.5s3.4 1.5 3.4 3.4-1.5 3.5-3.4 3.5zm0-1.2c1.2 0 2.2-1 2.2-2.2 0-1.2-1-2.2-2.2-2.2s-2.2 1-2.2 2.2c0 1.2 1 2.2 2.2 2.2zm6.1 3.1c-1.6 0-3-1.3-3-3 0-1.6 1.3-3 3-3 1.6 0 3 1.3 3 3 0 1.6-1.3 3-3 3zm0-1.2c1 0 1.7-.8 1.7-1.7s-.8-1.7-1.7-1.7-1.7.8-1.7 1.7.8 1.7 1.7 1.7zM5.9 9.8c-1.6 0-3-1.3-3-3 0-1.6 1.3-3 3-3 1.6 0 3 1.3 3 3-.1 1.6-1.4 3-3 3zm0-1.2c1 0 1.7-.8 1.7-1.7s-.8-1.8-1.7-1.8-1.8.7-1.8 1.7.8 1.8 1.8 1.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-group-4"><path d="M23.1 17.4h.9V21c0 .9-.7 1.6-1.6 1.6H1.6C.7 22.6 0 21.9 0 21v-3.6h.9V3.7c0-1.2 1-2.2 2.2-2.2H21c1.2 0 2.2 1 2.2 2.2v13.7h-.1zm-.5 3.6v-2.3H1.4V21c0 .1.1.2.2.2h20.9c0 .1.1 0 .1-.2zM2.2 3.7v13.8h19.5V3.7c0-.5-.4-.8-.8-.8H3.1c-.5 0-.9.3-.9.8zm6.6 9.7c0-1.8 1.5-3.3 3.3-3.3s3.3 1.5 3.3 3.3v1.1c0 .4-.3.7-.7.7s-.7-.3-.7-.7v-1.1c0-1.1-.9-1.9-1.9-1.9s-1.9.9-1.9 1.9v1.1c0 .4-.3.7-.7.7s-.7-.3-.7-.7v-1.1zm8.8-2.2c1.5 0 2.8 1.2 2.8 2.8v.2c0 .4-.3.7-.7.7s-.7-.3-.7-.7V14c0-.8-.6-1.4-1.4-1.4h-.9c-.4 0-.7-.3-.7-.7s.3-.7.7-.7h.9zm-10.4 0c.4 0 .7.3.7.7s-.3.7-.7.7h-.9c-.8 0-1.4.6-1.4 1.4v.2c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7V14c0-1.5 1.2-2.8 2.8-2.8h.9zm12.3-3c0 1.2-1 2.2-2.2 2.2s-2.2-1-2.2-2.2S16 6 17.3 6c1.2 0 2.2 1 2.2 2.2zM6.8 6C8 6 9 7 9 8.2s-1 2.2-2.2 2.2-2.2-1-2.2-2.2C4.6 7 5.6 6 6.8 6zm5.3 3.4c-1.2 0-2.2-1-2.2-2.2s1-2.2 2.2-2.2 2.2 1 2.2 2.2-1 2.2-2.2 2.2zm-5.3-.3c.5 0 .9-.4.9-.9s-.4-.9-.9-.9-.9.4-.9.9.4.9.9.9zm5.3-2.8c-.5 0-.9.4-.9.9s.4.9.9.9.9-.4.9-.9-.5-.9-.9-.9zm4.3 1.9c0 .5.4.9.9.9s.9-.4.9-.9-.4-.9-.9-.9-.9.4-.9.9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-group-5"><path d="M7.1 20.7s-.1 0 0 0c-1.6 0-2.9 1.1-3.3 2.5-.1.3-.4.6-.8.5s-.6-.4-.5-.8c.3-1.3 1.2-2.4 2.4-3-.6-.6-1.1-1.4-1.1-2.3 0-1.7 1.4-3.1 3.2-3.1s3.2 1.4 3.2 3.1c0 .9-.4 1.8-1.1 2.3 1.2.6 2.1 1.7 2.4 3 .1.3-.1.7-.5.8-.3.1-.7-.1-.8-.5-.2-1.4-1.6-2.5-3.1-2.5zm10.5 0c-1.6 0-2.9 1.1-3.3 2.5-.1.3-.4.6-.8.5s-.6-.4-.5-.8c.3-1.3 1.2-2.4 2.4-3-.6-.6-1.1-1.4-1.1-2.3 0-1.7 1.4-3.1 3.2-3.1s3.2 1.4 3.2 3.1c0 .9-.4 1.8-1.1 2.3 1.2.6 2.1 1.7 2.4 3 .1.3-.1.7-.5.8-.3.1-.7-.1-.8-.5-.2-1.4-1.5-2.5-3.1-2.5zM8.8 10.3C7.5 9.9 6.9 9 7.2 8c.3-.8 1.2-1.4 2.2-1.4h10c2.2 0 3.3.8 3.3 3.3 0 1.4-.6 2.4-1.6 3-.6.4-1.1.5-1.6.6-.4 0-.7-.3-.7-.6v-1.4c0-.4.3-.6.6-.6.4 0 .6.3.6.6v.6c.1 0 .2-.1.3-.2.6-.4 1-1 1-1.9 0-1.7-.5-2-2-2h-10c-.5 0-.9.2-1 .5.1.1.3.4.9.6l5.2 1.6c.3.1.5.3.5.6v2.1c0 .4-.3.6-.6.6s-.6-.3-.6-.6v-1.6l-4.9-1.5zm2.4-8c.4 0 .6.3.6.6s-.3.6-.6.6H3.9c-.7 0-1.3.6-1.3 1.3v7.8c0 .5.4.8.8.8s.6.3.6.6c0 .4-.3.6-.6.6-1.2 0-2.1-.9-2.1-2.1V4.9c0-1.5 1.2-2.6 2.6-2.6h7.3zm8.7.9c0 1.6-1.3 2.9-2.9 2.9s-2.9-1.3-2.9-2.9S15.4.3 17 .3c1.6-.1 2.9 1.2 2.9 2.9zm-.5 14.4c0-1-.8-1.8-1.9-1.8s-1.9.8-1.9 1.8.8 1.8 1.9 1.8 1.9-.8 1.9-1.8zm-10.5 0c0-1-.8-1.8-1.9-1.8s-1.9.8-1.9 1.8.8 1.8 1.9 1.8 1.9-.8 1.9-1.8zm9.7-14.4c0-.9-.7-1.6-1.6-1.6s-1.6.7-1.6 1.6.7 1.6 1.6 1.6 1.6-.8 1.6-1.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-group-6"><path d="M18.8 7.5c1.4 0 2.6-1.2 2.6-2.6s-1.1-2.6-2.6-2.6c-1.4 0-2.6 1.2-2.6 2.6 0 1.4 1.2 2.6 2.6 2.6zm0-3.8c.7 0 1.3.6 1.3 1.3s-.6 1.3-1.3 1.3-1.3-.6-1.3-1.3c0-.8.6-1.3 1.3-1.3zM23.3 8.4c-.4 0-.7.3-.7.7v7.2c0 1.6-1.3 3-3 3h-2.3c-.4 0-.7.3-.7.7s.3.7.7.7h2.3c2.4 0 4.3-1.9 4.3-4.3V9.1c.1-.4-.2-.7-.6-.7z"/><path d="M17 16.8h2.1v.2c1.4 0 2.6-1.2 2.6-2.6V10c0-1-.8-1.9-1.9-1.9h-.7c-.5 0-1 .2-1.4.6l-1.4 1.4V8.7c0-.9-.6-1.6-1.5-1.9-1.8-.5-3.7-.5-5.5 0-.9.3-1.5 1-1.5 1.9v1.5L6.3 8.7c-.4-.4-.9-.6-1.4-.6h-.7c-1 0-1.9.8-1.9 1.9v4.4c0 1.4 1.2 2.6 2.6 2.6H7c.2 0 .3.1.4.2l1.7 5.5c.1.3.3.5.6.5h.2c.3-.1.5-.5.4-.8l-1.7-5.5c-.2-.7-.9-1.1-1.6-1.1H4.9c-.7 0-1.3-.6-1.3-1.3V10c0-.3.3-.6.6-.6h.7c.2 0 .3.1.5.2l1.8 1.8c.4.4 1 .7 1.6.7H10c.1 0 .3 0 .4.1.1.1.1.2.1.3 0 .2-.1.6-.5.6H6.9c-.1 0-.2 0-.3-.1l-.9-1c-.2-.3-.7-.3-.9 0-.3.2-.3.7 0 .9l.9 1c.3.3.7.5 1.2.5h2.2c.3.1.6.3.8 1 .2.6.6 1.8 1.4 3.8.1.3.3.4.6.4s.5-.2.6-.4c.8-2.1 1.3-3.4 1.4-3.8.2-.6.6-1 .8-1.1H17c.5 0 .9-.2 1.2-.5l.9-1c.2-.3.2-.7 0-.9-.3-.2-.7-.2-.9 0l-.9.9c-.1.2-.1.2-.2.2H14c-.4 0-.5-.4-.5-.6 0-.1 0-.2.1-.3.1-.1.3-.1.4-.1h1.3c.6 0 1.2-.2 1.6-.7l1.8-1.8c.1-.1.3-.2.5-.2h.7c.3 0 .6.3.6.6v4.4c0 .7-.6 1.3-1.3 1.3H17c-.7 0-1.4.5-1.6 1.2l-1.7 5.5c-.1.3.1.7.4.8h.2c.3 0 .5-.2.6-.5l1.7-5.5c.1-.2.2-.3.4-.3zm-3.1-6.1c-.7 0-1.1.3-1.4.5-.3.3-.5.7-.5 1.2 0 .7.4 1.3 1 1.7-.2.4-.4.7-.4.8-.1.3-.4 1-.8 2.1-.4-1-.6-1.7-.7-2.1-.1-.3-.2-.6-.4-.8.7-.3 1-1 1-1.7 0-.5-.2-.9-.5-1.2-.2-.2-.7-.5-1.4-.5h-.7v-2c0-.3.2-.5.5-.6 1.5-.4 3.2-.4 4.7 0 .3.1.5.3.5.6v2h-.9zM5.2 7.5c1.4 0 2.6-1.2 2.6-2.6S6.7 2.3 5.2 2.3c-1.4 0-2.6 1.2-2.6 2.6.1 1.4 1.2 2.6 2.6 2.6zm0-3.8c.7 0 1.3.6 1.3 1.3s-.6 1.3-1.3 1.3C4.5 6.2 4 5.6 4 4.9s.5-1.2 1.2-1.2zM12 5.6c1.4 0 2.6-1.2 2.6-2.6S13.5.4 12 .4C10.6.4 9.4 1.6 9.4 3c.1 1.5 1.2 2.6 2.6 2.6zm0-3.8c.7 0 1.3.6 1.3 1.3s-.6 1.3-1.3 1.3-1.3-.6-1.3-1.3c.1-.7.6-1.3 1.3-1.3z"/><path d="M6.6 19.3H4.3c-1.6 0-3-1.3-3-3V9.1c0-.4-.3-.7-.7-.7-.4 0-.6.3-.6.7v7.2c0 2.4 1.9 4.3 4.3 4.3h2.3c.4 0 .7-.3.7-.7-.1-.3-.4-.6-.7-.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-group-7"><path d="M4.9 7.1C3.2 7.1 1.8 5.7 1.8 4S3.2.9 4.9.9 8 2.3 8 4 6.6 7.1 4.9 7.1zm0-5C3.8 2.1 3 3 3 4s.9 1.9 1.9 1.9S6.8 5 6.8 4 6 2.1 4.9 2.1zm14 5c-1.7 0-3.1-1.4-3.1-3.1S17.2.9 18.9.9 22 2.3 22 4s-1.4 3.1-3.1 3.1zm0-5C17.8 2.1 17 3 17 4s.9 1.9 1.9 1.9S20.8 5 20.8 4s-.8-1.9-1.9-1.9zm-7 9c-1.7 0-3.1-1.4-3.1-3.1s1.4-3.1 3.1-3.1S15 6.3 15 8s-1.4 3.1-3.1 3.1zm0-5C10.8 6.1 10 7 10 8s.9 1.9 1.9 1.9c1.1 0 1.9-.9 1.9-1.9s-.8-1.9-1.9-1.9zm2 17h-4c-.6 0-1.1-.5-1.1-1v-6.3c0-1.6 1.4-2.8 3.1-2.8s3.1 1.3 3.1 2.8v6.3c0 .5-.5 1-1.1 1zM10 21.9h3.8v-6.2c0-.9-.9-1.7-1.9-1.7-1.1 0-1.9.7-1.9 1.7v6.2zm10.9 1.2h-4c-.6 0-1.1-.5-1.1-1V11.8c0-1.6 1.4-2.9 3.1-2.9s3.1 1.3 3.1 2.9V22c0 .6-.5 1.1-1.1 1.1zM17 21.9h3.8V11.8c0-1-.9-1.7-1.9-1.7s-1.9.8-1.9 1.7v10.1zM6.9 23.1h-4c-.6 0-1.1-.5-1.1-1V11.8c0-1.6 1.4-2.9 3.1-2.9S8 10.2 8 11.8V22c0 .6-.5 1.1-1.1 1.1zM3 21.9h3.8V11.8c0-1-.9-1.7-1.9-1.7S3 10.9 3 11.8v10.1z"/></symbol><symbol viewBox="0 0 28 24" id="Vlt-icon-group-add"><path d="M16.5 3.4c.2.2.5.4.7.6.5.6.8 1.2.9 1.7s.2 1.1.2 1.6c.6.8.6 1.8 0 3.1-.1.2-.2.4-.4.5-.2.6-.6 1.2-1 1.8.2.1.5.2.7.4.3.1.5.3.7.4.9.5 1.2.7 1.4.8.3.2.3.6.1.9s-.6.3-.9.1c-.1-.1-.4-.2-1.2-.7-.2-.1-.4-.2-.7-.4l-.1-.1c-.3-.2-.6-.3-.9-.5-.7.6-1.6 1-2.5 1-.8 0-1.5-.3-2.1-.7-.4.3-.8.5-1.4.8-1.1.6-2.1 1.4-2.4 2.3-.2.4-.3.8-.4 1.2l-.1.5c-.1.4-.1.9-.1 1.4 0 .7.4 1.2.9 1.2h9.5c.4 0 .7.3.7.6 0 .4-.3.7-.6.7H7.8c-1.3 0-2.2-1.2-2.2-2.6 0-.3 0-.6.1-.8H3.1C1.8 19.2.9 18 .8 16.8c0-3.1.6-4.7 3.1-5.7.3-.1.6-.2.9-.4-.4-.5-.8-1.1-1-1.6-.1 0-.3-.2-.4-.4-.6-1.2-.6-2.3 0-3.1 0-.6.1-1.1.2-1.7.2-.4.4-1 .9-1.6.9-1 2.1-1.6 3.7-1.6 1.5 0 2.7.6 3.5 1.5l.4.4c.4-.1.9-.2 1.4-.2.7 0 1.3.1 1.9.3 0-.1 0-.1.1-.2.8-1.2 2.1-1.9 3.7-1.9 2.2 0 4 1.8 4.2 3.6v.2c0 .4.1.7.1.9.1.7.4 1.3.9 2.2.9 1.5.9 2.8 0 3.5-.1.1-.2.2-.3.2.1.1.3.1.4.2 1.2.7 2.1 1.7 2.6 3 .1.3 0 .7-.4.8-.3.1-.7 0-.8-.4-.4-1-1.1-1.8-2-2.3-.5-.3-1.1-.5-1.6-.7-.2-.1-.5-.1-.7-.1-.8-.1-.8-1.3.1-1.3 1 0 1.7-.2 2.1-.5s.3-.8-.3-1.8c-.6-1.1-.9-1.8-1.1-2.6-.1-.3-.1-.6-.1-1v-.2c-.4-1-1.7-2.3-3.2-2.3-1.1 0-2 .4-2.6 1.4 0-.1 0 0 0 0zM5.9 17.9c.4-1.7 1.3-3.4 3.4-4.3.4-.2.8-.4 1.1-.6-.6-.7-1-1.4-1.3-2.2-.2-.1-.3-.3-.4-.5-.4-1-.5-1.8-.3-2.5l.3-.6c.1-.6.1-1.2.3-1.7.2-.7.7-1.7 1.8-2.4C10.3 2.5 9.5 2 8.2 2 5.5 2 4.9 4.3 4.9 4.3c-.2.9-.2 1.9-.2 1.9s-.9.4-.1 1.9c.1.2.3.2.4.4.1.4 1.1 2 2 2.6 0 0-1.2.8-2.5 1.3-2.2.9-2.3 2.6-2.3 4.5 0 .5.4 1.1 1 1.1H6l-.1-.1zM16.8 6s-.6-2.3-3.3-2.3S10.2 6 10.2 6c-.3.9-.2 1.9-.2 1.9s-.9.4-.1 2c.1.2.3.2.4.4.2.7 1.4 3.2 3.3 3.2s3.1-2.6 3.3-3.2c0-.1.2-.1.4-.4.7-1.7-.3-2-.3-2s.1-1-.2-1.9zM24 18.6h3.2c.4 0 .7.3.7.7s-.4.7-.8.7H24v3.2c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7V20h-3.2c-.4 0-.7-.3-.7-.7s.3-.7.7-.7h3.2v-3.2c0-.4.3-.7.7-.7.4 0 .7.3.7.7v3.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-happy"><path d="M12 21.7c5.357 0 9.7-4.343 9.7-9.7 0-5.357-4.343-9.7-9.7-9.7-5.357 0-9.7 4.343-9.7 9.7 0 5.357 4.343 9.7 9.7 9.7zm0 1.3C5.925 23 1 18.075 1 12S5.925 1 12 1s11 4.925 11 11-4.925 11-11 11zM7.5 9.7a1.2 1.2 0 1 1 0-2.4 1.2 1.2 0 0 1 0 2.4zm0 1.3a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zm9-1.3a1.2 1.2 0 1 1 0-2.4 1.2 1.2 0 0 1 0 2.4zm0 1.3a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5zM12 19.5c4.411 0 8-3.364 8-7.5h-.941c0 3.65-3.166 6.618-7.059 6.618-3.893 0-7.059-2.969-7.059-6.618H4c0 4.136 3.589 7.5 8 7.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-hash"><path d="M9.6 9.5l-1 5.1h5l1-5.1h-5zm.3-1.4h5L16.4.5l1.3.3-1.5 7.3h4v1.3H16l-1 5.1h4.3v1.3h-4.6l-1.5 7.6-1.3-.3 1.5-7.3h-5l-1.5 7.6-1.3-.3 1.5-7.3H3v-1.3h4.2l1-5.1H4V8.1h4.5L10 .5l1.3.3-1.4 7.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-hash-2"><path class="st0" d="M22.8 8.7c.7 0 1.2-.5 1.2-1.1v-.4c0-.6-.5-1.1-1.2-1.1H19V1.2c0-.7-.5-1.2-1.1-1.2h-.4c-.6 0-1.1.5-1.1 1.2v4.9H7.6V1.2C7.6.5 7.1 0 6.5 0h-.4C5.5 0 5 .5 5 1.2v4.9H1.2C.5 6.1 0 6.6 0 7.2v.4c0 .6.5 1.1 1.2 1.1H5v6.5H1.2c-.7 0-1.2.5-1.2 1.1v.4c0 .6.5 1.1 1.2 1.1H5v4.9c0 .8.5 1.3 1.1 1.3h.4c.6 0 1.1-.5 1.1-1.2v-4.9h8.8v4.9c0 .7.5 1.2 1.1 1.2h.4c.6 0 1.1-.5 1.1-1.2v-4.9h3.8c.7 0 1.2-.5 1.2-1.1v-.4c0-.6-.5-1.1-1.2-1.1H19V8.7h3.8zm-6.4 6.6H7.6V8.7h8.8v6.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-headset"><path d="M22.2 13.3c0 1-.8 1.9-1.8 1.9h-.2c-.2 0-.3-.2-.3-.4v-4.1c0-.2.2-.4.3-.4h.2c1 0 1.8.8 1.8 1.9v1.1zm-10 8.9c-.5 0-.8-.4-.8-.9s.4-.9.8-.9c.5 0 .8.4.8.9s-.4.9-.8.9zm-8.1-7.4c0 .2-.2.4-.3.4h-.2c-1 0-1.8-.8-1.8-1.9v-1.1c0-1 .8-1.9 1.8-1.9h.2c.2 0 .3.2.3.4v4.1zm17-5.8C21 4.1 17.2.5 12.2.5S3.4 4.1 3.3 9C1.7 9.2.5 10.5.5 12.1v1.1c0 1.7 1.4 3.2 3.1 3.2h.2c.9 0 1.6-.7 1.6-1.7v-4.1c-.1-.6-.4-1.1-.9-1.4 0-4.3 3.3-7.4 7.6-7.4s7.6 3.1 7.6 7.3c-.7.2-1.1.9-1.1 1.6v4.1c0 .5.2 1 .6 1.3-.1 3.7-1.4 5.5-5.1 5.2 0-1.2-1-2.1-2.1-2.1-1.2 0-2.1 1-2.1 2.2 0 1.2.9 2.2 2.1 2.2.7 0 1.4-.4 1.8-1 4.5.5 6.4-1.9 6.6-6.1 1.6-.1 2.9-1.4 2.9-3.2v-1.1c.2-1.6-.8-2.9-2.2-3.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-hearing"><path d="M8.4 2.2c1.4.3 2.4 1.1 3 2.1 1.3 2.5.1 6.1-.7 8.2l-.2.5c-.3 1-1 1.7-1.7 2.4s-1.4 1.4-1.6 2.4c-.4 1.7-1.5 2.2-2.1 2.3-.2.1-.5.1-.7.1-.8 0-1.7-.3-2-.8-.5-.6-.7-1.2-.8-1.6 0-.1 0-.1-.1-.2-.3-.2-.4-.6-.3-.9.1-.2.3-.3.5-.3.7-.1.9.6 1.1 1 .1.4.2.8.5 1.1.2.2.9.5 1.5.3.6-.1.9-.6 1.1-1.4.3-1.3 1.2-2.2 2-3 .6-.6 1.2-1.2 1.4-1.9l.2-.5c.7-2 1.8-5.3.7-7.2-.4-.6-1.1-1.1-2.1-1.3-4.5-1.2-5.8 3.6-5.8 3.8-.1.4-.5.6-.8.5-.4-.1-.6-.5-.5-.8.6-2.2 2.8-5.9 7.4-4.8zm-5 11.4s1.2-.4 2.4-2.9c.2-.5.4-1.2.1-1.6-.2-.3-.8-.5-1.1-.5-.2.7-.3 1.4-.5 2.1 0 .4-.4.6-.7.6s-.6-.5-.6-.8v-.1c.8-5.2 2.7-5.8 4.4-5.6 1.7.2 2.2 1.5 2.1 2.4 0 .4-.3.6-.7.6-.4 0-.6-.3-.6-.7 0-.3-.1-.9-.9-1-.6 0-1.4-.1-2.1 1.2.6.2 1.4.4 1.8 1.1.5.7.4 1.6-.1 2.7-1.5 3.2-3.1 3.6-3.3 3.7-.3.1-.7-.2-.8-.5 0-.3.2-.7.6-.7zm11.7-6.2c.6 1.3.7 2.8.4 4.3-.3 1.5-1 2.8-2 3.7-.3.3-.7.2-.9 0-.2-.3-.2-.7 0-.9.8-.7 1.3-1.8 1.6-3 .3-1.3.2-2.5-.3-3.5-.1-.3 0-.7.3-.9.4-.1.8 0 .9.3zm3-2c1 2.3 1.3 4.8.8 7.2-.5 2.4-1.7 4.5-3.5 6.2-.3.2-.7.2-.9 0-.2-.3-.2-.7 0-.9 1.6-1.5 2.7-3.4 3.1-5.5.5-2.1.2-4.4-.7-6.4-.2-.3 0-.7.3-.9s.7-.1.9.3c-.1 0 0 0 0 0zm3.2-1.9c1.3 3.1 1.6 6.5.9 9.8-.7 3.3-2.4 6.3-4.8 8.6-.3.2-.7.2-.9 0-.2-.3-.2-.7 0-.9 2.2-2.1 3.8-4.9 4.4-7.9.6-3 .4-6.2-.8-9.1-.1-.3 0-.7.4-.8.3-.2.7 0 .8.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-heart"><path d="M12 20.6l7.6-8.4c1-1 1.6-2.4 1.6-3.9 0-2.9-2.1-5.1-4.6-5.1-1.4 0-2.7.7-3.5 2.1L12 7.1l-1.1-1.8c-.8-1.3-2.1-2-3.5-2-2.5 0-4.6 2.3-4.6 5.1 0 1.5.6 2.9 1.7 3.9l7.5 8.3zM11.5 4c.2.2.3.4.5.7.2-.2.3-.5.5-.7.2-.3.4-.4.3-.4 1-1 2.3-1.6 3.8-1.6 3.3 0 5.9 2.9 5.9 6.4 0 1.9-.7 3.6-2 4.8l-7.7 8.4c-.2.3-.5.4-.8.4-.3 0-.6-.1-.9-.4l-7.6-8.4c-1.3-1.2-2-3-2-4.8C1.5 4.9 4.1 2 7.4 2c1.4 0 2.7.6 3.8 1.6l.3.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-help"><path d="M12 21.6c5.3 0 9.6-4.3 9.6-9.6S17.3 2.4 12 2.4 2.4 6.7 2.4 12s4.3 9.6 9.6 9.6zm0 1.4C5.9 23 1 18.1 1 12S5.9 1 12 1s11 4.9 11 11-4.9 11-11 11zM9 7.1l.5.8c.1.2.2.2.4.2.1 0 .2 0 .3-.1.1-.1.2-.1.4-.2.1-.1.3-.2.5-.2.2-.1.5-.1.8-.1.2 0 .4 0 .6.1.2.1.3.1.4.2s.2.2.3.4.1.3.1.5c0 .3-.1.5-.2.8-.1.2-.3.4-.5.6-.2.2-.4.3-.6.5-.2.1-.4.3-.6.4-.2.1-.3.3-.4.5-.1.2-.1.4-.1.6l.1 1.3h1.3l.2-1.1c0-.2.1-.3.2-.4.1-.1.3-.3.5-.4l.6-.4c.2-.2.4-.3.6-.6.2-.2.3-.5.4-.8.1-.3.2-.6.2-1s-.1-.8-.2-1.1c-.1-.3-.4-.6-.6-.8-.3-.2-.6-.4-1-.5-.4-.2-.8-.3-1.2-.3-.3 0-.6 0-.9.1-.5.1-1 .3-1.5.6-.2.1-.4.3-.6.4zm1.5 9.2c0 .2 0 .3.1.5.1.1.1.3.2.4.1.1.2.2.4.2.1.1.3.1.5.1.3 0 .6-.1.8-.3.2-.2.3-.5.3-.8 0-.2 0-.3-.1-.5-.1-.1-.1-.3-.3-.4-.1-.1-.2-.2-.4-.2-.1-.1-.3-.1-.5-.1-.3 0-.6.1-.8.3-.1.2-.2.5-.2.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-help-negative"><path d="M12 23C5.9 23 1 18.1 1 12S5.9 1 12 1s11 4.9 11 11-4.9 11-11 11zM9 7.1l.5.8c.1.2.2.2.4.2.1 0 .2 0 .3-.1.1-.1.2-.1.4-.2.1-.1.3-.2.5-.2.2-.1.5-.1.8-.1.2 0 .4 0 .6.1.2.1.3.1.4.2s.2.2.3.4.1.3.1.5c0 .3-.1.5-.2.8-.1.2-.3.4-.5.6-.2.2-.4.3-.6.5-.2.1-.4.3-.6.4-.2.1-.3.3-.4.5-.1.2-.1.4-.1.6l.1 1.3h1.3l.2-1.1c0-.2.1-.3.2-.4.1-.1.3-.3.5-.4l.6-.4c.2-.2.4-.3.6-.6.2-.2.3-.5.4-.8.1-.3.2-.6.2-1s-.1-.8-.2-1.1c-.1-.3-.4-.6-.6-.8-.3-.2-.6-.4-1-.5-.4-.2-.8-.3-1.2-.3-.3 0-.6 0-.9.1-.5.1-1 .3-1.5.6-.2.1-.4.3-.6.4zm1.5 9.2c0 .2 0 .3.1.5.1.1.1.3.2.4.1.1.2.2.4.2.1.1.3.1.5.1.3 0 .6-.1.8-.3.2-.2.3-.5.3-.8 0-.2 0-.3-.1-.5-.1-.1-.1-.3-.3-.4-.1-.1-.2-.2-.4-.2-.1-.1-.3-.1-.5-.1-.3 0-.6.1-.8.3-.1.2-.2.5-.2.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-history"><path d="M20.8 7.9V6.4c0-.3.3-.6.6-.6s.6.3.6.6v3.1c0 .3-.3.6-.6.6h-3.1c-.3 0-.6-.3-.6-.6s.3-.6.6-.6H20c-1.9-3.3-4.4-5.1-7.6-5.1C7.7 3.8 4 7.6 4 12.2s3.8 8.4 8.4 8.4 8.4-3.8 8.4-8.4c0-.3.3-.6.6-.6s.6.3.6.7c0 5.3-4.3 9.7-9.7 9.7s-9.7-4.3-9.7-9.7S7 2.6 12.4 2.6c3.5 0 6.3 1.9 8.4 5.3zM9.4 15.5l3.1-3.2V8.1c0-.3.3-.6.6-.6s.6.3.6.6v4.7l-3.4 3.5c-.2.2-.6.2-.9 0-.2-.1-.2-.5 0-.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-home"><path d="M9.8 16.1v6.8H4.9c-.9 0-1.6-.7-1.6-1.6v-7.7c0-.3.3-.6.6-.6s.6.3.6.6v7.7c0 .2.1.3.3.3h3.6v-6.8h6.9v6.8h3.6c.2 0 .3-.1.3-.3v-7.7c0-.3.3-.6.6-.6s.6.3.6.6v7.7c0 .9-.7 1.6-1.6 1.6h-4.9v-6.8H9.8zM12 3.3L1.6 13.5c-.2.2-.6.2-.9 0s-.2-.6 0-.9L12 1.5l11.3 11.1c.3.2.3.6 0 .9-.2.3-.6.3-.9 0L12 3.3zm6.5 2.9V3.5h-2.7c-.3 0-.6-.3-.6-.6s.3-.6.6-.6h3.9v4c0 .3-.3.6-.6.6s-.6-.3-.6-.7z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-home-user"><path d="M23.5 10.8c.7.7.2 2-.8 2H21V21c0 .9-.8 1.7-1.7 1.7H4.8c-.9 0-1.7-.8-1.7-1.7v-8.1H1.5c-1.1 0-1.6-1.3-.8-2l10.5-9.1c.5-.4 1.1-.4 1.6 0l2.7 2.6v-1c0-.6.5-1.2 1.2-1.2h2.6c.6 0 1.2.5 1.2 1.2v4.5l3 2.9zm-4.3-2.4V3.5h-2.3v3.9L12 2.7 1.9 11.5h2.5V21c0 .2.2.4.4.4h14.5c.2 0 .4-.2.4-.4v-9.4h2.7l-3.2-3.2zm-9.1 5.3c-.5-.7-.8-1.4-.8-2.3 0-1.7 1.2-3.2 2.9-3.2 1.6.1 2.7 1.5 2.7 3.2 0 .8-.3 1.6-.8 2.3l-.2.2c.3.1.4.1.6.2 1.7.6 3.1 1.6 2.9 2.9-.2 1.5-1.7 1.8-4.9 1.8h-.8c-3.2 0-4.6-.3-4.9-1.8-.2-1.3 1.2-2.4 2.9-2.9.1-.1.3-.1.5-.2l-.1-.2zm-.1 1.6c-1.1.4-2.1 1.1-2 1.5.1.4 1.1.7 3.6.7h.8c2.4 0 3.5-.3 3.6-.7.1-.4-1-1.1-2-1.5-.2-.1-.4-.1-.6-.2-.5-.1-.8-.3-.9-.8-.1-.5.1-.9.6-1.5.4-.4.5-.9.5-1.5 0-1-.7-1.9-1.5-1.9s-1.5.8-1.5 1.9c0 .5.2 1 .5 1.5.5.6.7 1 .6 1.5-.1.5-.4.6-.9.8-.3.1-.5.2-.8.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-id"><path fill-rule="evenodd" d="M5.883 12.907a2.5 2.5 0 1 1 3.234 0A3.613 3.613 0 0 1 11 16.1v2.4H4v-2.4c0-1.388.764-2.593 1.883-3.193zM10.677 5.5a2 2 0 1 1 2.646 0H22.5a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1h-21a1 1 0 0 1-1-1v-14a1 1 0 0 1 1-1h9.177zM22.2 6.8H1.8v13.4h20.4V6.8zM12 5a1 1 0 1 0 0-2 1 1 0 0 0 0 2zm-4.5 7.2a1.2 1.2 0 1 0 0-2.4 1.2 1.2 0 0 0 0 2.4zm2.2 3.9c0-1.278-.993-2.3-2.2-2.3-1.207 0-2.2 1.022-2.2 2.3v1.1h4.4v-1.1zm3.3-4.95a.65.65 0 1 1 0-1.3h4a.65.65 0 1 1 0 1.3h-4zm0 3a.65.65 0 1 1 0-1.3h7a.65.65 0 1 1 0 1.3h-7zm0 3a.65.65 0 1 1 0-1.3h7a.65.65 0 1 1 0 1.3h-7z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-image"><path fill-rule="evenodd" d="M21.352 1C22.262 1 23 1.738 23 2.648v18.704c0 .91-.738 1.648-1.648 1.648H2.648A1.648 1.648 0 0 1 1 21.352V2.648C1 1.738 1.737 1 2.648 1h18.704zm.32 20.352V9.16c-.012 0-.024-.003-.037-.003-1.74.008-3.497 1.215-6.382 4.026-3.967 3.866-4.624 4.403-6.207 4.403a.664.664 0 0 1 0-1.328c.653 0 1.195-.25 2.397-1.302-3.637-2.876-6.61-3.418-8.845-2.652-.11.038-.19.073-.27.107v8.94a.32.32 0 0 0 .32.321h18.704a.32.32 0 0 0 .32-.32zm0-13.52V2.649a.321.321 0 0 0-.32-.32H2.648a.32.32 0 0 0-.32.32v8.353c1.615-.512 3.506-.462 5.627.359A4.1 4.1 0 0 1 12 7.89c1.836 0 3.374 1.213 3.9 2.876 2.263-2.013 3.904-2.93 5.73-2.938.014 0 .028.004.042.004zM9.226 11.93c1.023.524 2.095 1.227 3.208 2.123.527-.495 1.144-1.09 1.893-1.82.152-.148.289-.274.436-.415A2.773 2.773 0 0 0 12 9.22a2.776 2.776 0 0 0-2.774 2.71zm2.11-4.85V5.6h1.328v1.477h-1.328zm3.64 1.006l.984-.984.939.938-.985.985-.938-.939zM7.1 8.04l.938-.939.985.985-.939.938L7.1 8.04z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-important"><path d="M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.6 0 12 0zm0 18c-.8 0-1.5-.7-1.5-1.5S11.2 15 12 15s1.5.7 1.5 1.5S12.8 18 12 18zm1.5-6.2c0 .6-.4 1-1 1h-1c-.6 0-1-.4-1-1V7c0-.6.4-1 1-1h1c.6 0 1 .4 1 1v4.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-inbox"><path d="M20.9 20.7H3.1c-.5 0-.9-.4-.9-.9v-5.6h5.1l.2 1.5c.2.8.8 1.5 1.6 1.5h5.4c.8 0 1.5-.6 1.6-1.4l.2-1.5h5.2v5.6c.2.4-.2.8-.6.8zM6.5 3.9c.1-.4.4-.6.8-.6h9.4c.4 0 .7.2.8.6l3.9 9.1h-5c-.6 0-1 .4-1.1 1l-.3 1.5c0 .2-.2.4-.4.4H9.3c-.2 0-.3-.2-.4-.4L8.6 14c-.1-.6-.6-1-1.1-1H2.6l3.9-9.1zm12.2-.5c-.3-.8-1.1-1.4-2-1.4H7.3c-.9 0-1.7.6-2 1.5l-4.2 9.7-.1.2v6.4C1 21 1.9 22 3.1 22h17.7c1.2 0 2.1-1 2.1-2.2v-6.4l-4.2-10z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-inbox-2"><path d="M18.7 6.1l4.8 7.7v7.1c0 .9-.7 1.6-1.6 1.6H2.1c-.9 0-1.6-.7-1.6-1.6v-7.1l4.7-7.6c.3-.5.8-.8 1.4-.7H8c.4 0 .6.3.6.6 0 .4-.3.6-.6.6H6.6c-.1 0-.2 0-.3.2l-4 6.4h5.4c.6 0 1 .4 1.1.9l.2 1.3c0 .1.2.3.4.3h5.3c.2 0 .3-.1.4-.3l.2-1.3c.1-.5.6-.9 1.1-.9h5.3l-4-6.5s-.1-.1-.3-.1H16c-.4 0-.6-.3-.6-.6s.3-.6.6-.6h1.4c.5-.1 1 .2 1.3.6zm3.2 15.1c.2 0 .3-.2.3-.3v-6.3h-5.7l-.2 1.2c-.2.8-.8 1.3-1.6 1.3H9.4c-.8 0-1.4-.5-1.6-1.3l-.2-1.2H1.8v6.3c0 .2.2.3.3.3h19.8zM11.5 12l-2-2c-.3-.2-.3-.7 0-.9.2-.2.7-.2.9 0l.9.9V2.1c0-.4.3-.6.6-.6s.6.3.6.6V10l.9-.9c.3-.3.7-.3.9 0 .3.3.3.7 0 .9l-2 2-.3.4-.5-.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-inbox-3"><path d="M22 10.9l-4.3-7.7c-.1-.3-.4-.4-.7-.4H6.9c-.3 0-.6.2-.7.4L2 10.9h5l.8 1.9c.1.3.4.5.8.5h6.9c.3 0 .7-.2.8-.5l.8-1.9H22zm.2 1.2h-4.4l-.5 1.1c-.3.8-1.1 1.3-2 1.3H8.6c-.9 0-1.6-.5-2-1.3l-.5-1.1H1.8v8.2c0 .5.4.8.8.8h18.8c.5 0 .8-.4.8-.8v-8.2zM17.1 1.5c.8 0 1.5.4 1.9 1.1l4.4 7.9c.1.2.2.5.2.8v9.1c0 1.2-1 2.1-2.1 2.1H2.6c-1.2 0-2.1-.9-2.1-2.1v-9.1c0-.3.1-.5.2-.8l4.4-7.9c.4-.7 1.1-1.1 1.9-1.1h10.1zm-11.4 8H4.4c0-.9.7-1.6 1.6-1.6h11.8c.9 0 1.6.7 1.6 1.6h-1.3c0-.2-.2-.3-.3-.3H6.1c-.2 0-.4.1-.4.3zm1.5-2.9H5.9c0-.9.8-1.6 1.7-1.6h8.9c.9 0 1.6.7 1.6 1.6h-1.3c0-.2-.2-.3-.3-.3H7.6c-.2-.1-.4.1-.4.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-increase"><path d="M19.6 4.4l-4 1.2-.4-1.3 6.2-1.7L23 8.9l-1.1.3-1.1-4-7.2 13.2-5-5.7L2 21.8 1 21l7.4-10.4 5 5.6 6.2-11.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-infinity"><path d="M10.6 8.5c.2.3.1.7-.2.9s-.7.1-.9-.2c-.8-1.1-2.2-1.9-3.7-1.9-2.5 0-4.5 2-4.5 4.5s2 4.5 4.5 4.5c2.3 0 3.4-1.2 5.6-4.8C13.8 7.4 15.2 6 18.2 6c3.2 0 5.8 2.6 5.8 5.8s-2.6 5.8-5.8 5.8c-1.9 0-3.7-.9-4.7-2.4-.2-.3-.1-.7.2-.9s.7-.1.9.2c.8 1.2 2.2 1.9 3.7 1.9 2.5 0 4.5-2 4.5-4.5s-2-4.5-4.5-4.5c-2.3 0-3.4 1.2-5.6 4.8-2.4 4.1-3.8 5.5-6.7 5.5-3.4 0-6-2.7-6-5.9S2.6 6 5.8 6c1.9 0 3.7.9 4.8 2.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-info"><path d="M12 22c5.5 0 10-4.5 10-10S17.5 2 12 2 2 6.5 2 12s4.5 10 10 10zm0 1.3C5.8 23.3.7 18.2.7 12S5.8.7 12 .7 23.3 5.8 23.3 12 18.2 23.3 12 23.3zm.8-6.3v-6h-1.5v6h1.5zm.3-8.7c0-.3-.1-.6-.3-.8-.2-.2-.5-.3-.8-.3-.3 0-.6.1-.8.3-.2.2-.3.5-.3.8 0 .3.1.6.3.8.2.2.5.3.8.3.3 0 .6-.1.8-.3.2-.2.3-.5.3-.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-info-negative"><path d="M12 23.3C5.8 23.3.7 18.2.7 12S5.8.7 12 .7 23.3 5.8 23.3 12 18.2 23.3 12 23.3zm.8-6.3v-6h-1.5v6h1.5zm.3-8.7c0-.3-.1-.6-.3-.8-.2-.2-.5-.3-.8-.3-.3 0-.6.1-.8.3-.2.2-.3.5-.3.8 0 .3.1.6.3.8.2.2.5.3.8.3.3 0 .6-.1.8-.3.2-.2.3-.5.3-.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-js"><path d="M16.5 5.2c-1.1.1-1.9.5-2.6 1.1-.7.7-1 1.5-1 2.5 0 1.6.6 2.6 2.1 3.5.4.2.9.5 1.7.8 1.2.5 1.6.7 1.9 1 .3.4.4.9.2 1.4 0 .1-.2.2-.2.3-.3.3-.8.5-1.5.5-1.1 0-1.9-.4-2.6-1.4l-.2-.2s-2.2 1.2-2.2 1.3c0 0 0 .1.1.3.8 1.4 2.2 2.3 4 2.5.5.1 1.3.1 1.8 0 1.1-.2 2-.5 2.6-1.2.7-.7 1-1.5 1-2.6 0-.7-.1-1.2-.4-1.8-.2-.4-.4-.6-.7-.9-.6-.6-1.4-1.1-2.9-1.7-1.2-.5-1.5-.7-1.8-1-.2-.3-.3-.6-.3-.9 0-.3.1-.5.3-.7.3-.3.6-.4 1-.4.5 0 .9.1 1.2.5l.4.4.2.2c.1 0 2.1-1.3 2.1-1.4l-.2-.4c-.3-.4-.8-.9-1.1-1.1-.6-.4-1.3-.6-2.1-.7-.3 0-.4 0-.8.1zM7.8 10.1V15l-.1.2c-.1.3-.2.5-.3.7-.2.2-.5.3-1 .3-.7 0-1.1-.3-1.6-1.2l-.2-.2s-.5.3-1.1.7l-1.1.7.1.2c.5 1 1.4 1.8 2.4 2.1 1.1.4 2.5.3 3.6-.1 1.2-.5 2-1.5 2.2-3.1V5.1H7.8v5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-key"><path d="M5.4 18.1h1.8v-1h1v-1.6h2.1l2-2 .8.3c.7.3 1.4.4 2.1.4 3.3 0 5.9-2.6 5.9-5.8s-2.6-5.8-5.9-5.8-5.8 2.5-5.8 5.7c0 .7.1 1.4.4 2.1l.3.8-.6.6-6.7 6.6V21h2l.6-.6v-2.3zM8 19.4H6.7v1.3c0 .1-.1.3-.2.4l-1 1c-.1.1-.2.2-.4.2H2c-.3 0-.5-.2-.5-.5V18c0-.1.1-.3.2-.4l6.9-6.8c-.4-.8-.5-1.6-.5-2.5 0-3.9 3.2-7.1 7.2-7.1s7.2 3.2 7.2 7.1c0 3.9-3.2 7.1-7.2 7.1-.9 0-1.7-.2-2.6-.5L11 16.5c-.1.1-.2.2-.4.2h-1v1.1c0 .3-.2.5-.5.5h-.6v.5c0 .4-.2.6-.5.6zm8.6-15.1c-1.5 0-2.6 1.2-2.7 2.7 0 1.5 1.2 2.6 2.7 2.6 1.5 0 2.6-1.2 2.6-2.6 0-1.5-1.1-2.6-2.6-2.7zm0 1.3c.7 0 1.4.7 1.4 1.4s-.6 1.3-1.4 1.3c-.7 0-1.4-.6-1.4-1.3s.7-1.4 1.4-1.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-keypad"><path d="M5 6.7c.9 0 1.7-.8 1.7-1.7S5.9 3.3 5 3.3 3.3 4.1 3.3 5 4.1 6.7 5 6.7zM5 8C3.3 8 2 6.7 2 5s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3zm7-1.3c.9 0 1.7-.8 1.7-1.7s-.8-1.7-1.7-1.7-1.7.8-1.7 1.7.8 1.7 1.7 1.7zM12 8c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3zm7-1.3c.9 0 1.7-.8 1.7-1.7s-.8-1.7-1.7-1.7-1.7.8-1.7 1.7.8 1.7 1.7 1.7zM19 8c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3zM5 13.7c.9 0 1.7-.8 1.7-1.7 0-.9-.8-1.7-1.7-1.7-.9 0-1.7.8-1.7 1.7 0 .9.8 1.7 1.7 1.7zM5 15c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3zm7-1.3c.9 0 1.7-.8 1.7-1.7 0-.9-.8-1.7-1.7-1.7-.9 0-1.7.8-1.7 1.7 0 .9.8 1.7 1.7 1.7zm0 1.3c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3zm7-1.3c.9 0 1.7-.8 1.7-1.7 0-.9-.8-1.7-1.7-1.7-.9 0-1.7.8-1.7 1.7 0 .9.8 1.7 1.7 1.7zm0 1.3c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3zM5 20.7c.9 0 1.7-.8 1.7-1.7 0-.9-.8-1.7-1.7-1.7-.9 0-1.7.8-1.7 1.7 0 .9.8 1.7 1.7 1.7zM5 22c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3zm7-1.3c.9 0 1.7-.8 1.7-1.7 0-.9-.8-1.7-1.7-1.7-.9 0-1.7.8-1.7 1.7 0 .9.8 1.7 1.7 1.7zm0 1.3c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3zm7-1.3c.9 0 1.7-.8 1.7-1.7 0-.9-.8-1.7-1.7-1.7-.9 0-1.7.8-1.7 1.7 0 .9.8 1.7 1.7 1.7zm0 1.3c-1.7 0-3-1.3-3-3s1.3-3 3-3 3 1.3 3 3-1.3 3-3 3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-laptop"><path d="M4.8 5.2v10.3h14V5.2h-14zM21.3 18V3.1c0-.2-.2-.3-.4-.3H2.6c-.2 0-.4.2-.4.3V18h7.3v1.4H14V18h7.3zm1.2 0H24v3c0 .9-.7 1.6-1.6 1.6H1.6C.7 22.6 0 21.9 0 21v-3h1V3.1c0-.9.7-1.6 1.6-1.6H21c.9 0 1.6.7 1.6 1.6-.1 0-.1 14.9-.1 14.9zM3.5 4H20v12.7H3.5V4zm11.8 16.6h-7v-1.4h-7v1.7c0 .2.2.3.4.3h20.8c.2 0 .4-.1.4-.3v-1.7h-7.5l-.1 1.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-light-bulb"><path d="M19.1 11.8c0-3.5-2.5-6.4-5.9-7S6.4 6.2 5.3 9.5s.4 6.9 3.4 8.5c-.2.2-.2.5-.2.8v1.5c0 1.7 1.4 3 3 3h1c1.7 0 3-1.4 3-3v-1.5c0-.3-.1-.6-.2-.8 2.3-1.2 3.8-3.6 3.8-6.2zM14 18.9v.5h-2.5c-.4 0-.8.3-.8.8 0 .4.3.8.8.8h2.4c-.2.6-.8 1-1.4 1h-1c-.8 0-1.5-.7-1.5-1.5V19h4zm-2-1.6c-3.1 0-5.6-2.5-5.6-5.6S8.9 6.2 12 6.2s5.6 2.5 5.6 5.6c0 1.5-.6 2.9-1.6 3.9s-2.6 1.6-4 1.6zm-.3-14.4c-.4 0-.8-.3-.8-.8v-1c0-.4.3-.8.8-.8.4 0 .8.3.8.8v1c0 .5-.4.8-.8.8zm10.9 6.9c.4 0 .8.3.8.8 0 .4-.3.8-.8.8h-1c-.4 0-.8-.3-.8-.8 0-.4.3-.8.8-.8h1zm-19.5.7c0 .4-.3.8-.8.8h-1c-.4 0-.8-.3-.8-.8 0-.4.3-.8.8-.8h1c.5.1.8.4.8.8zm15.7-5c-.3 0-.6-.2-.7-.5-.1-.3-.1-.6.2-.8l.7-.7c.3-.3.8-.3 1.1 0 .3.3.3.8 0 1.1l-.7.7c-.2.1-.4.2-.6.2zM5.2 4.2c.3.3.3.8 0 1.1s-.8.3-1.1 0l-.7-.7c-.3-.3-.3-.8 0-1.1s.8-.3 1.1 0l.7.7zm15.1 12.1l.7.7c.3.3.3.8 0 1.1-.3.3-.8.3-1.1 0l-.7-.7c-.3-.3-.3-.8 0-1.1.3-.2.8-.3 1.1 0zm-17.2 0c.3-.3.8-.3 1.1 0 .3.3.3.8 0 1.1l-.7.7c-.3.3-.8.3-1.1 0-.3-.3-.3-.8 0-1.1l.7-.7zM12 7.5c-.4 0-.8.3-.8.8 0 .4.4.7.8.7 1.5 0 2.8 1.2 2.8 2.8 0 .4.3.8.8.8s.8-.3.8-.8c-.1-2.4-2.1-4.3-4.4-4.3z"/></symbol><symbol viewBox="0 0 30 30" id="Vlt-icon-lighthouse"><path d="M25.2 20.3c-.8 0-1.5.2-2.1.6-.1-2.3-2-4.1-4.3-4.1-1.3 0-2.5.6-3.3 1.5V16h-.6v-4.7h-.6V6.7h-.6V4.6c0-1.7-1.4-3.1-3.1-3.1S7.5 2.9 7.5 4.6v2.1h-.6v4.7h-.6v4.7h-.6v2.2c-.1 0-.3.1-.4.1-.6-1.6-2.2-2.7-4-2.7-.4 0-.8.4-.8.8s.4.8.8.8c1.4 0 2.6 1.1 2.7 2.5 0 .7.9 1 1.4.5.1-.1.3-.2.4-.3v1.3h-.6v6.1h.2v1.4h10.5v-1.4h.2v-6.1h-.6v-1c.3.1.7-.1.9-.4.5-.9 1.4-1.5 2.4-1.5 1.5 0 2.7 1.2 2.7 2.7 0 .2 0 .4-.1.6-.1.3 0 .6.3.8l.3.3c.3.4.9.4 1.2 0 .5-.6 1.2-.9 2-.9 1.5 0 2.7 1.2 2.7 2.7 0 .4.4.8.8.8s.8-.4.8-.8c0-2.4-1.9-4.3-4.3-4.3zM9.1 4.6c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5v2.1h-3V4.6zm-.6 3.8h4.2v3H8.5v-3zM7.9 13h5.4v3H7.9v-3zm-.5 4.7h6.5v3.6H7.4v-3.6zm7.1 9.4H6.8v-4.2h7.7v4.2zM16.7 4.8l8.2-2c.4-.1.7-.5.6-1-.1-.4-.5-.7-1-.6l-8.2 2c-.4.1-.7.5-.6 1 .1.5.5.7 1 .6M24 5.4h-5.2c-.4 0-.8.4-.8.8s.4.8.8.8H24c.4 0 .8-.4.8-.8s-.3-.8-.8-.8"/><path d="M16.3 9.3l8.2 2c.4.1.9-.2 1-.6.1-.4-.2-.9-.6-1l-8.2-2c-.4-.1-.9.2-1 .6-.1.5.1.9.6 1"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-link"><path d="M11.5 6.8c-.2.2-.6.2-.9 0-.3-.3-.3-.7 0-.9l3.2-3.2c2.1-2.1 5.5-2.1 7.6 0s2.1 5.5 0 7.6L17 14.6c-2.1 2.1-5.5 2.1-7.6 0-.5-.5-.9-1.2-1.2-1.9-.1-.3 0-.7.4-.8s.7 0 .8.4c.2.5.5 1 .9 1.4 1.6 1.6 4.2 1.6 5.7 0l4.4-4.4c1.6-1.6 1.6-4.2 0-5.7-1.6-1.6-4.2-1.6-5.7 0l-3.2 3.2zm.8 10.6c.3-.3.7-.3.9 0s.3.7 0 .9l-3.1 3.1c-2.1 2.1-5.5 2.1-7.6 0s-2.1-5.5 0-7.6L7 9.4c2.1-2.1 5.5-2.1 7.6 0 .5.5 1 1.2 1.2 1.9.1.3 0 .7-.4.8s-.7 0-.8-.4c-.2-.5-.5-1-.9-1.4-1.6-1.6-4.2-1.6-5.7 0l-4.4 4.4c-1.6 1.6-1.6 4.2 0 5.7 1.6 1.6 4.2 1.6 5.7 0l3-3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-list"><path d="M4.3 22C3.1 22 2 21 2 19.7c0-1.2 1-2.3 2.3-2.3s2.3 1 2.3 2.3C6.5 21 5.5 22 4.3 22zm0-7.2c-1.3 0-2.3-1-2.3-2.3s1-2.2 2.3-2.2 2.3 1 2.3 2.3-1.1 2.2-2.3 2.2zm0-7.2C3 7.6 2 6.6 2 5.3S3 3 4.3 3s2.3 1 2.3 2.3-1.1 2.3-2.3 2.3zm0 13.1c.5 0 1-.4 1-1 0-.5-.4-1-1-1s-1 .4-1 1 .5 1 1 1zm0-7.2c.5 0 1-.4 1-1s-.4-1-1-1-1 .4-1 1 .5 1 1 1zm0-7.2c.5 0 1-.4 1-1s-.4-1-1-1-1 .4-1 1 .5 1 1 1zm5.6 14V19H22v1.3H9.9zm0-14.5V4.5H22v1.3H9.9zm0 7.3v-1.3H22v1.3H9.9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-list-2"><path d="M4.3 21.5c-1.2 0-2.3-1-2.3-2.3s1-2.3 2.3-2.3 2.3 1 2.3 2.3-1 2.3-2.3 2.3zm0-7.3c-1.2 0-2.3-1-2.3-2.3s1-2.3 2.3-2.3 2.3 1 2.3 2.3-1 2.3-2.3 2.3zm0-7.2C3.1 7 2 6 2 4.7s1-2.3 2.3-2.3 2.3 1 2.3 2.3C6.6 6 5.6 7 4.3 7zm5.6-1.7V3.9H22v1.4H9.9zm0 7.2v-1.3H22v1.3H9.9zm0 7.2v-1.2H22v1.2H9.9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-list-numbers"><path d="M8.8 5.3V3.9H21v1.4H8.8zm0 7.3v-1.3H21v1.3H8.8zM4.1 7V3.3l-.8.6-.4-.7 1.4-1h.8V7h-1zM4 13.5h1.8v.9H2.6v-.6l1.5-1.7c.4-.4.6-.7.6-1.1s-.3-.7-.6-.7-.6.2-.8.5l-.7-.5c.3-.5.8-.9 1.6-.9s1.5.5 1.5 1.4c0 .5-.2 1-.8 1.6L4 13.5zm1 5.6c.5.2.8.6.8 1.2 0 .8-.7 1.4-1.6 1.4s-1.5-.4-1.7-1.1l.8-.3c.1.3.4.5.8.5s.7-.2.7-.6c0-.3-.3-.6-.8-.6h-.3v-.9h.4c.4 0 .6-.3.6-.6s-.3-.6-.6-.6c-.4 0-.6.2-.7.4l-.8-.4c.3-.4.8-.8 1.5-.8.9 0 1.5.5 1.5 1.3.1.5-.2.9-.6 1.1zm3.8.7v-1.2H21v1.2H8.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-lock"><path d="M18.5 8.6c1.1 0 2 .9 2 2v10.1c0 1.1-.9 2-2 2h-13c-1.1 0-2-.9-2-2V10.6c0-1.1.9-2 2-2h1.4V6.1C6.9 3.3 9.2 1 12 1s5.1 2.3 5.1 5.1v2.6h1.4zm.7 12.1V10.6c0-.4-.3-.7-.7-.7h-13c-.4 0-.7.3-.7.7v10.1c0 .4.3.7.7.7h13c.4 0 .7-.3.7-.7zM8.3 6.1v2.6h7.4V6.1C15.7 4 14 2.4 12 2.4 9.9 2.4 8.3 4 8.3 6.1zm3.7 5.3c1.6 0 2.9 1.3 2.9 2.9 0 1-.5 1.9-1.3 2.4V19.5h-3.4v-2.8c-.8-.6-1.3-1.4-1.3-2.4.2-1.6 1.5-2.9 3.1-2.9zm.9 4.3c.8-.5 1-1.6.4-2.3-.3-.5-.8-.7-1.4-.7-.9 0-1.7.8-1.7 1.7 0 .5.3 1 .8 1.4l.5.4v2.2h.8v-2.2c.1-.1.6-.5.6-.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-magic-wand"><path d="M2.9 12.5c-.3 0-.6-.3-.6-.6s-.3-.6-.6-.6-.6-.3-.6-.6.3-.6.6-.6.7-.1.7-.5c0-.3.3-.6.6-.6s.6.3.6.6.3.6.6.6.6.3.6.6-.3.6-.6.6-.7.2-.7.6c0 .3-.2.5-.6.5zm19.3 6.9c.3.3.5.8.5 1.2 0 .5-.2.9-.5 1.2l-.7.7c-.3.3-.8.5-1.2.5-.5 0-.9-.2-1.2-.5L6.8 10.3c-.3-.3-.5-.8-.5-1.2 0-.5.2-.9.5-1.2l.7-.7c.3-.3.8-.5 1.2-.5s.9.2 1.2.5l12.3 12.2zM7.6 8.7c-.2.2-.2.6 0 .8l1.7 1.7 1.5-1.5L9.1 8c-.1-.1-.2-.2-.4-.2-.1 0-.3.1-.4.2l-.7.7zM21.4 21c.2-.2.2-.6 0-.8l-9.8-9.7-1.5 1.5 9.8 9.7c.1.1.3.2.4.2.2 0 .3-.1.4-.2l.7-.7zM5.2 6.8c-.3 0-.6-.3-.6-.6 0-1-.8-1.7-1.7-1.7-.3 0-.6-.3-.6-.6s.3-.6.6-.6c1 0 1.7-.8 1.7-1.7.1-.3.3-.6.6-.6s.6.3.6.6c0 1 .8 1.7 1.7 1.7.3 0 .6.3.6.6s-.2.6-.5.6c-1 0-1.7.8-1.7 1.7-.1.3-.3.6-.7.6zm-.5-2.9c.2.1.4.3.5.6.2-.3.4-.5.6-.6l-.6-.6c-.1.2-.3.4-.5.6zm.5 14.4c-.3 0-.6-.3-.6-.6 0-1-.8-1.7-1.7-1.7-.3 0-.6-.3-.6-.6s.3-.6.6-.6c1 0 1.7-.8 1.7-1.7 0-.3.3-.6.6-.6s.6.3.6.6c0 1 .8 1.7 1.7 1.7.3 0 .6.3.6.6s-.3.6-.6.6c-1 0-1.7.8-1.7 1.7 0 .3-.2.6-.6.6zm-.5-2.9l.6.6.6-.6-.6-.6-.6.6zm9.8-6.3c-.3 0-.6-.3-.6-.6 0-1.6-1.3-2.9-2.9-2.9-.3 0-.6-.3-.6-.6s.3-.6.6-.6c1.6 0 2.9-1.3 2.9-2.9 0-.3.3-.6.6-.6s.6.3.6.6c0 1.6 1.3 2.9 2.9 2.9.3 0 .6.3.6.6s-.3.6-.6.6c-1.6 0-2.9 1.3-2.9 2.9 0 .3-.3.6-.6.6zM13.1 5c.6.3 1 .8 1.4 1.4.3-.6.8-1 1.4-1.4-.6-.3-1-.8-1.4-1.4-.3.6-.8 1.1-1.4 1.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-maximise"><path d="M12 13l-7.7 7.7h2.3c.4 0 .7.3.7.6 0 .4-.3.7-.6.7H2v-4.6c0-.4.3-.6.7-.6s.6.3.6.6v2.5l7.8-7.8-7.8-7.8v2.4c0 .3-.3.6-.6.6S2 7 2 6.7V2h4.7c.3 0 .6.3.6.7s-.3.6-.6.6H4.2l7.8 7.8 7.8-7.8h-2.5c-.4 0-.6-.3-.6-.6s.3-.7.7-.7H22v4.7c0 .4-.3.7-.6.7-.4 0-.7-.3-.7-.6V4.3l-7.8 7.8 7.8 7.8v-2.5c0-.4.3-.7.6-.7.4 0 .7.3.7.6V22h-4.6c-.4 0-.7-.3-.7-.6 0-.4.3-.7.6-.7h2.4L12 13z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-meeting"><path d="M8.8 1.6c-.4 0-.6-.2-.6-.6s.3-.6.6-.6H23c.4 0 .6.3.6.6v13.7c0 .4-.3.7-.6.7H11.4c-.4 0-.6-.3-.6-.7 0-.4.3-.6.6-.6h11V1.6H8.8zM7.5 23.4c0 .3-.3.6-.6.6h-4c-.3 0-.6-.3-.6-.6l-.5-7.2c-.9-.1-1.6-1-1.4-2l.7-5.7C1.3 7.1 2.4 6 3.8 6h2.6c1.4 0 2.5 1.1 2.7 2.5l.7 5.7c.1 1-.5 1.8-1.4 2l-.9 7.2zm3.8-12.7c-.2.3-.6.4-.9.2-.3-.2-.4-.6-.2-.9L12 7.4c.2-.3.7-.4 1-.1l1.2 1.1 1.6-2.5c.2-.3.7-.4 1-.1l1.4 1.4L20 4.4c.2-.3.6-.4.9-.2.3.2.4.6.2.9l-2.3 3.3c-.2.3-.7.4-1 .1l-1.4-1.3-1.6 2.5c-.2.3-.7.4-1 .1l-1.2-1.2-1.3 2.1zm-3.7-8c0 1.5-1.2 2.7-2.7 2.7S2.2 4.2 2.2 2.7 3.4 0 4.9 0s2.7 1.3 2.7 2.7zm-1.4 0c0-.7-.6-1.4-1.3-1.4S3.5 2 3.5 2.7 4.1 4 4.9 4s1.3-.5 1.3-1.3zm.1 20l.5-7.1c0-.3.3-.6.6-.6h.4c.2 0 .4-.2.4-.5l-.6-5.8c-.1-.7-.7-1.3-1.4-1.3H3.6c-.7 0-1.3.6-1.4 1.3l-.7 5.7c0 .3.2.5.4.5h.4c.3 0 .6.3.6.6l.5 7.1h2.9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-megaphone"><path d="M21.8 19.7c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7V3.9c0-.4.3-.7.7-.7.4 0 .7.3.7.7v15.8zM4.1 13v-2.3l15.1-4.8v11.8L4.1 13zm-1.3.9c0 .2-.1.3-.3.3-.2 0-.3-.1-.3-.3V9.7c0-.2.1-.3.3-.3s.3.1.3.3v4.2zm9.4 3.5c-.1.2-.2.3-.4.2l-5.6-1.8c-.1 0-.1-.1-.2-.2v-.2c.1-.2.2-.3.4-.2L12 17c.1 0 .1.1.2.2v.2zM21.1 2c-1.1 0-1.9.9-1.9 1.9v.7L4 9.3c-.1-.7-.8-1.2-1.5-1.2-.8 0-1.5.7-1.5 1.6V14c0 .8.7 1.5 1.5 1.5.7 0 1.3-.5 1.5-1.2l1.1.3c-.1.1-.2.3-.3.5-.3.8.2 1.7 1 1.9l5.6 1.8c.8.3 1.7-.2 2-1 .1-.2.1-.4.1-.6l5.7 1.8v.7c0 1 .9 1.9 1.9 1.9 1.1 0 1.9-.9 1.9-1.9V3.9c0-1-.9-1.9-1.9-1.9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-menu"><path d="M21.2 6H2.8c-.5 0-.8-.3-.8-.7 0-.4.3-.8.7-.8h18.6c.4 0 .8.3.8.7-.1.4-.4.8-.9.8.1 0 .1 0 0 0zm0 6.8H2.8c-.4 0-.8-.3-.8-.7s.3-.8.7-.8h18.6c.4 0 .8.3.8.7s-.4.8-.9.8c.1 0 .1 0 0 0zm0 6.7H2.8c-.4 0-.8-.3-.8-.7 0-.4.3-.8.7-.8h18.6c.4 0 .8.3.8.7-.1.4-.4.8-.9.8.1 0 .1 0 0 0z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-merge"><path d="M9.3 15.7l-7.1 7.1c-.3.3-.7.3-1 0-.3-.3-.3-.7 0-1l7.1-7.1H5.8c-.4 0-.7-.3-.7-.7s.3-.7.7-.7h4.8v4.8c0 .4-.3.7-.7.7s-.7-.3-.7-.7c.1.1.1-2.4.1-2.4zm5.4-7.4l7.1-7.1c.3-.3.7-.3 1 0 .3.3.3.7 0 1l-7.1 7.1h2.5c.4 0 .7.3.7.7s-.3.7-.7.7h-4.8V5.8c0-.4.3-.7.7-.7s.7.3.7.7c-.1 0-.1 2.5-.1 2.5zM9 9.9c-.3-.2-.3-.7 0-.9s.7-.3.9 0l5.1 5.1c.3.3.3.7 0 .9s-.7.3-.9 0L9 9.9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-merge-2"><path d="M20.3 22c-3.7 0-7.5-5.2-7.5-9V3l4.7 4.7c.3.3.8.3 1 0 .3-.3.3-.8 0-1L12.6.8c-.3-.3-.8-.3-1 0l-6 6c-.3.3-.3.8 0 1 .1.1.3.2.5.2s.4-.1.5-.2l4.7-4.7V13c0 3.8-3.8 9-7.5 9-.5 0-.8.4-.8.8s.3.7.7.7c3.5 0 6.8-3.4 8.3-7 1.4 3.6 4.8 7 8.3 7 .4 0 .7-.3.7-.7 0-.5-.3-.8-.7-.8"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-message"><path d="M5 7.3v1.3h14V7.3H9.9zM5 11v1.3h8V11h-2.9z"/><path d="M19.2 1.5H4.8C2.5 1.5.7 3.3.7 5.6V15c0 2.3 1.8 4.1 4.1 4.1h1v2.2c0 1.2 1.5 1.8 2.3.9l2.9-3.1h8.2c2.3 0 4.1-1.8 4.1-4.1V5.6c0-2.3-1.8-4.1-4.1-4.1zm.1 16.3h-8.8l-.4.3-2.9 3.2v-3.5H4.8C3.2 17.8 2 16.5 2 15V5.6c0-1.5 1.2-2.8 2.8-2.8h14.4c1.6 0 2.8 1.3 2.8 2.8l.1 9.4c0 1.5-1.3 2.8-2.8 2.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-message-check"><defs><path id="a" d="M-132 891.6l1 .8-3.4 4-2-1.4.8-1 1 .6z"/></defs><clipPath id="b"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#a" overflow="visible"/></clipPath><g clip-path="url(#b)"><defs><path id="c" d="M-346-5123h638V5374h-638z"/></defs><clipPath id="d"><use xlink:href="#c" overflow="visible"/></clipPath><path clip-path="url(#d)" d="M-141.4 886.6h15.4v14.8h-15.4z"/></g><g clip-path="url(#b)"><defs><path id="e" d="M-133.5 898.8c2.7 0 4.9-2.2 4.9-4.8s-2.2-4.8-4.9-4.8-4.9 2.2-4.9 4.8 2.2 4.8 4.9 4.8zm0 1.4c-3.4 0-6.1-2.8-6.1-6.2s2.8-6.2 6.1-6.2 6.2 2.8 6.2 6.2-2.8 6.2-6.2 6.2z"/></defs><clipPath id="f"><use xlink:href="#e" overflow="visible"/></clipPath><g clip-path="url(#f)"><defs><path id="g" d="M-346-5123h638V5374h-638z"/></defs><clipPath id="h"><use xlink:href="#g" overflow="visible"/></clipPath><path clip-path="url(#h)" d="M-144.6 882.8h22.3v22.3h-22.3z"/></g><g clip-path="url(#f)"><defs><path id="i" d="M18.8 14.1l1 .9-3.4 3.9-2-1.3.8-1.1 1 .7z"/></defs><clipPath id="j"><use xlink:href="#i" overflow="visible"/></clipPath><g clip-path="url(#j)"><defs><path id="k" d="M-195.2-6000.5h638v10497h-638z"/></defs><clipPath id="l"><use xlink:href="#k" overflow="visible"/></clipPath><path clip-path="url(#l)" d="M9.4 9.1h15.4v14.8H9.4z"/></g><g clip-path="url(#j)"><defs><path id="m" d="M17.3 21.4c2.7 0 4.9-2.2 4.9-4.9s-2.2-4.9-4.9-4.9-4.8 2.2-4.8 4.9 2.1 4.9 4.8 4.9zm0 1.3c-3.4 0-6.1-2.8-6.1-6.1s2.8-6.1 6.1-6.1 6.1 2.8 6.1 6.1-2.7 6.1-6.1 6.1z"/></defs><clipPath id="n"><use xlink:href="#m" overflow="visible"/></clipPath><g clip-path="url(#n)"><defs><path id="o" d="M-195.2-6000.5h638v10497h-638z"/></defs><clipPath id="p"><use xlink:href="#o" overflow="visible"/></clipPath><path clip-path="url(#p)" d="M6.2 5.4h22.3v22.3H6.2z"/></g><g clip-path="url(#n)"><path d="M17.3 9.2c1.8 0 3.4.6 4.7 1.7V5.6c0-1.5-1.2-2.8-2.8-2.8H4.8C3.2 2.8 2 4.1 2 5.6V15c0 1.5 1.2 2.8 2.8 2.8h2.4v3.5l2.9-3.2c-.1-.5-.2-1-.2-1.6 0-4 3.3-7.3 7.4-7.3z" fill="none"/><path d="M19.2 1.5H4.8C2.5 1.5.7 3.3.7 5.6V15c0 2.3 1.8 4.1 4.1 4.1h1.1v2.2c0 1.2 1.5 1.8 2.3.9l2.5-2.7c-.2-.5-.4-.9-.5-1.4l-2.9 3.2v-3.5H4.8C3.2 17.8 2 16.5 2 15V5.6c0-1.5 1.2-2.8 2.8-2.8h14.4c1.5 0 2.8 1.3 2.8 2.8v5.2c.5.4.9.9 1.3 1.4V5.6c0-2.3-1.8-4.1-4.1-4.1z"/></g><g clip-path="url(#n)"><path d="M19.2 2.8H4.8C3.2 2.8 2 4.1 2 5.6V15c0 1.5 1.2 2.8 2.8 2.8h2.4v3.5l2.9-3.2c-.1-.5-.2-1-.2-1.6 0-1.6.5-3 1.3-4.2H5V11H12.4c1.3-1.1 3-1.8 4.9-1.8 1.8 0 3.4.6 4.7 1.7V5.6c0-1.5-1.2-2.8-2.8-2.8z" fill="none"/><path d="M5 11v1.3h6.3c.3-.5.7-.9 1.2-1.3H5z"/></g><path clip-path="url(#n)" d="M9.9 7.3H5v1.3h14V7.3z"/></g></g></g></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-method-get"><path d="M6.5 8.4c.1-.2.2-.3.3-.3.1-.1.2-.1.3-.1.2 0 .4.1.4.2.1.1.1.3.1.6v1.7c0 .3 0 .5-.1.6s-.3.2-.5.2-.3 0-.4-.1-.2-.2-.2-.5c-.1-.4-.3-.7-.5-.9s-.6-.3-1-.3c-.7 0-1.1.2-1.5.7s-.5.9-.5 1.8.2 1.5.5 1.9c.4.5.9.7 1.5.7.2 0 .3 0 .5-.1.2 0 .4-.1.7-.2v-1h-.7c-.3 0-.5-.1-.6-.2-.1-.1-.2-.3-.2-.5 0-.3.1-.4.2-.5.1-.1.3-.1.6-.1h2.3c.3 0 .5 0 .7.1.1.1.2.3.2.5s-.1.4-.2.5-.3.2-.5.2h-.2v2c0 .1-.1.1-.2.2-.2.1-.6.3-1.1.4-.5.1-1.1.2-1.6.2-1.1 0-2-.4-2.7-1.1-.7-.7-1-1.7-1-2.9 0-1.1.3-2.1 1-2.8C2.8 8.4 3.7 8 4.7 8c.3 0 .6 0 .9.1l.9.3zm4.2 4.8c.1.5.3.8.6 1.1.3.2.7.3 1.3.3s1-.1 1.6-.4.8-.4.9-.4c.2 0 .3.1.4.2s.1.3.1.4c0 .4-.3.7-.9 1-.6.3-1.3.4-2.2.4-1 0-1.9-.3-2.5-.9-.6-.6-1-1.3-1-2.2s.3-1.6 1-2.2c.6-.6 1.5-.9 2.5-.9.9 0 1.7.3 2.3.8s.9 1.2.9 2c0 .2-.1.4-.2.5-.1.1-.4.1-.7.1h-4.1v.2zm3.4-1c-.1-.4-.3-.7-.6-.9s-.7-.3-1.2-.3-.8.1-1.1.3-.5.5-.6.9h3.5zm5.7-2h1.9c.3 0 .5.1.6.2s.2.3.2.5-.1.4-.2.5-.3.2-.6.2h-1.9v1.6c0 .5.1.8.2.9s.4.3.7.3c.3 0 .7-.1 1.2-.3s.7-.3.9-.3c.2 0 .3.1.4.2s.2.3.2.5c0 .3-.3.6-.9.9-.6.3-1.3.4-2 .4-.4 0-.8-.1-1.1-.2s-.6-.3-.8-.5l-.3-.6c-.1-.2-.1-.6-.1-1.2v-1.8h-.6c-.3 0-.5-.1-.6-.2s-.2-.3-.2-.5.1-.4.2-.5.3-.2.6-.2h.6V8.8c0-.3.1-.5.2-.6s.3-.2.6-.2.5.1.6.2.2.3.2.6v1.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-method-post"><path d="M2.8 13v1.1h.6c.2 0 .4 0 .5.1.1.1.1.2.1.5 0 .2 0 .3-.1.4s-.3.1-.5.1H1.5c-.2 0-.4 0-.5-.1s-.2-.2-.2-.5c0-.2 0-.3.1-.4s.2-.1.4-.1h.1v-4c-.2 0-.3-.1-.4-.2-.1-.1-.2-.2-.2-.4s.1-.4.2-.5.3-.1.5-.1h2.2c.9 0 1.5.2 2 .5.4.3.7.8.7 1.5s-.2 1.2-.7 1.6c-.4.4-1.1.5-2 .5h-.9zm0-2.9v1.7h.8c.4 0 .7-.1 1-.2.2-.1.3-.4.3-.6 0-.3-.1-.5-.3-.6-.2-.1-.5-.2-.9-.2l-.9-.1zm6.3 1.2c-.4 0-.8.1-1 .4-.3.3-.4.6-.4 1.1 0 .4.1.8.4 1.1s.6.4 1 .4.8-.1 1-.4c.3-.3.4-.6.4-1.1 0-.4-.1-.8-.4-1.1-.2-.3-.5-.4-1-.4zm0-1.1c.9 0 1.6.2 2.1.7s.8 1.1.8 1.9-.3 1.4-.8 1.9-1.2.7-2.1.7-1.6-.2-2.1-.7-.8-1.1-.8-1.9c0-.8.3-1.4.8-1.9.6-.5 1.3-.7 2.1-.7zm4.2 5c-.1.1-.2.1-.3.2-.1 0-.2.1-.3.1-.2 0-.3 0-.3-.1-.1-.1-.1-.2-.1-.5v-.7c0-.2 0-.4.1-.5s.2-.1.4-.1.4.1.5.3c.1.1.1.2.2.2.2.2.4.3.6.4.2.1.5.1.8.1s.5-.1.6-.2c.2-.1.2-.2.2-.4 0-.3-.4-.5-1.2-.6-.2 0-.3 0-.4-.1-.6-.1-1.1-.3-1.4-.5-.3-.3-.5-.6-.5-1 0-.5.2-.9.5-1.2.4-.3.9-.4 1.6-.4.2 0 .5 0 .7.1s.5.1.8.2l.2-.2c.1 0 .2-.1.3-.1.1 0 .3 0 .3.1.1.1.1.2.1.4v.7c0 .2 0 .3-.1.4-.1.1-.2.1-.3.1-.1 0-.4-.1-.8-.4s-.6-.5-.9-.5c-.3 0-.5 0-.6.1-.2.1-.2.2-.2.4 0 .3.3.4 1 .5.2 0 .3 0 .4.1.8.1 1.4.3 1.7.5s.5.6.5 1c0 .5-.2 1-.6 1.3s-1 .4-1.7.4c-.3 0-.6 0-.8-.1-.5.1-.7 0-1 0zm6.7-4.6h1.6c.2 0 .4 0 .5.1s.2.2.2.4-.1.4-.2.5-.3.1-.5.1H20v1.4c0 .4.1.7.2.8s.3.2.6.2.6-.1 1-.2.6-.2.8-.2c.1 0 .3.1.4.2.1.1.2.3.2.4 0 .3-.2.5-.7.8-.5.2-1.1.3-1.7.3-.4 0-.7-.1-1-.2-.3-.1-.5-.2-.7-.4-.1-.1-.2-.3-.3-.5-.1-.2-.1-.5-.1-1v-1.5h-.5c-.2 0-.4 0-.5-.1s-.2-.2-.2-.5c0-.2.1-.4.2-.4.1-.1.3-.1.5-.1h.5V9.3c0-.2.1-.4.2-.5s.3-.2.5-.2.4.1.5.2c0 .1.1.3.1.5v1.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-microphone"><path d="M12 16.2c-2.5 0-4.5-2-4.5-4.5V5c0-2.5 2-4.5 4.5-4.5s4.5 2 4.5 4.5v6.7c0 2.5-2 4.5-4.5 4.5zM8.7 5v6.7c0 1.8 1.5 3.2 3.3 3.2 1.8 0 3.3-1.4 3.3-3.2V5c0-1.8-1.5-3.2-3.3-3.2-1.8 0-3.3 1.4-3.3 3.2zm11 9.2c.3.2.3.6.1.9-1.7 2.3-4.3 3.7-7.2 3.8v3.3h2.2c.4 0 .6.3.6.6 0 .4-.3.6-.6.6H9.2c-.3 0-.6-.3-.6-.6 0-.4.3-.6.6-.6h2.2V19c-2.9-.2-5.6-1.6-7.2-3.8-.2-.3-.1-.7.1-.9.3-.2.7-.1.9.1 1.6 2.1 4.1 3.4 6.9 3.4s5.3-1.3 6.9-3.4c.1-.3.5-.4.7-.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-microphone-2"><path d="M12 0c2.8 0 5 2.4 5 5.4v7.3c0 3-2.2 5.4-5 5.4s-5-2.4-5-5.4V5.3C7 2.4 9.2 0 12 0zm0 16.7c2.1 0 3.7-1.8 3.7-4V9.5H8.3v3.2c0 2.2 1.6 4 3.7 4zm0-15.4c-2.1 0-3.7 1.8-3.7 4v2.8h7.5V5.3c-.1-2.2-1.7-4-3.8-4zm7.1 8.7c.4 0 .6.3.6.6v2.1c0 4.1-3.1 7.6-7.1 7.9v2.1h1.5c.4 0 .6.3.6.6 0 .4-.3.6-.6.6H9.8c-.4 0-.6-.3-.6-.6 0-.4.3-.6.6-.6h1.5v-2.1c-4-.3-7.1-3.7-7.1-7.9v-2.1c0-.4.3-.6.6-.6.4 0 .6.3.6.6v2.1c0 3.7 2.9 6.6 6.5 6.6s6.5-3 6.5-6.6v-2.1c.1-.3.3-.6.7-.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-microphone-mute"><path d="M20.8 2.1c.2.2.3.6 0 .9L4.1 22.5c-.2.3-.6.3-.9.1s-.3-.6 0-.9L19.9 2.2c.2-.3.6-.3.9-.1zM5.3 16.2c-.4-.3-.7-.7-1-1.1-.2-.3-.1-.7.1-.9s.7-.1.9.1c.2.3.5.6.8.9l-.8 1zm13.6-1.8c.2-.3.6-.3.9-.1.3.2.3.6.1.9-1.7 2.3-4.3 3.7-7.2 3.8v3.3h2.2c.3 0 .6.3.6.6s-.3.6-.6.6H9.3c-.3 0-.6-.3-.6-.6s.3-.6.6-.6h2.2V19c-.5 0-1-.1-1.5-.2l.9-1.1c.4.1.8.1 1.2.1 2.7-.1 5.2-1.3 6.8-3.4zM8.9 12l-1 1.2c-.2-.5-.3-1-.3-1.5V5c0-2.5 2-4.5 4.5-4.5 1.9 0 3.5 1.2 4.2 2.9l-1 1.2c-.2-1.6-1.5-2.8-3.2-2.8-1.8 0-3.2 1.4-3.2 3.2v7zm3.2 4.2l1.3-1.6c.8-.4 1.5-1.1 1.7-2l1.4-1.6v.7c.1 2.5-2 4.5-4.4 4.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-mind-map"><path d="M19.5 22.6c-1.3 0-2.3-1-2.3-2.3 0-1.3 1-2.3 2.3-2.3s2.3 1 2.3 2.3c0 1.3-1 2.3-2.3 2.3M8.7 11.7c0-1.8 1.5-3.3 3.3-3.3s3.3 1.5 3.3 3.3c0 1.8-1.5 3.3-3.3 3.3s-3.3-1.5-3.3-3.3M5 19.4c-.4 0-.6-.3-.6-.6s.3-.6.6-.6c.4 0 .6.3.6.6s-.3.6-.6.6M21 1.3c.7 0 1.2.5 1.2 1.2s-.5 1.2-1.2 1.2-1.2-.5-1.2-1.2.5-1.2 1.2-1.2m-18 6c-.7 0-1.2-.6-1.2-1.3S2.3 4.8 3 4.8s1.2.6 1.2 1.2c0 .7-.5 1.3-1.2 1.3m16.5 9.4c-.6 0-1.2.2-1.7.4l-2.2-2.6c.7-.8 1-1.8 1-2.9 0-1.1-.4-2.1-1.1-2.9l4.2-4.1c.4.3.8.4 1.3.4 1.4 0 2.5-1.1 2.5-2.5S22.4 0 21.1 0H21c-1.4 0-2.5 1.1-2.5 2.4v.1c0 .4.1.9.3 1.2l-4.2 4.2c-.7-.5-1.6-.8-2.6-.8-1.3 0-2.5.5-3.4 1.5L5.4 6.7c.1-.2.1-.4.1-.7 0-1.4-1.1-2.5-2.4-2.5H3C1.6 3.5.5 4.7.5 6c0 1.4 1.1 2.5 2.4 2.5H3c.6 0 1.3-.3 1.7-.7l3.2 1.8c-.3.6-.5 1.3-.5 2 0 1 .3 2 .9 2.8L5.7 17c-.2-.1-.5-.2-.7-.2-1.1 0-1.9.9-1.9 1.9S4 20.6 5 20.6c1.1 0 1.9-.9 1.9-1.9 0-.3-.1-.6-.2-.8l2.6-2.7c.7.7 1.7 1.1 2.7 1.1.9 0 1.9-.3 2.6-.8l2.2 2.5c-.6.7-.9 1.5-.9 2.4 0 2 1.6 3.6 3.6 3.6s3.6-1.6 3.6-3.6-1.6-3.7-3.6-3.7"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-minimize"><path d="M16.2 8.7h2.5c.4 0 .7.3.7.7s-.3.7-.7.7h-4.8V5.3c0-.4.3-.7.7-.7s.7.3.7.7v2.5l.3-.3 1.3-1.3L18.1 5l1.3-1.3 2.5-2.5c.3-.3.7-.3 1 0 .3.3.3.7 0 1l-2.5 2.5L19 5.9l-1.3 1.3-1.3 1.3-.2.2zm-8.4 6.6H5.3c-.4 0-.7-.3-.7-.7s.3-.7.7-.7h4.8v4.8c0 .4-.3.7-.7.7s-.7-.3-.7-.7v-2.5l-.3.3-1.3 1.3L5.9 19l-1.3 1.3-2.5 2.5c-.3.3-.7.3-1 0-.3-.3-.3-.7 0-1l2.5-2.5L5 18.1l1.3-1.3 1.3-1.3c-.1 0 .2-.2.2-.2zm.9-7.5V5.3c0-.4.3-.7.7-.7.4 0 .7.3.7.7v4.8H5.3c-.4 0-.7-.3-.7-.7s.3-.7.7-.7h2.5L1.2 2.1c-.3-.3-.3-.7 0-1s.7-.3 1 0c-.1.1 6.5 6.7 6.5 6.7zm7.5 7.5l6.6 6.6c.3.3.3.7 0 1s-.7.3-1 0l-6.6-6.6v2.5c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7V14h4.8c.4 0 .7.3.7.7s-.3.7-.7.7c.1-.1-2.4-.1-2.4-.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-minus"><path d="M1 13h22v-2H1v2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-mobile"><path fill-rule="evenodd" d="M17.23.5c1.39 0 2.52 1.125 2.52 2.508v17.983a2.517 2.517 0 0 1-2.52 2.509H6.77a2.518 2.518 0 0 1-2.52-2.51V3.009A2.517 2.517 0 0 1 6.77.5h10.46zM5.486 17.536h13.028V5.044H5.486v12.492zM17.23 22.27c.708 0 1.284-.573 1.284-1.278v-2.223H5.486v2.223c0 .705.576 1.278 1.284 1.278h10.46zM6.77 1.73c-.708 0-1.284.573-1.284 1.277v.805h13.028v-.805c0-.704-.576-1.277-1.284-1.277H6.77zM12 19.43c.603 0 1.094.488 1.094 1.088 0 .6-.491 1.089-1.094 1.089a1.092 1.092 0 0 1-1.093-1.089c0-.6.49-1.088 1.093-1.088z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-mobile-devices"><path d="M19.9 3.5c1.2 0 2.1 1 2.1 2.1v15.8c0 1.2-1 2.1-2.1 2.1H12c-1.2 0-2.1-1-2.1-2.1v-.8H4.1c-1.2 0-2.1-1-2.1-2.1V2.6C2 1.4 3 .5 4.1.5H12c1.2 0 2.1 1 2.1 2.1v.8l5.8.1zm0 18.7c.5 0 .8-.4.8-.8v-2.8h-9.6v2.8c0 .5.4.8.8.8h8zM4.1 19.3h5.8v-3.7H3.3v2.8c0 .5.4.9.8.9zm5.8-5V5.6v-.3H3.3v9.1l6.6-.1zM4.1 1.8c-.5 0-.8.4-.8.8V4h7.4c.3-.4.8-.5 1.3-.5h.8v-.9c0-.5-.4-.8-.8-.8H4.1zm7.1 15.5h9.6V8.2h-9.6v9.1zm9.5-11.7c0-.5-.4-.8-.8-.8H12c-.5 0-.8.4-.8.8v1.3h9.6c-.1 0-.1-1.3-.1-1.3zm-4.8 13.7c.6 0 1.1.6 1.1 1.2s-.5 1.1-1.1 1.1c-.6 0-1.1-.6-1.1-1.2.1-.6.6-1.1 1.1-1.1zm-7.8-3c.6 0 1.1.5 1.1 1.1 0 .6-.5 1.1-1.1 1.1-.6 0-1.1-.5-1.1-1.1-.1-.6.4-1.1 1.1-1.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-mockup"><path d="M3.7 3.2c-.5 0-1 .4-1 .9v15.8c0 .5.4.9 1 .9h16.6c.5 0 1-.4 1-.9V4.1c0-.5-.4-.9-1-.9H3.7zm0-1.2h16.6c1.2 0 2.2.9 2.2 2.1v15.8c0 1.2-1 2.1-2.2 2.1H3.7c-1.2 0-2.2-.9-2.2-2.1V4.1c0-1.2 1-2.1 2.2-2.1zm-.9 4.5v1.2h18.5V6.5H2.8zm2-.8c.5 0 .9-.4.9-.8-.1-.5-.4-.9-.9-.9s-.9.4-.9.8c0 .5.4.9.9.9zm2.3 0c.5 0 .9-.4.9-.9 0-.4-.4-.8-.9-.8s-.9.4-.9.8c0 .5.4.9.9.9zm2.3 0c.5 0 .9-.4.9-.8 0-.5-.4-.9-.9-.9s-.9.4-.9.8c0 .5.4.9.9.9zM5.1 9.8v7.8h5.8V9.8H5.1zm1.2 6.6V11h3.3v5.4H6.3zm6.9-6.6V11H19V9.8h-5.8zm0 3.3v1.2H19v-1.2h-5.8zm0 3.3v1.2H19v-1.2h-5.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-modal"><path d="M2.1 6v15.6c0 .2.2.4.4.4h19.1c.2 0 .4-.2.4-.4V6H2.1zm0-1.3H22V2.4c0-.2-.2-.4-.4-.4H2.5c-.2.1-.4.2-.4.4v2.3zm15.6 5.9l.6.6-.9.8-.6-.6-.6.6-.9-.9.6-.6-.5-.5.9-.9.6.6.6-.6.9.9c-.2 0-.7.6-.7.6zm3.9 12.5H2.5c-.9 0-1.5-.7-1.5-1.5V2.4C1 1.5 1.7.8 2.5.8h19.1c.9 0 1.5.7 1.5 1.6v19.1c0 .9-.6 1.6-1.5 1.6zM20.3 7v13.7H3.7V7h16.6zM4.9 8.4v11.2H19V8.4H4.9zM3.4 4.2c-.5 0-.9-.4-.9-.9s.4-.9.9-.9.9.4.9.9c0 .6-.4.9-.9.9zm0-1.2c-.2 0-.4.2-.4.4s.2.4.4.4.4-.2.4-.4-.2-.4-.4-.4zm1.9 1.2c-.5 0-.9-.4-.9-.9s.4-.9.9-.9.9.4.9.9c0 .6-.4.9-.9.9zm0-1.2c-.2 0-.3.2-.4.4 0 .2.2.4.4.4s.4-.2.4-.4-.2-.4-.4-.4zm1.9 1.2c-.5 0-.9-.4-.9-.9s.4-.9.9-.9.9.4.9.9c0 .6-.4.9-.9.9zm0-1.2c-.2 0-.3.2-.3.4s.2.4.4.4.4-.2.4-.4c-.1-.2-.3-.4-.5-.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-more"><path d="M5.9 11.9c0-.7-.5-1.3-1.3-1.3-.7 0-1.3.5-1.3 1.3 0 .7.5 1.3 1.3 1.3s1.3-.5 1.3-1.3zm1.4 0c0 1.4-1.1 2.6-2.6 2.6h-.1C3.2 14.6 2 13.4 2 12v-.1c0-1.4 1.1-2.6 2.6-2.6h.1c1.4 0 2.5 1.1 2.6 2.6zm7.3 0c0 1.4-1.1 2.6-2.6 2.6h-.1c-1.4 0-2.6-1.1-2.6-2.6v-.1c0-1.4 1.1-2.6 2.6-2.6h.1c1.4.1 2.6 1.2 2.6 2.7zm-1.3 0c0-.7-.5-1.3-1.3-1.3-.7 0-1.3.5-1.3 1.3 0 .7.5 1.3 1.3 1.3.7 0 1.3-.5 1.3-1.3zm8.7 0c0 1.4-1.1 2.6-2.6 2.6h-.1c-1.4 0-2.6-1.1-2.6-2.6v-.1c0-1.4 1.1-2.6 2.6-2.6h.1c1.4.1 2.6 1.2 2.6 2.7zm-1.4 0c0-.7-.5-1.3-1.3-1.3-.7 0-1.3.5-1.3 1.3 0 .7.5 1.3 1.3 1.3s1.3-.5 1.3-1.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-more-negative"><path d="M7.5 12c0 1.4-1.1 2.5-2.5 2.5S2.5 13.4 2.5 12 3.6 9.5 5 9.5s2.5 1.1 2.5 2.5zm7 0c0 1.4-1.1 2.5-2.5 2.5S9.5 13.4 9.5 12s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5zm7 0c0 1.4-1.1 2.5-2.5 2.5s-2.5-1.1-2.5-2.5 1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-more-v"><path d="M12 6.2c.7 0 1.2-.5 1.2-1.2s-.5-1.2-1.2-1.2-1.2.5-1.2 1.2.5 1.2 1.2 1.2zm0 1.3c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zm0 7c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zm0-1.3c.7 0 1.2-.5 1.2-1.2s-.5-1.2-1.2-1.2-1.2.5-1.2 1.2.5 1.2 1.2 1.2zm0 8.3c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zm0-1.3c.7 0 1.2-.5 1.2-1.2s-.5-1.2-1.2-1.2-1.2.5-1.2 1.2.5 1.2 1.2 1.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-more-v-negative"><path d="M12 7.5c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zm0 7c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zm0 7c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-note"><path d="M19 4.9v11.3c-.2.9-1.1 1.8-2.3 2.3-1.7.6-3.4.2-3.8-.9s.6-2.6 2.3-3.2c.9-.3 1.8-.4 2.5-.2V6.9L9.3 9.3v10.2c-.2.9-1.1 1.8-2.3 2.3-1.7.6-3.4.2-3.8-.9s.6-2.6 2.3-3.2c.8-.3 1.6-.4 2.3-.2V5.7c0-.4.3-.8.7-1L17.7 2c.5-.2 1.1.2 1.2.7V3l.1 1.9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-notes"><path d="M20.2 1c.7 0 1.3.6 1.3 1.3V17l-5.9 6H3.8c-.7 0-1.3-.6-1.3-1.3V2.3c0-.7.6-1.3 1.3-1.3h16.4zm-3.9 16v3.4l3.4-3.4h-3.4zM3.8 2.3v19.4H15v-6h5.2V2.3H3.8zm2 13.7v-1h6v1h-6zm0-3v-1h12.1v1H5.8zm0-3V9h12.1v1H5.8zm0-3V6h12.1v1H5.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-notification"><path d="M20.9 16.9c.5 1.5-.4 3.1-2 3.5-1.2.3-2.5.5-3.9.6-.3 1.6-2 2.7-3.6 2.4-1.2-.3-2.1-1.2-2.4-2.4-1.3-.1-2.6-.3-3.9-.6-1.6-.4-2.5-2-2-3.5l.7-1.9c.5-1.3.7-2.7.7-4.1V9.8c0-3.1 2-5.8 4.9-6.8C9.4 1.6 10.6.4 12 .4c1.4 0 2.6 1.2 2.6 2.6 2.9 1 4.9 3.7 4.9 6.9V11c0 1.4.2 2.8.7 4.1 0-.1.7 1.8.7 1.8zm-2.3 2.3c.9-.2 1.4-1 1.1-1.8l-.7-2c-.5-1.5-.8-3-.8-4.5V9.8c0-3.3-2.8-6.1-6.3-6.1S5.6 6.4 5.6 9.8v1.1c0 1.5-.3 3.1-.8 4.5l-.6 1.9c-.3.8.2 1.7 1.1 1.8 1.9.4 4.2.7 6.6.7 2.5.1 4.7-.2 6.7-.6zM12 22.1c.7 0 1.3-.4 1.6-1.1h-3.2c.3.7.9 1.1 1.6 1.1zm0-20.4c-.6 0-1.1.4-1.3 1 .4-.1.9-.1 1.3-.1s.9 0 1.3.1c-.2-.6-.7-1-1.3-1zm-1.3 3.6c.3-.1.7 0 .8.3s0 .7-.3.8c-1.8.7-2.6 2.1-2.8 4.9 0 .4 0 .7-.1 1.6-.1 2.2-.2 3.1-.6 4-.1.3-.5.4-.8.3-.3-.1-.4-.5-.3-.8.3-.6.4-1.5.5-3.5 0-.9 0-1.2.1-1.6.2-3.3 1.2-5.1 3.5-6z"/></symbol><symbol viewBox="0 0 25 25" id="Vlt-icon-notification-off"><path d="M10.5 3c.1-1.1 1.1-1.9 2.2-2 1.1 0 2 .8 2.2 1.9.9.2 1.7.7 2.5 1.2.3.2.4.6.1.9-.2.3-.6.4-.9.1-1.1-.8-2.5-1.2-3.8-1.2-3.5 0-6.4 2.8-6.4 6.2v1.1c0 1.6-.3 3.2-.8 4.8L5 17.9c-.1.3-.5.5-.8.4-.3-.1-.5-.5-.4-.8l.7-1.9c.5-1.4.7-2.9.7-4.3v-1.1c0-3.4 2.2-6.3 5.3-7.2zm1.3-.3c.7-.1 1.3-.1 2 0-.3-.5-1-.7-1.6-.4-.2.1-.3.2-.4.4zm4.8 18.9c-.5 1.4-1.9 2.4-3.4 2.4-1.7 0-2.9-.9-3.5-2.4-.6-.1-1.2-.1-1.7-.2-.4-.1-.6-.4-.5-.7 0-.4.4-.6.7-.5 1.5.2 3.1.3 4.7.3 2.5 0 4.8-.3 6.8-.7.8-.2 1.3-1 1.1-1.8l-.8-2c-.5-1.5-.8-3.1-.8-4.8v-1.1c0-.4 0-.8-.1-1.2-.1-.3.2-.7.5-.8.3-.1.7.2.7.5.1.5.1.9.1 1.4v1.1c0 1.5.2 2.9.7 4.4l.7 1.9c.5 1.5-.4 3.1-2 3.5-1 .4-2.1.6-3.2.7zm-1.5.1c-1.3.1-2.6.1-3.9 0 .4.6 1.1 1 2 1 .7 0 1.4-.4 1.9-1zm-6.4-8.8c0 .3-.3.5-.6.4-.3 0-.5-.3-.4-.6.1-.4.1-.8.1-1.6v-.4C8 7.8 8.9 6.2 12 5.1c.3-.1.5 0 .6.3.1.3 0 .5-.3.6C9.7 7 9 8.2 8.9 10.8v.4c-.1.8-.1 1.2-.2 1.7zM2.8 23.5c-.2.3-.7.3-.9 0-.3-.3-.3-.7 0-.9L22.2 2c.2-.3.7-.3.9 0 .3.3.3.7 0 .9L2.8 23.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-open"><path d="M16.1 1.1v1.3h3.3L10.8 11l.9.9 8.6-8.6v3.3h1.3V1.1z"/><path d="M16.4 19.6c0 .2-.2.4-.4.4H3.7c-.2 0-.4-.2-.4-.4V7.3c0-.2.2-.4.3-.4h7.9V5.6H3.7c-.9 0-1.7.7-1.7 1.7v12.4c0 .9.8 1.6 1.7 1.6h12.4c.9 0 1.7-.7 1.7-1.7v-8.9h-1.3l-.1 8.9c.1 0 0 0 0 0z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-packet"><path d="M22.5 5.9c0-.1 0-.2-.1-.3-.1-.2-.2-.3-.4-.3L12.2.5c-.2-.1-.3-.1-.5 0L1.8 5.4c-.2.1-.3.3-.3.5v12.2c0 .2.1.4.3.5l9.9 4.9h.2l9.9-4.9c.2-.1.3-.3.3-.5l.4-12.2c0 .1 0 0 0 0zM12 1.7L20.6 6l-3.2 1.6-8.6-4.3L12 1.7zm0 8.5L3.4 6l4.1-2 8.6 4.2-4.1 2zM2.7 6.9l8.7 4.3v10.9l-8.7-4.3V6.9zm9.9 15.2V11.2l4.1-2V12c0 .3.3.6.6.6s.6-.3.6-.6V8.6l3.5-1.7v10.9l-8.8 4.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-palette"><path d="M20.9 5.1C17.3.7 10.4.2 5.6 4.1c-5.8 4.6-6.2 13.1-.5 14 .5.1.9.1 1.5 0 .8-.1 1.4-.4 2.6-.9 2-.9 2.6-1 2.9-.7.1.1.1.2.1.2 0 .2-.1.3-.6 1.2-.4.6-.6.9-.7 1.4-.5 1.9 1.1 3.4 3 3.2 1.4-.1 2.7-.8 4.4-2.2 5-3.9 6.2-10.7 2.6-15.2zm-3.3 14.2c-1.6 1.3-2.7 1.9-3.9 2-1.2.1-2-.6-1.8-1.6.1-.3.2-.6.6-1 .7-1.2.8-1.4.8-2 0-.3-.2-.7-.5-.9-.9-1-1.8-.9-4.3.3-1.1.5-1.6.7-2.2.8-.4.1-.7.1-1.1 0-4.3-.8-3.9-7.7 1.2-11.8 4.3-3.5 10.4-3 13.6.8 3 4 2.1 9.9-2.4 13.4zM6.7 9.4C5.2 9.4 4 10.7 4 12.1c0 1.4 1.3 2.7 2.7 2.7s2.7-1.3 2.7-2.7c0-1.4-1.1-2.7-2.7-2.7zm0 4.3c-.8 0-1.5-.7-1.5-1.5s.7-1.5 1.5-1.5 1.5.7 1.5 1.5c.1.8-.6 1.5-1.5 1.5zm3-8.5c-1.2 0-2.1.9-2.1 2.1 0 1.2.9 2.1 2.1 2.1 1.2 0 2.1-.9 2.1-2.1 0-1.1-1-2.1-2.1-2.1zm0 2.9c-.4 0-.8-.3-.8-.8s.4-.8.8-.8c.5 0 .8.3.8.8s-.4.8-.8.8zm4.9-3.3c-.8 0-1.5.7-1.5 1.5s.7 1.5 1.5 1.5 1.5-.7 1.5-1.5-.7-1.5-1.5-1.5zm0 1.8c-.1 0-.4-.1-.4-.3 0-.2.1-.3.4-.3s.4.1.4.3c-.1.2-.3.3-.4.3zm3.8.6c-.7 0-1.2.5-1.2 1.2s.5 1.2 1.2 1.2 1.2-.5 1.2-1.2-.5-1.2-1.2-1.2zm0 1.2s-.1 0 0 0c-.1-.1 0-.2 0-.2s.1.1 0 .2c.1 0 .1 0 0 0z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-park"><path d="M5 21.3V3.7c0-.4.3-.7.7-.7h6.2C16.1 3 19 5.1 19 8.8v.1c0 4-3.5 6-7.4 6H6.4v6.5c0 .4-.3.7-.7.7-.4-.1-.7-.4-.7-.8zm1.4-7.7h5.2c3.5 0 5.9-1.8 5.9-4.6v-.1c0-3-2.3-4.6-5.8-4.6H6.4v9.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-pause"><path d="M2.8 6.4v11.2c0 2 1.5 3.5 3.4 3.5s3.4-1.6 3.4-3.5V6.4c0-2-1.5-3.5-3.4-3.5S2.8 4.4 2.8 6.4zm-1.3 0c0-2.7 2.1-4.9 4.7-4.9s4.7 2.2 4.7 4.9v11.2c0 2.7-2.1 4.9-4.7 4.9s-4.7-2.2-4.7-4.9V6.4zm12.9 0v11.2c0 2 1.5 3.5 3.4 3.5s3.4-1.6 3.4-3.5V6.4c0-2-1.5-3.5-3.4-3.5-1.8 0-3.4 1.5-3.4 3.5zm-1.3 0c0-2.7 2.1-4.9 4.7-4.9s4.7 2.2 4.7 4.9v11.2c0 2.7-2.1 4.9-4.7 4.9s-4.7-2.2-4.7-4.9V6.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-pause-2"><path d="M8.7 4.1c.3 0 .6.1.8.3.2.2.3.5.3.7v13.8c0 .3-.1.6-.3.7-.2.2-.5.3-.8.3H5.1c-.3 0-.6-.1-.8-.3-.2-.2-.3-.5-.3-.7V5.1c0-.3.1-.5.3-.7.2-.2.5-.3.8-.3h3.6zm10.1 0c.6 0 1.1.4 1.1 1v13.8c0 .3-.1.6-.3.7-.2.2-.5.3-.8.3h-3.6c-.3 0-.5-.1-.7-.3-.2-.2-.3-.5-.3-.7V5.1c0-.3.1-.6.3-.7.2-.2.5-.3.7-.3h3.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-pentool"><path d="M22.8 9.6L14.1 1l-3 3.9.3.3-4.6 1.9-5.6 13.8h1.6v1.6L16.6 17l1.9-4.7.3.3s3.9-3 4-3zm-8.6-6.7l6.5 6.5-1.7 1.5-6.2-6.2 1.4-1.8zM15.6 16L4.1 20.5l6.1-6.1c.3.1.6.2.9.2 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .3.1.6.2.9l-6.1 6.1L7.7 8.1l4.7-1.9 5.1 5.1-1.9 4.7zm-5.3-3.3c0-.4.3-.7.7-.7s.7.3.7.7-.3.7-.7.7-.7-.3-.7-.7z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-phone"><path d="M2.8 4.5c-.3.7-.3 1.5-.1 2.5.2 1 .6 2 1.2 3.1s1.2 2.2 2 3.2 1.5 1.9 2.2 2.6c.7.7 1.6 1.5 2.6 2.2 1 .7 2.1 1.4 3.2 2 1.1.6 2.1 1 3.1 1.2 1 .2 1.8.2 2.5-.1.8-.4 1.3-.9 1.6-1.6l.4-1c.1-.2 0-.4 0-.6-.1-.2-.3-.4-.5-.5-.3-.2-1-.6-2.1-1.4-1.2-.7-2-1-2.7-.8-.6.2-1.1.5-1.3.8-.2.3-.6.4-1.1.3-.6-.1-1.2-.5-1.9-1.1-.7-.6-1.3-1.1-1.6-1.4-.3-.3-.8-.9-1.4-1.6-.6-.7-1-1.4-1.1-1.9-.1-.6 0-1 .3-1.1.2-.3.4-.7.6-1.4.2-.6-.1-1.5-.8-2.7-.5-.7-.9-1.4-1.4-2.1-.1-.2-.3-.4-.5-.5-.2-.1-.4-.1-.6 0l-1 .4c-.7.2-1.2.7-1.6 1.5zm5.8 5.8zm1.1 1.2c.6.7 1 1.2 1.3 1.5.3.3.8.8 1.5 1.3.6.5 1 .7 1.4.8.4-.5 1-.8 1.8-1.1 1.1-.3 2.3.1 3.7 1 1.1.7 1.8 1.2 2.1 1.4.5.3.8.6 1 1.1.2.5.2.9.1 1.4v.1l-.4 1c-.4 1-1.1 1.8-2.2 2.3-1 .4-2.1.5-3.3.2-1.1-.3-2.3-.7-3.4-1.3-1.2-.6-2.3-1.3-3.3-2.1-1.1-.8-2-1.6-2.8-2.3-.8-.8-1.5-1.7-2.3-2.8-.8-1.1-1.5-2.2-2.1-3.3-.7-1.1-1.1-2.3-1.4-3.4-.3-1.2-.2-2.4.2-3.3.5-1.1 1.3-1.9 2.3-2.2l1-.4H5c.5-.1 1-.1 1.4.1.6.1.9.5 1.2.9L9 4.5c.9 1.4 1.3 2.7 1 3.7-.2.8-.6 1.4-1.1 1.8 0 .4.3.9.8 1.5z"/></symbol><symbol viewBox="0 0 28 24" id="Vlt-icon-phone-down"><path d="M2.6 16.1c.1 0 .2.1.3.1.1 0 .3 0 .4-.1.3-.1 1.2-.2 2.6-.5 1.4-.3 2.3-.8 2.6-1.4.4-.7.5-1.2.4-1.5-.1-.4.1-.7.6-1.1.5-.3 1.3-.5 2.3-.6 1-.1 1.7-.2 2.3-.2.5 0 1.2 0 2.2.1s1.8.3 2.2.6c.5.3.7.7.6 1.1-.1.4 0 .9.4 1.5.3.6 1.2 1.1 2.6 1.4 1.4.3 2.3.5 2.6.6.3.1.6.1.8 0 .2-.1.4-.2.5-.4l.5-1c.3-.7.3-1.4 0-2.3-.3-.7-.9-1.4-1.8-1.9-.9-.6-2-1-3.2-1.4-1.3-.4-2.5-.7-3.8-.9-1.3-.2-2.5-.3-3.6-.3s-2.3.1-3.6.3c-1.4.1-2.7.4-3.9.8-1.2.4-2.3.8-3.2 1.4-.9.6-1.5 1.2-1.8 1.9-.3.9-.3 1.6 0 2.3l.5 1c.1.3.3.4.5.5zm13.5-3.8c-1-.1-1.7-.1-2.1-.1-.4 0-1.2 0-2.1.1-.8.1-1.3.2-1.6.4.1.7-.1 1.4-.5 2.1-.6 1-1.8 1.6-3.5 2-1.4.3-2.3.5-2.5.5-.3.1-.5.1-.8.1-.8 0-1.6-.4-2-1.1l-.1-.1-.5-1c-.5-1-.5-2.1 0-3.3.4-1 1.2-1.9 2.3-2.6 1-.6 2.2-1.1 3.5-1.6 1.3-.4 2.6-.7 4-.9 1.4-.2 2.7-.3 3.8-.3 1.1 0 2.4.1 3.8.3 1.4.2 2.7.5 4 .9 1.3.4 2.5.9 3.5 1.5 1.2.7 2 1.6 2.3 2.6.4 1.2.4 2.3-.1 3.3l-.5 1-.1.1c-.3.4-.7.8-1.1 1-.5.2-1 .2-1.6.1l-2.6-.6c-1.8-.4-3-1-3.5-2-.4-.7-.6-1.4-.6-2.1-.1-.1-.6-.2-1.4-.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-phone-garland"><path d="M9.7 11.7l-.5-.8.6-.7c.1-.1.1-.2.2-.4s0-.5-.4-1L9 7.7c0-.1-.1-.1-.1-.1s-.1 0 0 0l-.6.2c-.2.1-.4.3-.6.6-.1.2-.1.6 0 1s.3.9.6 1.4l.9 1.5c.4.5.7.9 1 1.2.3.3.7.7 1.2 1 .5.4 1 .7 1.5.9.5.3 1 .4 1.4.5.4.1.8.1 1 0 .3-.2.5-.4.6-.6l.2-.4v-.1s0-.1-.1-.1l-.1-.1-.9-.6c-.5-.3-.8-.4-1-.4-.2.1-.3.1-.4.2l-.7.6-.9-.4c-.2-.1-.3-.2-.5-.3-.4-.3-.6-.5-.8-.7-.2-.3-.5-.5-.7-.8-.1-.2-.2-.3-.3-.5zM22.4 6c.2.3-.6 3.4-.6 3.4l1.9 1.8c.4.4.5 1.2 0 1.6l-1.9 1.8.7 2.5c.2.6-.2 1.2-.8 1.4l-2.5.6-.6 2.5c-.2.6-.8 1-1.4.8l-2.5-.7-1.8 1.9c-.4.4-1.2.5-1.6 0l-1.8-1.9-2.5.7c-.6.2-1.2-.2-1.4-.8L5 19.1l-2.5-.6c-.6-.2-1-.8-.8-1.4l.7-2.5-1.9-1.8c-.4-.4-.5-1.2 0-1.6l1.9-1.8-.9-2.5c-.2-.6.2-1.3.8-1.4l2.5-.6.6-2.5c.2-.6.8-1 1.4-.8l2.5.7L11.1.4c.4-.4 1.2-.5 1.6 0l1.8 1.9 2.5-.7c.6-.2 1.2.2 1.4.8l.6 2.5 2.5.6c.5 0 .7.2.9.5zm-4.3-.1l-.2-.8-.6-2.3-3.1.9-.6-.6L12 1.5 9.8 3.7 9 3.5l-2.3-.6-.8 3-.7.2-2.3.6.9 3.1-.6.6L1.5 12l2.3 2.2-.3.8-.6 2.3 3.1.8.2.8.6 2.3 3.1-.9.6.6 1.7 1.7 2.2-2.3.8.2 2.3.6.8-3.1.8-.2 2.3-.6-.9-3.1.6-.6 1.7-1.7-2.2-2.2.2-.7.1-.4c.1-.4.2-.8.3-1.3.1-.3.1-.5.1-.7l-3.2-.6zM11 11.4c.3.3.5.6.6.7.1.1.4.3.7.6.1.1.2.2.3.2.2-.2.5-.3.9-.4.6-.2 1.3 0 2.1.5.6.4.9.6 1 .6.3.2.5.4.7.7.1.3.1.6.1.9v.1l-.2.5c-.2.6-.7 1-1.3 1.3-.5.2-1.2.3-1.8.1-.6-.1-1.2-.4-1.7-.7-.6-.3-1.1-.6-1.6-1s-1-.8-1.4-1.2c-.4-.4-.8-.8-1.2-1.4-.4-.5-.7-1.1-1-1.6-.3-.5-.5-1.1-.7-1.7-.2-.6-.2-1.2 0-1.8.3-.6.7-1.1 1.3-1.3l.5-.2h.1c.3-.1.6-.1.9.1.3.1.5.4.7.6l.6 1c.5.8.7 1.5.5 2.1-.1.3-.2.6-.4.9.2.1.2.2.3.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-phone-message"><path d="M10.7 5.6c0-2.8 2.7-5 5.9-5s5.9 2.2 5.9 5c0 2.4-2 4.4-4.6 4.9-.2.1-.4.3-1.2 1.1-.5.4-.7.7-1 .9-.9.7-2.3 0-2.1-1.2 0-.1.1-.3.1-.6.1-.3.1-.5.1-.7-1.9-.8-3.1-2.5-3.1-4.4zm4.2 6c.2-.2.5-.4.9-.8 1.4-1.3 1.5-1.3 1.8-1.4 2.1-.4 3.7-1.9 3.7-3.7 0-2-2.1-3.7-4.7-3.7s-4.7 1.7-4.7 3.7c0 1.4 1 2.7 2.6 3.4.6.3.6.7.4 2v.5zm-.4-6.5v-1h4v1h-4zm0 2v-1h2v1h-2zm-5.2 4.4c.6.7 1 1.2 1.3 1.5.3.3.8.7 1.5 1.3.5.4 1 .7 1.3.8.4-.5 1-.8 1.8-1 1.1-.3 2.3.1 3.7 1 1.1.7 1.8 1.1 2.1 1.3.5.3.8.6 1 1.1.2.5.2.9.1 1.4v.1l-.4 1c-.4 1-1.1 1.7-2.2 2.3-.9.4-2 .5-3.3.2-1.1-.3-2.2-.7-3.3-1.3-1.1-.6-2.2-1.3-3.2-2-1-.8-1.9-1.5-2.7-2.3-1-.9-1.7-1.8-2.5-2.9-.8-1-1.4-2.1-2-3.2-.6-1.1-1-2.3-1.3-3.3-.3-1.3-.3-2.4.2-3.3.5-1.1 1.2-1.8 2.2-2.2l1-.4h.1c.5-.1 1-.1 1.4.1.5.2.8.6 1.1 1 .2.2.6.9 1.3 2 .9 1.4 1.3 2.6.9 3.7-.2.8-.5 1.4-1 1.8.2.3.4.7.9 1.3zM2.5 4.7c-.3.7-.3 1.5-.1 2.4.2 1 .6 2 1.2 3 .6 1.1 1.2 2.1 1.9 3.1S7 15 7.7 15.7c.7.7 1.6 1.4 2.5 2.2 1 .7 2 1.4 3.1 1.9 1.1.6 2.1.9 3 1.2 1 .2 1.8.2 2.4-.1.8-.4 1.3-.9 1.5-1.5l.4-1c.1-.2 0-.4 0-.6-.1-.2-.2-.4-.5-.5-.2-.2-.9-.6-2-1.3-1.1-.7-2-1-2.6-.8-.6.2-1 .4-1.2.8s-.6.4-1.1.3c-.5-.1-1.2-.5-1.9-1.1-.7-.6-1.2-1-1.6-1.4-.3-.3-.8-.8-1.4-1.6-.6-.7-.9-1.3-1.1-1.9-.1-.6 0-.9.3-1.1s.6-.6.7-1.2c.2-.6-.1-1.5-.8-2.6l-1.3-2c-.1-.3-.3-.5-.4-.5-.2-.1-.4-.1-.6 0l-1 .4c-.7.1-1.2.6-1.6 1.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-phone-number"><path d="M3 4.7c-.2.7-.3 1.5-.1 2.4.2 1 .6 2 1.2 3 .6 1.1 1.2 2.1 1.9 3.1s1.5 1.8 2.2 2.5c.7.7 1.6 1.4 2.5 2.2 1 .7 2 1.4 3.1 1.9 1.1.6 2.1.9 3 1.2 1 .2 1.8.2 2.4-.1.8-.4 1.3-.9 1.5-1.5l.4-1c.1-.2 0-.4 0-.6-.1-.2-.2-.4-.5-.5-.2-.2-.9-.6-2-1.3-1.1-.7-2-1-2.6-.8-.6.2-1 .4-1.2.8s-.6.4-1.1.3c-.5-.1-1.2-.5-1.9-1.1-.7-.6-1.2-1-1.6-1.4-.3-.3-.8-.8-1.4-1.6-.6-.7-.9-1.3-1.1-1.9-.1-.5 0-.8.3-1 .3-.2.6-.6.7-1.2.3-.7 0-1.6-.7-2.7l-1.3-2c-.2-.3-.4-.5-.5-.5-.2-.1-.4-.1-.6-.1l-1 .4c-.7.2-1.2.7-1.6 1.5zm6.8 6.8c.6.7 1 1.2 1.3 1.5.3.3.8.7 1.5 1.3.5.4 1 .7 1.3.8.4-.5 1-.8 1.8-1 1.1-.3 2.3.1 3.7 1 1.1.7 1.8 1.1 2.1 1.3.5.3.8.6 1 1.1.2.5.2.9.1 1.4v.1l-.4 1c-.4 1-1.1 1.7-2.2 2.3-.9.4-2 .5-3.3.2-1.1-.3-2.2-.7-3.3-1.3-1.1-.6-2.2-1.3-3.2-2-1-.8-1.9-1.5-2.7-2.3-1-.9-1.7-1.8-2.5-2.9-.8-1-1.4-2.1-2-3.2-.6-1.1-1-2.3-1.3-3.3-.3-1.3-.3-2.4.2-3.3.5-1.1 1.2-1.8 2.2-2.2l1-.4h.1c.5-.1 1-.1 1.4.1.5.2.8.6 1.1 1 .2.2.6.9 1.3 2 1 1.4 1.3 2.6 1 3.7-.2.8-.5 1.4-1 1.8.1.3.3.7.8 1.3zm11.1-6.8l-.1.8c0 .2-.1.3-.2.4-.2.1-.4.1-.6.1h-.7l-.4 2.1H20c.2 0 .3.1.4.2.1.1.1.3.1.6l-.1.6h-1.6l-.6 3h-.9c-.1 0-.2 0-.2-.1-.1 0-.1-.1-.2-.2s-.1-.2-.1-.2v-.3l.4-2.3h-1.5l-.4 2.4c0 .2-.1.4-.3.5-.2.1-.3.2-.5.2h-.8l.6-3h-.9c-.2 0-.3-.1-.4-.2-.1-.1-.1-.3-.1-.6l.1-.6h1.4l.2-2.1H13l.1-.8c0-.2.1-.3.2-.4.1-.1.3-.1.6-.1h.8l.5-2.4c0-.2.1-.4.3-.5.1-.1.3-.2.5-.2h.8l-.6 3h1.5l.6-3h.8c.2 0 .3.1.5.2.1.1.2.3.1.5l-.5 2.4h1.7zM17.7 6h-1.5l-.4 2.1h1.5l.4-2.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-phone-plus"><path d="M3 4.7c-.2.7-.3 1.5-.1 2.4.2 1 .6 2 1.2 3 .6 1.1 1.2 2.1 1.9 3.1s1.5 1.8 2.2 2.5c.7.7 1.6 1.4 2.5 2.2 1 .7 2 1.4 3.1 1.9 1.1.6 2.1.9 3 1.2 1 .2 1.8.2 2.4-.1.8-.4 1.3-.9 1.5-1.5l.4-1c.1-.2 0-.4 0-.6-.1-.2-.2-.4-.5-.5-.2-.2-.9-.6-2-1.3-1.1-.7-2-1-2.6-.8-.6.2-1 .4-1.2.8s-.6.4-1.1.3c-.5-.1-1.2-.5-1.9-1.1-.7-.6-1.2-1-1.6-1.4-.3-.3-.8-.8-1.4-1.6-.6-.7-.9-1.3-1.1-1.9-.1-.5 0-.8.3-1 .3-.2.6-.6.7-1.2.3-.7 0-1.6-.7-2.7l-1.3-2c-.2-.3-.4-.5-.5-.5-.2-.1-.4-.1-.6-.1l-1 .4c-.7.2-1.2.7-1.6 1.5zm14.2 2h3.2v1.5h-3.2v3.2h-1.5V8.2h-3.2V6.7h3.2V3.5h1.5v3.2zm-7.4 4.8c.6.7 1 1.2 1.3 1.5.3.3.8.7 1.5 1.3.5.4 1 .7 1.3.8.4-.5 1-.8 1.8-1 1.1-.3 2.3.1 3.7 1 1.1.7 1.8 1.1 2.1 1.3.5.3.8.6 1 1.1.2.5.2.9.1 1.4v.1l-.4 1c-.4 1-1.1 1.7-2.2 2.3-.9.4-2 .5-3.3.2-1.1-.3-2.2-.7-3.3-1.3-1.1-.6-2.2-1.3-3.2-2-1-.8-1.9-1.5-2.7-2.3-1-.9-1.7-1.8-2.5-2.9-.8-1-1.4-2.1-2-3.2-.6-1.1-1-2.3-1.3-3.3-.3-1.3-.3-2.4.2-3.3.5-1.1 1.2-1.8 2.2-2.2l1-.4h.1c.5-.1 1-.1 1.4.1.5.2.8.6 1.1 1 .2.2.6.9 1.3 2 1 1.4 1.3 2.6 1 3.7-.2.8-.5 1.4-1 1.8.1.3.3.7.8 1.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-phone-tick"><path d="M2.8 4.5c-.3.7-.3 1.5-.1 2.5.2 1 .6 2 1.2 3.1s1.2 2.1 2 3.2 1.5 1.9 2.2 2.6c.7.7 1.6 1.5 2.6 2.2s2.1 1.4 3.2 2c1.1.6 2.1 1 3.1 1.2 1 .2 1.8.2 2.5-.1.8-.4 1.3-.9 1.6-1.6l.4-1c.1-.2 0-.4 0-.6-.1-.2-.3-.4-.5-.5-.3-.2-1-.6-2.1-1.4-1.2-.7-2.1-1-2.7-.8-.6.2-1.1.5-1.3.8-.2.3-.6.4-1.1.3-.6-.1-1.2-.5-1.9-1.1-.7-.6-1.3-1.1-1.6-1.4-.3-.3-.8-.9-1.4-1.6-.6-.7-1-1.4-1.1-1.9-.1-.6 0-1 .3-1.1.2-.3.4-.7.6-1.4.2-.6-.1-1.5-.8-2.7S6.7 3.4 6.5 3.1c-.1-.2-.3-.4-.5-.5-.2-.1-.4-.1-.6 0l-1 .4c-.7.2-1.2.7-1.6 1.5zm5.8 5.8zm1.1 1.2c.6.7 1 1.2 1.3 1.5.3.3.8.8 1.5 1.3.6.5 1 .7 1.4.8.4-.5 1-.8 1.8-1.1 1.1-.3 2.3.1 3.7 1 1.1.7 1.8 1.2 2.1 1.4.5.3.8.6 1 1.1.2.5.2.9.1 1.4v.1l-.4 1c-.4 1-1.1 1.8-2.2 2.3-1 .4-2.1.5-3.3.2-1.1-.3-2.3-.7-3.4-1.3-1.1-.6-2.2-1.3-3.3-2.1-1.1-.8-2-1.6-2.8-2.3-.8-.8-1.5-1.7-2.3-2.8-.9-1-1.6-2.1-2.1-3.3-.7-1.1-1.1-2.3-1.4-3.4-.3-1.2-.2-2.4.2-3.3.5-1.1 1.3-1.9 2.3-2.2l1-.4H5c.5-.1 1-.1 1.4.1.6.1.9.5 1.2.9.2.3.6 1 1.4 2.1.9 1.4 1.3 2.7 1 3.7-.2.8-.6 1.4-1.1 1.8 0 .4.3.9.8 1.5zm3.4-6.2l3.1 3.2 6.6-6.7.9.9-7.5 7.6-4-4.1.9-.9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-pie-chart"><path d="M15.4 21.1L12.8 12l2.7-9c3.6 1.4 6.2 4.9 6.2 9 0 4.2-2.6 7.7-6.3 9.1M2.3 12.7h9.3l2.5 8.8c-.7.2-1.4.2-2.1.2-5.1 0-9.3-4-9.7-9M12 2.3c.8 0 1.5.1 2.3.3l-2.7 8.8H2.3c.3-5.1 4.6-9.1 9.7-9.1M12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-pin"><path d="M12.8 21.3c1-.9 2-1.9 2.9-2.9 2.7-3.1 4.1-5.9 4.1-8.4 0-4.3-3.4-7.7-7.7-7.7-4.3 0-7.7 3.4-7.7 7.7 0 2.5 1.4 5.4 4.1 8.4 1.1 1.3 2.3 2.5 3.6 3.5.2-.1.4-.4.7-.6zM21 10c0 3-1.6 6.1-4.4 9.3-1.2 1.4-2.5 2.7-3.9 3.8-.2.1-.3.2-.4.3l-.3.2-.3-.2c-.1-.1-.2-.2-.4-.3-1.4-1.2-2.7-2.4-3.9-3.8C4.6 16.2 3 13 3 10c0-5 4-9 9-9s9 4 9 9zm-9 2.7c-1.5 0-2.7-1.2-2.7-2.7 0-1.5 1.2-2.7 2.7-2.7 1.5 0 2.7 1.2 2.7 2.7 0 1.5-1.2 2.7-2.7 2.7zm0 1.3c2.2 0 4-1.8 4-4s-1.8-4-4-4-4 1.8-4 4 1.8 4 4 4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-pin-2"><path d="M13.8 12.5l-.1.2h-.2c-.5 0-1.2-.2-2.1-.7-.9-.5-1.4-1-1.6-1.4-.1-.1-.1-.2-.1-.2l.1-.2 2-3.4c.4.6 1 1.2 1.7 1.6.7.4 1.5.6 2.3.7l-2 3.4zm.7 4.8c-.1.1-.3.2-.8.2-1 0-2.5-.4-4.6-1.6S6 13.7 5.5 12.7c-.2-.4-.2-.6-.2-.7.6-.9 1.7-1.5 3.1-1.5 0 .2.1.5.2.7.4.6 1 1.3 2.2 1.9 1.1.6 2 .9 2.7.9.3 0 .6-.1.7-.1.7 1.2.8 2.4.3 3.4zm1.8-13.7c1.5.9 2.4 1.7 2.9 2.5.1.1.1.2.2.3h-.3c-.9 0-2.1-.4-3.6-1.3-1.6-.9-2.5-1.7-3-2.5-.1-.1-.1-.2-.2-.3h.3c1 0 2.2.4 3.7 1.3zm-2.1 3.6c-1.3-.7-2.2-2.1-2.3-3.3.6.8 1.6 1.5 2.9 2.3s2.5 1.2 3.4 1.4c-1.1.4-2.7.4-4-.4zm6.5-.1c0-.1.1-.2.1-.2 0-.3-.1-.9-.5-1.5-.6-.9-1.7-1.9-3.4-2.9S13.9 1 12.7 1c-.7 0-1.2.1-1.5.3l-.2.2c-.7 1.2-.6 2.7 0 4L8.9 9.2c-2-.1-3.8.7-4.7 2.2v.1c-.2.4-.1 1 .3 1.8.6 1.1 1.7 2.2 3.6 3.3l-3.4 5.9c-.2.3-.1.7.2.9.3.2.7.1.9-.2l3.4-5.9c2 1.1 3.5 1.5 4.7 1.4.9 0 1.5-.3 1.7-.7l.1-.1c.9-1.5.7-3.5-.4-5.2l2.1-3.6V9c1.3 0 2.6-.7 3.3-1.9 0 .1 0 .1 0 0 0 .1 0 0 0 0z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-play"><path d="M6.1 20.4l13.1-7.1c1.3-.7 1.3-1.8 0-2.5L6.1 3.6C4.8 2.9 3.8 3.5 3.8 5v14c0 1.5 1 2.1 2.3 1.4zm.6 1.1c-2.2 1.2-4.2 0-4.2-2.5V5c0-2.5 2.1-3.7 4.2-2.5l13.1 7.1c2.2 1.2 2.2 3.6 0 4.8L6.7 21.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-play-2"><path d="M7.6 20.1c-1.8 1-3.6 0-3.6-2.1V6c0-2.1 1.7-3.2 3.6-2.1l11 6.1c1.9 1 1.9 3.1 0 4.1l-11 6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-plug"><path d="M15.1 18.6c-2.3 2.3-6.1 2.2-8.5-.2l-.7-.7c-2.4-2.4-2.5-6.2-.2-8.5l4.5-4.5c.2-.2.5-.2.6 0l8.8 8.8c.2.2.2.5 0 .6l-4.5 4.5zm5.5-6.2l-1.3-1.3L23 7.3c.3-.3.3-.8 0-1.2-.3-.3-.8-.3-1.1 0l-3.7 3.7L14.4 6l3.7-3.7c.3-.3.3-.8 0-1.2-.3-.3-.8-.3-1.1 0L13.2 5l-1.3-1.3c-.8-.8-2-.8-2.8 0L4.6 8.1c-2.8 2.8-2.7 7.4 0 10.4h-.1l-2.4 2.4c-.3.3-.3.8 0 1.2.3.3.8.3 1.2 0l2.4-2.4v-.1c3 2.8 7.6 2.8 10.4 0l4.5-4.5c.8-.7.8-1.9 0-2.7z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-plus"><path d="M13 11h9c.5 0 1 .4 1 1s-.4 1-1 1h-9v9c0 .5-.4 1-1 1s-1-.4-1-1v-9H2c-.5 0-1-.4-1-1s.4-1 1-1h9V2c0-.5.4-1 1-1s1 .4 1 1v9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-print"><path d="M17.5 17.1H6.3v5.3h11.1l.1-5.3c-.1 0 0 0 0 0zM13.6 1.7H6.3v6.4h11.1v-2h-2.7c-.6 0-1.1-.5-1.1-1.1V1.7zm1.3 1.1v1.9h1.7l-1.7-1.9zM5 17.1h-.7v-1.3h15.3v1.3h-.8v1.1h3.5v-8c0-.4-.4-.8-.8-.8H2.3c-.4 0-.7.4-.7.8v8h3.5L5 17.1zm-2.4-9v-.8c0-.9.8-1.6 1.7-1.6h.8V1.6C5 1 5.5.4 6.2.4h8.4l4.2 4.7v.6h.8c.9 0 1.6.7 1.6 1.6v.8h.3c1.2 0 2.1.9 2.1 2.1v9.2h-4.8v3.2c0 .6-.5 1.1-1.1 1.1H6.2c-.6 0-1.1-.5-1.1-1.1v-3.2H.3v-9.2c0-1.2.9-2.1 2-2.1h.3zm1.3 0H5V7h-.7c-.2 0-.3.1-.3.3l-.1.8zm16 0v-.8c0-.2-.1-.3-.3-.3h-.8v1.1h1.1zM8.6 19.4h6.7v-1.3H8.6v1.3zm0 2h6.7v-1.3H8.6v1.3zm-5.3-9.6v-1.3h2.9v1.3H3.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-profile"><path d="M16 18.7l2.6.9c.3.1.5.5.4.8s-.5.5-.8.4l-2.6-.9c-1.3-.5-2.1-2.4-2.1-3.6 0-.2.1-.4.2-.5.6-.5 1-1.2 1-1.6 0-.5.1-.9.4-1.1l.2-.2c0-.1.1-.2.1-.4 0-.1.1-.3.1-.4 0-.1 0-.2.1-.3-.2-.1-.4-.3-.4-.6V8.7c0-.7-.1-1.1-.3-1.3 0-.1-.4-.3-.5-.4-.1-.2-.2-.4-.1-.6-.1-.4-.8-.9-2.3-.9-1.8 0-3.2 1.7-3.2 3.2v2.6c0 .3-.2.5-.4.6 0 .1 0 .2.1.3 0 .1.1.3.1.4 0 .1.1.3.1.4.1 0 .1.1.2.2.2.3.4.7.4 1.1 0 .4.5 1.1 1 1.6.1.1.2.3.2.5 0 1.2-.8 3-2.1 3.6l-2.6.9c-.3.1-.7-.1-.8-.4-.1-.3.1-.7.4-.8l2.5-.8c.6-.3 1.2-1.4 1.3-2.1-.7-.7-1.3-1.6-1.3-2.4v-.3H8c-.2-.1-.3-.2-.4-.4-.1-.1-.1-.4-.2-.7-.1-.2-.1-.4-.1-.5-.1-.3-.1-.5-.1-.8v-.2c0-.1.1-.3.2-.4.1-.1.1-.2.2-.3V8.7c0-2.2 2-4.5 4.5-4.5 2.1 0 3.4 1 3.6 2.1l.3.3c.4.5.6 1.1.6 2.1v2.1c.1.1.2.2.2.3.1.1.1.3.2.4v.2c0 .2 0 .5-.1.8 0 .2-.1.3-.1.5-.1.3-.2.5-.2.7-.1.2-.2.3-.3.4v.3c0 .8-.5 1.7-1.3 2.4-.1.5.4 1.6 1 1.9zm.1-4.8zM8 14zm.4-2.2zm15.2.2c0 6.4-5.2 11.6-11.6 11.6S.3 18.4.3 12 5.6.3 12 .3 23.6 5.6 23.6 12zm-1.2 0c0-5.7-4.6-10.4-10.4-10.4S1.6 6.3 1.6 12 6.3 22.4 12 22.4 22.4 17.7 22.4 12zm-6.8-.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-puzzle"><path d="M10.4 1C8.7 1 7.3 2.4 7.3 4.1c0 .4.1.8.3 1.2H2.9c-.5 0-.9.4-.9.9v14.9c0 .5.4.9.9.9h5.9c.2 0 .3 0 .5-.1.4-.2.6-.7.6-1.1 0-.2-.1-.4-.2-.6l-.3-.3s-.1 0-.1-.1c-.2-.2-.3-.5-.3-.9 0-.7.5-1.2 1.2-1.3.7 0 1.2.5 1.3 1.2v.1c0 .3-.1.6-.3.9h-.1c0 .1-.1.2-.1.3-.1.2-.2.5-.2.7 0 .5.2.9.6 1.1.1.1.3.1.5.1h5.9c.5 0 .9-.4.9-.9v-4.6c.4.2.8.3 1.2.3 1.7 0 3.1-1.4 3.1-3.1 0-1.7-1.4-3.1-3.1-3.1-.4 0-.8.1-1.2.3V6.2c0-.5-.4-.9-.9-.9h-4.6c.7-1.6 0-3.4-1.6-4-.4-.2-.8-.3-1.2-.3m0 1.3c1 0 1.8.8 1.8 1.8 0 .2-.1.5-.1.7l-.8 1.8h6.2v6.2l1.8-.8c.9-.4 1.9 0 2.3.9.1.2.1.5.1.7 0 1-.8 1.8-1.8 1.8-.2 0-.5-.1-.7-.1l-1.8-.8v6.2h-5.2c.5-.5.7-1.1.7-1.8 0-1.4-1.1-2.5-2.5-2.5s-2.5 1.1-2.5 2.5c0 .7.3 1.3.7 1.8H3.3V6.6h6.2l-.8-1.8c-.4-.9 0-1.9.9-2.3.3-.1.5-.2.8-.2"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-queue"><path d="M19.5 15.6h-.1c-.7-.8-1.6-1.6-2.8-2-.4-.1-.7-.3-1.1-.4h.1c.8 0 1.8 0 2.4-.7.6-.9.1-1.7-.3-2.3-.1-.1-.2-.3-.3-.5-.7-1.3-.8-1.8-.8-2.4v-.2c-.2-1.5-.8-2.6-1.9-3.2.2-.5.9-1.3 2.4-1.3 2 0 2.5 1.6 2.5 1.6.2.7.1 1.5.1 1.5v.5l.5.1s.1 0 .1.1c0 0 .1.3-.3.8-.2.1-.3.2-.4.4-.1.3-.4 1.1-1 1.7l-.2.3.1.3c0 .1.5 1.3 1.9 1.8 1.2.5 2.4 1.1 2.6 3.1-.8.3-2.3.8-3.5.8m-3.7 3.7c-.7-2.2-2.4-3-3.8-3.4-.5-.2-1.1-.4-1.5-.7.6-.6 1-1.4 1.3-2.1.1-.1.3-.2.3-.3.5-.9.6-1.6.4-2.2-.1-.2-.2-.4-.4-.5 0-.6-.1-1.1-.2-1.7-.2-.6-.6-1.5-1.6-2.1.4-1.1 1.2-1.7 2.4-1.8 1.6.1 2.5 1 2.7 2.8v.1c.1.8.1 1.4 1 2.9.1.2.2.4.3.5.5.7.5.8.3 1-.2.3-.9.3-1.5.3-.4 0-.8 0-1.1.1-.2.1-.4.3-.4.5 0 1.1.4 1.4 2.1 2 1.4.5 2.4 1.6 2.9 2.4-.5.8-1.4 1.8-3.2 2.2m-7.7 2.1c-3.3 0-5.9-.4-6.9-.6.3-2.5 1.8-3.4 3.3-3.8.7-.2 1.4-.6 2-1.1.5.3 1 .5 1.6.5.6 0 1.1-.2 1.6-.5.3.3 1 .7 2.1 1.1 1.5.5 3 1.3 3.3 3.8-1.1.2-3.7.6-7 .6M4.9 12c-.4-.7-.3-1-.3-1s.1-.1 0-.1l.5-.1v-.5s0-.9.2-1.7c0-.1.5-1.8 2.8-1.8s2.8 1.8 2.8 1.8c.2.8.2 1.7.2 1.7v.6l.5.1s.1.3-.3 1c-.2.1-.3.2-.4.5-.2.6-1.3 2.8-2.8 2.8-1.5 0-2.6-2.2-2.8-2.8-.1-.3-.3-.4-.4-.5m15.8-1.3c-.5-.2-.8-.5-1.1-.9.5-.6.8-1.2.9-1.7.1-.1.2-.1.3-.2.5-.8.7-1.4.5-1.9-.1-.2-.2-.4-.4-.6 0-.5-.1-1-.2-1.5-.2-.8-1.3-2.4-3.6-2.4-2 0-3 1.2-3.4 2-.3-.1-.6-.1-.9-.1-1.7.1-2.9 1-3.4 2.5-.5-.1-.9-.2-1.3-.2-2.5 0-3.6 1.7-3.9 2.7C4 8.9 4 9.5 4 10c-.2.1-.3.3-.4.5-.3.5-.1 1.3.4 2.2 0 .1.1.2.3.3.2.5.6 1.4 1.3 2.1-.5.3-1 .6-1.5.8-1.6.5-3.8 1.6-4.1 5 0 .3.2.9.6 1 .8.2 3.6.6 7.4.6 3.7 0 6.5-.5 7.3-.6.5-.1.8-.6.7-1 0-.2 0-.4-.1-.5 2.3-.5 3.5-1.9 4.1-2.7l.1-.1c.1-.2.2-.4.1-.6 0-.1-.1-.2-.1-.2 1.2-.1 2.4-.5 3.1-.7.5-.2.8-.7.7-1-.2-3.2-2.2-3.9-3.2-4.4"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-quit"><path d="M12 23C6.2 23 1.5 18.2 1.5 12.4c0-3.7 2-7.2 5.1-9.1.4-.2.9-.1 1.1.3.2.4.1.8-.3 1.1C4.7 6.3 3 9.2 3 12.4c0 5 4 9 9 9 4.9 0 9-4.1 9-9 0-3.2-1.7-6.2-4.4-7.8-.4-.2-.5-.7-.3-1.1.2-.4.7-.5 1-.3 3.2 1.9 5.2 5.4 5.2 9.1C22.5 18.2 17.8 23 12 23zm0-10.2c-.4 0-.8-.3-.8-.8V1.8c0-.5.4-.8.8-.8s.8.3.8.8V12c0 .4-.4.8-.8.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-receptionist"><path d="M15 12.5h-1.2c-.4 0-.6.3-.6.6 0 .4.3.6.6.6H15c.4 0 .6-.3.6-.6.1-.3-.2-.6-.6-.6zM10.2 12.5H9c-.4 0-.6.3-.6.6 0 .4.3.6.6.6h1.2c.4 0 .6-.3.6-.6s-.3-.6-.6-.6z"/><path d="M22.8 17.6c-1.2-1.2-2.2-5.6-2.2-7.5 0-4.8-3.8-8.7-8.6-8.7-4.7 0-8.6 3.9-8.6 8.7 0 2-1.1 6.4-2.2 7.5-.3.3-.3.7 0 .9 1.4 1.4 6 2 6.5 2h.1c1.2 1.2 2.7 1.8 4.3 1.8s3.1-.7 4.3-1.8h.1c.5-.1 5.1-.7 6.5-2 .1-.2.1-.6-.2-.9zM4.9 10.2C4.7 6 8 2.7 12 2.7s7.3 3.3 7.3 7.4c0 .3 0 .7-.1 1-4.9-.3-9.4-4.5-9.6-5.3 0-.4-.3-.6-.6-.6-.4 0-.6.3-.6.6 0 2.7-2.3 4.4-3.5 5.1v-.7zm-2.3 7.7c.5-.7.9-1.8 1.3-2.9.3.7.8 1.1 1.4 1.2.3 1.1.8 2 1.3 2.8-1.5-.2-3.1-.6-4-1.1zM14 18c-.2-.8-.9-1.5-1.8-1.5-1 0-1.8.8-1.8 1.8s.8 1.8 1.8 1.8c.7 0 1.2-.4 1.6-.9.7 0 1.5-.1 2.2-.3-1.1 1.4-2.5 2.2-4 2.2-2.6 0-4.9-2.3-5.7-5.8 0-.2-.2-.4-.4-.4h-.2c-.1 0-.3 0-.4.1-.1 0-.6-.6-.6-1.8 0-.3 0-.6.1-.9.9-.4 3.6-1.9 4.5-4.7 1.9 2 5.9 4.7 9.9 4.9 0 .2.1.5.1.7 0 1.1-.4 1.8-.6 1.8-.2-.1-.4-.1-.6 0s-.3.2-.4.4c0 .1-.1.2-.1.4-.7 1.7-1.9 2.2-3.6 2.2zm-1.3.4c0 .3-.2.5-.5.5s-.5-.2-.5-.5.2-.5.5-.5.5.2.5.5zm4.8.7c.5-.8 1-1.8 1.3-2.8.6 0 1.1-.5 1.4-1.2.3 1.1.8 2.1 1.3 2.9-1 .4-2.6.8-4 1.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-record"><path class="st0" d="M12 22.8c6 0 10.8-4.8 10.8-10.8S18 1.2 12 1.2 1.2 6 1.2 12 6 22.8 12 22.8zm0 1.2C5.4 24 0 18.6 0 12S5.4 0 12 0s12 5.4 12 12-5.4 12-12 12zM6.4 12.9h.5c.1 0 .1.1.1.2l.9 1.6c.3.2.5.3.7.3h1.2l-1.2-2c-.1-.1-.1-.2-.2-.2-.1-.1-.2-.1-.2-.2.2-.1.3-.2.5-.3s.2-.2.3-.3c.1-.1.2-.3.2-.5s.1-.3.1-.5 0-.5-.1-.7l-.5-.5c-.2-.1-.4-.2-.7-.3-.3-.1-.6-.2-1-.2H5.1V15h1.3v-2.1zm0-.9v-1.7H7c.3 0 .6.1.8.2.1.2.2.4.2.6 0 .1 0 .2-.1.3 0 .1-.1.2-.2.3-.1.1-.2.1-.3.2-.1.1-.2.1-.4.1h-.6zM14 9.3h-3.6V15H14v-1h-2.3v-1.3h1.8v-1h-1.8v-1.3H14V9.3zm4.6 4.2h-.1s-.1 0-.1.1c-.1.1-.2.1-.2.2-.1 0-.2.1-.2.1-.1 0-.2 0-.3.1h-.3c-.2 0-.4 0-.6-.1s-.3-.2-.5-.4c-.1-.2-.2-.3-.3-.6-.1-.2-.1-.5-.1-.8 0-.3 0-.5.1-.7l.3-.6c.1-.2.3-.3.5-.4s.4-.1.7-.1h.4c.1 0 .2 0 .3.1.1 0 .1.1.2.1s.1.1.2.1l.1.1H19l.1-.1.4-.6c-.1-.1-.2-.2-.4-.3-.1-.1-.3-.2-.5-.2-.2-.1-.3-.1-.5-.2-.2 0-.4-.1-.6-.1-.4 0-.8.1-1.2.2-.4.1-.7.3-.9.6-.3.3-.5.6-.6.9-.1.4-.2.7-.2 1.2 0 .4.1.8.2 1.2.1.4.3.7.5.9.2.3.5.5.9.6.3.1.7.2 1.2.2s.9-.1 1.2-.2c.3-.2.6-.4.9-.7l-.5-.5c-.2 0-.2 0-.4-.1.1 0 .1 0 0 0z"/></symbol><symbol viewBox="0 0 26 24" id="Vlt-icon-refresh"><path d="M7.2 9.6l-3.4 3-3.1-3c-.3-.3-.3-.7 0-1 .3-.3.7-.3 1 0L3.1 10C3.9 5.1 8 1.5 13 1.5c4 0 7.6 2.4 9.2 6 .2.4 0 .8-.4.9-.4.2-.8 0-.9-.4-1.3-3-4.4-5.1-7.9-5.1-4.3 0-7.9 3.2-8.6 7.3l1.9-1.7c.3-.3.7-.2 1 0 .2.4.2.8-.1 1.1zm18.1 4.5c.3.3.3.7 0 1-.3.3-.7.3-1 0l-1.4-1.4c-.8 4.8-5 8.4-9.9 8.4-4 0-7.6-2.4-9.2-6-.2-.4 0-.8.4-.9.3-.2.8 0 .9.4 1.4 3.1 4.5 5.2 7.9 5.2 4.3 0 7.9-3.2 8.6-7.3l-1.9 1.7c-.3.3-.7.2-1 0-.3-.3-.2-.7.1-1l3.4-3.1 3.1 3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-refresh-dollar"><path d="M11.2 16c-.7-.1-1.1-.4-1.3-.7s-.4-.5-.4-.5l.4-.2.4-.2.2.2c.1.1.3.3.6.4v-2.6h-.2c-.7-.2-1.1-.6-1.3-1s-.3-.9-.2-1.3c.3-.4.5-.8.7-1.1.3-.3.6-.5 1.1-.6v-.7h1v.7c.6.1.9.4 1.2.6s.3.5.3.5l-.4.2-.4.2s-.1-.1-.1-.2c-.1-.1-.3-.2-.5-.3v2.3c.8.4 1.2.9 1.4 1.4s.1.9.1 1.2c0 .4-.2.8-.4 1.2s-.6.5-1.1.6v.7h-1V16h-.1zm1-1c.2-.1.3-.2.4-.3.1-.1.2-.3.2-.5.1-.2 0-.4-.1-.6-.1-.2-.3-.4-.5-.6v2zm-1-5.6c-.2.1-.3.2-.5.4s-.2.3-.2.4c-.1.2 0 .4.1.6.1.2.3.4.6.5v-1-.9zm8.8 3.8l-.9.8-.9.8-.5-.4-.4-.4 1.6-1.4 1.5-1.4 1.5 1.4 1.5 1.4-.4.4-.5.4-.6-.6-.6-.6c-.4 2.2-1.5 4.1-3.2 5.5-1.6 1.4-3.8 2.2-6.1 2.2-1.8 0-3.6-.5-5.1-1.5s-2.7-2.4-3.5-4.1l.6-.1.6-.2c.7 1.4 1.7 2.6 3 3.5 1.3.8 2.8 1.3 4.4 1.3 2 0 3.9-.8 5.3-2 1.4-1.3 2.4-3 2.7-5zM2.7 10C3.2 7.8 4.3 5.9 6 4.5s3.7-2.2 6-2.2c1.9 0 3.6.6 5.1 1.5s2.7 2.4 3.5 4.1l-.6.3-.6.2c-.6-1.4-1.7-2.7-3-3.5S13.6 3.6 12 3.6c-2 0-3.9.7-5.3 1.9S4.3 8.4 4 10.3l.8-.8.8-.8.4.5.5.5L5 11.1l-1.6 1.4L2 11.2.5 9.8l.5-.5.5-.5.6.6.6.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-reload"><path d="M12.7 1.5c-5 0-9.3 3.7-10.1 8.5L1.2 8.7c-.3-.3-.7-.3-1 0-.3.3-.3.7 0 1l3.2 3.1 3.4-3.1c.3-.3.3-.7.1-1-.3-.3-.7-.3-1-.1L4 10.3c.7-4.2 4.3-7.4 8.7-7.4 4.9 0 8.9 4 8.9 8.9s-4 8.9-8.9 8.9c-.4 0-.7.3-.7.7s.3.7.7.7c5.7 0 10.3-4.6 10.3-10.3S18.4 1.5 12.7 1.5"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-remove"><path d="M12 22.6C6.1 22.6 1.4 17.9 1.4 12S6.1 1.4 12 1.4 22.6 6.1 22.6 12 17.9 22.6 12 22.6zm0-1.2c5.2 0 9.4-4.2 9.4-9.3 0-5.2-4.2-9.4-9.3-9.4-5.2 0-9.3 4.2-9.3 9.4-.1 5.1 4 9.2 9.2 9.3zM7 11.3h10v1.3H7v-1.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-reorder"><path d="M3 7.6h18V9H3V7.6zm0 3.6h18v1.4H3v-1.4zm0 3.5h18v1.4H3v-1.4zM12 2l3 2.8H9L12 2zM9 19h6l-3 2.8L9 19z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-reply"><path d="M10.9 16v3.8c0 .9-1.2 1.4-1.9.7l-7.7-8.3c-.4-.4-.4-1.1 0-1.5L9 2.4c.7-.8 1.9-.3 1.9.7v3.8c6.5 1.4 10.7 6.3 12.1 13.8.2 1.1-1.3 1.8-2 .8-2.3-3.5-5.5-5.3-10.1-5.5zm10.8 4.2C20.2 13.4 16.3 9.1 10.2 8l-.5-.2V3.3l-7.4 8 7.4 8v-4.6h.6c5 .1 8.7 1.9 11.4 5.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-report"><path d="M17.6 2.2h-.9c-.3 0-.6-.3-.6-.6s.3-.6.6-.6h3v3c0 .3-.2.6-.6.6-.3 0-.6-.2-.6-.6V3.2c-3.1 3.4-6.3 5.8-9.4 7.3-1 .5-2.1 1-3.2 1.3l-1.2.3c-.3.1-.7-.1-.7-.5-.2-.3 0-.6.3-.7.2 0 .5-.1 1.1-.3 1-.3 2-.8 3-1.3 3.1-1.4 6.2-3.8 9.2-7.1zM2.7 21.8h19.2c.3 0 .6.3.6.6s-.3.6-.6.6H2.6c-.6 0-1.1-.5-1.1-1.1V2.6c0-.3.2-.6.6-.6s.6.2.6.6V21.8zm2.2-1.2c-.6 0-1.1-.5-1.1-1.1v-1.9c0-.6.5-1.1 1.1-1.1h.9c.6 0 1.1.5 1.1 1.1v1.9c0 .6-.5 1.1-1.1 1.1h-.9zm.8-1.2v-1.6h-.6v1.6h.6zm3.5 1.2c-.6 0-1.1-.5-1.1-1.1v-5.2c0-.6.5-1.1 1.1-1.1h.9c.6 0 1.1.5 1.1 1.1v5.2c0 .6-.5 1.1-1.1 1.1h-.9zm.8-1.2v-4.9h-.7v4.9h.7zm3.4 1.2c-.6 0-1.1-.5-1.1-1.1V11c0-.6.5-1.1 1.1-1.1h.9c.6 0 1.1.5 1.1 1.1v8.5c0 .6-.5 1.1-1.1 1.1h-.9zm.8-1.2v-8.2h-.7v8.2h.7zm3.4 1.2c-.6 0-1.1-.5-1.1-1.1V7.8c0-.6.5-1.1 1.1-1.1h.9c.6 0 1.1.5 1.1 1.1v11.8c0 .6-.5 1.1-1.1 1.1l-.9-.1zm.8-1.2V7.9h-.7v11.5h.7z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-rocket"><path d="M1.1 23c-.2 0-.3-.1-.4-.2-.2-.1-.2-.4-.1-.6 1.8-4.7 3.6-7 5.5-7 .6 0 1.2.3 1.7.8.8.8.9 1.6.7 2.1-.4 1.7-2.8 3.3-7.3 4.8 0 .1-.1.1-.1.1zm5-6.7c-.6 0-1.2.5-1.9 1.4-.7.9-1.4 2.2-2.1 3.8 1.5-.6 2.8-1.2 3.7-1.8 1.2-.8 1.6-1.4 1.7-1.8.1-.4-.1-.7-.4-1.1-.4-.3-.7-.5-1-.5zM22.9 1h.6v.5c0 2.9-.5 5.4-1.5 7.6-.8 1.7-2 3.3-3.4 4.5-.3.2-.5.4-.8.6-.1.9-.5 1.9-1.2 2.9-.6.8-1.4 1.6-2.5 2.4-1.8 1.4-3.5 2.2-3.6 2.2-.3.1-.6.1-.7-.2-.2-.2-.1-.5.1-.7 0 0 .5-.5 1.1-1.4.4-.7 1-1.9 1-3.3-.9-.3-2-1.3-2.5-1.8-.6-.3-1.6-1.4-2-2.3-1.4.1-2.6.6-3.4 1-.9.5-1.5 1-1.5 1-.2.2-.5.2-.7.1-.2-.2-.3-.4-.2-.7 0-.1.9-1.7 2.3-3.4.8-1 1.7-1.8 2.6-2.4 1-.7 2-1.1 3-1.1.2-.3.4-.5.7-.8 1.3-1.4 2.9-2.5 4.7-3.3 2.3-.9 4.9-1.4 7.9-1.4zM4.1 11.8c1.1-.5 2.2-.8 3.4-.9.1-.7.5-1.9 1.2-3.1-1.9.6-3.5 2.5-4.6 4zm8.1 7.8c1.6-1 3.6-2.7 4.2-4.5-1.3.7-2.5 1.1-3.3 1.2 0 1.2-.4 2.3-.9 3.3zm5.6-6.8c2.9-2.4 4.4-6.1 4.5-10.7-4.8.1-8.7 1.6-11.2 4.3-2.1 2.3-2.6 4.7-2.6 5 0 0 0 .2.5.8.3.4.8.9 1.2 1.4.5.5 1 .9 1.4 1.2.6.4.9.4.9.4.4.1 2.9-.4 5.3-2.4zM16 10.9c-1.6 0-2.9-1.2-2.9-2.8 0-1.5 1.3-2.8 2.9-2.8s2.9 1.2 2.9 2.8c0 1.6-1.3 2.8-2.9 2.8zm0-4.4c-1 0-1.7.7-1.7 1.7s.8 1.6 1.7 1.6 1.7-.7 1.7-1.6S17 6.5 16 6.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-rows"><path d="M21.9 2.2H2.2v3.7h19.7V2.2zm.1 5H2C1.3 7.2.9 7 .9 6.4V1.6C.9 1 1.3.9 2 .9h20c.7 0 1.1.1 1.1.8v4.8c0 .5-.4.7-1.1.7zm0 7.9H2c-.7 0-1.2-.1-1.2-.8V9.6c.1-.6.5-.7 1.2-.7h20c.7 0 1.1.1 1.1.8v4.8c0 .5-.4.6-1.1.6zm-.1-5H2.2v3.7h19.7v-3.7zm.1 13H2c-.7 0-1.2-.1-1.2-.8v-4.8c0-.7.4-.8 1.2-.8h20c.7 0 1.1.1 1.1.8v4.8c0 .7-.4.8-1.1.8zm-.1-5H2.2v3.7h19.7v-3.7z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-salesforce"><path d="M17.9 5.1c3.2 0 5.9 2.7 5.9 6s-2.6 6-5.9 6h-.4c-1.1 1.4-2.9 2-4.6 1.6-.9 1.3-2.3 2-3.8 2-1.7 0-3.4-1-4.1-2.6h-.2C2.1 18.2 0 16 0 13.4c0-1.5.7-2.9 1.8-3.8-.2-.5-.3-1.1-.3-1.6 0-2.6 2.1-4.8 4.7-4.8 1.4 0 2.7.7 3.6 1.8.8-.7 1.9-1.1 3-1.1 1.3 0 2.5.6 3.4 1.5.5-.2 1.1-.3 1.7-.3zm0 10.8c2.5 0 4.6-2.1 4.6-4.7s-2.1-4.7-4.6-4.7c-.6 0-1.1.1-1.7.3l-.5.2-.3-.4c-.6-.9-1.6-1.4-2.7-1.4-1 0-2 .5-2.6 1.3l-.5.7-.5-.9c-.6-1.1-1.7-1.8-3-1.8-1.8 0-3.3 1.6-3.3 3.5 0 .6.1 1.1.4 1.6l.3.5-.5.3c-1 .6-1.6 1.8-1.6 3 0 1.9 1.5 3.5 3.4 3.5h.5l.5-.1.2.5c.5 1.3 1.8 2.2 3.1 2.2 1.2 0 2.4-.7 2.9-1.8l.3-.5.5.2c1.4.5 3 0 3.9-1.3l.2-.3.4.1h.6zm-4.6-7c.3-.3.7-.3.9 0 .2.2.3.6 0 .9l-4.4 4.5-2.6-2.6c-.2-.3-.2-.7.1-.9.3-.2.6-.2.9 0l1.6 1.7 3.5-3.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-save"><path d="M21.3 20.6c0 .4-.3.7-.7.7h-1.7V15c0-.9-.7-1.6-1.6-1.6H6.6c-.9 0-1.6.7-1.6 1.6v6.3H3.4c-.4 0-.7-.3-.7-.7V3.4c0-.4.3-.7.7-.7h2.7v5.1c0 .9.7 1.6 1.6 1.6h6.6c.9 0 1.6-.7 1.6-1.6V2.7h.7c.2 0 .3.1.5.2l4 4.1c.1.1.2.3.2.5v13.1zm-3.7.7H6.3V15c0-.2.2-.3.3-.3h10.7c.2 0 .3.1.3.3v6.3zM7.3 2.7h2.5V6c0 .3.3.6.6.6s.6-.3.6-.6V2.7h3.5v5.1c0 .2-.1.3-.3.3H7.7c-.2 0-.3-.2-.3-.3l-.1-5.1zm14.6 3.4L17.8 2c-.4-.4-.8-.6-1.4-.6h-13c-1.1 0-1.9.9-1.9 1.9v17.2c0 1.1.9 1.9 1.9 1.9h17.2c1.1 0 1.9-.9 1.9-1.9v-13c0-.5-.2-1-.6-1.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-screen-share"><path d="M1 0h22c.6 0 1 .5 1 1v16.2c0 .6-.4 1-1 1H12.8v2.3H18c.4 0 .8.3.8.8s-.4.7-.8.7H6c-.4 0-.8-.3-.8-.8s.3-.8.8-.8h5.2v-2.3H1c-.6 0-1-.5-1-1V1c0-.5.4-1 1-1zm21.7 16.9V1.3H1.3v15.6h21.4zm-15-7.1c-.5-.1-1-.6-1-1.1-.1-.5.2-1.1.7-1.3l8.2-4.3c.2-.1.4-.2.6-.2.3 0 .6.1.8.3.4.3.6.8.5 1.4l-2.3 9.2c-.1.5-.6.9-1.2 1h-.1c-.5 0-1-.3-1.2-.8l-.4-.9-1 1.2c-.2.3-.5.5-.9.5h-.1c-.3 0-.6-.1-.8-.3l-1.7-1.4c-.5-.5-.6-1.3-.2-1.8l1-1.3-.9-.2zm8.4-5.6L7.9 8.5l3 .6-2.3 3 1.7 1.4 2.3-3 1.3 2.9 2.2-9.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-search"><path d="M21.5 21.4c-.2.2-.5.2-.7 0l-5.2-5.1c.3-.2.5-.5.8-.8l5.1 5.1c.2.3.2.7 0 .8M2.4 9.8c0-4.1 3.3-7.4 7.4-7.4 4.1 0 7.4 3.3 7.4 7.4 0 4.1-3.3 7.4-7.4 7.4-4.1 0-7.4-3.3-7.4-7.4m20 9.9l-5.3-5.3c.9-1.4 1.4-3 1.4-4.7 0-4.8-3.9-8.8-8.8-8.8C4.9 1 1 4.9 1 9.8s3.9 8.8 8.8 8.8c1.7 0 3.3-.5 4.7-1.4l5.3 5.2c.4.4.8.5 1.3.5s1-.2 1.3-.6c.8-.6.8-1.8 0-2.6"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-send"><path d="M3.1 20.8l3.6-8.2H13c.6 0 1.1-.5 1.1-1.1 0-.6-.5-1.1-1.1-1.1H6.4L3.1 3.2 20.8 12 3.1 20.8zm19.1-10.5L3.5 1C1.9.2.3 1.9 1 3.5L4.7 12 1 20.5c-.7 1.6.9 3.3 2.5 2.5l18.7-9.3c1.3-.7 1.3-2.7 0-3.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-send-negative"><path d="M22.3 10.5L3.2 1c-.6-.3-1.4-.2-1.9.3S.7 2.5.9 3.2l3.5 7.9h8.8c.5 0 .9.4.9.9s-.4.9-.9.9H4.4l-3.5 8c-.3.7-.1 1.4.4 1.9s1.2.6 1.9.3l19.1-9.5c.6-.3.9-.9.9-1.5 0-.8-.4-1.3-.9-1.6"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-separator"><path d="M12.1 14.8c-1.5 0-2.9-1.3-2.9-2.9S10.5 9 12.1 9s2.9 1.3 2.9 2.9c-.1 1.5-1.4 2.9-2.9 2.9zM0 12.5v-1.3h7.8v1.3H0zm16.2-1.3H24v1.3h-7.8v-1.3zm-4.1 2.2c.8 0 1.5-.7 1.5-1.5s-.7-1.5-1.5-1.5-1.5.7-1.5 1.5.6 1.5 1.5 1.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-share-1"><path d="M12.6 3v12.3c0 .4-.3.6-.7.6s-.6-.3-.6-.6V3.1L7 7.3c-.3.3-.7.3-1 0-.2-.2-.2-.7 0-.9L11.5 1c.3-.2.7-.2.9 0L18 6.5c.3.3.3.7 0 .9-.3.3-.7.3-.9 0L12.6 3zm6.3 7.1h-3.8c-.4 0-.7-.3-.7-.6s.3-.6.7-.6h4.4c.4 0 .6.3.6.6v13c0 .4-.3.6-.6.6h-15c-.4 0-.7-.3-.7-.6v-13c0-.4.3-.6.7-.6h4.3c.4 0 .6.3.6.6s-.3.6-.6.6H5.2v11.7h13.7V10.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-share-2"><path d="M18.5 16.4c-.8 0-1.6.3-2.2.8l-7.9-4.5c.1-.2.1-.5.1-.8s0-.5-.1-.8l7.8-4.4c.6.5 1.4.9 2.3.9 1.8 0 3.3-1.4 3.3-3.2s-1.5-3.2-3.3-3.2-3.3 1.4-3.3 3.2c0 .3 0 .5.1.8L7.4 9.7c-.6-.6-1.4-.9-2.3-.9-1.8 0-3.3 1.4-3.3 3.2s1.5 3.2 3.3 3.2c.9 0 1.7-.3 2.3-.9l7.9 4.5c-.1.2-.1.5-.1.7 0 1.7 1.5 3.2 3.2 3.2 1.8 0 3.2-1.4 3.2-3.2.1-1.6-1.3-3.1-3.1-3.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-shield"><path d="M12 1.8C8.7 4.3 6.6 5.2 3.3 5.5v5.7c0 5.2 3.6 9.7 8.7 11 5.1-1.3 8.7-5.8 8.7-11V5.5c-3.3-.3-5.4-1.2-8.7-3.7zm10 3.6v5.8c0 5.8-4 10.8-9.7 12.3h-.6C6 22 2 17 2 11.2V5.4c0-.6.5-1.1 1.1-1.2C6.3 3.9 8.2 3 11.3.7c.4-.3 1-.3 1.4 0 3.1 2.3 5 3.2 8.2 3.5.6.1 1.1.6 1.1 1.2zM10.9 7.3l.2 7.3h1.8l.2-7.3h-2.2zm0 9.4c0 .6.4 1 1.1 1 .7 0 1.1-.4 1.1-1s-.4-1-1.1-1c-.6 0-1.1.3-1.1 1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-shout"><path d="M10.4 6.2c1 .6 1.4 1.3 1.3 2-.2 1.1-1.7 1.7-2.7 2 .2.2.5.4 1.1.4h.3l.2.2c.1.1.6.7.5 1.5 0 .3-.2.8-.8 1.1-1.5.9-1.7 1.3-1.7 1.3 0 .4 1.2.7 1.7.7h.3l.2.3c.1.1.5.9.2 1.7-.2.5-.7.9-1.4 1.2v.4c0 1.5-.7 3.2-4 3.2h-3c-.5 0-.6 0-.6.7 0 .4-.3.7-.7.7s-.8-.2-.8-.6c0-1.3.7-2 2-2h3c2.7 0 2.7-1.3 2.7-1.9v-1.5l.5-.1c.5-.1.9-.3 1-.5v-.2c-1.1-.2-2.6-.7-2.6-2 0-.7.7-1.4 2.4-2.4.1-.1.2-.1.2-.2s0-.1-.1-.2c-1.5-.2-2.2-1.3-2.3-2l-.2-.7.7-.1c1.2-.3 2.5-.9 2.5-1.2 0 0-.1-.3-.7-.7C6.3 5.2 6.4.8 6.4.6c0-.3.3-.6.7-.6.4 0 .6.3.6.7 0 0-.1 3.8 2.7 5.5zm4.2 3.5c.9 1.2 1.3 2.7 1.2 4.3-.1 1.5-.7 3-1.6 4-.2.3-.6.3-.9.1-.3-.2-.3-.7-.1-.9.8-.8 1.2-2 1.3-3.2.1-1.3-.3-2.5-1-3.5-.2-.3-.1-.7.2-.9.3-.2.6-.1.9.1zm2.7-3c1.6 2.2 2.3 4.9 2.1 7.5-.1 2.4-1 4.8-2.6 6.6-.2.3-.6.3-.9.1-.3-.2-.3-.6-.1-.9 1.4-1.7 2.2-3.8 2.3-5.9.2-2.4-.5-4.8-1.9-6.7-.2-.3-.1-.7.2-.9.3-.1.7-.1.9.2zm3.1-2.3c1.6 2.2 3.3 5.3 3.1 10-.2 3.6-1.4 6.5-3.8 9.3-.2.3-.7.3-.9.1-.3-.2-.3-.7-.1-.9 2.3-2.6 3.3-5.2 3.5-8.5.2-4.2-1.3-7-2.8-9.2-.2-.3-.1-.7.2-.9.2-.3.6-.2.8.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-sidebar"><path d="M21.4 1H2.6C1.8 1 1 1.8 1 2.6v18.8c0 .8.7 1.6 1.6 1.6h18.8c.8 0 1.6-.7 1.6-1.6V2.6c0-.8-.8-1.6-1.6-1.6zM2.6 2.3h18.8c.2 0 .3.2.3.3v2.2H2.3V2.6c0-.2.1-.3.3-.3zm-.3 19.1V6.1h5.8v15.7H2.6c-.2-.1-.3-.2-.3-.4zm19.1.3h-12V6.1h12.4v15.3c-.1.2-.2.3-.4.3zM16.7 4.4c-.5 0-.8-.4-.8-.8 0-.5.4-.8.8-.8s.8.4.8.8-.3.8-.8.8zm0-1.2c-.2 0-.4.2-.4.4s.2.4.4.4.4-.2.4-.4c0-.3-.2-.4-.4-.4zm1.9 1.2c-.5 0-.8-.4-.8-.8 0-.5.4-.8.8-.8s.8.4.8.8-.3.8-.8.8zm0-1.2c-.2 0-.4.2-.4.4s.2.4.4.4.4-.2.4-.4c-.1-.3-.2-.4-.4-.4zm1.9 1.2c-.5 0-.8-.4-.8-.8 0-.5.4-.8.8-.8.5 0 .8.4.8.8s-.4.8-.8.8zm0-1.2c-.2 0-.4.2-.4.4s.2.4.4.4.4-.2.4-.4c-.1-.3-.2-.4-.4-.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-sidenav-only"><path d="M22 22.4c.2 0 .3-.2.3-.4V2c0-.2-.2-.4-.3-.4H2c-.2 0-.3.2-.3.4v20c0 .2.2.4.3.4h20zm0 1.2H2c-.9 0-1.6-.7-1.6-1.6V2C.4 1.1 1.1.4 2 .4h20c.9 0 1.6.7 1.6 1.6v20c.1.9-.7 1.6-1.6 1.6z"/><path d="M7.4 1.5h1.3V23H7.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-small-file"><path d="M16 2.4v3.7c0 .1.1.2.1.2h3.6L16 2.4zm4.3 5.5h-4.2c-1 0-1.9-.8-1.9-1.8V1.7H4.4c-.4 0-.7.3-.7.7v19.1c0 .4.3.7.7.7h15.1c.4 0 .7-.3.7-.7V7.9zM16 0l6 6.2v15.4c0 1.3-1.1 2.4-2.4 2.4H4.4C3.1 24 2 22.9 2 21.6V2.4C2 1.1 3.1 0 4.4 0H16z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-small-image"><path d="M21.8 10.8c-2.3.1-3.7 1.1-6 3.6l-1.4 1.4c-1.7 1.6-3.6 2.7-5.5 3.3-.5.1-.9-.1-1-.6-.1-.4.1-.9.6-1 .9-.3 1.8-.7 2.6-1.2-2.6-2.5-5.5-3.8-8.7-3.6v7.8c0 .7.6 1.3 1.3 1.3h17c.7 0 1.3-.6 1.3-1.3v-9.7zm0-1.7V3.5c0-.7-.6-1.3-1.3-1.3h-17c-.7 0-1.3.6-1.3 1.3V11c1.5-.1 3.1.1 4.5.6 1-3.1 4.3-4.7 7.4-3.7 1.4.5 2.5 1.4 3.2 2.7 1.4-1 2.7-1.4 4.5-1.5zM16 11.7c-1-2.1-3.5-2.9-5.5-2-1.1.5-1.9 1.4-2.2 2.6 1.4.7 2.8 1.7 4 3 .3-.2.5-.5.8-.7.4-.4.7-.7 1.3-1.4.6-.5 1.1-1 1.6-1.5zM3.5.5h17c1.7 0 3 1.3 3 3v17c0 1.7-1.3 3-3 3h-17c-1.7 0-3-1.3-3-3v-17c0-1.7 1.3-3 3-3zm8 3.4h1.7v2.2h-1.7V3.9zM6.4 5.8l1.4-1L9 6.6l-1.4 1-1.2-1.8zm10.3-1l1.4.9L17 7.5l-1.4-.9 1.1-1.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-snooze"><path d="M7.1 2.6c-3.1 1.7-5 5-5 9.1 0 5.6 4.6 10.2 10.2 10.2 4 0 7.4-1.9 9.1-5-.9.2-1.9.4-2.9.4-6.2 0-11.8-5.6-11.8-11.8 0-1 .1-2 .4-2.9M12.3 23C6.1 23 1 17.9 1 11.7 1 6.7 3.6 2.6 7.8 1c.2 0 .5 0 .6.2.2.2.2.4.1.6-.4 1.1-.7 2.4-.7 3.7 0 5.6 5.1 10.6 10.6 10.6 1.3 0 2.6-.2 3.8-.7.2-.1.4 0 .6.1.2.2.2.5.2.7-1.6 4.2-5.7 6.8-10.7 6.8zm3.3-15.5l3.7-4.8h-2.8c-.5 0-.8-.3-.8-.8s.4-.8.8-.8h4.3c.4 0 .7.2.7.8 0 .2-.1.5-.2.6l-3.7 4.9h3.2c.5 0 .8.3.8.8s-.4.8-.8.8h-4.4c-.6 0-.9-.2-.9-.9-.2-.2 0-.4.1-.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-sort"><path d="M12 2l6.5 8.4h-13L12 2zM5.5 13.6h13L12.1 22l-6.6-8.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-squares"><path class="st0" d="M3 2.3c-.4 0-.7.3-.7.7v6.2c0 .4.3.7.7.7h6.2c.4 0 .7-.3.7-.7V3c0-.4-.3-.7-.7-.7H3zM3 1h6.2c1.1 0 2 .9 2 2v6.2c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2zm0 13.1c-.4 0-.7.3-.7.7V21c0 .4.3.7.7.7h6.2c.4 0 .7-.3.7-.7v-6.2c0-.4-.3-.7-.7-.7H3zm0-1.3h6.2c1.1 0 2 .9 2 2V21c0 1.1-.9 2-2 2H3c-1.1 0-2-.9-2-2v-6.2c0-1.1.9-2 2-2zM14.8 2.3c-.4 0-.7.3-.7.7v6.2c0 .4.3.7.7.7H21c.4 0 .7-.3.7-.7V3c0-.4-.3-.7-.7-.7h-6.2zm0-1.3H21c1.1 0 2 .9 2 2v6.2c0 1.1-.9 2-2 2h-6.2c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2zm0 13.1c-.4 0-.7.3-.7.7V21c0 .4.3.7.7.7H21c.4 0 .7-.3.7-.7v-6.2c0-.4-.3-.7-.7-.7h-6.2zm0-1.3H21c1.1 0 2 .9 2 2V21c0 1.1-.9 2-2 2h-6.2c-1.1 0-2-.9-2-2v-6.2c0-1.1.9-2 2-2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-stack"><path d="M13.3.9L21.9 6c1.2.7 1.2 2.7 0 3.4l-8.6 5.1c-.8.5-1.8.5-2.5 0L2.1 9.4C.9 8.6.9 6.7 2.1 6L10.7.9c.8-.5 1.8-.5 2.6 0zM2.8 7.2c-.3.2-.3.8 0 1l8.6 5.1c.4.2.8.2 1.2 0l8.6-5.1c.3-.2.3-.8 0-1L12.6 2c-.4-.2-.8-.2-1.2 0L2.8 7.2zm-1.5 6c-.3-.2-.4-.6-.2-.9.2-.4.6-.5.9-.3l9.4 5.6c.4.2.8.2 1.2 0L22 12c.3-.2.7-.1.9.2.2.3.1.7-.2.9l-9.4 5.6c-.8.5-1.8.5-2.5 0-.1.1-9.5-5.5-9.5-5.5zm0 4.3c-.3-.2-.4-.6-.2-.9s.6-.4.9-.2l9.4 5.6c.4.2.8.2 1.2 0l9.4-5.6c.3-.2.7-.1.9.2.2.3.1.7-.2.9l-9.4 5.6c-.8.5-1.8.5-2.5 0-.1 0-9.5-5.6-9.5-5.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-star"><path d="M18.2 21.2l-1.1-5.1c-.1-.9.3-2.1.9-2.7l3.7-3.8-5.1-.8c-.9-.2-1.8-.9-2.3-1.7L12 2.8 9.6 7.1c-.4.8-1.4 1.6-2.3 1.7l-5 .8 3.6 3.8c.6.7 1 1.8.9 2.7l-1.1 5.1 4.9-2.3c.4-.2.9-.3 1.4-.3.5 0 1 .1 1.4.3l4.8 2.3zm-13.3-7l-3.6-3.8c-.7-.7-.3-2 .7-2.1l5-.7c.6-.1 1.2-.6 1.5-1.1l2.4-4.4c.3-.6 1.1-.8 1.7-.5.2.2.4.4.5.6l2.3 4.4c.3.5.9 1 1.4 1l5.1.8c1 .2 1.4 1.4.7 2.1L19 14.2c-.4.4-.6 1.2-.6 1.7l1.1 5.1c.2 1-.8 1.9-1.8 1.4L12.8 20c-.2-.1-.5-.2-.9-.2s-.6.1-.9.2l-4.9 2.3c-.9.5-2-.4-1.8-1.4l1.1-5.1c.1-.4-.1-1.2-.5-1.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-star-full"><path d="M4.9 14.2l-3.6-3.8c-.7-.7-.3-2 .7-2.1l5-.7c.6-.1 1.2-.6 1.5-1.1l2.4-4.4c.3-.6 1.1-.8 1.7-.5.2.2.4.4.5.6l2.3 4.4c.3.5.9 1 1.4 1l5.1.8c1 .2 1.4 1.4.7 2.1L19 14.2c-.4.4-.6 1.2-.6 1.7l1.1 5.1c.2 1-.8 1.9-1.8 1.4L12.8 20c-.2-.1-.5-.2-.9-.2s-.6.1-.9.2l-4.9 2.3c-.9.5-2-.4-1.8-1.4l1.1-5.1c.1-.4-.1-1.2-.5-1.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-store"><path d="M18.5 21.9h1.4c.2 0 .3-.2.3-.3v-7.8h-.5c-1.1 0-2-.5-2.6-1.3-.6.8-1.6 1.3-2.6 1.3s-2-.5-2.6-1.3c-.7.9-1.6 1.4-2.7 1.4s-2-.5-2.6-1.3C6 13.4 5 13.9 4 13.9h-.5v7.8c0 .2.2.3.3.3h7.4v-7h7.3v6.9zm-1.3 0v-5.7h-4.7v5.7h4.7zM3.7 4V2.6c0-.9.7-1.7 1.7-1.7h13c.9 0 1.6.7 1.6 1.7V4c.6.1 1 .5 1.2 1.1l1.8 5.3v.2c0 1.2-.6 2.2-1.5 2.8v8.2c0 .9-.7 1.6-1.6 1.6h-16c-.9 0-1.6-.7-1.6-1.6v-8.2c-.9-.6-1.5-1.6-1.5-2.8v-.2l1.8-5.3c0-.6.5-1 1.1-1.1zM5 3.9h13.7V2.6c0-.2-.2-.4-.3-.4h-13c-.3 0-.4.2-.4.4v1.3zm7.5 6.7c0 1.1.9 2 2 2s2-.9 2-2h1.3c0 1.1.9 2 2 2s1.9-.8 2-1.9l-1.7-5.2c0-.1-.2-.2-.3-.2H4c-.2 0-.3.1-.3.2L2 10.7c.1 1 .9 1.9 2 1.9s2-.9 2-2h1.2c0 1.1.9 2 2 2s2-.9 2-2h1.3zm-3.3 5h1.3v3.7H4.2v-3.7h1.3v2.3h3.7v-2.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-stream"><path d="M1.6 10.5c.3 0 .6.3.6.6v2c0 .4-.3.7-.6.7s-.6-.3-.6-.7v-2c0-.3.2-.6.6-.6zm2-1c.4 0 .7.3.6.7v4.4c0 .4-.3.7-.6.7S3 15 3 14.6v-4.5c0-.3.2-.6.6-.6zM5.7 9c.3 0 .6.3.6.6v5c0 .4-.3.7-.6.7s-.6-.3-.6-.7v-5c0-.3.2-.6.6-.6zm2-3.5c.4 0 .7.3.6.7v12c0 .4-.3.7-.6.7s-.6-.3-.6-.7v-12c0-.4.2-.7.6-.7zm2.1 1c.3 0 .6.3.5.7v10c0 .4-.3.7-.6.7s-.6-.3-.6-.7v-10c0-.4.3-.7.7-.7zm2-1.5c.4 0 .6.3.6.6v13c0 .4-.3.7-.6.7s-.6-.3-.6-.7v-13c0-.3.2-.6.6-.6zm2-3c.4 0 .7.3.7.6v19c0 .4-.3.7-.7.7s-.7-.3-.7-.7v-19c0-.3.3-.6.7-.6zm2.1 3c.4 0 .6.3.7.6v13c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7v-13c0-.3.3-.6.7-.6zm2 2.5c.4 0 .7.3.7.7v7.9c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7v-8c0-.3.3-.6.7-.6zm2.1 3c.4 0 .6.3.7.6v2c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7v-2c0-.3.3-.6.7-.6zm2-1c.4 0 .7.3.7.6v4c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7v-4c0-.3.3-.6.7-.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-surprised"><path d="M12 21.7c5.4 0 9.7-4.3 9.7-9.7S17.4 2.3 12 2.3 2.3 6.6 2.3 12s4.3 9.7 9.7 9.7zm0 1.3C5.9 23 1 18.1 1 12S5.9 1 12 1s11 4.9 11 11-4.9 11-11 11zm0-4.8c-1.5 0-2.7-1.2-2.7-2.7s1.2-2.7 2.7-2.7c1.5 0 2.7 1.2 2.7 2.7 0 1.5-1.2 2.7-2.7 2.7zm0 1.3c2.2 0 4-1.8 4-4s-1.8-4-4-4-4 1.8-4 4 1.8 4 4 4zM7.5 9.7c-.7 0-1.2-.5-1.2-1.2s.5-1.2 1.2-1.2 1.2.5 1.2 1.2-.5 1.2-1.2 1.2zm0 1.3C8.9 11 10 9.9 10 8.5S8.9 6 7.5 6 5 7.1 5 8.5 6.1 11 7.5 11zm9-1.3c-.7 0-1.2-.5-1.2-1.2s.5-1.2 1.2-1.2 1.2.5 1.2 1.2-.5 1.2-1.2 1.2zm0 1.3c1.4 0 2.5-1.1 2.5-2.5S17.9 6 16.5 6 14 7.1 14 8.5s1.1 2.5 2.5 2.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-switch"><path d="M8 5h8c3.9 0 7 3.1 7 7s-3.1 7-7 7H8c-3.9 0-7-3.1-7-7s3.1-7 7-7zm7.8 12.9c3.3 0 6-2.7 6-6s-2.7-6-6-6-6 2.7-6 6 2.7 6 6 6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-table-1"><path d="M7.8 5H2c-.6 0-1-.4-1-1V2c0-.6.4-1 1-1h20c.6 0 1 .4 1 1v2c0 .6-.4 1-1 1h-5.9v3.8H23v1.3h-6.9v4.7H23v1.3h-6.9v4.7H23v1.3H1v-1.3h6.8v-4.7H1v-1.3h6.8V10H1V8.8h6.8V5zm1.3 0v3.8h5.7V5H9.1zm5.8 15.8v-4.7H9.1v4.7h5.8zm0-6V10H9.1v4.7l5.8.1c0-.1 0 0 0 0z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-table-2"><path d="M16.1 20.1H23v1.3H1v-1.3h6.8v-4.7H1v-1.3h6.8V9.4H1V8h6.8V3.3H1V2h22v1.3h-6.9V8H23v1.3h-6.9V14H23v1.3h-6.9v4.8zm-1.2 0v-4.7H9.1v4.7h5.8zm0-6V9.4H9.1v4.7h5.8zm0-6.1V3.3H9.1V8h5.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-tabs"><path d="M21.6 8h-19C1.6 8 1 8.4 1 9v6.2c0 .6.6 1 1.6 1h19c1 0 1.7-.4 1.7-1V9c-.1-.6-.7-1-1.7-1zm-6.7 1.3v5.6H9.2V9.3h5.7zM2.2 14.9V9.3h5.7v5.6H2.2zm19.7 0h-5.6V9.3h5.6v5.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-tag"><path d="M21.7 11.1c.5.5.8 1.2.8 1.9s-.3 1.4-.8 1.9l-6.9 6.9c-.5.5-1.2.8-1.9.8s-1.4-.3-1.9-.8L2.2 13c-.5-.5-.8-1.2-.8-1.9v-7c0-1.5 1.2-2.6 2.6-2.6h7c.7 0 1.4.3 1.9.8l8.8 8.8zm-.9 1L12 3.3c-.3-.3-.6-.5-1-.5H4.1c-.7 0-1.3.6-1.3 1.3V11c0 .4.1.7.4.9l8.8 8.8c.2.2.6.4.9.4s.7-.1.9-.4l6.9-6.9c.2-.2.4-.6.4-.9.1-.3-.1-.6-.3-.8zM5.6 6.4c.4 0 .8-.4.8-.8s-.4-.8-.8-.8-.8.4-.8.8c0 .5.4.8.8.8zm0 1.4c-1.2 0-2.1-1-2.1-2.1 0-1.2 1-2.1 2.1-2.1 1.2 0 2.1 1 2.1 2.1s-.9 2.1-2.1 2.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-tag-add"><path d="M19.7 4.1H22v1.3h-2.3v2.3h-1.3V5.4h-2.3V4.1h2.3V1.8h1.3v2.3zm-.5 8.4c.4.4.7 1 .7 1.6s-.2 1.2-.7 1.6l-5.9 5.9c-.4.4-1 .7-1.6.7s-1.2-.2-1.6-.7L2.6 14c-.4-.4-.7-1-.7-1.6V6.5c0-1.2 1-2.3 2.3-2.3h5.9c.6 0 1.2.2 1.6.7l7.5 7.6zm-.8.8l-7.6-7.6c-.2-.2-.4-.3-.7-.3H4.2c-.6 0-1.1.5-1.1 1.1v5.9c0 .3.1.6.3.8l7.6 7.6c.2.2.5.3.8.3s.6-.1.8-.3l5.9-5.9c.2-.2.3-.5.3-.8-.1-.3-.2-.6-.4-.8zm-13-3.7c-1 0-1.8-.8-1.8-1.8S4.4 6 5.4 6s1.8.8 1.8 1.8c.1 1-.8 1.8-1.8 1.8zm0-1.1c.4 0 .7-.3.7-.7 0-.4-.3-.7-.7-.7s-.7.3-.7.7c0 .4.3.7.7.7z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-tag-search"><path d="M18.8 12.8c.4.4.7 1 .7 1.6s-.2 1.2-.7 1.6l-5.9 5.9c-.4.4-1 .7-1.6.7s-1.2-.2-1.6-.7l-7.6-7.6c-.4-.4-.7-1-.7-1.6V6.8c0-1.2 1-2.3 2.3-2.3h5.9c.6 0 1.2.2 1.6.7l7.6 7.6zm-.8.8L10.4 6c-.2-.2-.5-.3-.8-.3H3.7c-.6 0-1.1.5-1.1 1.1v5.9c0 .3.1.6.3.8l7.6 7.6c.2.2.5.3.8.3s.6-.1.8-.3l5.9-5.9c.2-.2.3-.5.3-.8s-.1-.6-.3-.8zM5 9.9c-1 0-1.8-.8-1.8-1.8S4 6.3 5 6.3s1.8.8 1.8 1.8S6 9.9 5 9.9zm0-1.1c.4 0 .7-.3.7-.7 0-.4-.3-.7-.7-.7-.4 0-.7.3-.7.7s.3.7.7.7zm16.5 1.8c-.2 0-.4-.1-.6-.2l-2.2-2.2c-.5.3-1.1.5-1.8.5-2 0-3.7-1.6-3.7-3.6s1.7-3.7 3.7-3.7S20.6 3 20.6 5c0 .6-.2 1.2-.5 1.8L22.3 9c.3.3.3.8 0 1.2l-.3.4h-.5zm-4.6-7.9c-1.3 0-2.3 1.1-2.3 2.4s1.1 2.4 2.3 2.4 2.3-1.1 2.3-2.4-1-2.4-2.3-2.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-telephone"><path d="M3.2 20.9C1.9 20.7 1 19.5 1 18.3v-13c0-1.3.9-2.4 2.2-2.7.2-1 1-1.6 2-1.6h3.6c.9 0 1.7.6 2 1.5h9.5c1.5 0 2.7 1.2 2.7 2.8v13c0 1.5-1.2 2.7-2.7 2.8h-9.5c-.3.9-1.1 1.5-2 1.5H5.2c-1-.1-1.8-.7-2-1.7zm-.1-1.2V3.8c-.6.2-.9.8-.9 1.4v13c0 .7.3 1.3.9 1.5zM4.4 21c.2.2.4.3.7.3h3.6c.3 0 .5-.1.7-.3.1-.2.2-.4.2-.6V3.1c0-.2-.1-.4-.2-.6-.1-.2-.4-.3-.7-.3H5.2c-.3 0-.5.1-.7.3-.2.2-.3.4-.3.6v17.4c0 .2.1.3.2.5zm17.5-2.7v-13c0-.9-.7-1.6-1.6-1.6h-9.5v16.2h9.5c.8 0 1.6-.8 1.6-1.6zM13.2 12c-.5 0-.9-.4-.9-.9s.4-.9.9-.9.9.4.9.9-.4.9-.9.9zm2.8 0c-.5 0-.9-.4-.9-.9s.4-.9.9-.9.9.4.9.9c-.1.5-.5.9-.9.9zm2.7 0c-.5 0-.9-.4-.9-.9s.4-.9.9-.9.9.4.9.9-.4.9-.9.9zm-5.5 2.6c-.5 0-.9-.4-.9-.9s.4-.9.9-.9.9.4.9.9-.4.9-.9.9zm2.8 0c-.5 0-.9-.4-.9-.9s.4-.9.9-.9.9.4.9.9c-.1.5-.5.9-.9.9zm2.7 0c-.5 0-.9-.4-.9-.9s.4-.9.9-.9.9.4.9.9-.4.9-.9.9zm-5.5 2.7c-.5 0-.9-.4-.9-.9s.4-.9.9-.9.9.4.9.9-.4.9-.9.9zm2.8 0c-.5 0-.9-.4-.9-.9s.4-.9.9-.9.9.4.9.9c-.1.5-.5.9-.9.9zm2.7 0c-.5 0-.9-.4-.9-.9s.4-.9.9-.9.9.4.9.9-.4.9-.9.9zm-6.6-8.4V5.3h8v3.6h-8zm1.2-1.2H19V6.5h-5.7v1.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-telephone-2"><path d="M20.6 2.5h-10c-.3-.8-1.1-1.5-2-1.5H4.8c-.9 0-1.8.7-2.1 1.6C1.5 2.9.5 4 .5 5.4v13.3c0 1.3 1 2.5 2.2 2.8.2.8 1.1 1.5 2.1 1.5h3.8c1 0 1.8-.7 2-1.5h10c1.5 0 2.9-1.2 2.9-2.8V5.4c-.1-1.6-1.3-2.9-2.9-2.9zm-18 17.7c-.6-.3-1-.9-1-1.5V5.4c0-.7.4-1.2 1-1.5v16.3zM9.5 3.7V21c0 .1 0 .2-.1.3 0 .1-.1.2-.2.3-.2.2-.4.4-.8.4H4.6c-.3 0-.6-.1-.8-.4-.1-.1-.1-.2-.2-.3 0-.1-.1-.2-.1-.3V3.1c0-.1 0-.2.1-.3 0-.1.1-.2.2-.3.2-.2.4-.4.8-.4h3.8c.3 0 .6.1.8.4.1.1.1.2.2.3 0 .1.1.2.1.3v.6zm12.8 14.9c0 .9-.8 1.6-1.6 1.6h-9.9V3.6h9.9c.9 0 1.6.7 1.6 1.6v13.4zm-10.2-3.7h8.7V5.5h-8.7v9.4zm1.2-8.2h6.2v7h-6.2v-7zm1.2 1.6v.9h3.8v-.9h-3.8zm0 1.9v.9h2.9v-.9h-2.9zm-1 8.1c.5 0 1-.4 1-.9s-.4-1-1-.9c-.5 0-1 .4-1 .9 0 .4.5.9 1 .9zm5.8 0c.5 0 1-.4 1-.9s-.4-1-1-.9c-.5 0-1 .4-1 .9 0 .4.4.9 1 .9zm-2.9 0c.5 0 1-.4 1-.9s-.4-1-1-.9c-.5 0-1 .4-1 .9 0 .4.4.9 1 .9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-telephone-3"><path d="M15.5 9.8h-7c-.3 0-.6-.3-.7-.6 0-.3.3-.6.6-.7h7c.3 0 .7.2.7.6.1.4-.2.7-.6.7zm3.4 1.9c.3-.2.7-.1.9.2l1.7 2.8v4.5c0 1.5-1.2 2.8-2.7 2.8H5.1c-1.5 0-2.7-1.2-2.7-2.8v-4.5L4 11.9c.2-.3.6-.4.9-.2.3.2.4.6.2.9l-1.5 2.5v4.1c0 .8.7 1.5 1.5 1.5h13.7c.8 0 1.5-.7 1.5-1.5v-4.1l-1.5-2.5c-.3-.4-.2-.7.1-.9zM7 13.5c0-3.1 9.9-3.1 9.9 0 0 1.5-2.5 2.3-5 2.3-2.4 0-4.9-.8-4.9-2.3zm5-1c-2.4 0-3.7.8-3.7 1.1 0 .3 1.3 1.1 3.7 1.1 2.4 0 3.7-.8 3.7-1.1 0-.4-1.3-1.1-3.7-1.1zM12 2c5 0 12 1.8 12 5.7V9c0 .9-.7 1.6-1.7 1.6h-3.1c-.9 0-1.7-.7-1.7-1.6v-.8c0-1-2.5-2.2-5.6-2.2S6.4 7.2 6.4 8.2V9c0 .9-.7 1.6-1.7 1.6h-3C.7 10.6 0 9.9 0 9V7.7C0 3.8 7 2 12 2zm10.7 7V7.7c0-2.6-5.7-4.4-10.7-4.4S1.3 5.1 1.3 7.7V9c0 .2.2.4.4.4h3.1c.2 0 .4-.2.4-.4v-.8c0-2.2 3.5-3.4 6.9-3.4 3.4 0 6.9 1.3 6.9 3.4V9c0 .2.2.4.4.4h3.1c.1 0 .2-.2.2-.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-thumbs-down"><path d="M7.1 4.2v-.5c0-.6-.4-1-1-1H3c-.6 0-1 .4-1 1v11.4c0 .6.4 1 1 1h3.1c.6 0 1-.4 1-1H8c-.1 0-.1 0 .1.1.2.2.5.5.8.9.2.2.4.5.6.8.2.1.5.5.5.5.2.2.3.4.4.5.3.4.6.7.8 1 .2.2.4.6.5 1.1 0 .2.1.2.2.7.2 1.2.4 1.7 1 2.3.3.3.8.4.9.4 2.3.1 3.2-1.2 3.4-3v-.8c0-1-.2-1.6-.8-2.7 0 0 0-.1-.1-.1h2.8c1.6 0 3-1.4 3-3 0-.7-.2-1.5-.6-2 .3-.9.1-1.9-.4-2.8.2-1-.1-2.1-.7-2.8.1-2.3-1.4-3.7-3.7-3.7H15c-1.5 0-2.7.3-4.5.9-1.1.5-1.2.5-1.7.6-.4.1-.8.2-1.2.2h-.5zm12.7 5.1c.8.7.8 2.2.2 2.9.4 0 1 .8 1 1.7 0 .8-.7 1.7-1.7 1.7h-4.6c0 1.7 1.2 2.4 1.2 4.2 0 1 0 2.5-2.1 2.5-.8-.8-.4-2.9-1.7-4.2-1.2-1.2-2.9-4.3-4.2-4.3h-.3V5.5c2.4 0 4.4-1.7 7.6-1.7h1.7c1.6 0 2.7.8 2.3 2.9.6.4 1.1 1.6.6 2.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-thumbs-up"><path d="M7.1 20.8v.5c0 .6-.4 1-1 1H3c-.6 0-1-.4-1-1V9.9c0-.6.4-1 1-1h3.1c.6 0 1 .4 1 1H8c0 .1 0 0 .2-.1.2-.2.5-.5.8-.9.2-.2.4-.5.6-.8.1-.1.4-.5.4-.5.2-.2.3-.4.5-.6.3-.4.6-.7.8-1 .2-.2.4-.6.5-1.1 0-.2.1-.2.2-.7.2-1.2.4-1.7 1-2.3.3-.3.8-.4.9-.4 2.3-.1 3.2 1.2 3.4 3v.8c0 1-.2 1.6-.8 2.7 0 0 0 .1-.1.1h2.8c1.6 0 3 1.4 3 3 0 .7-.2 1.5-.6 2 .3.9.1 1.9-.4 2.8.2 1-.1 2.1-.7 2.8.1 2.3-1.4 3.7-3.7 3.7h-1.7c-1.5 0-2.7-.3-4.5-.9-1.3-.4-1.4-.5-1.8-.6-.5-.1-.8-.2-1.2-.2l-.5.1zm12.7-5.1c.8-.7.8-2.2.2-2.9.4 0 1-.8 1-1.7 0-.8-.7-1.7-1.7-1.7h-4.6c0-1.7 1.2-2.4 1.2-4.2 0-1 0-2.5-2.1-2.5-.8.8-.4 2.9-1.7 4.2-1.2 1.2-2.9 4.3-4.2 4.3h-.3v8.2c2.4 0 4.4 1.7 7.6 1.7h1.7c1.6 0 2.7-.8 2.3-2.9.6-.3 1.1-1.5.6-2.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-toggle"><path d="M7.4 18.7l3.1 3.2-.9.9L5 18l4.6-4.7.9.9-3.1 3.2h9.3c2.8 0 5-2.3 5-5.2 0-1.4-.6-2.8-1.6-3.8l.9-.9c1.3 1.2 2.1 3 2 4.8 0 3.6-2.8 6.4-6.3 6.4H7.4zm9.2-13.4l-3.1-3.2.9-.9L19 6l-4.6 4.7-.9-.9 3.1-3.2H7.3c-2.8 0-5 2.3-5 5.2 0 1.4.5 2.7 1.4 3.6l-.9.9C1.6 15.1 1 13.5 1 11.8c0-3.6 2.8-6.4 6.3-6.4l9.3-.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-tool-circle"><path d="M12 24C5.4 24 0 18.6 0 12S5.4 0 12 0s12 5.4 12 12-5.4 12-12 12zm4.1-10.8c-.5 0-.9-.2-1.2-.4l-3.6-3.6c-.3-.4-.5-.8-.5-1.2 0-.7-.3-1.4-.9-2.1-.5-.6-1.3-.9-2-.9s-1.3.2-1.8.7c-.1 0-.1.1-.1.2s0 .2.1.2l1.8 1.1c-.1.5-.4 1-.9 1.3l-1.6-1c-.1-.1-.2-.1-.3 0 0 0-.1.1-.1.2 0 .8.2 1.6.8 2.2.5.6 1.3.9 2.1.9.2 0 .4 0 .7-.1l4.1 4.1c.3.3.5.7.5 1.1 0 .7.3 1.4.9 2.1.6.6 1.3.9 2 .9.6 0 1.2-.2 1.7-.5.1-.1.1-.2.1-.3 0-.1-.1-.2-.1-.2l-2-1.2c.1-.5.4-1 .9-1.3l1.9 1.1c.1.1.2.1.3 0 .1 0 .1-.1.2-.2v-.1-.3c-.1-1.4-1.4-2.7-3-2.7z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-tooltip"><path d="M2.3 14.3h6.4l3.3 4.4 3.2-4.4h6.5V5.6H2.3v8.7zm10.8 5.2c-.4.6-1.2.7-1.8.3l-.3-.3-2.9-3.8H2.3C1.6 15.6 1 15 1 14.3V5.6c0-.7.6-1.3 1.3-1.3h19.4c.7 0 1.3.6 1.3 1.3v8.7c0 .7-.6 1.3-1.3 1.3h-5.9l-2.7 3.9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-transfer"><path d="M3 21.5c-.7 1-2.2.3-2-.8C2.4 13.2 6.6 8.3 13.1 6.9V3.1c0-1 1.2-1.5 1.9-.8l7.7 8.3c.4.4.4 1.1 0 1.5L15 20.5c-.7.7-1.9.2-1.9-.7V16c-4.6.2-7.8 2-10.1 5.5zm10.7-6.8h.6v4.6l7.4-8-7.4-8v4.5l-.5.2c-6.1 1.1-10 5.4-11.5 12.2 2.7-3.6 6.4-5.4 11.4-5.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-type"><path d="M15 1.8V.5c-1.2 0-2.4.6-2.9 1.5-.6-.9-1.8-1.5-2.9-1.5v1.3c1.3 0 2.4 1.1 2.4 2.4v7.4h-2v1.3h1.8v7c0 1.3-1.1 2.4-2.4 2.4v1.3c1.2 0 2.4-.6 2.9-1.5.6.9 1.8 1.5 2.9 1.5v-1.3c-1.3 0-2.4-1.1-2.4-2.4v-7h1.8v-1.3h-1.8V4.2c.2-1.3 1.3-2.4 2.6-2.4z"/></symbol><symbol viewBox="0 0 30 30" id="Vlt-icon-umbrella"><path d="M14.8 7.1c4.8 0 8.7 3.7 9.2 8.4H5.7c.4-4.7 4.3-8.4 9.1-8.4zm10.8 10v-.8c0-6-4.9-10.8-10.8-10.8S4 10.4 4 16.3v.8h10v9.8c0 1.5 1.2 2.7 2.7 2.7s2.7-1.2 2.7-2.7v-.6c0-.4-.4-.8-.8-.8s-.8.4-.8.8v.6c0 .6-.4 1.1-1.1 1.1s-1.1-.4-1.1-1.1v-9.8h10zM9.1 3.8c.1.1.2.1.4.1.3 0 .6-.2.7-.4l.9-1.8c.2-.4.1-.9-.3-1.1-.4-.2-.9-.1-1.1.3l-.9 1.8c-.2.4-.1.9.3 1.1M12.9 3.8c.1.1.2.1.4.1.3 0 .6-.2.7-.4l.9-1.8c.2-.4.1-.9-.3-1.1-.4-.2-.9-.1-1.1.3l-.9 1.8c-.3.4-.1.9.3 1.1M16.6 3.8c.1.1.2.1.4.1.3 0 .6-.2.7-.4l.9-1.8c.2-.4.1-.9-.3-1.1s-.9-.1-1.1.3l-.9 1.8c-.2.4-.1.9.3 1.1M20.4 3.8c.1.1.2.1.4.1.3 0 .6-.2.7-.4l.9-1.8c.2-.4.1-.9-.3-1.1s-.9-.1-1.1.3l-1 1.8c-.2.4 0 .9.4 1.1"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-unhappy"><path d="M12 23C5.9 23 1 18.1 1 12S5.9 1 12 1s11 4.9 11 11-4.9 11-11 11zm0-1.3c5.4 0 9.7-4.3 9.7-9.7S17.4 2.3 12 2.3 2.3 6.6 2.3 12s4.3 9.7 9.7 9.7zm5.9-11.8c-1.2-.6-3.7-.7-4.9-.4.1-.7 2-3.1 4.6-3.5l.2 1c-1.3.2-2.2.8-2.7 1.4 1.1-.1 2.2.2 3.3.7l-.5.8zM5.6 9c1.1-.5 2.2-.8 3.3-.7-.5-.5-1.3-1.1-2.7-1.3l.2-1c2.6.4 4.1 2.8 4.2 3.5-1.2-.3-3.3-.2-4.6.4L5.6 9zm11 8.3a6.42 6.42 0 0 0-4.6-1.9c-1.9 0-3.4.6-4.6 1.9l-.7-.7c1.4-1.4 3.2-2.1 5.4-2.1 2.1 0 3.9.7 5.4 2.1l-.9.7z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-unlock"><path d="M18.5 8.6c1.1 0 2 .9 2 2v10.2c0 1.1-.9 2-2 2h-13c-1.1 0-2-.9-2-2V10.7c0-1.1.9-2 2-2h10.2V6.1c0-2-1.6-3.7-3.7-3.7S8.3 4 8.3 6.1v.2H6.9v-.2C6.9 3.3 9.2 1 12 1s5.1 2.3 5.1 5.1v2.5h1.4zm.7 12.1V10.6c0-.4-.3-.7-.7-.7h-13c-.4 0-.7.3-.7.7v10.1c0 .4.3.7.7.7h13c.4 0 .7-.3.7-.7zM12 11.4c1.6 0 2.9 1.3 2.9 2.9 0 1-.5 1.9-1.3 2.4v2.8h-3.4v-2.8c-.8-.6-1.3-1.4-1.3-2.4.2-1.6 1.5-2.9 3.1-2.9zm.9 4.3c.5-.3.7-.8.7-1.4 0-.9-.8-1.7-1.7-1.7s-1.7.8-1.7 1.7c0 .5.3 1 .8 1.4l.5.4v2.2h.8v-2.2l.6-.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-upload"><path d="M18.2 8.4c.3.3.3.7 0 1-.1.1-.3.2-.5.2s-.4-.1-.5-.2L12.7 5v12.2c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7V5L6.9 9.4c-.3.3-.7.3-1 0-.3-.3-.3-.7 0-1L12 2.2l6.2 6.2zm1.5 13.4H4.3c-1.3 0-2.3-1-2.3-2.2v-3.9c0-.4.3-.7.7-.7s.7.3.7.7v3.9c0 .4.4.8.8.8h15.5c.5 0 .8-.4.8-.8v-3.9c0-.4.3-.7.7-.7.4 0 .7.3.7.7v3.9c.1 1.1-.9 2.2-2.2 2.2z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-user"><path d="M22 21.4c0 .4-.3.6-.6.6H2.6c-.3 0-.6-.3-.6-.6 0-2.2 1.5-4.1 3.6-4.7l3-.7.2-.9c-.7-.8-1.2-1.8-1.4-2.9-.5-.2-.9-.7-1-1.2l-.2-1.7c-.1-.6.3-1.2.8-1.5v-.2-.3c0-.4-.1-.8-.1-1C6.9 4.1 8 2.9 11 2.8c1-.6 1.9-.8 3.2-.8 1.5 0 2.6.5 3.3 1.5s.7 2-.1 2.9l-.2.2-.2 1.3c.5.3.8.8.8 1.5l-.2 1.6c-.1.5-.4 1-.9 1.2-.2 1.1-.7 2.2-1.5 3l.2.8 3 .7c2.1.5 3.6 2.4 3.6 4.7zm-4-3.5l-3.4-.8c-.2-.1-.4-.2-.5-.5l-.4-1.5c-.1-.2 0-.5.2-.6.8-.7 1.4-1.8 1.4-2.9 0-.3.3-.6.6-.6.1 0 .2-.1.2-.1l.2-1.6c0-.1-.1-.2-.2-.2-.4 0-.7-.3-.6-.7l.1-2c0-.2.1-.3.2-.4l.4-.4c.3-.3.3-.7-.1-1.2-.4-.6-1.1-.9-2.2-.9s-1.8.2-2.6.7c.1-.1 0-.1-.1-.1-2.5 0-3 .6-3 2.2 0 .2 0 .5.1.9v.3c0 .3.1.6.1.8 0 .3-.3.7-.7.7h-.1c-.1 0-.2.1-.1.2l.2 1.6c0 .1.1.1.2.1H8c.3 0 .6.3.6.6.1 1.1.6 2.1 1.4 2.9.2.2.2.4.2.6l-.4 1.6c-.1.2-.2.4-.5.5l-3.4.8c-1.4.3-2.4 1.4-2.6 2.8h17.3c-.2-1.3-1.2-2.4-2.6-2.8z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-user-add"><path d="M13.6 13.7c-.8.6-1.7 1-2.6 1-.9 0-1.7-.3-2.4-.9-.8.6-1.7 1.1-2.6 1.5-2.3.9-3.3 2.7-3.5 6.3v.1h11.8c.2 0 .5.2.5.6s-.5.7-.7.7h-12c-.3 0-.5-.1-.7-.4-.3-.3-.4-.6-.4-1 .2-4.1 1.5-6.3 4.3-7.4.8-.3 1.5-.7 2.1-1.2-.6-.7-1.1-1.5-1.5-2.4-.9-.7-1.4-2.3-1-3.3.2-.3.4-.5.6-.7 0-.6.1-1.5.3-2.3.2-.5.5-1.1 1.1-1.7 1-1 2.3-1.6 4-1.6 1.7 0 3.1.6 4 1.6.6.6.9 1.3 1.1 1.8.2.8.3 1.7.3 2.3.1.1.3.2.4.4.7 1 .2 2.8-.9 3.7-.3.8-.8 1.5-1.3 2.1L16 14c.3.2.4.6.2.9-.2.3-.6.4-.9.2L13.7 14c-.1-.2-.1-.2-.1-.3zm9.2 4.8c.4 0 .7.3.7.7 0 .4-.3.7-.7.7h-3.2V23c0 .4-.3.7-.7.7-.4 0-.7-.3-.7-.7v-3.2H15c-.4 0-.7-.3-.7-.7 0-.4.3-.7.7-.7h3.2v-3.2c0-.4.3-.7.7-.7.4 0 .7.3.7.7v3.2l3.2.1zM6.2 7.8c-.2.4 0 1.7.9 1.9.3.8 1.8 3.8 3.8 3.8 2 0 3.6-2.9 3.8-3.7.9-.2 1.1-1.7.9-2-.2-.2-.4-.3-.7-.2v-.7s.1-1.2-.2-2.3c0-.1-.7-2.4-3.9-2.4-3.1 0-3.8 2.3-3.9 2.4-.1 1.2-.1 2.3-.1 2.3v.6c-.3 0-.5.1-.6.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-user-lock"><path d="M22.3 17.6h.3v3.7c0 1-.8 1.7-1.7 1.7h-4c-1 0-1.7-.8-1.7-1.7v-3.7h.3c0-1.9 1.5-3.4 3.4-3.4s3.4 1.5 3.4 3.4zm-3.4-2c-1.2 0-2.1.9-2.1 2.1H21c0-1.2-.9-2.1-2.1-2.1zm2.3 5.7h.1V19h-4.7v2.3c0 .1.1.3.3.3h4c.1 0 .3-.1.3-.3zm-7.1-5.8c-.3.2-.7.2-.9 0-.2-.3-.2-.7 0-.9.9-.8 1.4-2 1.5-3.1 0-.3.3-.6.6-.6.1 0 .2-.1.3-.2l.2-1.7c0-.1-.1-.2-.2-.2-.3-.1-.6-.4-.6-.8l.1-2.2c0-.2.1-.3.2-.4l.4-.4c.3-.4.3-.7-.1-1.4s-1.2-1-2.4-1c-1.1 0-1.9.2-2.7.7-.1.2-.2.2-.3.2-2.6 0-3.2.7-3.2 2.4v1.2c0 .3.1.7.1.9 0 .4-.3.7-.6.7h-.1c-.1 0-.2.1-.2.2l.2 1.7c0 .1.1.2.2.2h.1c.3 0 .6.3.6.6.1 1.1.6 2.3 1.5 3.1.2.2.2.4.2.6l-.4 1.7c-.1.2-.2.4-.5.5l-3.5.9c-1.3.3-1.9 1.3-2 3h10.5c.4 0 .6.3.6.6s-.3.6-.6.6H2c-.4 0-.6-.3-.6-.6 0-2.6.9-4.4 3-4.9l3.2-.8.2-1c-.8-.8-1.3-2-1.5-3.1-.6-.2-1-.7-1.1-1.3l-.3-1.6c-.1-.7.3-1.3.9-1.6v-.3-.3c0-.5-.1-.8-.1-1.1 0-2.3 1.1-3.6 4.3-3.7 1-.7 2-.9 3.3-.9 1.6 0 2.8.5 3.4 1.6.7 1.1.7 2.1-.1 3l-.3.3-.1 1.4c.5.3.9.9.8 1.5l-.2 1.7c-.1.6-.4 1-1 1.2 0 1.4-.7 2.7-1.7 3.6z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-user-small"><path d="M4.1 20.1c.4-3 2.1-4 3.7-4.6.7-.3 1.4-.6 2-1.1.6.4 1.4.7 2.2.7.8 0 1.5-.3 2.2-.7.6.5 1.3.8 2 1.1 1.6.6 3.3 1.6 3.7 4.6H4.1zM8.8 8.6v-.8s0-1 .2-1.9c.1-.2.6-2 3.1-2 2.4 0 3 1.8 3.1 2 .2.9.2 1.9.2 1.9v.8l.7.1c0 .1 0 .4-.3.9-.2.1-.5.3-.6.7-.2.7-1.5 3.1-3 3.1s-2.8-2.3-3-3.1c-.3-.4-.5-.6-.8-.7-.2-.5-.3-.8-.3-.9l.7-.1zM22 21c-.2-5-3-6.5-5.1-7.3-.4-.2-.9-.4-1.3-.6.6-.7 1-1.5 1.2-2 .2-.1.3-.2.4-.4.7-1.2.8-2.1.4-2.8-.1-.2-.3-.4-.4-.6 0-.6-.1-1.3-.3-1.9C16.6 4.2 15.2 2 12 2S7.4 4.2 7 5.4c-.1.6-.2 1.2-.2 1.9-.2.1-.3.3-.4.5-.4.8-.3 1.7.4 2.9.1.1.2.3.4.4.2.5.6 1.3 1.2 2-.4.3-.8.5-1.3.6C5 14.5 2.3 16.1 2 21v1h20v-1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-user-sync"><path d="M14.6 2.2c-.4 0-.7-.3-.7-.6s.3-.7.7-.7h2.6c1.8 0 3.2 1.4 3.2 3.1v.9l.6-.5c.3-.2.7-.2.9 0 .2.3.2.7 0 .9l-1.7 1.6c-.2.2-.4.2-.6.1 0 0-.1 0-.1-.1-.1 0-.1-.1-.2-.1l-1.7-1.6c-.3-.2-.3-.7 0-.9.2-.3.7-.3.9 0l.6.6V4c0-1-.8-1.8-1.9-1.8h-2.6zM5.9 22c.4 0 .7.3.7.6 0 .4-.3.6-.7.6-2 0-3.3-1.2-3.3-3.1v-1.3l-.8.8c-.3.3-.7.3-.9 0-.3-.3-.3-.7 0-.9l1.9-1.9c.2-.2.4-.2.6-.2 0 0 .1 0 .1.1.1 0 .1.1.2.1l1.9 1.9c.3.3.3.7 0 .9-.3.3-.7.3-.9 0l-.8-.8v1.3c0 1.3.7 1.9 2 1.9zm3.7-6.2H.8c-.4 0-.6-.3-.6-.6 0-1.8 1.2-3.3 2.9-3.7l2.2-.5.1-.5c-.6-.8-1-1.5-1.1-2.3-.5-.2-.8-.6-.8-1l-.2-1.3c-.1-.5.2-1 .6-1.3v-.1-.2c0-.3-.1-.6-.1-.8 0-1.8.9-2.8 3.3-2.8C7.9.2 8.6.1 9.6.1c1.2 0 2.1.4 2.7 1.2.6.9.6 1.7-.1 2.4l-.2.1v.8c.4.3.6.7.6 1.2L12.4 7c-.1.4-.3.8-.7 1-.2.8-.6 1.6-1.1 2.3l.2.8c.1.3-.1.7-.5.8-.3.1-.7-.1-.8-.5l-.3-1.2c-.1-.2 0-.5.2-.6.6-.5 1-1.3 1.1-2.1 0-.3.3-.6.6-.6 0 0 .1-.4.2-1.2-.4 0-.6-.3-.6-.7l.1-1.6c0-.2.1-.3.2-.4l.3-.3c.2-.2.2-.4-.1-.8-.3-.4-.8-.6-1.6-.6s-1.3.1-1.9.5c-.1.2-.2.2-.4.2-1.8 0-2.1.4-2.1 1.6V4.5c0 .3.1.5.1.6 0 .3-.3.7-.7.7L4.8 7h.1c.3 0 .6.3.6.6.1.8.4 1.6 1 2.1.2.2.2.4.2.6l-.3 1.2c-.1.2-.2.4-.5.5l-2.6.6c-.9.2-1.6.9-1.8 1.8h8.1c.4 0 .6.3.6.6s-.3.8-.6.8zM21 19.5c1.7.4 2.9 2 2.9 3.7 0 .4-.3.7-.7.7H8.8c-.4 0-.7-.3-.7-.7 0-1.8 1.2-3.3 2.9-3.7l2.2-.6.1-.5c-.5-.6-.9-1.4-1.1-2.2-.4-.2-.7-.6-.8-1V14c-.1-.5.2-1 .6-1.3v-.1-.2c0-.3-.1-.6-.1-.8 0-1.8.9-2.8 3.3-2.8.8-.5 1.5-.6 2.5-.6 1.2 0 2.1.4 2.6 1.2.6.9.6 1.7-.1 2.4l-.1.1v.8c.4.3.6.7.6 1.2l-.2 1.3c-.1.4-.3.8-.7 1-.2.8-.6 1.6-1.1 2.3l.1.4 2.2.6zM9.6 22.6h12.9c-.2-.9-.9-1.6-1.8-1.8l-2.6-.6c-.2-.1-.4-.2-.5-.5l-.3-1.2c-.1-.2 0-.5.2-.6.6-.5 1-1.3 1.1-2.1 0-.3.3-.6.6-.6l.2-1.2c-.4 0-.6-.3-.6-.7l.1-1.6c0-.2.1-.3.2-.4l.3-.3c.2-.2.2-.4-.1-.8-.3-.4-.8-.6-1.6-.6s-1.3.1-1.9.5c-.1.1-.2.1-.4.1-1.8 0-2.2.4-2.2 1.5V12.6c0 .3.1.5.1.6 0 .4-.3.7-.6.7l.1 1.2h.1c.3 0 .6.3.6.6.1.8.4 1.6 1 2.1.2.2.2.4.2.6l-.3 1.2c-.1.2-.2.4-.5.5l-2.6.6c-.8.3-1.5 1-1.7 1.9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-van"><path d="M1.8 15.1v4.2c0 .2.2.4.3.4h.5V21h-.5c-.9 0-1.6-.7-1.6-1.6V3.7c0-1 .7-1.7 1.6-1.7H14c.9 0 1.6.7 1.6 1.7v4.1l5.7 2.6c1.3.6 2.2 1.9 2.2 3.4v6.1c0 .6-.5 1.1-1.1 1.1h-1v-1.3h.8v-6c0-1-.5-1.8-1.4-2.2l-5.2-2.3v8.1h-1.3v-2.2H1.8zm0-1.3h12.5V3.7c0-.2-.2-.4-.3-.4H2.1c-.2 0-.3.2-.3.4v10.1zm12.7 5.9V21h-5v-1.3h5zm3.4 3.3c-1.4 0-2.6-1.2-2.6-2.7 0-1.5 1.2-2.7 2.6-2.7 1.4 0 2.6 1.2 2.6 2.7 0 1.5-1.1 2.7-2.6 2.7zm0-1.3c.7 0 1.3-.6 1.3-1.4 0-.8-.6-1.4-1.3-1.4-.7 0-1.3.6-1.3 1.4 0 .8.6 1.4 1.3 1.4zM6.1 23c-1.4 0-2.6-1.2-2.6-2.7 0-1.5 1.2-2.7 2.6-2.7 1.4 0 2.6 1.2 2.6 2.7 0 1.5-1.2 2.7-2.6 2.7zm0-1.3c.7 0 1.3-.6 1.3-1.4 0-.8-.6-1.4-1.3-1.4-.7 0-1.3.6-1.3 1.4-.1.8.5 1.4 1.3 1.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-video"><path d="M19.3 10.5c-.2.3-.7.3-.9 0-.3-.3-.3-.7 0-.9l3.2-3.4c.2-.3.6-.4 1-.4h.1c.7 0 1.3.6 1.3 1.3v8.8c0 .7-.6 1.3-1.3 1.3h-.1c-.4 0-.7-.1-.9-.4l-3.3-3.4c-.2-.3-.2-.7 0-.9.3-.3.7-.3.9 0l3.3 3.4h.1V7.1h-.1l-3.3 3.4zM3.4 3.8H14c1.9 0 3.4 1.5 3.4 3.4v8.6c0 1.9-1.5 3.4-3.4 3.4H3.4c-1.9 0-3.4-1.5-3.4-3.4V7.2c0-1.9 1.5-3.4 3.4-3.4zm0 1.2c-1.2 0-2.1.9-2.1 2.1v8.6c0 1.2.9 2.1 2.1 2.1H14c1.2 0 2.1-.9 2.1-2.1V7.2c0-1.2-.9-2.1-2.1-2.1L3.4 5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-video-conference"><path d="M19.6 11.7c-1.7 0-3.1 1.4-3.1 3.1 0 1 .4 1.8 1.1 2.4-.7.4-1.3 1.1-1.6 1.9l-.3.7-.2-.5c-.3-.9-.9-1.6-1.6-2 .7-.6 1.2-1.5 1.2-2.5 0-1.7-1.4-3.1-3.1-3.1s-3.1 1.4-3.1 3.1c0 1 .4 1.8 1.1 2.4-.8.5-1.4 1.2-1.6 2.1l-.1.4-.3-.6c-.3-.8-.9-1.4-1.6-1.9.7-.6 1.1-1.4 1.1-2.4 0-1.7-1.4-3.1-3.1-3.1s-3.1 1.4-3.1 3.1c0 1 .5 1.9 1.2 2.5-.7.4-1.2 1-1.5 1.8l-.9 2.2c-.1.2-.1.4-.1.7 0 1.1.9 2 2 2h20c.3 0 .5 0 .7-.1 1-.4 1.5-1.6 1.1-2.6l-.8-2.2c-.3-.8-.8-1.4-1.5-1.8.7-.6 1.2-1.5 1.2-2.5 0-1.7-1.4-3.1-3.1-3.1m0 1.3c1 0 1.8.8 1.8 1.8 0 .6-.3 1.1-.7 1.4-.3.3-.5.7-.5 1.1s.2.8.6 1c.4.3.8.7 1 1.2l.9 2.2c.1.4 0 .8-.4.9H2c-.4 0-.7-.3-.7-.7v-.3l.9-2.2c.2-.5.5-.9 1-1.2.4-.2.6-.6.6-1s-.2-.8-.5-1.1c-.5-.3-.7-.9-.7-1.4 0-1 .8-1.8 1.8-1.8s1.8.8 1.8 1.8c0 .5-.2 1.1-.7 1.4-.3.3-.5.7-.5 1.1s.3.8.6 1c.5.3.8.7 1 1.2l.4.8c.2.5.7.8 1.2.8h.1c.6 0 1-.4 1.2-.9l.1-.4c.2-.6.5-1.1 1.1-1.4.4-.2.6-.6.6-1s-.1-.8-.5-1.1c-.4-.3-.7-.9-.7-1.4 0-1 .8-1.8 1.8-1.8s1.8.8 1.8 1.8c0 .6-.3 1.1-.7 1.4-.3.3-.5.7-.5 1.1s.3.8.6 1c.5.3.9.8 1.1 1.4l.2.5c.2.5.7.9 1.2.9s1-.3 1.2-.8l.3-.7c.2-.5.6-.9 1-1.2.4-.2.6-.6.6-1s-.1-.8-.5-1.1c-.4-.3-.7-.9-.7-1.4.3-1.1 1.1-1.9 2.1-1.9zM21.1.8c.4-.2.9.1.9.5v7.5c0 .5-.5.8-.9.6l-3.9-1.8v.5c0 1.1-1 2-2.1 2H4.6c-1.2 0-2.1-.9-2.1-2V2c0-1.1 1-2 2.1-2H15c1.2 0 2.1.9 2.1 2v.5l4-1.7zm-.4 1.5l-3.9 1.8c-.4.2-.9-.1-.9-.6V2c0-.4-.4-.8-.8-.8H4.6c-.4.1-.8.4-.8.8v6.1c0 .4.4.8.8.8H15c.5 0 .8-.3.8-.8V6.7c0-.5.5-.8.9-.6l3.9 1.8V2.3h.1z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-video-negative"><path d="M19 9.5l2.7-2.8c.2-.3.6-.4 1-.4h.1c.7 0 1.3.6 1.3 1.3v8.8c0 .7-.6 1.3-1.3 1.3h-.1c-.4 0-.7-.1-.9-.4L19 14.5v-5zM3.4 4.3H14c1.9 0 3.4 1.5 3.4 3.4v8.6c0 1.9-1.5 3.4-3.4 3.4H3.4c-1.9 0-3.4-1.5-3.4-3.4V7.7c0-1.9 1.5-3.4 3.4-3.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-video-off"><path d="M16 11.4l1.2-1.5v5.8c0 1.9-1.5 3.4-3.4 3.4H9.7l1-1.3h3.2c1.2 0 2.1-.9 2.1-2.1v-4.3zM2.5 18.9C1.1 18.5 0 17.2 0 15.6V7c0-1.9 1.5-3.4 3.4-3.4H14c.4 0 .8.1 1.2.2l-.9 1.1H3.4c-1.2 0-2.1.9-2.1 2.1v8.7c0 1.2.9 2.1 2.1 2.1h.1l-1 1.1zm16.8-8.6c-.2.3-.7.3-.9 0-.3-.3-.3-.7 0-.9L21.6 6c.2-.3.6-.4 1-.4h.1c.7 0 1.3.6 1.3 1.3v8.9c0 .7-.6 1.3-1.3 1.3h-.1c-.4 0-.7-.2-.9-.4l-3.3-3.4c-.2-.3-.2-.7 0-.9.3-.3.7-.3.9 0l3.3 3.5h.1V7h-.1l-3.3 3.3zM20.4.9c.2-.3.6-.3.9-.1s.3.6.1.9L3.5 22.5c-.2.3-.6.3-.9.1s-.3-.6-.1-.9L20.4.9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-voicemail"><path d="M18.5 16.1c-2.3 0-4.1-1.8-4.1-4.1s1.8-4.1 4.1-4.1 4.1 1.8 4.1 4.1-1.8 4.1-4.1 4.1M1.4 12c0-2.3 1.8-4.1 4.1-4.1S9.6 9.7 9.6 12s-1.8 4.1-4.1 4.1-4.1-1.8-4.1-4.1m17.1-5.5C15.5 6.5 13 9 13 12c0 1.6.7 3.1 1.8 4.1H9.2c1.2-1 1.8-2.5 1.8-4.1 0-3-2.5-5.5-5.5-5.5S0 9 0 12s2.5 5.5 5.5 5.5h13c3 0 5.5-2.5 5.5-5.5s-2.5-5.5-5.5-5.5"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-voicemail-2"><path d="M22.8 9.5c.1.1.2.3.2.4v11.5c0 1.4-1.2 2.6-2.6 2.6H3.6C2.2 24 1 22.8 1 21.4V9.9c0-.2.1-.3.2-.5l2.3-2.3V4c0-.9.7-1.6 1.6-1.6h3.8L10.8.5c.6-.6 1.7-.6 2.3 0L15 2.4h3.9c.9 0 1.6.7 1.6 1.6v3.2c.1 0 2.3 2.3 2.3 2.3zm-1.1 2.2v-1.5L20.6 9v3.7l1.1-1zm-18.1 11h16.8c.2 0 .5-.1.7-.2l-5.7-6.1H8.8L3 22.6c.2.1.4.1.6.1zm-1.3-9.3v8.1l4.3-4.6-4.3-3.5zm0-3.2v1.5l1.2 1V9l-1.2 1.2zm2.8-6.6c-.2 0-.3.2-.3.4v9.7L7.5 16l.6-.6c.1-.1.3-.2.5-.2h7c.2 0 .3.1.5.2l.6.6 2.6-2.2V4c0-.2-.2-.3-.3-.3L5.1 3.6zm6.6-2.2l-1 1h2.5l-1-1c-.1-.2-.3-.2-.5 0zm5.8 15.5l4.2 4.5v-8l-4.2 3.5zm-8.9-4.7c-1.6 0-2.9-1.3-2.9-2.9 0-1.6 1.3-2.9 2.9-2.9 1.6 0 2.9 1.3 2.9 2.9 0 .6-.2 1.1-.5 1.6h1.8c-.3-.5-.5-1-.5-1.6 0-1.6 1.3-2.9 2.9-2.9 1.6 0 2.9 1.3 2.9 2.9 0 1.6-1.3 2.9-2.9 2.9H8.6c.1 0 .1 0 0 0zm0-4.5c-.8 0-1.6.8-1.6 1.6 0 .9.7 1.6 1.6 1.6s1.6-.7 1.6-1.6c0-.8-.7-1.6-1.6-1.6zm6.6 0c-.9 0-1.6.7-1.6 1.6 0 .9.7 1.6 1.6 1.6.9 0 1.6-.8 1.5-1.7 0-.8-.7-1.4-1.5-1.5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-volume"><path d="M13.6 5.2v14.1c0 .9-1.1 1.5-1.8.9l-5.5-3.7c-.6-.4-1.3-.6-2-.6H2.7c-.9 0-1.7-.7-1.7-1.6v-4c0-.9.8-1.6 1.7-1.6h1.6c.7 0 1.4-.2 2-.6l5.5-3.7c.8-.7 1.8-.2 1.8.8zm-1.3.2L7 9c-.8.6-1.8.8-2.7.8H2.7c-.2 0-.4.2-.4.4v4c0 .2.2.4.4.4h1.6c1 0 1.9.3 2.7.8l5.3 3.6V5.4zm3.1 2.7c-.3-.2-.3-.7 0-.9.2-.3.7-.3.9 0 2.8 2.7 2.9 7.1.2 9.9l-.2.2c-.3.3-.7.3-.9 0s-.3-.7 0-.9c2.3-2.2 2.4-5.8.2-8.1-.1-.1-.1-.2-.2-.2zm2.7-1.6c-.3-.3-.3-.7 0-.9.3-.3.7-.3.9 0 3.7 3.5 3.8 9.4.3 13.1l-.3.3c-.3.2-.7.2-.9 0-.2-.3-.2-.7 0-.9 3.2-3 3.3-8.1.2-11.2 0-.3-.1-.4-.2-.4z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-volume-decrease"><path d="M15.7 8.1c-.3-.3-.3-.7 0-.9.3-.3.7-.3.9 0 2.8 2.8 2.8 7.3 0 10.1-.3.3-.7.3-.9 0s-.3-.7 0-.9c2.3-2.4 2.3-6.1 0-8.3zm-2.4-2.9v14.1c0 .6-.5 1.2-1.1 1.2-.2 0-.5-.1-.7-.2l-5.4-3.7c-.6-.4-1.2-.6-1.9-.6H2.7c-.9 0-1.6-.7-1.7-1.6v-4c0-.9.7-1.6 1.7-1.6h1.5c.7 0 1.3-.2 1.9-.6l5.4-3.7c.5-.7 1.2-.5 1.6 0 .1.2.2.4.2.7zM6.8 9c-.7.6-1.7.8-2.6.8H2.7c-.2 0-.3.2-.3.4v4c0 .2.2.4.3.4h1.5c.9 0 1.9.3 2.7.8L12 19V5.4L6.8 9z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-volume-increase"><path d="M15.2 8.3c-.3-.3-.2-.7 0-.9.2-.2.6-.2.9 0 2.8 2.7 2.9 7.2.2 9.9l-.2.2c-.3.3-.7.2-.9 0-.3-.3-.2-.7 0-.9 2.3-2.2 2.3-5.8.2-8.1l-.2-.2zm2.1-1.6c-.3-.2-.3-.7-.1-.9.3-.3.7-.3.9 0 3.7 3.5 3.8 9.4.2 13.1l-.2.2c-.3.3-.7.2-.9 0s-.2-.7 0-.9c3.2-3 3.3-8.1.2-11.2 0-.2-.1-.2-.1-.3zm2.1-1.6c-.3-.3-.2-.7 0-.9.2-.2.6-.2.9 0 4.6 4.4 4.7 11.6.3 16.2l-.3.3c-.3.3-.7.2-.9 0s-.2-.7 0-.9c4-3.9 4.2-10.3.3-14.4l-.3-.3zm-5.8.3v14.1c0 .9-1.1 1.5-1.8 1l-5.5-3.7c-.6-.4-1.3-.6-2-.6H2.7c-.9 0-1.7-.7-1.7-1.6v-4C1 9.7 1.8 9 2.7 9h1.6c.7 0 1.4-.2 2-.6l5.5-3.7c.7-.8 1.8-.2 1.8.7zm-1.3.3L7 9.3c-.8.5-1.7.8-2.7.8H2.7c-.2 0-.4.2-.4.4v4c0 .2.2.4.4.4h1.6c1 0 1.9.3 2.7.8l5.3 3.6V5.7z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-volume-off"><path d="M13.6 5.2v14.1c0 .9-1.1 1.5-1.8.9l-5.5-3.7c-.6-.4-1.3-.6-2-.6H2.7c-.9 0-1.7-.7-1.7-1.6v-4c0-.9.8-1.6 1.7-1.6h1.6c.7 0 1.4-.2 2-.6l5.5-3.7c.7-.7 1.8-.2 1.8.8zM7 9c-.8.6-1.8.8-2.7.8H2.7c-.2 0-.4.2-.4.4v4c0 .2.2.4.4.4h1.6c1 0 1.9.3 2.7.8l5.3 3.6V5.4L7 9zm11.5 3l1.7 1.7c.2.3.2.7 0 .9-.3.2-.6.2-.9 0l-1.7-1.7-1.7 1.7c-.3.3-.7.3-.9 0s-.3-.7 0-.9l1.7-1.7-1.7-1.7c-.3-.3-.3-.7 0-.9s.7-.3.9 0l1.7 1.7 1.7-1.7c.3-.3.7-.3.9 0s.3.7 0 .9c.1 0-1.7 1.7-1.7 1.7z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-wallet"><path d="M19.4 6.1h.3c.8 0 1.4.7 1.4 1.5v3.5c.5.2.9.8.9 1.4v2.7c0 .6-.4 1.1-.9 1.4v4c0 .8-.6 1.5-1.4 1.5H3.4C2.6 22 2 21.3 2 20.5V6.9c0-.7.5-1.3 1-1.4l1.6-.6c.1-.4.4-.8.8-.9v-.5c0-.8.7-1.5 1.5-1.5H18c.8 0 1.4.7 1.4 1.5v2.6zm-1.1 0V3.5c0-.2-.1-.3-.3-.3H6.8c-.2 0-.3.1-.3.3v.3h10.2c.8 0 1.4.7 1.4 1.5v.8h.2zm-12.6 0H17v-.8c0-.2-.1-.3-.3-.3H6c-.2 0-.3.1-.3.3v.8zM20 16.6h-4.6c-.8 0-1.4-.7-1.4-1.5v-2.7c0-.8.6-1.5 1.4-1.5H20V7.5c0-.2-.1-.3-.3-.3H3.1v13.3c0 .2.1.3.3.3h16.3c.2 0 .3-.1.3-.3v-3.9zm.6-1.1c.2 0 .3-.1.3-.3v-2.7c0-.2-.1-.3-.3-.3h-5.1c-.2 0-.3.1-.3.3v2.7c0 .2.1.3.3.3h5.1zm-3.4-.2c-.8 0-1.4-.7-1.4-1.5s.6-1.5 1.4-1.5 1.4.7 1.4 1.5-.7 1.5-1.4 1.5zm0-1.2c.2 0 .3-.1.3-.3 0-.2-.1-.3-.3-.3-.2 0-.3.1-.3.3 0 .2.1.3.3.3z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-whisper"><path d="M20 5.2c-.2 0-.5.1-.7.1v-1c0-1.1-.9-1.9-1.9-1.9h-.1c-.2 0-.5 0-.7.1-.2-.9-1-1.5-1.9-1.5-1.1 0-2 .9-2 2v.3c-.2-.1-.4-.1-.7-.1-1.1 0-2 .9-2 2v2.4c-1.7-2.3-1.9-4-1.9-4.5V1.7c0-.4-.3-.6-.7-.6-.4 0-.7.3-.7.6v1.4c0 .7.2 3.3 3.2 6.5.3.3.5.7.5.9 0 0 0 .2-.2.3-.6.4-1.5.6-1.8.7l-.9.2.5.8c.1.1.5.8 1.5 1l.1.1c0 .1-.1.4-.6.8l-.9.8 1.1.3c.2.1.5.2.5.4 0 .1-.2.5-1.2 1.2l-.3.2V19c0 .7-.6 1.5-2.4 1.5H2.6c-.7 0-1.6.3-1.6 1.9 0 .3.3.6.7.6.4 0 .7-.3.7-.6 0-.6.1-.6.3-.6H6c2.1 0 3.1-.8 3.5-1.8l1.1 1.1c.1.1.2.6.2 1s.3.6.7.6c.4 0 .6-.3.6-.7 0-.2-.1-1.3-.6-1.9l-1.8-1.8V18c1.1-.8 1.6-1.6 1.5-2.3-.1-.4-.3-.7-.6-1 .3-.5.5-.9.4-1.3-.1-.6-.5-.9-.7-1 .3-.1.6-.3.9-.5.6-.4.7-.9.8-1.2.1-.5-.1-1-.4-1.5v-4c0-.4.3-.7.7-.7.4 0 .7.3.7.7v6.3h1V3c0-.4.3-.7.7-.7.4 0 .7.3.7.7v8.5h1.3V4.3c0-.3.3-.6.6-.6h.1c.3 0 .6.3.6.6v7.2h1.3v-1V7.2c0-.4.3-.7.7-.7.4 0 .7.3.7.7v7c0 2.2-.5 4-.7 5.1-.1.3-.2.6-.2.8-.1.6-.2 1.3-.2 1.9 0 .4.3.7.6.7.4 0 .6-.3.7-.6 0 0 0-.9.2-1.7 0-.2.1-.4.2-.7.3-1.2.8-3.1.8-5.4v-7c-.1-1.2-1-2.1-2.1-2.1"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-wifi"><path d="M12 18.6c.7 0 1.2.6 1.2 1.2S12.6 21 12 21c-.7 0-1.2-.6-1.2-1.2s.5-1.2 1.2-1.2zm0-4.8c1.5 0 3 .6 4.2 1.6.3.3.3.8 0 1.1-.3.3-.7.3-1 0-.9-.8-2-1.2-3.1-1.2-1.2 0-2.4.5-3.2 1.3-.3.3-.8.3-1.1 0-.3-.3-.3-.8 0-1.1 1.1-1.1 2.6-1.7 4.2-1.7zm0-5.6c3 0 5.9 1.1 8 3.2.3.3.3.8 0 1.1-.3.3-.7.3-1 0-1.9-1.8-4.4-2.8-7-2.8-2.6 0-5.2 1-7.1 2.8-.3.3-.8.2-1.1-.1-.2-.3-.2-.7 0-1C6.1 9.3 9 8.2 12 8.2zm11.8-.8c.3.3.3.7.1 1.1-.3.3-.7.3-1.1.1-3-2.8-6.8-4.4-10.8-4.4-4 0-7.9 1.5-10.8 4.3-.2.3-.7.3-1 0-.3-.3-.3-.8 0-1.1 3.2-3 7.4-4.7 11.8-4.7 4.4.1 8.6 1.7 11.8 4.7z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-world"><path d="M15.3 21.7c.8-1 1.4-2.3 1.9-3.8h3.2c-1.3 1.7-3.1 3.1-5.1 3.8zM3.7 17.9h3.2c.5 1.5 1.1 2.8 1.9 3.8-2.1-.7-3.9-2.1-5.1-3.8zm-1-10.1h3.8c-.3 1.4-.4 2.8-.4 4.2 0 1.6.2 3.2.5 4.6H2.9c-.7-1.4-1.1-3-1.1-4.6 0-1.5.3-2.9.9-4.2zm6-5.5c-.8 1-1.5 2.5-2 4.2H3.4c1.2-1.9 3.1-3.4 5.3-4.2zm11.9 4.2h-3.4c-.5-1.7-1.2-3.2-2-4.2 2.3.8 4.2 2.3 5.4 4.2zm-3.1 1.3h3.8c.6 1.3.9 2.7.9 4.2 0 1.6-.4 3.2-1.1 4.6h-3.6c.3-1.5.5-3 .5-4.6-.1-1.4-.2-2.8-.5-4.2zm-4.8 8.8V7.8h3.6c.3 1.3.4 2.7.4 4.2 0 1.6-.2 3.2-.5 4.6h-3.5zm0 5.5v-4.2h3.1c-.8 2.2-1.9 3.8-3.1 4.2zm-1.3-4.2v4.2c-1.3-.4-2.4-2-3.1-4.2h3.1zm0-16v4.6H8.1c.7-2.4 1.9-4.2 3.3-4.6zm1.3 0c1.3.4 2.5 2.2 3.2 4.6h-3.2V1.9zM7.4 12c0-1.5.2-2.9.4-4.2h3.6v8.7H7.9c-.4-1.4-.5-3-.5-4.5zM12 .5C5.7.5.5 5.7.5 12S5.7 23.5 12 23.5 23.5 18.3 23.5 12 18.3.5 12 .5z"/></symbol><symbol viewBox="0 0 24 24" id="Vlt-icon-world-hand"><path d="M18.2 16.5c.9-.6 2-.6 2.7.1.5.5.7 1.5-.2 2.5-.8.9-3.6 3.9-7.3 3.9h-.3c-1.5-.1-2.8-.4-3.9-.8-1.8-.5-3.2-.9-5.2 0-.3.1-.6 0-.8-.3-.1-.3 0-.6.3-.8 2.4-1.2 4.1-.6 6-.1 1.1.3 2.2.6 3.6.7 3.3.1 6-2.6 6.7-3.5.2-.2.5-.6.2-.9-.2-.2-.7-.3-1.1 0-.8.6-3.4 2.1-4.9 2.2-1.1.1-4.5-.8-5.3-2-.2-.4-.3-.8-.1-1.2.6-1.1 1.8-.7 2.9-.3.7.2 1.4.5 2.1.5.6 0 1-.1 1-.4.1-.2-.1-.5-.4-.7-2.4-1.1-4.6-1.4-6.6-1-3.1.6-6.2 3.5-6.2 3.5-.2.2-.6.2-.8 0-.2-.2-.2-.6 0-.8.1-.1 3.4-3.2 6.8-3.8 2.3-.4 4.7-.1 7.3 1.1.8.4 1.2 1.2 1 2-.2.7-.8 1.4-2.2 1.3-.9-.1-1.7-.4-2.4-.6-1-.3-1.4-.5-1.6-.2.2.5 3.2 1.6 4.3 1.5 1.1 0 3.5-1.3 4.4-1.9zm-15-3c-.3.1-.6-.1-.7-.4-.4-1-.5-2.1-.5-3.1C2 4.5 6.4 0 12 0c5.5 0 10 4.5 10 9.9 0 1.5-.3 3-1 4.4-.1.3-.5.4-.8.3-.3-.1-.4-.5-.3-.8.5-1.1.8-2.2.9-3.4h-3.4c0 1-.1 2-.3 3-.1.3-.4.5-.7.5-.3-.1-.5-.4-.4-.7.2-.9.3-1.8.3-2.8h-3.8v1.1c0 .3-.3.6-.6.6s-.6-.3-.6-.6v-1.1H7.6v.8c0 .3-.2.6-.5.6s-.6-.2-.6-.5v-.9H3.1c0 .8.2 1.6.5 2.4.1.3-.1.6-.4.7zM6 3.5a8.55 8.55 0 0 0-2.9 5.7h3.3c.1-1.8.4-3.4.9-4.8-.4-.3-.9-.6-1.3-.9zm14.8 5.7C20.6 7 19.6 5 18 3.5c-.4.3-.9.6-1.4.9.5 1.4.8 3 .9 4.8h3.3zm-8.2-3.7v3.7h3.8c-.1-1.6-.4-3.1-.8-4.4-1 .4-2 .6-3 .7zM7.8 3.3c.3-.6.6-1.1 1-1.6-.7.3-1.3.6-1.9 1.1.3.2.6.3.9.5zm3.6-2c-1 .3-1.8 1.2-2.5 2.5.8.3 1.6.5 2.5.5v-3zm3.7.5c.4.4.7 1 1 1.6.3-.3.6-.4.9-.6-.5-.5-1.2-.8-1.9-1zm-2.5-.5v3c.9-.1 1.7-.2 2.5-.5-.7-1.4-1.6-2.3-2.5-2.5zm-5 7.9h3.8V5.5c-1-.1-2-.3-3-.6-.4 1.2-.7 2.7-.8 4.3z"/></symbol></svg>
@@ -0,0 +1,98 @@
1
+ require 'rouge'
2
+
3
+ module Nexmo
4
+ module OAS
5
+ module Renderer
6
+ class CodeLanguageAPI
7
+ attr_accessor :key, :label, :type, :dependencies, :unindent, :icon, :run_command
8
+ attr_writer :weight, :linkable, :languages, :lexer
9
+
10
+ def initialize(attributes = {})
11
+ @key = attributes["key"]
12
+ @label = attributes["label"]
13
+ @type = attributes["type"]
14
+ @dependencies = attributes["dependencies"]
15
+ @unindent = attributes["unindent"]
16
+ @icon = attributes["icon"]
17
+ @run_command = attributes["run_command"]
18
+ @lexer = attributes["lexer"]
19
+ @languages = attributes["languages"]
20
+ @weight = attributes["weight"]
21
+ @linkable = attributes["linkable"]
22
+ end
23
+
24
+ def weight
25
+ @weight || 999
26
+ end
27
+
28
+ def linkable?
29
+ return true if @linkable.nil?
30
+ @linkable
31
+ end
32
+
33
+ def lexer
34
+ return Rouge::Lexers::PHP.new({ start_inline: true }) if @lexer == 'php'
35
+ Rouge::Lexer.find(@lexer) || Rouge::Lexer.find('text')
36
+ end
37
+
38
+ def languages
39
+ @languages ||= []
40
+ @languages.map do |language|
41
+ self.class.find(language)
42
+ end
43
+ end
44
+
45
+ def self.languages
46
+ where_type('languages')
47
+ end
48
+
49
+ def self.frameworks
50
+ where_type('platforms')
51
+ end
52
+
53
+ def self.terminal_programs
54
+ where_type('terminal_programs')
55
+ end
56
+
57
+ def self.data
58
+ where_type('data')
59
+ end
60
+
61
+ def self.all
62
+ languages + frameworks + terminal_programs + data
63
+ end
64
+
65
+ def self.find(key)
66
+ raise 'Key is missing' unless key
67
+ code_language = all.detect { |lang| lang.key == key }
68
+ raise "Language #{key} does not exist." unless code_language
69
+ code_language
70
+ end
71
+
72
+ def self.linkable
73
+ all.select(&:linkable?)
74
+ end
75
+
76
+ def self.match?(code_language)
77
+ return true if code_language.nil?
78
+
79
+ route_constraint[:code_language].match?(code_language)
80
+ end
81
+
82
+ def self.route_constraint
83
+ { code_language: Regexp.new("^(#{linkable.map(&:key).compact.join('|')})$") }
84
+ end
85
+
86
+ private_class_method def self.where_type(type)
87
+ config[type].map do |key, attributes|
88
+ new(attributes.merge({ "key" => key, "type" => type }))
89
+ end
90
+ end
91
+
92
+ private_class_method def self.config
93
+ @config ||= YAML.load_file("#{API.root}/config/code_languages.yml")
94
+ end
95
+ end
96
+ end
97
+ end
98
+ end
@@ -0,0 +1,21 @@
1
+ require 'oas_parser'
2
+
3
+ module OasParser
4
+ class Path
5
+ def servers
6
+ raw['servers']
7
+ end
8
+ end
9
+
10
+ class Endpoint
11
+ def oauth?
12
+ return false unless security
13
+
14
+ security_schemes.each do |security_schema|
15
+ return true if security_schema['bearerFormat'] == 'OAuth'
16
+ end
17
+
18
+ false
19
+ end
20
+ end
21
+ end