@seamly/web-ui 21.0.9 → 22.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (141) hide show
  1. package/build/dist/lib/components.js +9228 -7777
  2. package/build/dist/lib/components.js.map +1 -0
  3. package/build/dist/lib/components.min.js +2 -1
  4. package/build/dist/lib/components.min.js.LICENSE.txt +2 -2
  5. package/build/dist/lib/components.min.js.map +1 -0
  6. package/build/dist/lib/config.js +2 -1
  7. package/build/dist/lib/config.js.map +1 -0
  8. package/build/dist/lib/config.min.js +2 -1
  9. package/build/dist/lib/config.min.js.map +1 -0
  10. package/build/dist/lib/contexts.js +2 -1
  11. package/build/dist/lib/contexts.js.map +1 -0
  12. package/build/dist/lib/contexts.min.js +2 -1
  13. package/build/dist/lib/contexts.min.js.map +1 -0
  14. package/build/dist/lib/deprecated-view.css +1 -1
  15. package/build/dist/lib/deprecated-view.js +1 -1
  16. package/build/dist/lib/hooks.js +6999 -5996
  17. package/build/dist/lib/hooks.js.map +1 -0
  18. package/build/dist/lib/hooks.min.js +2 -1
  19. package/build/dist/lib/hooks.min.js.map +1 -0
  20. package/build/dist/lib/index.debug.js +940 -370
  21. package/build/dist/lib/index.debug.js.map +1 -0
  22. package/build/dist/lib/index.debug.min.js +2 -1
  23. package/build/dist/lib/index.debug.min.js.LICENSE.txt +334 -110
  24. package/build/dist/lib/index.debug.min.js.map +1 -0
  25. package/build/dist/lib/index.js +2810 -5472
  26. package/build/dist/lib/index.js.map +1 -0
  27. package/build/dist/lib/index.min.js +2 -1
  28. package/build/dist/lib/index.min.js.LICENSE.txt +2 -2
  29. package/build/dist/lib/index.min.js.map +1 -0
  30. package/build/dist/lib/sounds/beep.mp3 +0 -0
  31. package/build/dist/lib/standalone.js +10575 -13540
  32. package/build/dist/lib/standalone.js.map +1 -0
  33. package/build/dist/lib/standalone.min.js +2 -1
  34. package/build/dist/lib/standalone.min.js.LICENSE.txt +1 -1
  35. package/build/dist/lib/standalone.min.js.map +1 -0
  36. package/build/dist/lib/storage.js +2 -1
  37. package/build/dist/lib/storage.js.map +1 -0
  38. package/build/dist/lib/storage.min.js +2 -1
  39. package/build/dist/lib/storage.min.js.map +1 -0
  40. package/build/dist/lib/style-guide.js +1701 -5859
  41. package/build/dist/lib/style-guide.js.map +1 -0
  42. package/build/dist/lib/style-guide.min.js +2 -1
  43. package/build/dist/lib/style-guide.min.js.LICENSE.txt +2 -2
  44. package/build/dist/lib/style-guide.min.js.map +1 -0
  45. package/build/dist/lib/styles-default-implementation.css +1 -1
  46. package/build/dist/lib/styles-default-implementation.js +1 -1
  47. package/build/dist/lib/styles.css +1 -1
  48. package/build/dist/lib/styles.js +1 -1
  49. package/build/dist/lib/utils.js +11536 -14530
  50. package/build/dist/lib/utils.js.map +1 -0
  51. package/build/dist/lib/utils.min.js +2 -1
  52. package/build/dist/lib/utils.min.js.LICENSE.txt +1 -6
  53. package/build/dist/lib/utils.min.js.map +1 -0
  54. package/package.json +58 -48
  55. package/src/javascripts/api/conversation-connector.ts +2 -0
  56. package/src/javascripts/api/errors/seamly-api-error.ts +15 -0
  57. package/src/javascripts/api/index.ts +168 -94
  58. package/src/javascripts/config.ts +1 -1
  59. package/src/javascripts/config.types.ts +18 -11
  60. package/src/javascripts/domains/config/selectors.ts +1 -1
  61. package/src/javascripts/domains/config/slice.ts +12 -0
  62. package/src/javascripts/domains/forms/forms.types.ts +1 -0
  63. package/src/javascripts/domains/forms/hooks.ts +10 -2
  64. package/src/javascripts/domains/store/selectors.ts +23 -10
  65. package/src/javascripts/domains/store/slice.ts +63 -11
  66. package/src/javascripts/domains/store/store.types.ts +41 -1
  67. package/src/javascripts/domains/translations/components/options-button.tsx +1 -4
  68. package/src/javascripts/domains/translations/hooks.ts +11 -4
  69. package/src/javascripts/index.ts +2 -0
  70. package/src/javascripts/lib/url-helpers.ts +24 -0
  71. package/src/javascripts/schema.ts +10 -0
  72. package/src/javascripts/style-guide/states.js +109 -0
  73. package/src/javascripts/ui/components/conversation/conversation.tsx +2 -0
  74. package/src/javascripts/ui/components/conversation/event/chat-scroll/chat-scroll-provider.tsx +2 -0
  75. package/src/javascripts/ui/components/conversation/event/choice-prompt.js +1 -1
  76. package/src/javascripts/ui/components/conversation/event/text.js +1 -1
  77. package/src/javascripts/ui/components/conversation/event/upload.js +50 -9
  78. package/src/javascripts/ui/components/conversation/use-chat-scroll.ts +3 -2
  79. package/src/javascripts/ui/components/core/seamly-event-subscriber.ts +7 -1
  80. package/src/javascripts/ui/components/core/seamly-file-upload.tsx +156 -0
  81. package/src/javascripts/ui/components/entry/abort-transaction-button/abort-transaction-button.tsx +45 -0
  82. package/src/javascripts/ui/components/entry/text-entry/hooks.ts +108 -0
  83. package/src/javascripts/ui/components/entry/text-entry/index.js +7 -4
  84. package/src/javascripts/ui/components/entry/text-entry/{text-entry-form.js → text-entry-form.tsx} +8 -22
  85. package/src/javascripts/ui/components/form-controls/{input.js → input.tsx} +13 -2
  86. package/src/javascripts/ui/components/form-controls/{wrapper.js → wrapper.tsx} +8 -4
  87. package/src/javascripts/ui/components/view/{index.js → index.tsx} +53 -4
  88. package/src/javascripts/ui/components/view/window-view/{index.js → index.tsx} +14 -2
  89. package/src/javascripts/ui/components/widgets/{in-out-transition.js → in-out-transition.tsx} +67 -28
  90. package/src/javascripts/ui/hooks/{seamly-api-hooks.js → seamly-api-hooks.ts} +1 -1
  91. package/src/javascripts/ui/hooks/sounds/beep.mp3 +0 -0
  92. package/src/javascripts/ui/hooks/use-click-outside.ts +5 -3
  93. package/src/javascripts/ui/hooks/use-notifications.ts +114 -0
  94. package/src/javascripts/ui/hooks/use-timeout.ts +20 -0
  95. package/src/stylesheets/3-chat/_chat.scss +3 -5
  96. package/src/stylesheets/4-base/_formelements.scss +0 -36
  97. package/src/stylesheets/5-components/_abort-transaction.scss +10 -0
  98. package/src/stylesheets/5-components/_buttons.scss +18 -3
  99. package/src/stylesheets/5-components/_character-limit.scss +2 -2
  100. package/src/stylesheets/5-components/_chat-status.scss +26 -37
  101. package/src/stylesheets/5-components/_choice-prompt.scss +9 -10
  102. package/src/stylesheets/5-components/_conversation.scss +9 -62
  103. package/src/stylesheets/5-components/_disclaimer.scss +11 -3
  104. package/src/stylesheets/5-components/_error.scss +3 -2
  105. package/src/stylesheets/5-components/_idle.scss +3 -8
  106. package/src/stylesheets/5-components/_input.scss +34 -13
  107. package/src/stylesheets/5-components/_interrupt.scss +3 -10
  108. package/src/stylesheets/5-components/_loader.scss +1 -2
  109. package/src/stylesheets/5-components/_message-author.scss +2 -4
  110. package/src/stylesheets/5-components/_message-body.scss +33 -10
  111. package/src/stylesheets/5-components/_message-card.scss +2 -10
  112. package/src/stylesheets/5-components/_message-carousel.scss +4 -4
  113. package/src/stylesheets/5-components/_message-cta.scss +0 -6
  114. package/src/stylesheets/5-components/_message.scss +1 -0
  115. package/src/stylesheets/5-components/_modal.scss +2 -5
  116. package/src/stylesheets/5-components/_options.scss +17 -22
  117. package/src/stylesheets/5-components/_pre-chat-messages.scss +3 -1
  118. package/src/stylesheets/5-components/_prompt.scss +3 -7
  119. package/src/stylesheets/5-components/_skip-link.scss +2 -1
  120. package/src/stylesheets/5-components/_suggestions.scss +2 -2
  121. package/src/stylesheets/5-components/_translation-options.scss +5 -2
  122. package/src/stylesheets/5-components/_unread-messages.scss +33 -0
  123. package/src/stylesheets/5-components/_upload.scss +20 -27
  124. package/src/stylesheets/6-default-implementation/_hover.scss +14 -17
  125. package/src/stylesheets/7-deprecated/1-settings/_config.scss +17 -0
  126. package/src/stylesheets/7-deprecated/3-app/_app.scss +2 -1
  127. package/src/stylesheets/7-deprecated/5-components/_card.scss +1 -0
  128. package/src/stylesheets/7-deprecated/5-components/_chat-status.scss +66 -20
  129. package/src/stylesheets/7-deprecated/5-components/_conversation.scss +1 -4
  130. package/src/stylesheets/7-deprecated/5-components/_input.scss +6 -1
  131. package/src/stylesheets/7-deprecated/5-components/_interrupt.scss +1 -4
  132. package/src/stylesheets/7-deprecated/5-components/_message.scss +49 -12
  133. package/src/stylesheets/7-deprecated/5-components/_translation-options.scss +30 -37
  134. package/src/stylesheets/7-deprecated/5-components/_unread-messages.scss +38 -0
  135. package/src/stylesheets/deprecated-view.scss +1 -0
  136. package/src/stylesheets/styles.scss +2 -0
  137. package/webpack/config.common.js +6 -1
  138. package/webpack/config.package.js +18 -0
  139. package/webpack/defaults.js +1 -1
  140. package/src/javascripts/ui/components/core/seamly-file-upload.js +0 -86
  141. package/src/javascripts/ui/components/entry/text-entry/hooks.js +0 -46
@@ -54,4 +54,5 @@ const visibilityStates = {
54
54
 
55
55
  module.exports = __webpack_exports__;
56
56
  /******/ })()
57
- ;
57
+ ;
58
+ //# sourceMappingURL=~/config.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.js","mappings":";;UAAA;UACA;;;;;WCDA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA;;;;;WCAA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;;;;;;;;;;ACNO,MAAMA,QAAQ,GAAG,YAAY;AAE7B,MAAMC,gBAAgB,GAAG;EAC9BC,MAAM,EAAE,QAAQ;EAChBC,SAAS,EAAE,WAAW;EACtBC,IAAI,EAAE,MAAM;EACZC,UAAU,EAAE;CACJ","sources":["webpack:///webpack/bootstrap","webpack:///webpack/runtime/define property getters","webpack:///webpack/runtime/hasOwnProperty shorthand","webpack:///webpack/runtime/make namespace object","webpack:///./src/javascripts/domains/visibility/constants.ts","webpack:///./src/javascripts/package/config.js"],"sourcesContent":["// The require scope\nvar __webpack_require__ = {};\n\n","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","export const StoreKey = 'visibility'\n\nexport const visibilityStates = {\n hidden: 'hidden',\n minimized: 'minimized',\n open: 'open',\n initialize: null,\n} as const\n","export { visibilityStates } from 'domains/visibility/constants'\n"],"names":["StoreKey","visibilityStates","hidden","minimized","open","initialize"],"sourceRoot":""}
@@ -1 +1,2 @@
1
- (()=>{"use strict";var e={d:(i,t)=>{for(var o in t)e.o(t,o)&&!e.o(i,o)&&Object.defineProperty(i,o,{enumerable:!0,get:t[o]})},o:(e,i)=>Object.prototype.hasOwnProperty.call(e,i),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},i={};e.r(i),e.d(i,{visibilityStates:()=>t});const t={hidden:"hidden",minimized:"minimized",open:"open",initialize:null};module.exports=i})();
1
+ (()=>{"use strict";var e={d:(i,t)=>{for(var o in t)e.o(t,o)&&!e.o(i,o)&&Object.defineProperty(i,o,{enumerable:!0,get:t[o]})},o:(e,i)=>Object.prototype.hasOwnProperty.call(e,i),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},i={};e.r(i),e.d(i,{visibilityStates:()=>t});const t={hidden:"hidden",minimized:"minimized",open:"open",initialize:null};module.exports=i})();
2
+ //# sourceMappingURL=~/config.min.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"config.min.js","mappings":"mBACA,IAAIA,EAAsB,CCA1BA,EAAwB,CAACC,EAASC,KACjC,IAAI,IAAIC,KAAOD,EACXF,EAAoBI,EAAEF,EAAYC,KAASH,EAAoBI,EAAEH,EAASE,IAC5EE,OAAOC,eAAeL,EAASE,EAAK,CAAEI,YAAY,EAAMC,IAAKN,EAAWC,IAE1E,ECNDH,EAAwB,CAACS,EAAKC,IAAUL,OAAOM,UAAUC,eAAeC,KAAKJ,EAAKC,GCClFV,EAAyBC,IACH,oBAAXa,QAA0BA,OAAOC,aAC1CV,OAAOC,eAAeL,EAASa,OAAOC,YAAa,CAAEC,MAAO,WAE7DX,OAAOC,eAAeL,EAAS,aAAc,CAAEe,OAAO,GAAO,G,4CCLvD,MAEMC,EAAmB,CAC9BC,OAAQ,SACRC,UAAW,YACXC,KAAM,OACNC,WAAY,M","sources":["webpack:///webpack/bootstrap","webpack:///webpack/runtime/define property getters","webpack:///webpack/runtime/hasOwnProperty shorthand","webpack:///webpack/runtime/make namespace object","webpack:///./src/javascripts/domains/visibility/constants.ts"],"sourcesContent":["// The require scope\nvar __webpack_require__ = {};\n\n","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","export const StoreKey = 'visibility'\n\nexport const visibilityStates = {\n hidden: 'hidden',\n minimized: 'minimized',\n open: 'open',\n initialize: null,\n} as const\n"],"names":["__webpack_require__","exports","definition","key","o","Object","defineProperty","enumerable","get","obj","prop","prototype","hasOwnProperty","call","Symbol","toStringTag","value","visibilityStates","hidden","minimized","open","initialize"],"sourceRoot":""}
@@ -59,4 +59,5 @@ const SeamlyLiveRegionContext = (0,external_preact_namespaceObject.createContext
59
59
 
60
60
  module.exports = __webpack_exports__;
61
61
  /******/ })()
62
- ;
62
+ ;
63
+ //# sourceMappingURL=~/contexts.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"contexts.js","mappings":";;UAAA;UACA;;;;;WCDA;WACA;WACA;WACA;WACA,yCAAyC,wCAAwC;WACjF;WACA;WACA;;;;;WCPA;;;;;WCAA;WACA;WACA;WACA,uDAAuD,iBAAiB;WACxE;WACA,gDAAgD,aAAa;WAC7D;;;;;;;;;;;;;;;;ACNA,MAAM,+BAA4B;;ACEI;AAE/B,MAAMC,gBAAgB,GAAGD,iDAAa,CAAM,IAAI,CAAC;AAEjD,MAAME,qBAAqB,GAAGF,iDAAa,CAAS,IAAI,CAAC;;ACN1B;AAE/B,MAAMG,uBAAuB,GAAGH,iDAAa,CAAC,IAAI,CAAC;;ACCZ;AACyC","sources":["webpack:///webpack/bootstrap","webpack:///webpack/runtime/define property getters","webpack:///webpack/runtime/hasOwnProperty shorthand","webpack:///webpack/runtime/make namespace object","webpack:///external commonjs2 \"preact\"","webpack:///./src/javascripts/ui/components/core/seamly-api-context.ts","webpack:///./src/javascripts/ui/components/core/seamly-live-region-context.js","webpack:///./src/javascripts/package/contexts.js"],"sourcesContent":["// The require scope\nvar __webpack_require__ = {};\n\n","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","const __WEBPACK_NAMESPACE_OBJECT__ = require(\"preact\");","import { API } from 'api'\nimport { Events } from 'minivents'\nimport { createContext } from 'preact'\n\nexport const SeamlyApiContext = createContext<API>(null)\n\nexport const SeamlyEventBusContext = createContext<Events>(null)\n","import { createContext } from 'preact'\n\nexport const SeamlyLiveRegionContext = createContext(null)\n","import {\n SeamlyApiContext,\n SeamlyEventBusContext,\n} from 'ui/components/core/seamly-api-context'\nimport { SeamlyLiveRegionContext } from 'ui/components/core/seamly-live-region-context'\n\nexport { SeamlyApiContext, SeamlyEventBusContext, SeamlyLiveRegionContext }\n"],"names":["createContext","SeamlyApiContext","SeamlyEventBusContext","SeamlyLiveRegionContext"],"sourceRoot":""}
@@ -1 +1,2 @@
1
- (()=>{"use strict";var e={d:(t,o)=>{for(var r in o)e.o(o,r)&&!e.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:o[r]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{SeamlyApiContext:()=>r,SeamlyEventBusContext:()=>n,SeamlyLiveRegionContext:()=>l});const o=require("preact"),r=(0,o.createContext)(null),n=(0,o.createContext)(null),l=(0,o.createContext)(null);module.exports=t})();
1
+ (()=>{"use strict";var e={d:(t,o)=>{for(var r in o)e.o(o,r)&&!e.o(t,r)&&Object.defineProperty(t,r,{enumerable:!0,get:o[r]})},o:(e,t)=>Object.prototype.hasOwnProperty.call(e,t),r:e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})}},t={};e.r(t),e.d(t,{SeamlyApiContext:()=>r,SeamlyEventBusContext:()=>n,SeamlyLiveRegionContext:()=>l});const o=require("preact"),r=(0,o.createContext)(null),n=(0,o.createContext)(null),l=(0,o.createContext)(null);module.exports=t})();
2
+ //# sourceMappingURL=~/contexts.min.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"contexts.min.js","mappings":"mBACA,IAAIA,EAAsB,CCA1BA,EAAwB,CAACC,EAASC,KACjC,IAAI,IAAIC,KAAOD,EACXF,EAAoBI,EAAEF,EAAYC,KAASH,EAAoBI,EAAEH,EAASE,IAC5EE,OAAOC,eAAeL,EAASE,EAAK,CAAEI,YAAY,EAAMC,IAAKN,EAAWC,IAE1E,ECNDH,EAAwB,CAACS,EAAKC,IAAUL,OAAOM,UAAUC,eAAeC,KAAKJ,EAAKC,GCClFV,EAAyBC,IACH,oBAAXa,QAA0BA,OAAOC,aAC1CV,OAAOC,eAAeL,EAASa,OAAOC,YAAa,CAAEC,MAAO,WAE7DX,OAAOC,eAAeL,EAAS,aAAc,CAAEe,OAAO,GAAO,G,sGCL9D,MAAM,EAA+BC,QAAQ,UCIhCC,GAAmBC,EAAAA,EAAAA,eAAmB,MAEtCC,GAAwBD,EAAAA,EAAAA,eAAsB,MCJ9CE,GAA0BF,EAAAA,EAAAA,eAAc,M","sources":["webpack:///webpack/bootstrap","webpack:///webpack/runtime/define property getters","webpack:///webpack/runtime/hasOwnProperty shorthand","webpack:///webpack/runtime/make namespace object","webpack:///external commonjs2 \"preact\"","webpack:///./src/javascripts/ui/components/core/seamly-api-context.ts","webpack:///./src/javascripts/ui/components/core/seamly-live-region-context.js"],"sourcesContent":["// The require scope\nvar __webpack_require__ = {};\n\n","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","const __WEBPACK_NAMESPACE_OBJECT__ = require(\"preact\");","import { API } from 'api'\nimport { Events } from 'minivents'\nimport { createContext } from 'preact'\n\nexport const SeamlyApiContext = createContext<API>(null)\n\nexport const SeamlyEventBusContext = createContext<Events>(null)\n","import { createContext } from 'preact'\n\nexport const SeamlyLiveRegionContext = createContext(null)\n"],"names":["__webpack_require__","exports","definition","key","o","Object","defineProperty","enumerable","get","obj","prop","prototype","hasOwnProperty","call","Symbol","toStringTag","value","require","SeamlyApiContext","createContext","SeamlyEventBusContext","SeamlyLiveRegionContext"],"sourceRoot":""}
@@ -1 +1 @@
1
- @keyframes cvco-loader{0%,75%,to{border-radius:50%;transform:scaleY(.45)}37.5%{border-radius:2.5px;transform:scaleY(1)}}@keyframes cvco-fadeIn{0%{opacity:0}to{opacity:1}}@keyframes cvco-blink{0%,to{opacity:0}50%{opacity:1}}.cvco-app--deprecated{background-color:#fff;border:1px solid #a3b4bf;border-radius:10px;bottom:2vw;box-shadow:0 0 20px 0 rgba(0,0,0,.1);box-sizing:border-box;color:#3d4166;display:flex;flex-direction:column;font-family:arial,helvetica,sans-serif;font-size:16px;height:720px;max-height:calc(85vh - 4vw);max-width:96vw;outline:0;overflow:hidden;position:fixed;right:2vw;transition:height .75s ease-in-out,width .75s ease-in-out;width:375px;z-index:1}@media(min-width:641px){.cvco-app--deprecated{max-height:calc(100vh - 4vw)}@supports(-webkit-overflow-scrolling:touch){.cvco-app--deprecated{max-height:calc(90vh - 4vw)}}}@media(min-width:1025px){.cvco-app--deprecated{bottom:20px;max-height:calc(100vh - 40px);right:20px}@supports(-webkit-overflow-scrolling:touch){.cvco-app--deprecated{max-height:calc(90vh - 40px)}}}.cvco-app--deprecated *,.cvco-app--deprecated :after,.cvco-app--deprecated :before{box-sizing:border-box}.cvco-app--layout-inline.cvco-app--deprecated{background-color:transparent;background-color:initial;bottom:auto;box-shadow:none;height:100vh;max-height:640px;min-height:480px;position:relative;right:auto;transition:height .3s ease-in-out,width .3s ease-in-out;width:auto}@media(min-width:641px){.cvco-app--layout-inline.cvco-app--deprecated{border:0;display:block}}.cvco-app--collapsed.cvco-app--deprecated{background:none;border:0;box-shadow:none;height:54px;width:195px}.cvco-app--collapsed.cvco-app--started.cvco-app--deprecated{width:375px}.cvco-app-wrapper{background-color:#fff;display:flex;flex:1 1 100%;flex-direction:column;position:relative;transition:width .3s ease-in-out,margin-right .3s ease-in-out,border-radius .3s ease-in-out;width:100%;z-index:1}@media(min-width:641px){.cvco-app--layout-inline.cvco-app--deprecated .cvco-app-wrapper{border:1px solid #a3b4bf;border-bottom-left-radius:10px;border-top-left-radius:10px;height:100%;margin-right:50%;width:50%}.cvco-app--layout-inline.cvco-app--deprecated .cvco-app-wrapper:last-child{border-radius:10px;margin-right:0;width:100%}}@media(min-width:1025px){.cvco-app--layout-inline.cvco-app--deprecated .cvco-app-wrapper,.cvco-app--layout-inline.cvco-app--deprecated .cvco-app-wrapper:last-child{margin-right:33%;width:67%}}.cvco-chat__header{border-bottom:1px solid #dee3e5;border-top-left-radius:10px;border-top-right-radius:10px;display:flex;flex:0 0 auto;flex-direction:row;height:54px;justify-content:flex-end;padding:10px;position:relative}.cvco-app--collapsed.cvco-app--deprecated .cvco-chat__header{background-color:#4a48c1;border-bottom:0;border-bottom-left-radius:10px;border-bottom-right-radius:10px;color:#fff}.cvco-toggle-button{background:none;background-color:transparent;border:0;color:#fff;display:none;flex-direction:column;font-size:12px;height:54px;justify-content:center;margin:0;padding:10px 10px 10px 52px;position:absolute;width:100%;z-index:1}.cvco-app--collapsed.cvco-app--deprecated .cvco-toggle-button{display:flex}.cvco-toggle-button__title{font-size:12px;margin:0}.cvco-toggle-button__subtitle{font-size:12px;font-weight:700;margin:0}.cvco-toggle-button__button{background:none;border:0;height:100%;left:0;margin:0;padding:0;position:absolute;top:0;width:100%;z-index:1}.cvco-toggle-button__button:focus{outline:1px solid #fff;outline-offset:-5px}.cvco-chat__container{display:flex;flex-grow:1;justify-content:center;position:relative}.cvco-chat__container__scroll-area{display:flex;flex-direction:column;height:100%;justify-content:space-between;overflow-y:auto;position:relative;width:100%}.cvco-chat__container__header{display:flex;position:sticky;top:0;z-index:1}.cvco-chat__body{border-bottom:1px solid #dee3e5;display:flex;flex-grow:4;padding:0;position:relative}.cvco-app--collapsed.cvco-app--deprecated .cvco-chat__body{display:none}.cvco-app--layout-window.cvco-app--deprecated .cvco-chat__body{-ms-scroll-chaining:none;overscroll-behavior:contain}.cvco-chat__entry{flex:0 0 auto;padding:10px;position:relative}.cvco-app--collapsed.cvco-app--deprecated .cvco-chat__entry,.cvco-chat__entry .cvco-entry__body--hidden{display:none}.cvco-entry__body{align-items:center;display:flex}.cvco-app--deprecated p{margin:0}.cvco-app--deprecated img{max-width:100%}.cvco-app--deprecated h1,.cvco-app--deprecated h2,.cvco-app--deprecated h3,.cvco-app--deprecated h4,.cvco-app--deprecated h5,.cvco-app--deprecated h6{font-size:1rem;font-weight:400}.cvco-app--deprecated .cvco-input__checkbox{margin-right:10px}.cvco-app--deprecated .cvco-input__checkbox[aria-disabled=true]{opacity:.5}.cvco-app--deprecated .cvco-label{color:#4a48c1;display:block;font-size:14px;font-weight:700;margin-bottom:5px}.cvco-app--deprecated .cvco-input__checkbox[aria-disabled=true]+.cvco-label{opacity:.5}.cvco-app--deprecated .cvco-input__select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iIzRBNDhDMSIgZD0iTTIuOTk4IDYuNTAzYS45OTkuOTk5IDAgMCAxIDEuNjg3LS43MjdMNy4yNyA4LjIyMmMuMzk0LjM3MyAxLjA2LjM3MyAxLjQ1NCAwbDIuNTg2LTIuNDQ2YS45OTkuOTk5IDAgMSAxIDEuMzc0IDEuNDU0bC0yLjU4NiAyLjQ0NmMtMS4xNTkgMS4wOTYtMy4wNDMgMS4wOTYtNC4yMDMgMEwzLjMxIDcuMjI5YS45OTQuOTk0IDAgMCAxLS4zMTItLjcyNnoiLz48L3N2Zz4=);background-position:right 10px top 50%;background-repeat:no-repeat;background-size:15px auto;border:1px solid #dee3e5;border-radius:5px;color:#3d4166;font-size:12px;height:100%;padding:10px;resize:none;transition:padding .3s ease-in-out;width:100%}@supports(-webkit-overflow-scrolling:touch){.cvco-app--deprecated .cvco-input__select{font-size:16px}}.cvco-app--deprecated .cvco-input__select:hover{border:1px solid #4a48c1}.cvco-app--deprecated .cvco-input__select[aria-disabled=true],.cvco-app--deprecated .cvco-input__select[aria-disabled=true]:hover{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iI2EzYjRiZiIgZD0iTTIuOTk4IDYuNTAzYS45OTkuOTk5IDAgMCAxIDEuNjg3LS43MjdMNy4yNyA4LjIyMmMuMzk0LjM3MyAxLjA2LjM3MyAxLjQ1NCAwbDIuNTg2LTIuNDQ2YS45OTkuOTk5IDAgMSAxIDEuMzc0IDEuNDU0bC0yLjU4NiAyLjQ0NmMtMS4xNTkgMS4wOTYtMy4wNDMgMS4wOTYtNC4yMDMgMEwzLjMxIDcuMjI5YS45OTQuOTk0IDAgMCAxLS4zMTItLjcyNnoiLz48L3N2Zz4=);border:1px solid #a3b4bf;color:#a3b4bf}.cvco-app--deprecated .cvco-header-controls{flex-direction:row;justify-content:space-around}.cvco-app--deprecated .cvco-header-controls>button{display:inline-block;height:32px;overflow:hidden;padding:0;vertical-align:top;width:32px}.cvco-app--deprecated .cvco-header-controls .cvco-icon{height:32px;width:32px}.cvco-app--deprecated.cvco-app--collapsed .cvco-header-controls{display:none}.cvco-app--deprecated .cvco-agent-info{align-items:center;display:flex;flex-direction:row;flex-grow:4;padding:2px 0}.cvco-app--deprecated .cvco-agent-info__graphic{flex:0 0 auto;height:32px;margin-right:10px;position:relative;width:32px}.cvco-app--deprecated .cvco-agent-info__graphic .cvco-avatar,.cvco-app--deprecated .cvco-agent-info__graphic .cvco-icon{border-radius:5px;display:block;height:100%;overflow:hidden;width:100%}.cvco-app--deprecated.cvco-app--collapsed .cvco-agent-info__graphic .topbubble{fill:#fff}.cvco-app--deprecated .cvco-agent-info__body{flex:1 1 auto}.cvco-app--deprecated.cvco-app--collapsed .cvco-agent-info__body{display:none}.cvco-app--deprecated .cvco-agent-info__heading{font-size:12px;margin:0}.cvco-app--deprecated .cvco-agent-info__text{font-size:12px;font-weight:700;margin:0}.cvco-app--deprecated .cvco-avatar{border-radius:5px;display:block;flex-shrink:0;height:32px;overflow:hidden;position:relative;width:32px}.cvco-app--deprecated .cvco-avatar>.cvco-icon,.cvco-app--deprecated .cvco-avatar__graphic{display:block}.cvco-app--deprecated .cvco-conversation__message+.cvco-avatar{align-self:flex-end;margin-left:10px}.cvco-app--deprecated .cvco-avatar--bg-white{background-color:#fff}.cvco-app--deprecated .cvco-avatar--arrow-right{margin-right:5px;overflow:visible}.cvco-app--deprecated .cvco-avatar--arrow-right:after{border-bottom:5px solid transparent;border-left:8px solid #003a5d;border-top:5px solid transparent;content:"";display:inline-block;height:0;position:absolute;right:-6.666px;top:50%;transform:translateY(-50%);width:0}.cvco-app--deprecated .cvco-button{background:none;border:0;cursor:pointer;display:inline-block;margin:0;padding:0;text-align:left}.cvco-app--deprecated .cvco-button span{color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit}.cvco-app--deprecated .cvco-button--primary{background-color:#4a48c1;border-color:#fff;border-radius:15px;color:#fff;font-weight:700;min-height:30px;padding:5px 15px}.cvco-app--deprecated .cvco-button--secondary{color:#4a48c1;font-weight:700;padding:10px}.cvco-app--deprecated .cvco-button--tertiary{background-color:transparent;background-color:initial;border-radius:10px;color:#fff;font-size:12px;font-weight:700;padding:2px 5px}.cvco-app--deprecated .cvco-button[aria-disabled=true]{color:#5e727b;cursor:auto}.cvco-app--deprecated .cvco-button--choose-again{align-items:center;display:flex;margin:5px 0 10px;padding:0}.cvco-app--deprecated .cvco-button--choose-again:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-button--choose-again .cvco-icon{align-items:center;display:flex;flex:0 0 8px;height:8px;justify-content:center;margin:3px 5px;transform-origin:50% 50%;transition:transform .3s ease-in-out;width:8px}.cvco-app--deprecated .cvco-button--choose-again[aria-expanded=true] .cvco-icon{transform:rotate(180deg)}.cvco-app--deprecated .cvco-button--choose-again .cvco-icon svg{display:block;width:100%}.cvco-app--deprecated .cvco-button__state{background-color:#eff3f6;border-radius:5px;color:inherit;display:inline-block;margin:-3px -3px -3px 3px;padding:3px 5px}.cvco-app--deprecated .cvco-choice-prompt{display:flex;flex-direction:column;padding:0}.cvco-app--deprecated .cvco-choice-prompt__item{display:block;margin-left:0;margin-top:5px;width:100%}.cvco-app--deprecated .cvco-choice-prompt__item:first-child{margin-top:0}.cvco-app--deprecated .cvco-choice-prompt__item .cvco-button{display:block;white-space:normal;width:100%}.cvco-app--deprecated .cvco-choice-prompt__item--secondary .cvco-button{background-color:transparent;background-color:initial;color:#4a48c1}.cvco-app--deprecated .cvco-conversation__container{bottom:0;display:flex;flex:1 1 100%;flex-direction:column;height:100%;justify-content:space-between;left:0;max-height:100%;position:absolute;right:0;top:0}.cvco-app--deprecated .cvco-conversation{list-style:none;margin:auto 0 0;padding:20px 20px 0;width:100%}.cvco-app--deprecated .cvco-conversation:after{content:"";display:block;flex:0 0 100%;height:20px;width:100%}.cvco-app--deprecated .cvco-app--layout-inline .cvco-conversation{position:relative}.cvco-app--deprecated .cvco-conversation__item{margin-top:10px;min-height:0;width:100%}.cvco-app--deprecated .cvco-conversation__item--new-participant{margin-top:20px}.cvco-app--deprecated .cvco-divider{background:linear-gradient(180deg,#fff,#eff3f6);background-repeat:no-repeat;background-size:100% 40px;display:flex;font-family:arial,helvetica,sans-serif;font-size:12px;justify-content:center;line-height:1.5;margin:20px -20px 0;overflow:hidden;padding:65px 30px 0;position:relative}.cvco-app--deprecated .cvco-divider:before{background:radial-gradient(110px at 50% 300%,rgba(74,72,193,.5) 0,hsla(0,0%,100%,0) 99.99%,rgba(74,72,193,0) 100%);background-repeat:no-repeat;content:"";height:40px;left:50%;position:absolute;top:0;transform:translateX(-50%);width:100%}.cvco-app--deprecated .cvco-divider--type-time-indicator{padding-bottom:20px;padding-top:60px}.cvco-app--deprecated .cvco-divider--type-time-indicator:before{display:none}.cvco-app--deprecated .cvco-conversation__item:first-child .cvco-divider{margin-top:0;padding-bottom:10px}.cvco-app--deprecated .cvco-divider__graphic{background:#fff;border-radius:5px;height:32px;left:50%;position:absolute;top:40px;transform:translate(-50%,-60%);width:32px}.cvco-app--deprecated .cvco-divider__graphic .cvco-avatar,.cvco-app--deprecated .cvco-divider__graphic .cvco-icon,.cvco-app--deprecated .cvco-divider__graphic .cvco-icon svg{height:100%;width:100%}.cvco-app--deprecated .cvco-divider__time{text-align:center}.cvco-app--deprecated .cvco-divider__time span{display:block}.cvco-app--deprecated .cvco-divider__time span:first-of-type{font-weight:700}.cvco-app--deprecated .cvco-divider--type-newtranslation{text-align:center}.cvco-app--deprecated .cvco-divider--type-newtranslation .cvco-divider__body{max-width:80%}.cvco-app--deprecated .cvco-divider--type-newtranslation .cvco-divider__title{font-weight:700}.cvco-app--deprecated .cvco-divider .cvco-button{font-size:inherit;padding:0}.cvco-app--deprecated .cvco-loader{align-items:center;animation:cvco-fadeIn .3s linear;display:flex;flex-direction:row;height:20px;justify-content:flex-start;padding:2.5px 5px}.cvco-app--deprecated .cvco-loader__part{animation-delay:.12s;animation-direction:normal;animation-duration:.6s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:cvco-loader;animation-timing-function:ease;background-color:currentcolor;border-radius:50%;display:inline-block;height:100%;margin-right:5px;transform:scaleY(.45);width:6.666px}.cvco-app--deprecated .cvco-loader__part.cvco-one{animation-delay:.12s}.cvco-app--deprecated .cvco-loader__part.cvco-two{animation-delay:.24s}.cvco-app--deprecated .cvco-loader__part.cvco-three{animation-delay:.36s}.cvco-app--deprecated .cvco-loader__part.cvco-four{animation-delay:.48s;margin-right:0}.cvco-app--deprecated .cvco-loader--white .cvco-loader__part{background-color:#fff}.cvco-app--deprecated .cvco-loader--grey .cvco-loader__part{background-color:#dee3e5}.cvco-app--deprecated .cvco-message{display:flex;flex-flow:row wrap;font-family:arial,helvetica,sans-serif;font-size:12px;line-height:1.5;width:80%}.cvco-app--deprecated .cvco-message+.cvco-message,.cvco-app--deprecated .cvco-message+div>.cvco-message{margin-top:10px}.cvco-app--deprecated .cvco-message__author{align-items:center;display:none;flex-direction:row;font-weight:700;justify-content:flex-start;margin-bottom:.3rem;padding:0 10px;width:100%}.cvco-app--deprecated .cvco-message__avatar{height:16px;margin:0 .5em 0 0;width:16px}.cvco-app--deprecated .cvco-message__avatar .cvco-avatar{display:block;height:100%;-o-object-fit:contain;object-fit:contain;width:100%}.cvco-app--deprecated .cvco-conversation__item--new-participant .cvco-message__author,.cvco-app--deprecated .cvco-divider--type-time-indicator+.cvco-message--source-agent .cvco-message__author,.cvco-app--deprecated .cvco-divider--type-time-indicator+.cvco-message--source-user .cvco-message__author{display:flex}.cvco-app--deprecated .cvco-message__body{background-color:#eff3f6;border-radius:10px;color:#3d4166;display:block;margin-bottom:5px;max-width:100%;padding:10px 15px;position:relative}.cvco-app--deprecated .cvco-message__body .cvco-icon svg path{fill:#3d4166}.cvco-app--deprecated .cvco-message__body:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-message__info,.cvco-app--deprecated .cvco-message__translation-info{width:100%}.cvco-app--deprecated.cvco-app--collapsed .cvco-message__translation-info{display:none}.cvco-app--deprecated .cvco-message__translation-label{font-size:12px;margin-right:5px}.cvco-app--deprecated .cvco-button.cvco-message__translation-toggle{font-size:inherit;padding:0}.cvco-app--deprecated .cvco-conversation__item--source-info{margin-bottom:20px;margin-top:20px}.cvco-app--deprecated .cvco-conversation__item--source-info:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-conversation__item--source-info .cvco-message{margin:0 auto;max-width:90%;width:90%}.cvco-app--deprecated .cvco-conversation__item--source-info .cvco-message:after{border-top:2px solid #4a48c1;content:"";display:block;height:0;margin:0 auto;width:20px}.cvco-app--deprecated .cvco-conversation__item--source-info .cvco-message__body{background-color:transparent;background-color:initial;border-radius:0;flex:0 0 100%;padding:0 15px 10px;text-align:center;width:100%}.cvco-app--deprecated .cvco-message--source-user{justify-content:flex-end;margin-left:auto}.cvco-app--deprecated .cvco-message--source-user .cvco-message__author{justify-content:flex-end}.cvco-app--deprecated .cvco-message--source-user .cvco-message__body{background-color:#223182;color:#fff}.cvco-app--deprecated .cvco-message--source-user .cvco-message__body .cvco-icon svg path{fill:#fff}.cvco-app--deprecated .cvco-message--source-user .cvco-message__avatar{margin:0 0 0 .5em;order:2}.cvco-app--deprecated .cvco-message--source-user .cvco-message__author-name{order:1}.cvco-app--deprecated .cvco-message--source-user .cvco-message__info,.cvco-app--deprecated .cvco-message--source-user .cvco-message__translation-info{text-align:right}.cvco-app--deprecated .cvco-message--type-text .cvco-message__body ol:only-child,.cvco-app--deprecated .cvco-message--type-text .cvco-message__body p:only-child,.cvco-app--deprecated .cvco-message--type-text .cvco-message__body ul:only-child{margin:0}.cvco-app--deprecated .cvco-message--type-text .cvco-message__body ol:last-child,.cvco-app--deprecated .cvco-message--type-text .cvco-message__body p:last-child,.cvco-app--deprecated .cvco-message--type-text .cvco-message__body ul:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-message--type-text .cvco-message__body ol,.cvco-app--deprecated .cvco-message--type-text .cvco-message__body p,.cvco-app--deprecated .cvco-message--type-text .cvco-message__body ul{margin:0 0 1em}.cvco-app--deprecated .cvco-message--type-text .cvco-message__body ol,.cvco-app--deprecated .cvco-message--type-text .cvco-message__body ul{padding-left:1.5em}.cvco-app--deprecated .cvco-message--type-text .cvco-message__body a{word-wrap:break-word;color:#4a48c1;-webkit-hyphens:auto;hyphens:auto;word-break:break-word}.cvco-app--deprecated .cvco-message--type-text .cvco-message__body a:hover{text-decoration:none}.cvco-app--deprecated .cvco-message--type-text.cvco-message--source-user .cvco-message__body a{color:#fff}.cvco-app--deprecated .cvco-message--type-loading .cvco-message__body{align-self:flex-start}.cvco-app--deprecated .cvco-message--type-loading.cvco-message--source-user .cvco-message__body{align-self:flex-end}.cvco-app--deprecated .cvco-message--type-choice-prompt .cvco-message__body{width:100%}.cvco-app--deprecated .cvco-message--type-choice-prompt:not(.cvco-message--type-choice-prompt-selected) .cvco-message__body{background:none;padding:0}.cvco-app--deprecated .cvco-message--type-choice-prompt-selected .cvco-message__choice-indicator{background:#fff;border-radius:50%;box-shadow:0 4px 4px rgba(0,0,0,.25);content:"";height:1.5em;padding:4px;position:absolute;right:0;top:10px;transform:translate(48%,-4px);width:1.5em}.cvco-app--deprecated .cvco-message--type-choice-prompt-selected .cvco-message__choice-indicator>svg{left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.cvco-app--deprecated .cvco-message--type-image .cvco-message__body{padding:0}.cvco-app--deprecated .cvco-message--type-image .cvco-message__body img{border-radius:10px;display:block;height:auto;overflow:hidden;width:100%}.cvco-app--deprecated .cvco-message--type-video .cvco-message__body{background-color:#000;padding:0 0 66%;width:100%}.cvco-app--deprecated .cvco-message--type-video .cvco-message__body iframe{border:0;border-radius:10px;height:100%;left:0;overflow:hidden;position:absolute;top:0;width:100%}.cvco-app--deprecated .cvco-message--type-upload .cvco-download{align-items:center;display:flex;text-decoration:line-through;width:100%;word-break:break-all}.cvco-app--deprecated .cvco-message--type-upload .cvco-download-link{color:inherit;text-decoration:underline}.cvco-app--deprecated .cvco-message--type-upload .cvco-download-link:hover{text-decoration:none}.cvco-app--deprecated .cvco-message--type-upload .cvco-icon{flex:0 0 16px;height:16px;margin-right:10px;width:16px}.cvco-app--deprecated .cvco-message--type-upload .cvco-icon svg{height:100%;width:100%}.cvco-app--deprecated .cvco-message--deleted .cvco-file-download{text-decoration:line-through}.cvco-app--deprecated .cvco-message .cvco-message__info{color:#6a7f8c;font-size:12px;line-height:1.35;margin-top:4px}.cvco-app--deprecated .cvco-message--type-cta .cvco-message__body{background-color:#223182;display:flex;flex-direction:column;padding:10px 15px 15px;width:100%}.cvco-app--deprecated .cvco-message--type-cta .cvco-cta__content{color:#fff;font-size:14px;line-height:1.5;margin-bottom:10px}.cvco-app--deprecated .cvco-message--type-cta .cvco-cta__content p{color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit}.cvco-app--deprecated .cvco-message--type-cta .cvco-button{line-height:2;margin-bottom:10px;text-decoration:none}.cvco-app--deprecated .cvco-message--type-cta .cvco-button:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-message--type-card .cvco-message__body{display:flex;flex-direction:column;padding:0;width:100%}.cvco-app--deprecated .cvco-message--type-carousel .cvco-message__body{display:block;padding:0}.cvco-app--deprecated .cvco-message-count{align-items:center;background-color:#db1639;border-radius:50%;color:#fff;display:flex;font-size:12px;font-weight:700;height:20px;justify-content:center;line-height:1;position:absolute;right:-8px;top:-8px;transform:scale(1);transition:transform .3s cubic-bezier(.175,.885,.32,1.275) .5s;width:20px}.cvco-app--deprecated .cvco-message-count.cvco-message-count__empty,.cvco-app--deprecated .cvco-message-count__hide{transform:scale(0);transition:transform .3s linear 0s}.cvco-app--deprecated .cvco-icon{display:inline-block;line-height:1}.cvco-app--deprecated .cvco-entry-form{display:flex;flex:1 1 100%;height:100%;width:100%}.cvco-app--deprecated .cvco-input--text__container{display:flex;flex:1 1 100%;height:100%;margin-right:5px;position:relative}.cvco-app--deprecated .cvco-input__text{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:1px solid transparent;border-radius:5px;color:#3d4166;flex-grow:4;font-size:12px;height:100%;margin-right:5px;padding:10px;resize:none;transition:padding .3s ease-in-out}@supports(-webkit-overflow-scrolling:touch){.cvco-app--deprecated .cvco-input__text{font-size:16px}}.cvco-app--deprecated .cvco-input__text::input-placeholder{color:#a3b4bf;line-height:20px;overflow:visible}.cvco-app--deprecated .cvco-input__text::-moz-placeholder{color:#a3b4bf;line-height:20px;overflow:visible}.cvco-app--deprecated .cvco-input__text::placeholder{color:#a3b4bf;line-height:20px;overflow:visible}.cvco-app--deprecated .cvco-input__text:input-placeholder{color:#a3b4bf;line-height:20px;overflow:visible}.cvco-app--deprecated .cvco-input__text:placeholder{color:#a3b4bf;line-height:20px;overflow:visible}.cvco-app--deprecated .cvco-input--text__container .cvco-input__text{margin-right:0;width:100%}.cvco-app--deprecated .cvco-character-exceeded .cvco-input__text,.cvco-app--deprecated .cvco-character-warning .cvco-input__text{padding-right:40px}.cvco-app--deprecated .cvco-character-exceeded .cvco-input__text{border:1px solid #db1639}.cvco-app--deprecated .cvco-input__submit{align-items:center;display:flex;justify-content:center;padding:0}.cvco-app--deprecated .cvco-input__submit[aria-disabled=true]{cursor:auto;opacity:.5}.cvco-app--deprecated .cvco-input__submit .cvco-icon{height:32px;width:32px}.cvco-app--deprecated .cvco-faqs{background-color:#eff3f6;display:none;height:0;min-height:0;transition:height .3s ease-in-out,min-height .3s ease-in-out,transform .3s ease-in-out;width:100%}.cvco-app--deprecated.cvco-app--layout-window .cvco-faqs{-ms-scroll-chaining:none;overscroll-behavior:contain}@media(min-width:641px){.cvco-app--deprecated.cvco-app--layout-inline .cvco-faqs{border:1px solid #a3b4bf;border-bottom-right-radius:10px;border-left:0;border-top-right-radius:10px;flex-direction:column;height:480px;left:50%;max-height:100%;min-height:480px;position:absolute;top:0;transform:translateX(-100%);width:50%}}@media(min-width:1025px){.cvco-app--deprecated.cvco-app--layout-inline .cvco-faqs{left:67%;width:33%}}.cvco-app--deprecated .cvco-faqs.cvco-transition--visible{display:block}@media(min-width:641px){.cvco-app--deprecated.cvco-app--layout-inline .cvco-faqs.cvco-transition--visible{display:flex}}.cvco-app--deprecated.cvco-app--collapsed .cvco-faqs,.cvco-app--deprecated.cvco-app--collapsed .cvco-faqs.cvco-transition--visible{display:none}.cvco-app--deprecated .cvco-faqs.cvco-transition--in{height:30%;max-height:240px;overflow-y:auto}@media(min-width:641px){.cvco-app--deprecated.cvco-app--layout-inline .cvco-faqs.cvco-transition--in{height:480px;max-height:100%;min-height:480px;overflow-y:visible;overflow-y:initial;transform:translateX(0)}}.cvco-app--deprecated .cvco-faqs__heading{color:#003a5d;flex:0 0 auto;font-size:14px;font-weight:700;margin:0;opacity:0;padding:20px 20px 10px;transition:opacity .3s ease-in-out}.cvco-app--deprecated .cvco-faqs__heading:last-child{padding-bottom:20px}.cvco-app--deprecated .cvco-faqs.cvco-transition--in .cvco-faqs__heading{opacity:1;transition:opacity .3s ease-in-out .2s}.cvco-app--deprecated .cvco-faqs__list{display:block;height:auto;list-style:none;margin:0;opacity:0;padding:0 20px;transition:opacity .3s ease-in-out;width:100%}.cvco-app--deprecated .cvco-faqs__list:after{content:"";display:block;flex:0 0 20px;height:20px;width:100%}.cvco-app--deprecated .cvco-faqs.cvco-transition--in .cvco-faqs__list{opacity:1;transition:opacity .3s ease-in-out .2s}@media(min-width:641px){.cvco-app--deprecated.cvco-app--layout-inline .cvco-faqs__list{flex:1 1 100%;height:100%;max-height:100%;overflow-y:auto}}.cvco-app--deprecated .cvco-faqs__item{display:block;margin-bottom:5px;width:100%}.cvco-app--deprecated .cvco-faqs__item:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-faqs__item .cvco-button.cvco-button--secondary{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent none repeat 0 0/auto auto padding-box border-box scroll;background:initial;border:0;border-radius:5px;font-size:12px;padding:0 0 0 15px;position:relative;text-align:left;text-decoration:none;text-decoration:initial;white-space:normal;width:100%}.cvco-app--deprecated .cvco-faqs__item .cvco-button.cvco-button--secondary:hover{color:#223182;text-decoration:underline}.cvco-app--deprecated .cvco-faqs__item .cvco-button.cvco-button--secondary .cvco-icon{height:8px;left:0;position:absolute;transition:transform .3s ease-in-out;width:8px}.cvco-app--deprecated .cvco-faqs__item .cvco-button.cvco-button--secondary:hover .cvco-icon{transform:translateX(5px)}.cvco-app--deprecated .cvco-faqs__item .cvco-button.cvco-button--secondary:hover .cvco-icon svg path{fill:#223182}.cvco-app--deprecated.cvco-app--layout-window .cvco-faqs__list{-ms-scroll-chaining:none;overscroll-behavior:contain}.cvco-app--deprecated .cvco-interrupt{background:#fff;bottom:0;display:flex;left:0;position:absolute;right:0;top:0}.cvco-app--deprecated .cvco-interrupt__body{align-items:center;border:1px solid #dee3e5;border-radius:10px;display:flex;flex:1 1 auto;flex-direction:column;justify-content:center;margin:10px;padding:40px}.cvco-app--deprecated .cvco-interrupt__title{font-size:16px;font-weight:700}.cvco-app--deprecated .cvco-interrupt__message{font-size:16px;margin-bottom:40px}.cvco-app--deprecated .cvco-interrupt__actions{margin-top:auto}.cvco-app--deprecated .cvco-skip-link{background:#4a48c1;border:1px solid #fff;border-radius:20px;color:#fff;font-size:12px;left:50%;opacity:0;padding:10px 20px;position:absolute;top:10px;transform:translate(-50%,-5px) scale(0);transform-origin:50% 0;transition:transform .3s ease-in-out,opacity .3s ease-in-out;z-index:100}.cvco-app--deprecated .cvco-skip-link:focus{opacity:1;transform:translate(-50%) scale(1)}.cvco-app--deprecated .cvco-svg-graphic{display:inline-block;position:relative}.cvco-app--deprecated .cvco-svg-graphic__path-fill-primary{fill:#003a5d}.cvco-app--deprecated .cvco-svg-graphic__path-fill-secondary{fill:#223182}.cvco-app--deprecated .cvco-svg-graphic__path-fill-tertiary{fill:#4a48c1}.cvco-app--deprecated .cvco-svg-graphic__path-fill-white{fill:#fff}.cvco-app--deprecated .cvco-svg-graphic__path-fill-black{fill:#000}.cvco-app--deprecated .cvco-svg-graphic__path-fill-highlight{fill:#ffc700}.cvco-app--deprecated .cvco-svg-graphic__path-fill-positive{fill:#00875e}.cvco-app--deprecated .cvco-svg-graphic__path-fill-negative{fill:#db1639}.cvco-app--deprecated .cvco-translation-options{list-style:none;margin:0;padding:1px 0 0;width:100%}.cvco-app--deprecated .cvco-translation-options--item{color:#4a48c1;font-size:12px}.cvco-app--deprecated .cvco-translation-options--item>input[type=radio]+label svg{opacity:0}.cvco-app--deprecated .cvco-translation-options--item>input[type=radio]:checked+label svg{opacity:1}.cvco-app--deprecated .cvco-translation-options--item>label{align-items:center;display:flex;font-weight:700;padding:5px 0;width:100%}.cvco-app--deprecated .cvco-translation-options--item>label:hover{cursor:pointer}.cvco-app--deprecated .cvco-translation-options--item>label:focus-within[\:has\(input\.focus-visible\)]{outline:1px auto -webkit-focus-ring-color}.cvco-app--deprecated .cvco-translation-options--item>label:focus-within:has(input.focus-visible){outline:1px auto -webkit-focus-ring-color}.cvco-app--deprecated .cvco-translation-options--item>label[focus-within][\:has\(input\.focus-visible\)]{outline:1px auto -webkit-focus-ring-color}.cvco-app--deprecated .cvco-translation-options--item>label[focus-within]:has(input.focus-visible){outline:1px auto -webkit-focus-ring-color}.cvco-app--deprecated .cvco-translation-options--item>label[focus-within]:has(input:focus-visible){outline:1px auto -webkit-focus-ring-color}.cvco-app--deprecated .cvco-translation-options--item>label[focus-within][\:has\(input\:focus-visible\)]{outline:1px auto -webkit-focus-ring-color}.cvco-app--deprecated .cvco-translation-options--item>label:focus-within[\:has\(input\:focus-visible\)]{outline:1px auto -webkit-focus-ring-color}.cvco-app--deprecated .cvco-translation-options--item>label:focus-within:has(input:focus-visible){outline:1px auto -webkit-focus-ring-color}.cvco-app--deprecated .cvco-translation-options--item>label>span{margin-left:.5em}.cvco-app--deprecated .cvco-translation-options--icon{display:flex;margin-right:10px}.cvco-app--deprecated .cvco-disclaimer{background-color:#eff3f6;display:block;flex:0 0 auto;height:auto;padding:10px 20px;width:100%}.cvco-app--deprecated.cvco-app--collapsed .cvco-disclaimer{display:none}.cvco-app--deprecated .cvco-disclaimer__title{font-size:12px;font-weight:700;line-height:1;margin:0 0 5px;padding-right:20px}.cvco-app--deprecated .cvco-disclaimer__message{font-size:12px;line-height:1.25}.cvco-app--deprecated .cvco-idle{align-items:center;display:flex;flex-direction:column;justify-content:space-between;max-height:none;padding:10px}.cvco-app--deprecated .cvco-idle__title{font-size:16px;font-weight:700;margin-bottom:5px;margin-top:0;text-align:center}.cvco-app--deprecated .cvco-idle__title:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-idle__count-container{display:block;font-size:12px;height:2.75em;margin-bottom:10px;width:100%}.cvco-app--deprecated .cvco-idle__count-text,.cvco-app--deprecated .cvco-idle__count-timer{display:block;font-size:inherit;text-align:center;white-space:nowrap;width:100%}.cvco-app--deprecated .cvco-idle__options{display:flex;flex-wrap:wrap;justify-content:center;list-style-type:none;margin:0;padding:0;width:100%}.cvco-app--deprecated .cvco-idle__options .cvco-button{margin:5px 5px 0;text-align:center;white-space:normal}.cvco-app--deprecated .cvco-prompt{align-items:center;display:flex;flex-direction:column;justify-content:space-between;max-height:none;padding:10px}.cvco-app--deprecated .cvco-prompt__title{font-size:16px;font-weight:700;margin-bottom:5px;margin-top:0;text-align:center}.cvco-app--deprecated .cvco-prompt__title:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-prompt__options{display:flex;flex-wrap:wrap;justify-content:center;list-style-type:none;margin:0;padding:0;width:100%}.cvco-app--deprecated .cvco-prompt__options .cvco-button{margin:5px 5px 0;text-align:center;white-space:normal}.cvco-app--deprecated .cvco-chat__options{align-items:center;border-top:1px solid #dee3e5;display:flex;justify-content:flex-end;padding:5px;position:relative}.cvco-app--deprecated .cvco-chat__options-item--left{margin-right:auto}.cvco-app--deprecated.cvco-app--collapsed .cvco-chat__options{display:none}.cvco-app--deprecated .cvco-chat__options__button{align-items:center;border-radius:15px;display:flex;justify-content:flex-end;padding:5px 10px}.cvco-app--deprecated.cvco-app--collapsed .cvco-chat__options-button{display:none}.cvco-app--deprecated .cvco-chat__options__button .cvco-icon{flex:0 0 15px;height:15px;margin-right:5px;width:15px}.cvco-app--deprecated .cvco-chat__options__button .cvco-icon svg{height:100%;width:100%}.cvco-app--deprecated .cvco-chat__options__button[aria-disabled=true] .cvco-icon path{fill:currentcolor}.cvco-app--deprecated .cvco-options__menu{background-color:#fff;border:1px solid #dee3e5;border-radius:5px;bottom:calc(100% + 10px);box-shadow:0 0 20px 0 rgba(0,0,0,.1);display:none;list-style:none;margin:0;max-height:400px;max-width:300px;opacity:0;padding:10px;position:absolute;right:10px;transform:scaleY(0) translateY(100px);transform-origin:100% 100%;transition:transform .2s ease-in-out,opacity .2s ease}.cvco-app--deprecated .cvco-options__menu.cvco-transition--visible{display:block}.cvco-app--deprecated .cvco-options__menu.cvco-transition--in{opacity:1;transform:scaleY(1) translateY(0)}.cvco-app--deprecated .cvco-options__menu__item{margin-bottom:5px;opacity:0;transition:opacity .1s ease .1s}.cvco-app--deprecated .cvco-options__menu__item:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-options__menu.cvco-transition--in .cvco-options__menu__item{opacity:1}.cvco-app--deprecated .cvco-options__menu .cvco-button{align-items:center;border-radius:5px;display:flex;min-width:200px;width:100%}.cvco-app--deprecated .cvco-options__menu .cvco-button:hover{background-color:#223182;color:#fff}.cvco-app--deprecated .cvco-options__menu .cvco-button[aria-disabled=true]:hover{background-color:transparent;background-color:initial;color:#5e727b}.cvco-app--deprecated .cvco-options{background-color:#fff;border:1px solid #dee3e5;border-radius:5px;bottom:calc(100% + 10px);box-shadow:0 0 20px 0 rgba(0,0,0,.1);display:none;flex-direction:column;list-style:none;margin:0;max-width:300px;opacity:0;padding:0;position:absolute;right:10px;transform:scaleY(0) translateY(100px);transform-origin:100% 100%;transition:transform .2s ease-in-out,opacity .2s ease;width:calc(100% - 20px)}.cvco-app--deprecated .cvco-options--left{left:10px;right:auto}.cvco-app--deprecated .cvco-options--right{right:10px}.cvco-app--deprecated .cvco-options__dialog.cvco-transition--visible .cvco-options{display:flex}.cvco-app--deprecated .cvco-options__dialog.cvco-transition--in .cvco-options{opacity:1;transform:scaleY(1) translateY(0)}.cvco-app--deprecated .cvco-options__body{display:flex;flex-direction:column;max-height:300px;opacity:0;transition:opacity .1s ease .1s}.cvco-app--deprecated .cvco-options__dialog.cvco-transition--in .cvco-options__body{opacity:1}.cvco-app--deprecated .cvco-options__title{align-items:center;color:#223182;display:flex;flex:0 0 auto;font-size:16px;font-weight:700;margin:0;padding:20px 20px 10px;width:calc(100% - 42px)}.cvco-app--deprecated .cvco-options__close{font-size:0;height:32px;position:absolute;right:10px;top:10px;width:32px}.cvco-app--deprecated .cvco-options__close .cvco-icon{align-items:center;display:flex;justify-content:center}.cvco-app--deprecated .cvco-options__body form{display:flex;flex:1 1 auto;flex-direction:column;width:100%}.cvco-app--deprecated .cvco-options__wrapper{align-items:flex-start;display:flex;flex:1 1 auto;flex-wrap:wrap;overflow:auto;padding:0 20px;width:100%}.cvco-app--deprecated .cvco-options__wrapper:last-child:after{content:"";display:block;flex:0 0 100%;height:20px;width:100%}.cvco-app--deprecated .cvco-options__wrapper h3{color:#223182;font-size:14px;font-weight:700;margin:0}.cvco-app--deprecated .cvco-options__description{display:block;font-size:14px;margin-bottom:10px;padding:0 20px;width:100%}.cvco-app--deprecated .cvco-transcript__input{border:1px solid #dee3e5;border-radius:5px;font-size:12px;padding:10px;transition:padding .3s ease-in-out;width:100%}.cvco-app--deprecated .cvco-transcript__input:focus{border:1px solid #dee3e5}@supports(-webkit-overflow-scrolling:touch){.cvco-app--deprecated .cvco-transcript__input{font-size:16px}}.cvco-app--deprecated .cvco-transcript__input::input-placeholder{color:#a3b4bf;line-height:20px;overflow:visible}.cvco-app--deprecated .cvco-transcript__input::-moz-placeholder{color:#a3b4bf;line-height:20px;overflow:visible}.cvco-app--deprecated .cvco-transcript__input::placeholder{color:#a3b4bf;line-height:20px;overflow:visible}.cvco-app--deprecated .cvco-transcript__input:input-placeholder{color:#a3b4bf;line-height:20px;overflow:visible}.cvco-app--deprecated .cvco-transcript__input:placeholder{color:#a3b4bf;line-height:20px;overflow:visible}.cvco-app--deprecated .cvco-options__active-language{color:#3d4166;font-size:14px}.cvco-app--deprecated .cvco-options__actions{display:flex;flex:0 0 auto;justify-content:flex-end;margin-top:10px;padding:0;width:100%}.cvco-app--deprecated .cvco-options__actions .cvco-button{margin-right:10px;width:100%}.cvco-app--deprecated .cvco-options__actions .cvco-button:last-child{margin-right:0}.cvco-app--deprecated .cvco-chat-status{align-items:center;background-color:#fff;border-bottom:1px solid #dee3e5;display:flex;justify-content:space-between;padding:10px;width:100%}.cvco-app--deprecated.cvco-app--collapsed .cvco-chat-status{display:none}.cvco-app--deprecated .cvco-chat-status__title{align-items:center;color:#3d4166;display:flex;font-size:12px;font-weight:700;line-height:1;margin:0 10px 0 0}.cvco-app--deprecated .cvco-chat-status__title+.cvco-chat-status__button{margin-top:10px}.cvco-app--deprecated .cvco-chat-status .cvco-button--tertiary{color:#4a48c1}.cvco-app--deprecated .cvco-upload-toggle-wrapper{height:100%;overflow:visible;transition:width .3s ease-in-out;width:0}.cvco-app--deprecated .cvco-upload-toggle-wrapper.cvco-transition--in{width:42px}.cvco-app--deprecated .cvco-upload-toggle{align-items:center;color:transparent;display:flex;flex:0 0 32px;flex-direction:column;font-size:0;height:32px;justify-content:center;line-height:1;opacity:0;padding:0;text-align:center;transform:translateX(-100%);transition:transform .3s ease-in-out,opacity .3s ease-in-out;width:32px}.cvco-app--deprecated .cvco-upload-toggle-wrapper.cvco-transition--in .cvco-upload-toggle{opacity:1;transform:translateX(0)}.cvco-app--deprecated .cvco-upload-toggle .cvco-icon{flex:0 0 100%;height:100%;width:100%}.cvco-app--deprecated .cvco-upload-toggle .cvco-icon svg{height:100%;width:100%}.cvco-app--deprecated .cvco-upload{padding:10px 10px 0;width:100%}.cvco-app--deprecated .cvco-input--file{display:block}.cvco-app--deprecated .cvco-upload__container{margin-bottom:10px;width:100%}.cvco-app--deprecated .cvco-upload__visible-label--text{display:block;font-size:16px;font-weight:700;width:100%}.cvco-app--deprecated .cvco-upload__content-hint{display:block;font-size:12px;margin-bottom:10px;padding-right:20px;width:100%}.cvco-app--deprecated .cvco-file-upload{border:1px solid #4a48c1;border-radius:5px;max-width:100%;width:100%}.cvco-app--deprecated .cvco-file-upload:hover{background-color:rgba(74,72,193,.1)}.cvco-app--deprecated .cvco-file-upload.cvco-focus-within{outline:1px dotted #212121;outline:5px auto -webkit-focus-ring-color}.cvco-app--deprecated .cvco-upload__input{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute;width:1px}.cvco-app--deprecated .cvco-upload__label{align-items:center;display:flex;justify-content:flex-start;padding:10px;text-align:left;width:100%}.cvco-app--deprecated .cvco-upload__label .cvco-icon{flex:0 0 32px;height:32px;margin-right:10px;width:32px}.cvco-app--deprecated .cvco-upload__label--text{color:#4a48c1;display:block;flex:1 1 100%;font-size:14px;font-weight:700;max-width:100%}.cvco-app--deprecated .cvco-upload__output{display:block;flex:1 1 100%;font-size:12px;max-width:100%;word-break:break-all}.cvco-app--deprecated .cvco-upload .cvco-button--primary{text-align:center}.cvco-app--deprecated .cvco-upload__button-container{display:flex;flex:0 0 100%;justify-content:flex-end}.cvco-app--deprecated .cvco-upload__cancel{margin-right:5px;padding:10px}.cvco-app--deprecated .cvco-upload__cancel:last-child{margin-right:0}.cvco-app--deprecated .cvco-progress__text{align-items:flex-end;display:flex;justify-content:space-between;margin-bottom:5px}.cvco-app--deprecated .cvco-progress__text--file-name{font-size:14px;font-weight:700;line-height:1.25;max-width:calc(100% - 40px);overflow:hidden;padding-right:20px;text-overflow:ellipsis;white-space:nowrap}.cvco-app--deprecated .cvco-progress__text--percentage{color:#6a7f8c;font-size:14px;line-height:1}.cvco-app--deprecated .cvco-progress .cvco-error{margin-top:10px}.cvco-app--deprecated .cvco-progress .cvco-error:empty{display:none}.cvco-app--deprecated .cvco-progress__bar{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fff;border:1px solid #003a5d;border-radius:5px;width:100%}.cvco-app--deprecated .cvco-progress__bar::-webkit-progress-bar{background:#fff;border-radius:5px;box-shadow:inset 0 2.5px 2.5px 0 rgba(0,0,0,.22)}.cvco-app--deprecated .cvco-progress__bar::-webkit-progress-value{background-color:#4a48c1}.cvco-app--deprecated .cvco-progress__bar::-moz-progress-bar{background-color:#4a48c1}.cvco-app--deprecated .cvco-error{display:block;margin:0 0 5px;width:100%}.cvco-app--deprecated .cvco-error:empty{display:none;margin:0}.cvco-app--deprecated .cvco-error .cvco-icon{flex:0 0 16px;height:16px;margin-right:5px;width:16px}.cvco-app--deprecated .cvco-error .cvco-error__message{align-items:flex-start;background-color:rgba(219,22,57,.1);border-radius:5px;color:#ad001f;display:flex;font-size:12px;font-weight:700;padding:5px 10px;width:100%}.cvco-app--deprecated .cvco-notification{background-color:rgba(74,72,193,.1);border-radius:5px;color:#223182;display:block;font-size:12px;font-weight:700;margin:0 0 10px;padding:5px 10px;width:100%}.cvco-app--deprecated .cvco-notification:last-child{margin:0}.cvco-app--deprecated .cvco-character-count{align-items:center;display:flex;font-size:12px;font-weight:700;height:100%;justify-content:right;line-height:1;opacity:0;padding:0 10px;pointer-events:none;position:absolute;right:0;text-align:right;top:0;transform:translateX(100%);transition:transform .3s ease-in-out,opacity .2s ease .2s}.cvco-app--deprecated .cvco-character-count span{color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;text-align:right}.cvco-app--deprecated .cvco-character-exceeded .cvco-character-count,.cvco-app--deprecated .cvco-character-warning .cvco-character-count{opacity:1;transform:translateX(0)}.cvco-app--deprecated .cvco-character-exceeded .cvco-character-count span{color:#db1639}.cvco-app--deprecated .cvco-card__wrapper{display:flex;flex-direction:column;height:100%}.cvco-app--deprecated .cvco-card__image{border-top-left-radius:10px;border-top-right-radius:10px;flex:0 0 auto;height:160px;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;overflow:hidden;width:100%}.cvco-app--deprecated .cvco-card__content{display:flex;flex:1 1 auto;flex-wrap:wrap;padding:10px 15px 15px}.cvco-app--deprecated .cvco-card__title{display:block;flex:0 0 100%;font-size:16px;font-weight:700;margin:0 0 5px;padding:0;width:100%}.cvco-app--deprecated .cvco-card__title:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-card__description{display:block;margin-bottom:20px;width:100%}.cvco-app--deprecated .cvco-card__description:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-card__content .cvco-button{align-self:flex-end;display:block;width:100%}.cvco-app--deprecated .cvco-carousel{position:relative}.cvco-app--deprecated .cvco-carousel__slides-wrapper{display:block;overflow:hidden;width:100%}.cvco-app--deprecated .cvco-carousel__slides{display:flex;flex-direction:row;list-style:none;padding:0;position:relative;transition:left .3s ease-in-out}.cvco-app--deprecated .cvco-carousel__slide{display:block;list-style:none;padding:0;width:100%}.cvco-app--deprecated .cvco-carousel-item{display:flex;flex-direction:column;height:100%;width:100%}.cvco-app--deprecated .cvco-carousel-item .cvco-button{display:block;width:100%}.cvco-app--deprecated .cvco-carousel-controls{border-top:1px solid #dee3e5;display:flex;height:-moz-fit-content;height:fit-content;justify-content:space-between;padding:0;position:relative;width:100%}.cvco-app--deprecated .cvco-carousel-controls .cvco-button{align-items:center;background-color:transparent;background-color:initial;color:transparent;display:flex;font-size:0;height:40px;justify-content:center;width:40px}.cvco-app--deprecated .cvco-carousel-controls .cvco-button--previous{left:0}.cvco-app--deprecated .cvco-carousel-controls .cvco-button--next{right:0}.cvco-app--deprecated .cvco-carousel__controls .cvco-button .cvco-icon{border:0;display:block;height:16px;padding:0;width:16px}.cvco-app--deprecated .cvco-carousel__controls .cvco-button .cvco-icon svg{fill:#003a5d}.cvco-app--deprecated .cvco-carousel__pagination{align-items:center;display:flex;justify-content:center;padding:0 10px;position:relative}.cvco-app--deprecated .cvco-carousel-pagination{margin:0 auto;padding:0;width:100%}.cvco-app--deprecated .cvco-carousel-pagination,.cvco-app--deprecated .cvco-carousel-pagination__wrapper{display:flex;flex-direction:row;justify-content:center;position:relative}.cvco-app--deprecated .cvco-carousel-pagination__item{display:block;height:10px;list-style:none;margin-right:10px;width:10px}.cvco-app--deprecated .cvco-carousel-pagination__item:last-child{margin-right:0}.cvco-app--deprecated .cvco-carousel-pagination__button{background:#a3b4bf;border:0;border-radius:10px;display:block;height:100%;padding:0;width:100%}.cvco-app--deprecated .cvco-is-active .cvco-carousel-pagination__button{background-color:#003a5d}.cvco-app--deprecated .cvco-collapse-button{background-color:#fff;border:0;border-radius:50%;box-shadow:0 5px 30px rgba(53,75,90,.15),0 3px 10px rgba(53,75,90,.2);display:block;height:32px;padding:0;position:absolute;right:20px;top:20px;width:32px;z-index:1}.cvco-app--deprecated .cvco-suggestions{display:none}.cvco-app--deprecated .cvco-visually-hidden,.cvco-app__live-container .cvco-visually-hidden{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px}.cvco-modal{align-items:center;background-color:hsla(0,0%,100%,.8);display:block;display:flex;height:100%;justify-content:center;left:0;max-height:100%;padding:20px;position:fixed;top:0;width:100%;z-index:99}.cvco-modal,.cvco-modal *,.cvco-modal :after,.cvco-modal :before{box-sizing:border-box}.cvco-modal__float{background-color:#fff;border:1px solid #dee3e5;border-radius:10px;box-shadow:0 0 20px 0 rgba(0,0,0,.1);max-width:80rem;outline:0;padding:5px}.cvco-modal__float,.cvco-modal__inner{height:100%;position:relative;width:100%}.cvco-modal__inner{align-items:center;background-color:#eff3f6;border-radius:5px;display:flex;justify-content:center;padding:10px}.cvco-modal__image{border:1px solid #dee3e5;display:block;flex:0 0 auto;max-height:calc(95vh - 40px);max-width:calc(95vw - 40px);width:auto}.cvco-modal__close{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:1px solid #dee3e5;border-radius:20px;box-shadow:0 4px 6.666px 0 rgba(0,0,0,.1);color:#4a48c1;display:flex;font-size:14px;font-weight:700;padding:10px 20px;position:absolute;right:-10px;top:20px;transition:background-color .3s ease-in-out}.cvco-modal__close .cvco-icon{height:16px;margin-right:5px;width:16px}.cvco-modal__close .cvco-icon svg{height:inherit;width:inherit}.cvco-modal__close .cvco-icon svg path{fill:#4a48c1;transition:fill .3s ease-in-out}.cvco-modal__close:hover{background-color:#4a48c1;color:#fff;transition:color .3s ease-in-out}.cvco-modal__close:hover svg path{fill:#fff}.cvco-modal__enlarge{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:hsla(0,0%,100%,.4);border:0;border-radius:20px;bottom:20px;color:transparent;display:flex;font-size:0;height:32px;justify-content:center;padding:0;position:absolute;right:20px;width:32px}.cvco-modal__enlarge svg path{fill:#4a48c1}.cvco-modal__enlarge:hover{background-color:#4a48c1}.cvco-modal__enlarge:hover .cvco-icon svg path{fill:#fff}
1
+ @keyframes cvco-loader{0%,75%,to{border-radius:50%;transform:scaleY(.45)}37.5%{border-radius:2.5px;transform:scaleY(1)}}@keyframes cvco-fadeIn{0%{opacity:0}to{opacity:1}}@keyframes cvco-blink{0%,to{opacity:0}50%{opacity:1}}.cvco-app--deprecated{background-color:#fff;border:1px solid #a3b4bf;border-radius:10px;bottom:2vw;box-shadow:0 0 20px 0 rgba(0,0,0,.1);box-sizing:border-box;color:#3d4166;display:flex;flex-direction:column;font-family:arial,helvetica,sans-serif;font-size:16px;height:720px;max-height:calc(85vh - 4vw);max-width:96vw;max-width:calc(100% - 4vw);outline:0;overflow:hidden;position:fixed;right:2vw;transition:height .75s ease-in-out,width .75s ease-in-out;width:375px;z-index:1}@media(min-width:641px){.cvco-app--deprecated{max-height:calc(100vh - 4vw)}@supports(-webkit-overflow-scrolling:touch){.cvco-app--deprecated{max-height:calc(90vh - 4vw)}}}@media(min-width:1025px){.cvco-app--deprecated{bottom:20px;max-height:calc(100vh - 40px);right:20px}@supports(-webkit-overflow-scrolling:touch){.cvco-app--deprecated{max-height:calc(90vh - 40px)}}}.cvco-app--deprecated *,.cvco-app--deprecated :after,.cvco-app--deprecated :before{box-sizing:border-box}.cvco-app--layout-inline.cvco-app--deprecated{background-color:transparent;background-color:initial;bottom:auto;box-shadow:none;height:100vh;max-height:640px;min-height:480px;position:relative;right:auto;transition:height .3s ease-in-out,width .3s ease-in-out;width:auto}@media(min-width:641px){.cvco-app--layout-inline.cvco-app--deprecated{border:0;display:block}}.cvco-app--collapsed.cvco-app--deprecated{background:none;border:0;box-shadow:none;height:54px;width:195px}.cvco-app--collapsed.cvco-app--started.cvco-app--deprecated{width:375px}.cvco-app-wrapper{background-color:#fff;display:flex;flex:1 1 100%;flex-direction:column;position:relative;transition:width .3s ease-in-out,margin-right .3s ease-in-out,border-radius .3s ease-in-out;width:100%;z-index:1}@media(min-width:641px){.cvco-app--layout-inline.cvco-app--deprecated .cvco-app-wrapper{border:1px solid #a3b4bf;border-bottom-left-radius:10px;border-top-left-radius:10px;height:100%;margin-right:50%;width:50%}.cvco-app--layout-inline.cvco-app--deprecated .cvco-app-wrapper:last-child{border-radius:10px;margin-right:0;width:100%}}@media(min-width:1025px){.cvco-app--layout-inline.cvco-app--deprecated .cvco-app-wrapper,.cvco-app--layout-inline.cvco-app--deprecated .cvco-app-wrapper:last-child{margin-right:33%;width:67%}}.cvco-chat__header{border-bottom:1px solid #dee3e5;border-top-left-radius:10px;border-top-right-radius:10px;display:flex;flex:0 0 auto;flex-direction:row;height:54px;justify-content:flex-end;padding:10px;position:relative}.cvco-app--collapsed.cvco-app--deprecated .cvco-chat__header{background-color:#4a48c1;border-bottom:0;border-bottom-left-radius:10px;border-bottom-right-radius:10px;color:#fff}.cvco-toggle-button{background:none;background-color:transparent;border:0;color:#fff;display:none;flex-direction:column;font-size:12px;height:54px;justify-content:center;margin:0;padding:10px 10px 10px 52px;position:absolute;width:100%;z-index:1}.cvco-app--collapsed.cvco-app--deprecated .cvco-toggle-button{display:flex}.cvco-toggle-button__title{font-size:12px;margin:0}.cvco-toggle-button__subtitle{font-size:12px;font-weight:700;margin:0}.cvco-toggle-button__button{background:none;border:0;height:100%;left:0;margin:0;padding:0;position:absolute;top:0;width:100%;z-index:1}.cvco-toggle-button__button:focus{outline:1px solid #fff;outline-offset:-5px}.cvco-chat__container{border-bottom:1px solid #dee3e5;display:flex;flex-grow:1;justify-content:center;position:relative}.cvco-chat__container__scroll-area{display:flex;flex-direction:column;height:100%;justify-content:space-between;overflow-y:auto;position:relative;width:100%}.cvco-chat__container__header{display:flex;position:sticky;top:0;z-index:1}.cvco-chat__body{display:flex;flex-grow:4;padding:0;position:relative}.cvco-app--collapsed.cvco-app--deprecated .cvco-chat__body{display:none}.cvco-app--layout-window.cvco-app--deprecated .cvco-chat__body{-ms-scroll-chaining:none;overscroll-behavior:contain}.cvco-chat__entry{flex:0 0 auto;padding:10px;position:relative}.cvco-app--collapsed.cvco-app--deprecated .cvco-chat__entry,.cvco-chat__entry .cvco-entry__body--hidden{display:none}.cvco-entry__body{align-items:center;display:flex}.cvco-app--deprecated p{margin:0}.cvco-app--deprecated img{max-width:100%}.cvco-app--deprecated h1,.cvco-app--deprecated h2,.cvco-app--deprecated h3,.cvco-app--deprecated h4,.cvco-app--deprecated h5,.cvco-app--deprecated h6{font-size:1rem;font-weight:400}.cvco-app--deprecated .cvco-input__checkbox{margin-right:10px}.cvco-app--deprecated .cvco-input__checkbox[aria-disabled=true]{opacity:.5}.cvco-app--deprecated .cvco-label{color:#4a48c1;display:block;font-size:14px;font-weight:700;margin-bottom:5px}.cvco-app--deprecated .cvco-input__checkbox[aria-disabled=true]+.cvco-label{opacity:.5}.cvco-app--deprecated .cvco-input__select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iIzRBNDhDMSIgZD0iTTIuOTk4IDYuNTAzYS45OTkuOTk5IDAgMCAxIDEuNjg3LS43MjdMNy4yNyA4LjIyMmMuMzk0LjM3MyAxLjA2LjM3MyAxLjQ1NCAwbDIuNTg2LTIuNDQ2YS45OTkuOTk5IDAgMSAxIDEuMzc0IDEuNDU0bC0yLjU4NiAyLjQ0NmMtMS4xNTkgMS4wOTYtMy4wNDMgMS4wOTYtNC4yMDMgMEwzLjMxIDcuMjI5YS45OTQuOTk0IDAgMCAxLS4zMTItLjcyNnoiLz48L3N2Zz4=);background-position:right 10px top 50%;background-repeat:no-repeat;background-size:15px auto;border:1px solid #dee3e5;border-radius:5px;color:#3d4166;font-size:12px;height:100%;padding:10px;resize:none;transition:padding .3s ease-in-out;width:100%}@supports(-webkit-overflow-scrolling:touch){.cvco-app--deprecated .cvco-input__select{font-size:16px}}.cvco-app--deprecated .cvco-input__select:hover{border:1px solid #4a48c1}.cvco-app--deprecated .cvco-input__select[aria-disabled=true],.cvco-app--deprecated .cvco-input__select[aria-disabled=true]:hover{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiI+PHBhdGggZmlsbD0iI2EzYjRiZiIgZD0iTTIuOTk4IDYuNTAzYS45OTkuOTk5IDAgMCAxIDEuNjg3LS43MjdMNy4yNyA4LjIyMmMuMzk0LjM3MyAxLjA2LjM3MyAxLjQ1NCAwbDIuNTg2LTIuNDQ2YS45OTkuOTk5IDAgMSAxIDEuMzc0IDEuNDU0bC0yLjU4NiAyLjQ0NmMtMS4xNTkgMS4wOTYtMy4wNDMgMS4wOTYtNC4yMDMgMEwzLjMxIDcuMjI5YS45OTQuOTk0IDAgMCAxLS4zMTItLjcyNnoiLz48L3N2Zz4=);border:1px solid #a3b4bf;color:#a3b4bf}.cvco-app--deprecated .cvco-header-controls{flex-direction:row;justify-content:space-around}.cvco-app--deprecated .cvco-header-controls>button{display:inline-block;height:32px;overflow:hidden;padding:0;vertical-align:top;width:32px}.cvco-app--deprecated .cvco-header-controls .cvco-icon{height:32px;width:32px}.cvco-app--deprecated.cvco-app--collapsed .cvco-header-controls{display:none}.cvco-app--deprecated .cvco-agent-info{align-items:center;display:flex;flex-direction:row;flex-grow:4;padding:2px 0}.cvco-app--deprecated .cvco-agent-info__graphic{flex:0 0 auto;height:32px;margin-right:10px;position:relative;width:32px}.cvco-app--deprecated .cvco-agent-info__graphic .cvco-avatar,.cvco-app--deprecated .cvco-agent-info__graphic .cvco-icon{border-radius:5px;display:block;height:100%;overflow:hidden;width:100%}.cvco-app--deprecated.cvco-app--collapsed .cvco-agent-info__graphic .topbubble{fill:#fff}.cvco-app--deprecated .cvco-agent-info__body{flex:1 1 auto}.cvco-app--deprecated.cvco-app--collapsed .cvco-agent-info__body{display:none}.cvco-app--deprecated .cvco-agent-info__heading{font-size:12px;margin:0}.cvco-app--deprecated .cvco-agent-info__text{font-size:12px;font-weight:700;margin:0}.cvco-app--deprecated .cvco-avatar{border-radius:5px;display:block;flex-shrink:0;height:32px;overflow:hidden;position:relative;width:32px}.cvco-app--deprecated .cvco-avatar>.cvco-icon,.cvco-app--deprecated .cvco-avatar__graphic{display:block}.cvco-app--deprecated .cvco-conversation__message+.cvco-avatar{align-self:flex-end;margin-left:10px}.cvco-app--deprecated .cvco-avatar--bg-white{background-color:#fff}.cvco-app--deprecated .cvco-avatar--arrow-right{margin-right:5px;overflow:visible}.cvco-app--deprecated .cvco-avatar--arrow-right:after{border-bottom:5px solid transparent;border-left:8px solid #003a5d;border-top:5px solid transparent;content:"";display:inline-block;height:0;position:absolute;right:-6.666px;top:50%;transform:translateY(-50%);width:0}.cvco-app--deprecated .cvco-button{background:none;border:0;cursor:pointer;display:inline-block;margin:0;padding:0;text-align:left}.cvco-app--deprecated .cvco-button span{color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit}.cvco-app--deprecated .cvco-button--primary{background-color:#4a48c1;border-color:#fff;border-radius:15px;color:#fff;font-weight:700;min-height:30px;padding:5px 15px}.cvco-app--deprecated .cvco-button--secondary{color:#4a48c1;font-weight:700;padding:10px}.cvco-app--deprecated .cvco-button--tertiary{background-color:transparent;background-color:initial;border-radius:10px;color:#fff;font-size:12px;font-weight:700;padding:2px 5px}.cvco-app--deprecated .cvco-button[aria-disabled=true]{color:#5e727b;cursor:auto}.cvco-app--deprecated .cvco-button--choose-again{align-items:center;display:flex;margin:5px 0 10px;padding:0}.cvco-app--deprecated .cvco-button--choose-again:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-button--choose-again .cvco-icon{align-items:center;display:flex;flex:0 0 8px;height:8px;justify-content:center;margin:3px 5px;transform-origin:50% 50%;transition:transform .3s ease-in-out;width:8px}.cvco-app--deprecated .cvco-button--choose-again[aria-expanded=true] .cvco-icon{transform:rotate(180deg)}.cvco-app--deprecated .cvco-button--choose-again .cvco-icon svg{display:block;width:100%}.cvco-app--deprecated .cvco-button__state{background-color:#eff3f6;border-radius:5px;color:inherit;display:inline-block;margin:-3px -3px -3px 3px;padding:3px 5px}.cvco-app--deprecated .cvco-choice-prompt{display:flex;flex-direction:column;padding:0}.cvco-app--deprecated .cvco-choice-prompt__item{display:block;margin-left:0;margin-top:5px;width:100%}.cvco-app--deprecated .cvco-choice-prompt__item:first-child{margin-top:0}.cvco-app--deprecated .cvco-choice-prompt__item .cvco-button{display:block;white-space:normal;width:100%}.cvco-app--deprecated .cvco-choice-prompt__item--secondary .cvco-button{background-color:transparent;background-color:initial;color:#4a48c1}.cvco-app--deprecated .cvco-conversation__container{bottom:0;display:flex;flex:1 1 100%;flex-direction:column;height:100%;justify-content:space-between;left:0;max-height:100%;position:absolute;right:0;top:0}.cvco-app--deprecated .cvco-conversation{list-style:none;margin:auto 0 0;padding:20px 20px 0;width:100%}.cvco-app--deprecated .cvco-conversation:after{content:"";display:block;flex:0 0 100%;height:20px;width:100%}.cvco-app--deprecated .cvco-app--layout-inline .cvco-conversation{position:relative}.cvco-app--deprecated .cvco-conversation__item{margin-top:10px;min-height:0;width:100%}.cvco-app--deprecated .cvco-conversation__item--new-participant{margin-top:20px}.cvco-app--deprecated .cvco-divider{background:linear-gradient(180deg,#fff,#eff3f6);background-repeat:no-repeat;background-size:100% 40px;display:flex;font-family:arial,helvetica,sans-serif;font-size:12px;justify-content:center;line-height:1.5;margin:20px -20px 0;overflow:hidden;padding:65px 30px 0;position:relative}.cvco-app--deprecated .cvco-divider:before{background:radial-gradient(110px at 50% 300%,rgba(74,72,193,.5) 0,hsla(0,0%,100%,0) 99.99%,rgba(74,72,193,0) 100%);background-repeat:no-repeat;content:"";height:40px;left:50%;position:absolute;top:0;transform:translateX(-50%);width:100%}.cvco-app--deprecated .cvco-divider--type-time-indicator{padding-bottom:20px;padding-top:60px}.cvco-app--deprecated .cvco-divider--type-time-indicator:before{display:none}.cvco-app--deprecated .cvco-conversation__item:first-child .cvco-divider{margin-top:0;padding-bottom:10px}.cvco-app--deprecated .cvco-divider__graphic{background:#fff;border-radius:5px;height:32px;left:50%;position:absolute;top:40px;transform:translate(-50%,-60%);width:32px}.cvco-app--deprecated .cvco-divider__graphic .cvco-avatar,.cvco-app--deprecated .cvco-divider__graphic .cvco-icon,.cvco-app--deprecated .cvco-divider__graphic .cvco-icon svg{height:100%;width:100%}.cvco-app--deprecated .cvco-divider__time{text-align:center}.cvco-app--deprecated .cvco-divider__time span{display:block}.cvco-app--deprecated .cvco-divider__time span:first-of-type{font-weight:700}.cvco-app--deprecated .cvco-divider--type-newtranslation{text-align:center}.cvco-app--deprecated .cvco-divider--type-newtranslation .cvco-divider__body{max-width:80%}.cvco-app--deprecated .cvco-divider--type-newtranslation .cvco-divider__title{font-weight:700}.cvco-app--deprecated .cvco-divider .cvco-button{font-size:inherit;padding:0}.cvco-app--deprecated .cvco-loader{align-items:center;animation:cvco-fadeIn .3s linear;display:flex;flex-direction:row;height:20px;justify-content:flex-start;padding:2.5px 5px}.cvco-app--deprecated .cvco-loader__part{animation-delay:.12s;animation-direction:normal;animation-duration:.6s;animation-fill-mode:forwards;animation-iteration-count:infinite;animation-name:cvco-loader;animation-timing-function:ease;background-color:currentcolor;border-radius:50%;display:inline-block;height:100%;margin-right:5px;transform:scaleY(.45);width:6.666px}.cvco-app--deprecated .cvco-loader__part.cvco-one{animation-delay:.12s}.cvco-app--deprecated .cvco-loader__part.cvco-two{animation-delay:.24s}.cvco-app--deprecated .cvco-loader__part.cvco-three{animation-delay:.36s}.cvco-app--deprecated .cvco-loader__part.cvco-four{animation-delay:.48s;margin-right:0}.cvco-app--deprecated .cvco-loader--white .cvco-loader__part{background-color:#fff}.cvco-app--deprecated .cvco-loader--grey .cvco-loader__part{background-color:#dee3e5}.cvco-app--deprecated .cvco-message{display:flex;flex-flow:row wrap;font-family:arial,helvetica,sans-serif;font-size:12px;line-height:1.5;width:80%}.cvco-app--deprecated .cvco-message+.cvco-message,.cvco-app--deprecated .cvco-message+div>.cvco-message{margin-top:10px}.cvco-app--deprecated .cvco-message__author{align-items:center;display:none;flex-direction:row;font-weight:700;justify-content:flex-start;margin-bottom:.3rem;padding:0 10px;width:100%}.cvco-app--deprecated .cvco-message__avatar{height:16px;margin:0 .5em 0 0;width:16px}.cvco-app--deprecated .cvco-message__avatar .cvco-avatar{display:block;height:100%;-o-object-fit:contain;object-fit:contain;width:100%}.cvco-app--deprecated .cvco-conversation__item--new-participant .cvco-message__author,.cvco-app--deprecated .cvco-divider--type-time-indicator+.cvco-message--source-agent .cvco-message__author,.cvco-app--deprecated .cvco-divider--type-time-indicator+.cvco-message--source-user .cvco-message__author{display:flex}.cvco-app--deprecated .cvco-message__body{background-color:#eff3f6;border-radius:10px;color:#3d4166;display:block;margin-bottom:5px;max-width:100%;padding:10px 15px;position:relative}.cvco-app--deprecated .cvco-message__body .cvco-icon svg path{fill:#3d4166}.cvco-app--deprecated .cvco-message__body:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-message__info,.cvco-app--deprecated .cvco-message__translation-info{width:100%}.cvco-app--deprecated.cvco-app--collapsed .cvco-message__translation-info{display:none}.cvco-app--deprecated .cvco-message__translation-label{font-size:12px;margin-right:5px}.cvco-app--deprecated .cvco-button.cvco-message__translation-toggle{font-size:inherit;padding:0}.cvco-app--deprecated .cvco-conversation__item--source-info{margin-bottom:20px;margin-top:20px}.cvco-app--deprecated .cvco-conversation__item--source-info:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-conversation__item--source-info .cvco-message{margin:0 auto;max-width:90%;width:90%}.cvco-app--deprecated .cvco-conversation__item--source-info .cvco-message:after{border-top:2px solid #4a48c1;content:"";display:block;height:0;margin:0 auto;width:20px}.cvco-app--deprecated .cvco-conversation__item--source-info .cvco-message__body{background-color:transparent;background-color:initial;border-radius:0;flex:0 0 100%;padding:0 15px 10px;text-align:center;width:100%}.cvco-app--deprecated .cvco-message--source-user{justify-content:flex-end;margin-left:auto}.cvco-app--deprecated .cvco-message--source-user .cvco-message__author{justify-content:flex-end}.cvco-app--deprecated .cvco-message--source-user .cvco-message__body{background-color:#223182;color:#fff}.cvco-app--deprecated .cvco-message--source-user .cvco-message__body .cvco-icon svg path{fill:#fff}.cvco-app--deprecated .cvco-message--source-user .cvco-message__avatar{margin:0 0 0 .5em;order:2}.cvco-app--deprecated .cvco-message--source-user .cvco-message__author-name{order:1}.cvco-app--deprecated .cvco-message--source-user .cvco-message__info,.cvco-app--deprecated .cvco-message--source-user .cvco-message__translation-info{text-align:right}.cvco-app--deprecated .cvco-message--type-text .cvco-message__body ol:only-child,.cvco-app--deprecated .cvco-message--type-text .cvco-message__body p:only-child,.cvco-app--deprecated .cvco-message--type-text .cvco-message__body ul:only-child{margin:0}.cvco-app--deprecated .cvco-message--type-text .cvco-message__body ol:last-child,.cvco-app--deprecated .cvco-message--type-text .cvco-message__body p:last-child,.cvco-app--deprecated .cvco-message--type-text .cvco-message__body ul:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-message--type-text .cvco-message__body ol,.cvco-app--deprecated .cvco-message--type-text .cvco-message__body p,.cvco-app--deprecated .cvco-message--type-text .cvco-message__body ul{margin:0 0 1em}.cvco-app--deprecated .cvco-message--type-text .cvco-message__body ol,.cvco-app--deprecated .cvco-message--type-text .cvco-message__body ul{padding-left:1.5em}.cvco-app--deprecated .cvco-message--type-text .cvco-message__body a{word-wrap:break-word;color:#4a48c1;-webkit-hyphens:auto;hyphens:auto;word-break:break-word}.cvco-app--deprecated .cvco-message--type-text .cvco-message__body a:hover{text-decoration:none}.cvco-app--deprecated .cvco-message--type-text.cvco-message--source-user .cvco-message__body a{color:#fff}.cvco-app--deprecated .cvco-message--type-loading .cvco-message__body{align-self:flex-start}.cvco-app--deprecated .cvco-message--type-loading.cvco-message--source-user .cvco-message__body{align-self:flex-end}.cvco-app--deprecated .cvco-message--type-choice-prompt .cvco-message__body{width:100%}.cvco-app--deprecated .cvco-message--type-choice-prompt:not(.cvco-message--type-choice-prompt-selected) .cvco-message__body{background:none;padding:0}.cvco-app--deprecated .cvco-message--type-choice-prompt-selected .cvco-message__choice-indicator{background:#fff;border-radius:50%;box-shadow:0 4px 4px rgba(0,0,0,.25);content:"";height:1.5em;padding:4px;position:absolute;right:0;top:10px;transform:translate(48%,-4px);width:1.5em}.cvco-app--deprecated .cvco-message--type-choice-prompt-selected .cvco-message__choice-indicator>svg{left:50%;position:absolute;top:50%;transform:translate(-50%,-50%)}.cvco-app--deprecated .cvco-message--type-image .cvco-message__body{padding:0}.cvco-app--deprecated .cvco-message--type-image .cvco-message__body img{border-radius:10px;display:block;height:auto;overflow:hidden;width:100%}.cvco-app--deprecated .cvco-message--type-video .cvco-message__body{background-color:#000;padding:0 0 66%;width:100%}.cvco-app--deprecated .cvco-message--type-video .cvco-message__body iframe{border:0;border-radius:10px;height:100%;left:0;overflow:hidden;position:absolute;top:0;width:100%}.cvco-app--deprecated .cvco-message--type-upload .cvco-message__body{padding:0}.cvco-app--deprecated .cvco-message--type-upload .cvco-download{align-items:center;border-radius:10px;color:inherit;display:flex;gap:10px;padding:10px 15px;text-align:left;word-break:break-all}.cvco-app--deprecated .cvco-message--type-upload .cvco-download-link{cursor:pointer;text-decoration:underline}.cvco-app--deprecated .cvco-message--type-upload .cvco-download-link:hover{text-decoration:none;text-decoration:initial}.cvco-app--deprecated .cvco-message--type-upload .cvco-download--preview{align-items:flex-end;flex-flow:column wrap;gap:0;padding:0}.cvco-app--deprecated .cvco-message--type-upload .cvco-download--preview>img{border-top-left-radius:10px;border-top-right-radius:10px;height:auto;-o-object-fit:cover;object-fit:cover;width:100%}.cvco-app--deprecated .cvco-message--type-upload .cvco-download--preview .cvco-file-download{display:flex;flex:0 0 auto;justify-content:flex-end;padding:10px 15px;width:100%}.cvco-app--deprecated .cvco-message--type-upload .cvco-icon{flex:0 0 16px;height:16px;width:16px}.cvco-app--deprecated .cvco-message--type-upload .cvco-icon svg{height:100%;width:100%}.cvco-app--deprecated .cvco-conversation__item--source-agent .cvco-message--type-upload .cvco-download--preview .cvco-file-download{justify-content:flex-start}.cvco-app--deprecated .cvco-conversation__item--source-agent .cvco-message--type-upload .cvco-icon path{fill:#4a48c1}.cvco-app--deprecated .cvco-message--deleted .cvco-file-download{text-decoration:line-through}.cvco-app--deprecated .cvco-message .cvco-message__info{color:#6a7f8c;font-size:12px;line-height:1.35;margin-top:4px}.cvco-app--deprecated .cvco-message--type-cta .cvco-message__body{background-color:#223182;display:flex;flex-direction:column;padding:10px 15px 15px;width:100%}.cvco-app--deprecated .cvco-message--type-cta .cvco-cta__content{color:#fff;font-size:14px;line-height:1.5;margin-bottom:10px}.cvco-app--deprecated .cvco-message--type-cta .cvco-cta__content p{color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit}.cvco-app--deprecated .cvco-message--type-cta .cvco-button{line-height:2;margin-bottom:10px;text-decoration:none}.cvco-app--deprecated .cvco-message--type-cta .cvco-button:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-message--type-card .cvco-message__body{display:flex;flex-direction:column;padding:0;width:100%}.cvco-app--deprecated .cvco-message--type-carousel .cvco-message__body{display:block;padding:0}.cvco-app--deprecated .cvco-message-count{align-items:center;background-color:#db1639;border-radius:50%;color:#fff;display:flex;font-size:12px;font-weight:700;height:20px;justify-content:center;line-height:1;position:absolute;right:-8px;top:-8px;transform:scale(1);transition:transform .3s cubic-bezier(.175,.885,.32,1.275) .5s;width:20px}.cvco-app--deprecated .cvco-message-count.cvco-message-count__empty,.cvco-app--deprecated .cvco-message-count__hide{transform:scale(0);transition:transform .3s linear 0s}.cvco-app--deprecated .cvco-icon{display:inline-block;line-height:1}.cvco-app--deprecated .cvco-entry-form{display:flex;flex:1 1 100%;height:100%;width:100%}.cvco-app--deprecated .cvco-input--text__container{display:flex;flex:1 1 100%;height:100%;margin-right:5px;position:relative}.cvco-app--deprecated .cvco-input__text{-webkit-appearance:none;-moz-appearance:none;appearance:none;border:1px solid transparent;border-radius:5px;color:#3d4166;flex-grow:4;font-size:12px;height:100%;margin-right:5px;overflow:hidden;padding:10px;resize:none;text-overflow:ellipsis;transition:padding .3s ease-in-out;white-space:nowrap}@supports(-webkit-overflow-scrolling:touch){.cvco-app--deprecated .cvco-input__text{font-size:16px}}.cvco-app--deprecated .cvco-input__text::input-placeholder{color:#a3b4bf;line-height:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.cvco-app--deprecated .cvco-input__text::-moz-placeholder{color:#a3b4bf;line-height:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.cvco-app--deprecated .cvco-input__text::placeholder{color:#a3b4bf;line-height:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.cvco-app--deprecated .cvco-input__text:input-placeholder{color:#a3b4bf;line-height:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.cvco-app--deprecated .cvco-input__text:placeholder{color:#a3b4bf;line-height:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.cvco-app--deprecated .cvco-input--text__container .cvco-input__text{margin-right:0;width:100%}.cvco-app--deprecated .cvco-character-exceeded .cvco-input__text,.cvco-app--deprecated .cvco-character-warning .cvco-input__text{padding-right:40px}.cvco-app--deprecated .cvco-character-exceeded .cvco-input__text{border:1px solid #db1639}.cvco-app--deprecated .cvco-input__submit{align-items:center;display:flex;justify-content:center;padding:0}.cvco-app--deprecated .cvco-input__submit[aria-disabled=true]{cursor:auto;opacity:.5}.cvco-app--deprecated .cvco-input__submit .cvco-icon{height:32px;width:32px}.cvco-app--deprecated .cvco-faqs{background-color:#eff3f6;display:none;height:0;min-height:0;transition:height .3s ease-in-out,min-height .3s ease-in-out,transform .3s ease-in-out;width:100%}.cvco-app--deprecated.cvco-app--layout-window .cvco-faqs{-ms-scroll-chaining:none;overscroll-behavior:contain}@media(min-width:641px){.cvco-app--deprecated.cvco-app--layout-inline .cvco-faqs{border:1px solid #a3b4bf;border-bottom-right-radius:10px;border-left:0;border-top-right-radius:10px;flex-direction:column;height:480px;left:50%;max-height:100%;min-height:480px;position:absolute;top:0;transform:translateX(-100%);width:50%}}@media(min-width:1025px){.cvco-app--deprecated.cvco-app--layout-inline .cvco-faqs{left:67%;width:33%}}.cvco-app--deprecated .cvco-faqs.cvco-transition--visible{display:block}@media(min-width:641px){.cvco-app--deprecated.cvco-app--layout-inline .cvco-faqs.cvco-transition--visible{display:flex}}.cvco-app--deprecated.cvco-app--collapsed .cvco-faqs,.cvco-app--deprecated.cvco-app--collapsed .cvco-faqs.cvco-transition--visible{display:none}.cvco-app--deprecated .cvco-faqs.cvco-transition--in{height:30%;max-height:240px;overflow-y:auto}@media(min-width:641px){.cvco-app--deprecated.cvco-app--layout-inline .cvco-faqs.cvco-transition--in{height:480px;max-height:100%;min-height:480px;overflow-y:visible;overflow-y:initial;transform:translateX(0)}}.cvco-app--deprecated .cvco-faqs__heading{color:#003a5d;flex:0 0 auto;font-size:14px;font-weight:700;margin:0;opacity:0;padding:20px 20px 10px;transition:opacity .3s ease-in-out}.cvco-app--deprecated .cvco-faqs__heading:last-child{padding-bottom:20px}.cvco-app--deprecated .cvco-faqs.cvco-transition--in .cvco-faqs__heading{opacity:1;transition:opacity .3s ease-in-out .2s}.cvco-app--deprecated .cvco-faqs__list{display:block;height:auto;list-style:none;margin:0;opacity:0;padding:0 20px;transition:opacity .3s ease-in-out;width:100%}.cvco-app--deprecated .cvco-faqs__list:after{content:"";display:block;flex:0 0 20px;height:20px;width:100%}.cvco-app--deprecated .cvco-faqs.cvco-transition--in .cvco-faqs__list{opacity:1;transition:opacity .3s ease-in-out .2s}@media(min-width:641px){.cvco-app--deprecated.cvco-app--layout-inline .cvco-faqs__list{flex:1 1 100%;height:100%;max-height:100%;overflow-y:auto}}.cvco-app--deprecated .cvco-faqs__item{display:block;margin-bottom:5px;width:100%}.cvco-app--deprecated .cvco-faqs__item:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-faqs__item .cvco-button.cvco-button--secondary{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent none repeat 0 0/auto auto padding-box border-box scroll;background:initial;border:0;border-radius:5px;font-size:12px;padding:0 0 0 15px;position:relative;text-align:left;text-decoration:none;text-decoration:initial;white-space:normal;width:100%}.cvco-app--deprecated .cvco-faqs__item .cvco-button.cvco-button--secondary:hover{color:#223182;text-decoration:underline}.cvco-app--deprecated .cvco-faqs__item .cvco-button.cvco-button--secondary .cvco-icon{height:8px;left:0;position:absolute;transition:transform .3s ease-in-out;width:8px}.cvco-app--deprecated .cvco-faqs__item .cvco-button.cvco-button--secondary:hover .cvco-icon{transform:translateX(5px)}.cvco-app--deprecated .cvco-faqs__item .cvco-button.cvco-button--secondary:hover .cvco-icon svg path{fill:#223182}.cvco-app--deprecated.cvco-app--layout-window .cvco-faqs__list{-ms-scroll-chaining:none;overscroll-behavior:contain}.cvco-app--deprecated .cvco-interrupt{background:#fff;bottom:0;display:flex;left:0;position:absolute;right:0;top:0}.cvco-app--deprecated .cvco-interrupt__body{align-items:center;border:1px solid #dee3e5;border-radius:10px;display:flex;flex:1 1 auto;flex-direction:column;justify-content:center;margin:10px;padding:40px}.cvco-app--deprecated .cvco-interrupt__title{font-size:16px;font-weight:700}.cvco-app--deprecated .cvco-interrupt__message{font-size:16px;margin-bottom:40px}.cvco-app--deprecated .cvco-interrupt__actions{margin-top:auto}.cvco-app--deprecated .cvco-skip-link{background:#4a48c1;border:1px solid #fff;border-radius:20px;color:#fff;font-size:12px;left:50%;opacity:0;padding:10px 20px;position:absolute;top:10px;transform:translate(-50%,-5px) scale(0);transform-origin:50% 0;transition:transform .3s ease-in-out,opacity .3s ease-in-out;z-index:100}.cvco-app--deprecated .cvco-skip-link:focus{opacity:1;transform:translate(-50%) scale(1)}.cvco-app--deprecated .cvco-svg-graphic{display:inline-block;position:relative}.cvco-app--deprecated .cvco-svg-graphic__path-fill-primary{fill:#003a5d}.cvco-app--deprecated .cvco-svg-graphic__path-fill-secondary{fill:#223182}.cvco-app--deprecated .cvco-svg-graphic__path-fill-tertiary{fill:#4a48c1}.cvco-app--deprecated .cvco-svg-graphic__path-fill-white{fill:#fff}.cvco-app--deprecated .cvco-svg-graphic__path-fill-black{fill:#000}.cvco-app--deprecated .cvco-svg-graphic__path-fill-highlight{fill:#ffc700}.cvco-app--deprecated .cvco-svg-graphic__path-fill-positive{fill:#00875e}.cvco-app--deprecated .cvco-svg-graphic__path-fill-negative{fill:#db1639}.cvco-app--deprecated .cvco-translation-options{display:flex;flex-direction:column;gap:5px;list-style:none;margin:0;padding:1px 0 0;width:100%}.cvco-app--deprecated .cvco-translation-options__item{align-items:center;color:#4a48c1;cursor:pointer;display:flex;font-size:12px;font-weight:700;gap:10px;padding:5px 0;width:100%}.cvco-app--deprecated .cvco-translation-options__item.focus-visible{outline:1px auto -webkit-focus-ring-color}.cvco-app--deprecated .cvco-translation-options__item:focus-visible{outline:1px auto -webkit-focus-ring-color}.cvco-app--deprecated .cvco-translation-options__item>span{margin-left:-.5em}.cvco-app--deprecated .cvco-translation-options__item .cvco-icon{display:flex;height:16px;opacity:0;width:16px}.cvco-app--deprecated .cvco-translation-options__item[aria-selected=true] .cvco-icon{opacity:1}.cvco-app--deprecated .cvco-disclaimer{background-color:#eff3f6;display:block;flex:0 0 auto;height:auto;padding:10px 20px;width:100%}.cvco-app--deprecated.cvco-app--collapsed .cvco-disclaimer{display:none}.cvco-app--deprecated .cvco-disclaimer__title{font-size:12px;font-weight:700;line-height:1;margin:0 0 5px;padding-right:20px}.cvco-app--deprecated .cvco-disclaimer__message{font-size:12px;line-height:1.25}.cvco-app--deprecated .cvco-idle{align-items:center;display:flex;flex-direction:column;justify-content:space-between;max-height:none;padding:10px}.cvco-app--deprecated .cvco-idle__title{font-size:16px;font-weight:700;margin-bottom:5px;margin-top:0;text-align:center}.cvco-app--deprecated .cvco-idle__title:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-idle__count-container{display:block;font-size:12px;height:2.75em;margin-bottom:10px;width:100%}.cvco-app--deprecated .cvco-idle__count-text,.cvco-app--deprecated .cvco-idle__count-timer{display:block;font-size:inherit;text-align:center;white-space:nowrap;width:100%}.cvco-app--deprecated .cvco-idle__options{display:flex;flex-wrap:wrap;justify-content:center;list-style-type:none;margin:0;padding:0;width:100%}.cvco-app--deprecated .cvco-idle__options .cvco-button{margin:5px 5px 0;text-align:center;white-space:normal}.cvco-app--deprecated .cvco-prompt{align-items:center;display:flex;flex-direction:column;justify-content:space-between;max-height:none;padding:10px}.cvco-app--deprecated .cvco-prompt__title{font-size:16px;font-weight:700;margin-bottom:5px;margin-top:0;text-align:center}.cvco-app--deprecated .cvco-prompt__title:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-prompt__options{display:flex;flex-wrap:wrap;justify-content:center;list-style-type:none;margin:0;padding:0;width:100%}.cvco-app--deprecated .cvco-prompt__options .cvco-button{margin:5px 5px 0;text-align:center;white-space:normal}.cvco-app--deprecated .cvco-chat__options{align-items:center;border-top:1px solid #dee3e5;display:flex;justify-content:flex-end;padding:5px;position:relative}.cvco-app--deprecated .cvco-chat__options-item--left{margin-right:auto}.cvco-app--deprecated.cvco-app--collapsed .cvco-chat__options{display:none}.cvco-app--deprecated .cvco-chat__options__button{align-items:center;border-radius:15px;display:flex;justify-content:flex-end;padding:5px 10px}.cvco-app--deprecated.cvco-app--collapsed .cvco-chat__options-button{display:none}.cvco-app--deprecated .cvco-chat__options__button .cvco-icon{flex:0 0 15px;height:15px;margin-right:5px;width:15px}.cvco-app--deprecated .cvco-chat__options__button .cvco-icon svg{height:100%;width:100%}.cvco-app--deprecated .cvco-chat__options__button[aria-disabled=true] .cvco-icon path{fill:currentcolor}.cvco-app--deprecated .cvco-options__menu{background-color:#fff;border:1px solid #dee3e5;border-radius:5px;bottom:calc(100% + 10px);box-shadow:0 0 20px 0 rgba(0,0,0,.1);display:none;list-style:none;margin:0;max-height:400px;max-width:300px;opacity:0;padding:10px;position:absolute;right:10px;transform:scaleY(0) translateY(100px);transform-origin:100% 100%;transition:transform .2s ease-in-out,opacity .2s ease}.cvco-app--deprecated .cvco-options__menu.cvco-transition--visible{display:block}.cvco-app--deprecated .cvco-options__menu.cvco-transition--in{opacity:1;transform:scaleY(1) translateY(0)}.cvco-app--deprecated .cvco-options__menu__item{margin-bottom:5px;opacity:0;transition:opacity .1s ease .1s}.cvco-app--deprecated .cvco-options__menu__item:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-options__menu.cvco-transition--in .cvco-options__menu__item{opacity:1}.cvco-app--deprecated .cvco-options__menu .cvco-button{align-items:center;border-radius:5px;display:flex;min-width:200px;width:100%}.cvco-app--deprecated .cvco-options__menu .cvco-button:hover{background-color:#223182;color:#fff}.cvco-app--deprecated .cvco-options__menu .cvco-button[aria-disabled=true]:hover{background-color:transparent;background-color:initial;color:#5e727b}.cvco-app--deprecated .cvco-options{background-color:#fff;border:1px solid #dee3e5;border-radius:5px;bottom:calc(100% + 10px);box-shadow:0 0 20px 0 rgba(0,0,0,.1);display:none;flex-direction:column;list-style:none;margin:0;max-width:300px;opacity:0;padding:0;position:absolute;right:10px;transform:scaleY(0) translateY(100px);transform-origin:100% 100%;transition:transform .2s ease-in-out,opacity .2s ease;width:calc(100% - 20px)}.cvco-app--deprecated .cvco-options--left{left:10px;right:auto}.cvco-app--deprecated .cvco-options--right{right:10px}.cvco-app--deprecated .cvco-options__dialog.cvco-transition--visible .cvco-options{display:flex}.cvco-app--deprecated .cvco-options__dialog.cvco-transition--in .cvco-options{opacity:1;transform:scaleY(1) translateY(0)}.cvco-app--deprecated .cvco-options__body{display:flex;flex-direction:column;max-height:300px;opacity:0;transition:opacity .1s ease .1s}.cvco-app--deprecated .cvco-options__dialog.cvco-transition--in .cvco-options__body{opacity:1}.cvco-app--deprecated .cvco-options__title{align-items:center;color:#223182;display:flex;flex:0 0 auto;font-size:16px;font-weight:700;margin:0;padding:20px 20px 10px;width:calc(100% - 42px)}.cvco-app--deprecated .cvco-options__close{font-size:0;height:32px;position:absolute;right:10px;top:10px;width:32px}.cvco-app--deprecated .cvco-options__close .cvco-icon{align-items:center;display:flex;justify-content:center}.cvco-app--deprecated .cvco-options__body form{display:flex;flex:1 1 auto;flex-direction:column;width:100%}.cvco-app--deprecated .cvco-options__wrapper{align-items:flex-start;display:flex;flex:1 1 auto;flex-wrap:wrap;overflow:auto;padding:0 20px;width:100%}.cvco-app--deprecated .cvco-options__wrapper:last-child:after{content:"";display:block;flex:0 0 100%;height:20px;width:100%}.cvco-app--deprecated .cvco-options__wrapper h3{color:#223182;font-size:14px;font-weight:700;margin:0}.cvco-app--deprecated .cvco-options__description{display:block;font-size:14px;margin-bottom:10px;padding:0 20px;width:100%}.cvco-app--deprecated .cvco-transcript__input{border:1px solid #dee3e5;border-radius:5px;font-size:12px;padding:10px;transition:padding .3s ease-in-out;width:100%}.cvco-app--deprecated .cvco-transcript__input:focus{border:1px solid #dee3e5}@supports(-webkit-overflow-scrolling:touch){.cvco-app--deprecated .cvco-transcript__input{font-size:16px}}.cvco-app--deprecated .cvco-transcript__input::input-placeholder{color:#a3b4bf;line-height:20px;overflow:visible}.cvco-app--deprecated .cvco-transcript__input::-moz-placeholder{color:#a3b4bf;line-height:20px;overflow:visible}.cvco-app--deprecated .cvco-transcript__input::placeholder{color:#a3b4bf;line-height:20px;overflow:visible}.cvco-app--deprecated .cvco-transcript__input:input-placeholder{color:#a3b4bf;line-height:20px;overflow:visible}.cvco-app--deprecated .cvco-transcript__input:placeholder{color:#a3b4bf;line-height:20px;overflow:visible}.cvco-app--deprecated .cvco-options__active-language{color:#3d4166;font-size:14px}.cvco-app--deprecated .cvco-options__actions{display:flex;flex:0 0 auto;justify-content:flex-end;margin-top:10px;padding:0;width:100%}.cvco-app--deprecated .cvco-options__actions .cvco-button{margin-right:10px;width:100%}.cvco-app--deprecated .cvco-options__actions .cvco-button:last-child{margin-right:0}.cvco-app--deprecated .cvco-chat-status{align-items:flex-start;background-color:#fff;border-radius:10px;box-shadow:0 5px 30px rgba(53,75,90,.15),0 3px 10px rgba(53,75,90,.2);display:flex;gap:10px;margin:20px;min-height:40px;padding:10px;width:100%}.cvco-app--deprecated .cvco-chat-status--condensed{align-items:center;padding:5px 10px 5px 5px}.cvco-app--deprecated .cvco-chat--layout-window .cvco-chat-status{margin-right:80px}.cvco-app--deprecated .cvco-chat-status__body{align-items:center;display:flex;flex:1 1 auto;flex-wrap:wrap;gap:10px;justify-content:flex-start}.cvco-app--deprecated .cvco-chat-status__title{color:#3d4166;display:flex;font-size:14px;font-weight:700;line-height:1.25;margin:0}.cvco-app--deprecated .cvco-chat-status .cvco-icon{flex:0 0 16px;height:16px;width:16px}.cvco-app--deprecated .cvco-chat-status__button{align-items:center;color:#fff;display:flex;gap:10px;justify-content:flex-end;padding:5px 10px}.cvco-app--deprecated .cvco-chat-status__button .cvco-icon svg{height:100%;width:100%}.cvco-app--deprecated .cvco-chat-status__button .cvco-icon svg path{fill:#fff}.cvco-app--deprecated .cvco-chat-status__close{color:#4a48c1;display:inline-flex;flex:0 0 auto;justify-content:center;min-height:22px;min-width:22px}.cvco-app--deprecated .cvco-chat-status__close[\:has\(\.cvco-icon\)]{flex:0 0 22px;padding:0;width:22px}.cvco-app--deprecated .cvco-chat-status__close:has(.cvco-icon){flex:0 0 22px;padding:0;width:22px}.cvco-app--deprecated .cvco-chat-status__close .cvco-icon{align-self:center}.cvco-app--deprecated .cvco-upload-toggle-wrapper{height:100%;overflow:visible;transition:width .3s ease-in-out;width:0}.cvco-app--deprecated .cvco-upload-toggle-wrapper.cvco-transition--in{width:42px}.cvco-app--deprecated .cvco-upload-toggle{align-items:center;color:transparent;display:flex;flex:0 0 32px;flex-direction:column;font-size:0;height:32px;justify-content:center;line-height:1;opacity:0;padding:0;text-align:center;transform:translateX(-100%);transition:transform .3s ease-in-out,opacity .3s ease-in-out;width:32px}.cvco-app--deprecated .cvco-upload-toggle-wrapper.cvco-transition--in .cvco-upload-toggle{opacity:1;transform:translateX(0)}.cvco-app--deprecated .cvco-upload-toggle .cvco-icon{flex:0 0 100%;height:100%;width:100%}.cvco-app--deprecated .cvco-upload-toggle .cvco-icon svg{height:100%;width:100%}.cvco-app--deprecated .cvco-upload{padding:10px 10px 0;width:100%}.cvco-app--deprecated .cvco-input--file{display:block}.cvco-app--deprecated .cvco-upload__container{margin-bottom:10px;width:100%}.cvco-app--deprecated .cvco-upload__visible-label--text{display:block;font-size:16px;font-weight:700;width:100%}.cvco-app--deprecated .cvco-upload__content-hint{display:block;font-size:12px;margin-bottom:10px;padding-right:20px;width:100%}.cvco-app--deprecated .cvco-file-upload{border:1px solid #4a48c1;border-radius:5px;max-width:100%;width:100%}.cvco-app--deprecated .cvco-file-upload:hover{background-color:rgba(74,72,193,.1)}.cvco-app--deprecated .cvco-file-upload.cvco-focus-within{outline:1px dotted #212121;outline:5px auto -webkit-focus-ring-color}.cvco-app--deprecated .cvco-upload__input{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute;width:1px}.cvco-app--deprecated .cvco-upload__label{align-items:center;display:flex;justify-content:flex-start;padding:10px;text-align:left;width:100%}.cvco-app--deprecated .cvco-upload__label .cvco-icon{flex:0 0 32px;height:32px;margin-right:10px;width:32px}.cvco-app--deprecated .cvco-upload__label--text{color:#4a48c1;display:block;flex:1 1 100%;font-size:14px;font-weight:700;max-width:100%}.cvco-app--deprecated .cvco-upload__output{display:block;flex:1 1 100%;font-size:12px;max-width:100%;word-break:break-all}.cvco-app--deprecated .cvco-upload .cvco-button--primary{text-align:center}.cvco-app--deprecated .cvco-upload__button-container{display:flex;flex:0 0 100%;justify-content:flex-end}.cvco-app--deprecated .cvco-upload__cancel{margin-right:5px;padding:10px}.cvco-app--deprecated .cvco-upload__cancel:last-child{margin-right:0}.cvco-app--deprecated .cvco-progress__text{align-items:flex-end;display:flex;justify-content:space-between;margin-bottom:5px}.cvco-app--deprecated .cvco-progress__text--file-name{font-size:14px;font-weight:700;line-height:1.25;max-width:calc(100% - 40px);overflow:hidden;padding-right:20px;text-overflow:ellipsis;white-space:nowrap}.cvco-app--deprecated .cvco-progress__text--percentage{color:#6a7f8c;font-size:14px;line-height:1}.cvco-app--deprecated .cvco-progress .cvco-error{margin-top:10px}.cvco-app--deprecated .cvco-progress .cvco-error:empty{display:none}.cvco-app--deprecated .cvco-progress__bar{-webkit-appearance:none;-moz-appearance:none;appearance:none;background:#fff;border:1px solid #003a5d;border-radius:5px;width:100%}.cvco-app--deprecated .cvco-progress__bar::-webkit-progress-bar{background:#fff;border-radius:5px;box-shadow:inset 0 2.5px 2.5px 0 rgba(0,0,0,.22)}.cvco-app--deprecated .cvco-progress__bar::-webkit-progress-value{background-color:#4a48c1}.cvco-app--deprecated .cvco-progress__bar::-moz-progress-bar{background-color:#4a48c1}.cvco-app--deprecated .cvco-error{display:block;margin:0 0 5px;width:100%}.cvco-app--deprecated .cvco-error:empty{display:none;margin:0}.cvco-app--deprecated .cvco-error .cvco-icon{flex:0 0 16px;height:16px;margin-right:5px;width:16px}.cvco-app--deprecated .cvco-error .cvco-error__message{align-items:flex-start;background-color:rgba(219,22,57,.1);border-radius:5px;color:#ad001f;display:flex;font-size:12px;font-weight:700;padding:5px 10px;width:100%}.cvco-app--deprecated .cvco-notification{background-color:rgba(74,72,193,.1);border-radius:5px;color:#223182;display:block;font-size:12px;font-weight:700;margin:0 0 10px;padding:5px 10px;width:100%}.cvco-app--deprecated .cvco-notification:last-child{margin:0}.cvco-app--deprecated .cvco-character-count{align-items:center;display:flex;font-size:12px;font-weight:700;height:100%;justify-content:right;line-height:1;opacity:0;padding:0 10px;pointer-events:none;position:absolute;right:0;text-align:right;top:0;transform:translateX(100%);transition:transform .3s ease-in-out,opacity .2s ease .2s}.cvco-app--deprecated .cvco-character-count span{color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;text-align:right}.cvco-app--deprecated .cvco-character-exceeded .cvco-character-count,.cvco-app--deprecated .cvco-character-warning .cvco-character-count{opacity:1;transform:translateX(0)}.cvco-app--deprecated .cvco-character-exceeded .cvco-character-count span{color:#db1639}.cvco-app--deprecated .cvco-card__wrapper{display:flex;flex-direction:column;height:100%}.cvco-app--deprecated .cvco-card__image{border-top-left-radius:10px;border-top-right-radius:10px;flex:0 0 auto;height:160px;-o-object-fit:cover;object-fit:cover;-o-object-position:center;object-position:center;overflow:hidden;width:100%}.cvco-app--deprecated .cvco-card__content{display:flex;flex:1 1 auto;flex-wrap:wrap;padding:10px 15px 15px}.cvco-app--deprecated .cvco-card__title{display:block;flex:0 0 100%;font-size:16px;font-weight:700;margin:0 0 5px;padding:0;width:100%}.cvco-app--deprecated .cvco-card__title:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-card__description{display:block;margin-bottom:20px;width:100%}.cvco-app--deprecated .cvco-card__description:last-child{margin-bottom:0}.cvco-app--deprecated .cvco-card__content .cvco-button{align-self:flex-end;display:block;text-decoration:none;width:100%}.cvco-app--deprecated .cvco-carousel{position:relative}.cvco-app--deprecated .cvco-carousel__slides-wrapper{display:block;overflow:hidden;width:100%}.cvco-app--deprecated .cvco-carousel__slides{display:flex;flex-direction:row;list-style:none;padding:0;position:relative;transition:left .3s ease-in-out}.cvco-app--deprecated .cvco-carousel__slide{display:block;list-style:none;padding:0;width:100%}.cvco-app--deprecated .cvco-carousel-item{display:flex;flex-direction:column;height:100%;width:100%}.cvco-app--deprecated .cvco-carousel-item .cvco-button{display:block;width:100%}.cvco-app--deprecated .cvco-carousel-controls{border-top:1px solid #dee3e5;display:flex;height:-moz-fit-content;height:fit-content;justify-content:space-between;padding:0;position:relative;width:100%}.cvco-app--deprecated .cvco-carousel-controls .cvco-button{align-items:center;background-color:transparent;background-color:initial;color:transparent;display:flex;font-size:0;height:40px;justify-content:center;width:40px}.cvco-app--deprecated .cvco-carousel-controls .cvco-button--previous{left:0}.cvco-app--deprecated .cvco-carousel-controls .cvco-button--next{right:0}.cvco-app--deprecated .cvco-carousel__controls .cvco-button .cvco-icon{border:0;display:block;height:16px;padding:0;width:16px}.cvco-app--deprecated .cvco-carousel__controls .cvco-button .cvco-icon svg{fill:#003a5d}.cvco-app--deprecated .cvco-carousel__pagination{align-items:center;display:flex;justify-content:center;padding:0 10px;position:relative}.cvco-app--deprecated .cvco-carousel-pagination{margin:0 auto;padding:0;width:100%}.cvco-app--deprecated .cvco-carousel-pagination,.cvco-app--deprecated .cvco-carousel-pagination__wrapper{display:flex;flex-direction:row;justify-content:center;position:relative}.cvco-app--deprecated .cvco-carousel-pagination__item{display:block;height:10px;list-style:none;margin-right:10px;width:10px}.cvco-app--deprecated .cvco-carousel-pagination__item:last-child{margin-right:0}.cvco-app--deprecated .cvco-carousel-pagination__button{background:#a3b4bf;border:0;border-radius:10px;display:block;height:100%;padding:0;width:100%}.cvco-app--deprecated .cvco-is-active .cvco-carousel-pagination__button{background-color:#003a5d}.cvco-app--deprecated .cvco-collapse-button{background-color:#fff;border:0;border-radius:50%;box-shadow:0 5px 30px rgba(53,75,90,.15),0 3px 10px rgba(53,75,90,.2);display:block;height:32px;padding:0;position:absolute;right:20px;top:20px;width:32px;z-index:1}.cvco-app--deprecated .cvco-suggestions{display:none}.cvco-app--deprecated .cvco-unread-messages{align-items:center;bottom:20px;display:none;justify-content:center;margin:0;opacity:0;position:absolute}.cvco-app--deprecated .cvco-unread-messages.cvco-transition--visible{display:flex}.cvco-app--deprecated .cvco-unread-messages.cvco-transition--in{opacity:1;transition:opacity .3s ease-in-out 1s}.cvco-app--deprecated .cvco-unread-messages .cvco-button{align-items:center;display:flex;gap:10px}.cvco-app--deprecated .cvco-unread-messages .cvco-icon,.cvco-app--deprecated .cvco-unread-messages .cvco-icon svg{height:20px;width:20px}.cvco-app--deprecated .cvco-unread-messages .cvco-icon svg path{fill:#fff}.cvco-app--deprecated .cvco-visually-hidden,.cvco-app__live-container .cvco-visually-hidden{clip:rect(1px,1px,1px,1px);height:1px;overflow:hidden;position:absolute!important;width:1px}.cvco-modal{align-items:center;background-color:hsla(0,0%,100%,.8);display:block;display:flex;height:100%;justify-content:center;left:0;max-height:100%;padding:20px;position:fixed;top:0;width:100%;z-index:99}.cvco-modal,.cvco-modal *,.cvco-modal :after,.cvco-modal :before{box-sizing:border-box}.cvco-modal__float{background-color:#fff;border:1px solid #dee3e5;border-radius:10px;box-shadow:0 0 20px 0 rgba(0,0,0,.1);max-width:80rem;outline:0;padding:5px}.cvco-modal__float,.cvco-modal__inner{height:100%;position:relative;width:100%}.cvco-modal__inner{align-items:center;background-color:#eff3f6;border-radius:5px;display:flex;justify-content:center;padding:10px}.cvco-modal__image{border:1px solid #dee3e5;display:block;flex:0 0 auto;max-height:calc(95vh - 40px);max-width:calc(95vw - 40px);width:auto}.cvco-modal__close{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border:1px solid #dee3e5;border-radius:20px;box-shadow:0 4px 6.666px 0 rgba(0,0,0,.1);color:#4a48c1;display:flex;font-size:14px;font-weight:700;padding:10px 20px;position:absolute;right:-10px;top:20px;transition:background-color .3s ease-in-out}.cvco-modal__close .cvco-icon{height:16px;margin-right:5px;width:16px}.cvco-modal__close .cvco-icon svg{height:inherit;width:inherit}.cvco-modal__close .cvco-icon svg path{fill:#4a48c1;transition:fill .3s ease-in-out}.cvco-modal__close:hover{background-color:#4a48c1;color:#fff;transition:color .3s ease-in-out}.cvco-modal__close:hover svg path{fill:#fff}.cvco-modal__enlarge{align-items:center;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:hsla(0,0%,100%,.4);border:0;border-radius:20px;bottom:20px;color:transparent;display:flex;font-size:0;height:32px;justify-content:center;padding:0;position:absolute;right:20px;width:32px}.cvco-modal__enlarge svg path{fill:#4a48c1}.cvco-modal__enlarge:hover{background-color:#4a48c1}.cvco-modal__enlarge:hover .cvco-icon svg path{fill:#fff}
@@ -1 +1 @@
1
- !function(){"use strict";var r={980:function(r,t,e){r.exports=e.p+"deprecated-view.css"}},t={};function e(o){var s=t[o];if(void 0!==s)return s.exports;var n=t[o]={exports:{}};return r[o](n,n.exports,e),n.exports}e.p="/",e(980)}();
1
+ !function(){"use strict";var r={238:function(r,t,e){r.exports=e.p+"deprecated-view.css"}},t={};function e(o){var s=t[o];if(void 0!==s)return s.exports;var n=t[o]={exports:{}};return r[o](n,n.exports,e),n.exports}e.p="/",e(238)}();