@pepperi-addons/ngx-lib 0.5.0-ng15.3 → 0.5.0-ng16.2

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 (749) hide show
  1. package/address/address.component.d.ts +1 -1
  2. package/attachment/attachment.component.d.ts +1 -1
  3. package/bread-crumbs/bread-crumbs.component.d.ts +1 -1
  4. package/button/button.component.d.ts +1 -1
  5. package/carousel/carousel-item.directive.d.ts +1 -1
  6. package/carousel/carousel.component.d.ts +1 -1
  7. package/checkbox/checkbox.component.d.ts +1 -1
  8. package/chips/chips.component.d.ts +1 -1
  9. package/color/color.component.d.ts +1 -1
  10. package/core/clipboard/clipboard.directive.d.ts +1 -1
  11. package/core/common/directives/auto-width.directive.d.ts +1 -1
  12. package/core/common/directives/button-loader.directive.d.ts +1 -1
  13. package/core/common/directives/data-qa.directive.d.ts +1 -1
  14. package/core/common/directives/div-loader.directive.d.ts +1 -1
  15. package/core/common/directives/prevent-multi-click.directive.d.ts +1 -1
  16. package/core/common/directives/print.directive.d.ts +1 -1
  17. package/core/portal/attach.directive.d.ts +1 -1
  18. package/core/portal/target.directive.d.ts +1 -1
  19. package/date/date.component.d.ts +1 -1
  20. package/dialog/dialog.component.d.ts +1 -1
  21. package/draggable-items/draggable-item/draggable-item.component.d.ts +1 -1
  22. package/draggable-items/draggable-items.component.d.ts +1 -1
  23. package/esm2022/address/address.component.mjs +112 -0
  24. package/{esm2020 → esm2022}/address/address.module.mjs +23 -23
  25. package/{esm2020 → esm2022}/attachment/attachment.component.mjs +65 -61
  26. package/{esm2020 → esm2022}/attachment/attachment.module.mjs +21 -21
  27. package/esm2022/bread-crumbs/bread-crumbs.component.mjs +87 -0
  28. package/esm2022/bread-crumbs/bread-crumbs.model.mjs +10 -0
  29. package/esm2022/bread-crumbs/bread-crumbs.module.mjs +51 -0
  30. package/{esm2020 → esm2022}/button/button.component.mjs +76 -53
  31. package/esm2022/button/button.model.mjs +13 -0
  32. package/{esm2020 → esm2022}/button/button.module.mjs +19 -19
  33. package/esm2022/carousel/carousel-item.directive.mjs +34 -0
  34. package/esm2022/carousel/carousel.component.mjs +765 -0
  35. package/{esm2020 → esm2022}/carousel/carousel.module.mjs +5 -5
  36. package/esm2022/checkbox/checkbox.component.mjs +182 -0
  37. package/esm2022/checkbox/checkbox.module.mjs +64 -0
  38. package/esm2022/chips/chips.component.mjs +187 -0
  39. package/esm2022/chips/chips.module.mjs +82 -0
  40. package/{esm2020 → esm2022}/chips/chips.service.mjs +5 -5
  41. package/esm2022/color/color-picker.component.mjs +229 -0
  42. package/esm2022/color/color.component.mjs +93 -0
  43. package/esm2022/color/color.module.mjs +93 -0
  44. package/{esm2020 → esm2022}/core/clipboard/clipboard.directive.mjs +4 -4
  45. package/{esm2020 → esm2022}/core/clipboard/clipboard.service.mjs +4 -4
  46. package/esm2022/core/common/directives/auto-width.directive.mjs +79 -0
  47. package/esm2022/core/common/directives/base-destroyer.directive.mjs +23 -0
  48. package/esm2022/core/common/directives/button-blur.directive.mjs +25 -0
  49. package/esm2022/core/common/directives/button-loader.directive.mjs +117 -0
  50. package/esm2022/core/common/directives/data-qa.directive.mjs +26 -0
  51. package/esm2022/core/common/directives/div-loader.directive.mjs +67 -0
  52. package/esm2022/core/common/directives/menu-blur.directive.mjs +33 -0
  53. package/esm2022/core/common/directives/prevent-multi-click.directive.mjs +25 -0
  54. package/esm2022/core/common/directives/print.directive.mjs +176 -0
  55. package/esm2022/core/common/model/wapi.model.mjs +247 -0
  56. package/esm2022/core/common/pipes/common-pipes.mjs +180 -0
  57. package/esm2022/core/common/pipes/date-ago.pipe.mjs +47 -0
  58. package/esm2022/core/common/services/addon.service.mjs +234 -0
  59. package/esm2022/core/common/services/color.service.mjs +383 -0
  60. package/esm2022/core/common/services/cookie.service.mjs +156 -0
  61. package/esm2022/core/common/services/data-convertor.service.mjs +139 -0
  62. package/esm2022/core/common/services/file.service.mjs +252 -0
  63. package/{esm2020 → esm2022}/core/common/services/jwt-helper.service.mjs +4 -4
  64. package/esm2022/core/common/services/session.service.mjs +73 -0
  65. package/esm2022/core/common/services/translate.service.mjs +47 -0
  66. package/esm2022/core/common/services/utilities.service.mjs +302 -0
  67. package/esm2022/core/common/services/validator.service.mjs +273 -0
  68. package/esm2022/core/common/services/window-scrolling.service.mjs +38 -0
  69. package/esm2022/core/customization/customization.model.mjs +377 -0
  70. package/esm2022/core/customization/customization.service.mjs +802 -0
  71. package/{esm2020 → esm2022}/core/http/interceptors/error.interceptor.mjs +4 -4
  72. package/esm2022/core/http/interceptors/loader.interceptor.mjs +33 -0
  73. package/{esm2020 → esm2022}/core/http/interceptors/profiler.interceptor.mjs +4 -4
  74. package/esm2022/core/http/services/http.service.mjs +158 -0
  75. package/{esm2020 → esm2022}/core/http/services/loader.service.mjs +6 -6
  76. package/esm2022/core/layout/layout.service.mjs +171 -0
  77. package/esm2022/core/layout/rtl.directive.mjs +50 -0
  78. package/esm2022/core/portal/attach.directive.mjs +30 -0
  79. package/esm2022/core/portal/portal.service.mjs +37 -0
  80. package/esm2022/core/portal/target.directive.mjs +27 -0
  81. package/{esm2020 → esm2022}/core/scroll-to/scroll-to.service.mjs +4 -4
  82. package/esm2022/date/date.component.mjs +345 -0
  83. package/{esm2020 → esm2022}/date/date.model.mjs +7 -7
  84. package/esm2022/date/date.module.mjs +89 -0
  85. package/esm2022/dialog/default-dialog.component.mjs +39 -0
  86. package/esm2022/dialog/dialog.component.mjs +37 -0
  87. package/esm2022/dialog/dialog.model.mjs +41 -0
  88. package/esm2022/dialog/dialog.module.mjs +59 -0
  89. package/esm2022/dialog/dialog.service.mjs +106 -0
  90. package/esm2022/draggable-items/draggable-item/draggable-item.component.mjs +68 -0
  91. package/esm2022/draggable-items/draggable-items.component.mjs +95 -0
  92. package/esm2022/draggable-items/draggable-items.module.mjs +65 -0
  93. package/esm2022/field-title/field-title.component.mjs +46 -0
  94. package/esm2022/field-title/field-title.module.mjs +48 -0
  95. package/{esm2020 → esm2022}/files-uploader/files-uploader.component.mjs +36 -27
  96. package/esm2022/files-uploader/files-uploader.module.mjs +80 -0
  97. package/esm2022/form/field-generator.component.mjs +152 -0
  98. package/esm2022/form/form.component.mjs +1258 -0
  99. package/esm2022/form/form.module.mjs +180 -0
  100. package/esm2022/form/indicators.component.mjs +23 -0
  101. package/esm2022/form/internal-button.component.mjs +188 -0
  102. package/esm2022/form/internal-carusel.component.mjs +126 -0
  103. package/esm2022/form/internal-carusel.service.mjs +34 -0
  104. package/esm2022/form/internal-field-generator.component.mjs +146 -0
  105. package/esm2022/form/internal-form.component.mjs +1236 -0
  106. package/esm2022/form/internal-list.component.mjs +524 -0
  107. package/esm2022/form/internal-menu.component.mjs +62 -0
  108. package/esm2022/form/internal-page.component.mjs +380 -0
  109. package/esm2022/form/internal-page.service.mjs +125 -0
  110. package/esm2022/group-buttons/group-buttons.component.mjs +73 -0
  111. package/esm2022/group-buttons/group-buttons.module.mjs +60 -0
  112. package/esm2022/icon/icon-registry.service.mjs +24 -0
  113. package/esm2022/icon/icon.component.mjs +95 -0
  114. package/{esm2020 → esm2022}/icon/icon.module.mjs +5 -5
  115. package/esm2022/icon/icon.service.mjs +34 -0
  116. package/{esm2020 → esm2022}/image/image.component.mjs +45 -39
  117. package/esm2022/image/image.module.mjs +74 -0
  118. package/esm2022/image/image.service.mjs +53 -0
  119. package/esm2022/images-filmstrip/images-filmstrip.component.mjs +360 -0
  120. package/esm2022/images-filmstrip/images-filmstrip.module.mjs +84 -0
  121. package/esm2022/link/link.component.mjs +324 -0
  122. package/esm2022/link/link.module.mjs +81 -0
  123. package/{esm2020 → esm2022}/link/link.pipes.mjs +4 -4
  124. package/esm2022/list/list-actions.component.mjs +42 -0
  125. package/esm2022/list/list-carousel.component.mjs +110 -0
  126. package/esm2022/list/list-chooser.component.mjs +64 -0
  127. package/esm2022/list/list-pager.component.mjs +126 -0
  128. package/{esm2020 → esm2022}/list/list-sorting.component.mjs +15 -13
  129. package/esm2022/list/list-total.component.mjs +31 -0
  130. package/esm2022/list/list-views.component.mjs +86 -0
  131. package/esm2022/list/list.component.mjs +1394 -0
  132. package/{esm2020 → esm2022}/list/list.model.mjs +4 -1
  133. package/esm2022/list/list.module.mjs +145 -0
  134. package/esm2022/list/list.pipes.mjs +45 -0
  135. package/esm2022/list/virtual-scroller.mjs +1124 -0
  136. package/esm2022/menu/menu-item.component.mjs +111 -0
  137. package/esm2022/menu/menu.component.mjs +218 -0
  138. package/esm2022/menu/menu.model.mjs +23 -0
  139. package/esm2022/menu/menu.module.mjs +60 -0
  140. package/{esm2020 → esm2022}/ngx-lib.module.mjs +65 -65
  141. package/esm2022/page-layout/page-layout.component.mjs +41 -0
  142. package/{esm2020 → esm2022}/page-layout/page-layout.module.mjs +13 -13
  143. package/esm2022/profile-data-views-list/profile-data-view/profile-data-view.component.mjs +48 -0
  144. package/esm2022/profile-data-views-list/profile-data-views-card/profile-data-views-card.component.mjs +82 -0
  145. package/esm2022/profile-data-views-list/profile-data-views-list.component.mjs +131 -0
  146. package/esm2022/profile-data-views-list/profile-data-views-list.module.mjs +89 -0
  147. package/esm2022/quantity-selector/quantity-selector-validation.directive.mjs +53 -0
  148. package/{esm2020 → esm2022}/quantity-selector/quantity-selector.component.mjs +83 -73
  149. package/esm2022/quantity-selector/quantity-selector.module.mjs +83 -0
  150. package/{esm2020 → esm2022}/quantity-selector/quantity-selector.pipes.mjs +4 -4
  151. package/esm2022/query-builder/common/model/type-map.mjs +28 -0
  152. package/esm2022/query-builder/common/services/output-query.service.mjs +118 -0
  153. package/esm2022/query-builder/common/services/query-structure.service.mjs +263 -0
  154. package/esm2022/query-builder/common/services/type-convertor.service.mjs +42 -0
  155. package/esm2022/query-builder/query-builder-item/query-builder-item.component.mjs +134 -0
  156. package/esm2022/query-builder/query-builder-section/query-builder-section.component.mjs +76 -0
  157. package/esm2022/query-builder/query-builder.component.mjs +116 -0
  158. package/esm2022/query-builder/query-builder.module.mjs +71 -0
  159. package/{esm2020 → esm2022}/query-builder/query-builder.service.mjs +4 -4
  160. package/esm2022/remote-loader/addon-block-loader.component.mjs +115 -0
  161. package/esm2022/remote-loader/addon-block-loader.service.mjs +66 -0
  162. package/esm2022/remote-loader/remote-loader-element.component.mjs +179 -0
  163. package/esm2022/remote-loader/remote-loader.component.mjs +120 -0
  164. package/{esm2020 → esm2022}/remote-loader/remote-loader.module.mjs +26 -26
  165. package/esm2022/remote-loader/remote-loader.service.mjs +107 -0
  166. package/{esm2020 → esm2022}/rich-html-textarea/rich-html-textarea.component.mjs +38 -30
  167. package/esm2022/rich-html-textarea/rich-html-textarea.module.mjs +96 -0
  168. package/esm2022/search/search.component.mjs +322 -0
  169. package/esm2022/search/search.module.mjs +71 -0
  170. package/esm2022/select/select.component.mjs +341 -0
  171. package/esm2022/select/select.module.mjs +71 -0
  172. package/esm2022/select-panel/select-panel.component.mjs +161 -0
  173. package/{esm2020 → esm2022}/select-panel/select-panel.module.mjs +31 -31
  174. package/esm2022/separator/separator.component.mjs +65 -0
  175. package/{esm2020 → esm2022}/separator/separator.module.mjs +5 -5
  176. package/esm2022/side-bar/side-bar.component.mjs +141 -0
  177. package/esm2022/side-bar/side-bar.module.mjs +56 -0
  178. package/esm2022/signature/signature-dialog.component.mjs +82 -0
  179. package/{esm2020 → esm2022}/signature/signature.component.mjs +41 -31
  180. package/esm2022/signature/signature.module.mjs +92 -0
  181. package/esm2022/size-detector/size-detector.component.mjs +97 -0
  182. package/{esm2020 → esm2022}/size-detector/size-detector.module.mjs +13 -13
  183. package/esm2022/skeleton-loader/skeleton-loader.component.mjs +46 -0
  184. package/{esm2020 → esm2022}/skeleton-loader/skeleton-loader.module.mjs +7 -7
  185. package/esm2022/slider/slider.component.mjs +105 -0
  186. package/{esm2020 → esm2022}/slider/slider.module.mjs +17 -17
  187. package/esm2022/smart-filters/boolean-filter/boolean-filter.component.mjs +74 -0
  188. package/esm2022/smart-filters/common/filter-actions.component.mjs +28 -0
  189. package/esm2022/smart-filters/common/model/base-filter-component.mjs +307 -0
  190. package/esm2022/smart-filters/common/model/field.mjs +125 -0
  191. package/esm2022/smart-filters/common/model/operator.mjs +287 -0
  192. package/esm2022/smart-filters/date-filter/date-filter.component.mjs +181 -0
  193. package/esm2022/smart-filters/multi-select-filter/multi-select-filter.component.mjs +202 -0
  194. package/esm2022/smart-filters/number-filter/number-filter.component.mjs +133 -0
  195. package/esm2022/smart-filters/smart-filters.component.mjs +143 -0
  196. package/esm2022/smart-filters/smart-filters.module.mjs +159 -0
  197. package/esm2022/smart-filters/text-filter/text-filter.component.mjs +110 -0
  198. package/esm2022/snack-bar/default-snack-bar.component.mjs +31 -0
  199. package/esm2022/snack-bar/snack-bar.component.mjs +28 -0
  200. package/esm2022/snack-bar/snack-bar.model.mjs +9 -0
  201. package/esm2022/snack-bar/snack-bar.module.mjs +63 -0
  202. package/esm2022/snack-bar/snack-bar.service.mjs +62 -0
  203. package/{esm2020 → esm2022}/textarea/textarea.component.mjs +35 -27
  204. package/esm2022/textarea/textarea.module.mjs +83 -0
  205. package/esm2022/textbox/textbox-validation.directive.mjs +96 -0
  206. package/esm2022/textbox/textbox.component.mjs +646 -0
  207. package/esm2022/textbox/textbox.module.mjs +73 -0
  208. package/esm2022/textbox-icon/textbox-icon.component.mjs +50 -0
  209. package/esm2022/textbox-icon/textbox-icon.module.mjs +65 -0
  210. package/esm2022/top-bar/top-bar.component.mjs +127 -0
  211. package/esm2022/top-bar/top-bar.module.mjs +63 -0
  212. package/fesm2022/pepperi-addons-ngx-lib-address.mjs +173 -0
  213. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-address.mjs.map +1 -1
  214. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-attachment.mjs +84 -80
  215. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-attachment.mjs.map +1 -1
  216. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-bread-crumbs.mjs +34 -28
  217. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-bread-crumbs.mjs.map +1 -1
  218. package/fesm2022/pepperi-addons-ngx-lib-button.mjs +227 -0
  219. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-button.mjs.map +1 -1
  220. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-carousel.mjs +76 -55
  221. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-carousel.mjs.map +1 -1
  222. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-checkbox.mjs +54 -48
  223. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-checkbox.mjs.map +1 -1
  224. package/fesm2022/pepperi-addons-ngx-lib-chips.mjs +308 -0
  225. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-chips.mjs.map +1 -1
  226. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-color.mjs +92 -84
  227. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-color.mjs.map +1 -1
  228. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-date.mjs +116 -104
  229. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-date.mjs.map +1 -1
  230. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-dialog.mjs +50 -36
  231. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-dialog.mjs.map +1 -1
  232. package/fesm2022/pepperi-addons-ngx-lib-draggable-items.mjs +229 -0
  233. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-draggable-items.mjs.map +1 -1
  234. package/fesm2022/pepperi-addons-ngx-lib-field-title.mjs +101 -0
  235. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-field-title.mjs.map +1 -1
  236. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-files-uploader.mjs +66 -56
  237. package/fesm2022/pepperi-addons-ngx-lib-files-uploader.mjs.map +1 -0
  238. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-form.mjs +391 -310
  239. package/{fesm2015 → fesm2022}/pepperi-addons-ngx-lib-form.mjs.map +1 -1
  240. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-group-buttons.mjs +38 -35
  241. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-group-buttons.mjs.map +1 -1
  242. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-icon.mjs +23 -18
  243. package/{fesm2015 → fesm2022}/pepperi-addons-ngx-lib-icon.mjs.map +1 -1
  244. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-image.mjs +77 -68
  245. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-image.mjs.map +1 -1
  246. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-images-filmstrip.mjs +83 -60
  247. package/fesm2022/pepperi-addons-ngx-lib-images-filmstrip.mjs.map +1 -0
  248. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-link.mjs +113 -103
  249. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-link.mjs.map +1 -1
  250. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-list.mjs +339 -273
  251. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-list.mjs.map +1 -1
  252. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-menu.mjs +89 -87
  253. package/{fesm2015 → fesm2022}/pepperi-addons-ngx-lib-menu.mjs.map +1 -1
  254. package/{fesm2015 → fesm2022}/pepperi-addons-ngx-lib-page-layout.mjs +23 -17
  255. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-page-layout.mjs.map +1 -1
  256. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-profile-data-views-list.mjs +72 -63
  257. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-profile-data-views-list.mjs.map +1 -1
  258. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-quantity-selector.mjs +125 -110
  259. package/{fesm2015 → fesm2022}/pepperi-addons-ngx-lib-quantity-selector.mjs.map +1 -1
  260. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-query-builder.mjs +93 -66
  261. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-query-builder.mjs.map +1 -1
  262. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-remote-loader.mjs +84 -64
  263. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-remote-loader.mjs.map +1 -1
  264. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-rich-html-textarea.mjs +76 -67
  265. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-rich-html-textarea.mjs.map +1 -1
  266. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-search.mjs +85 -79
  267. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-search.mjs.map +1 -1
  268. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-select-panel.mjs +53 -49
  269. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-select-panel.mjs.map +1 -1
  270. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-select.mjs +74 -66
  271. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-select.mjs.map +1 -1
  272. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-separator.mjs +18 -16
  273. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-separator.mjs.map +1 -1
  274. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-side-bar.mjs +44 -38
  275. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-side-bar.mjs.map +1 -1
  276. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-signature.mjs +95 -81
  277. package/fesm2022/pepperi-addons-ngx-lib-signature.mjs.map +1 -0
  278. package/fesm2022/pepperi-addons-ngx-lib-size-detector.mjs +139 -0
  279. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-size-detector.mjs.map +1 -1
  280. package/fesm2022/pepperi-addons-ngx-lib-skeleton-loader.mjs +78 -0
  281. package/{fesm2015 → fesm2022}/pepperi-addons-ngx-lib-skeleton-loader.mjs.map +1 -1
  282. package/fesm2022/pepperi-addons-ngx-lib-slider.mjs +154 -0
  283. package/fesm2022/pepperi-addons-ngx-lib-slider.mjs.map +1 -0
  284. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-smart-filters.mjs +186 -158
  285. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-smart-filters.mjs.map +1 -1
  286. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-snack-bar.mjs +42 -34
  287. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-snack-bar.mjs.map +1 -1
  288. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-textarea.mjs +67 -58
  289. package/{fesm2015 → fesm2022}/pepperi-addons-ngx-lib-textarea.mjs.map +1 -1
  290. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-textbox-icon.mjs +28 -25
  291. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-textbox-icon.mjs.map +1 -1
  292. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-textbox.mjs +156 -144
  293. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-textbox.mjs.map +1 -1
  294. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-top-bar.mjs +48 -32
  295. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib-top-bar.mjs.map +1 -1
  296. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib.mjs +661 -449
  297. package/{fesm2020 → fesm2022}/pepperi-addons-ngx-lib.mjs.map +1 -1
  298. package/field-title/field-title.component.d.ts +1 -1
  299. package/files-uploader/files-uploader.component.d.ts +1 -1
  300. package/form/field-generator.component.d.ts +1 -1
  301. package/form/form.component.d.ts +1 -1
  302. package/form/form.module.d.ts +2 -2
  303. package/form/indicators.component.d.ts +1 -1
  304. package/form/internal-button.component.d.ts +1 -1
  305. package/form/internal-carusel.component.d.ts +1 -1
  306. package/form/internal-field-generator.component.d.ts +1 -1
  307. package/form/internal-form.component.d.ts +1 -1
  308. package/form/internal-list.component.d.ts +1 -1
  309. package/form/internal-menu.component.d.ts +1 -1
  310. package/form/internal-page.component.d.ts +1 -1
  311. package/group-buttons/group-buttons.component.d.ts +1 -1
  312. package/icon/icon.component.d.ts +1 -1
  313. package/image/image.component.d.ts +1 -1
  314. package/images-filmstrip/images-filmstrip.component.d.ts +1 -1
  315. package/link/link.component.d.ts +1 -1
  316. package/list/list-actions.component.d.ts +1 -1
  317. package/list/list-carousel.component.d.ts +1 -1
  318. package/list/list-chooser.component.d.ts +1 -1
  319. package/list/list-pager.component.d.ts +1 -1
  320. package/list/list-sorting.component.d.ts +1 -1
  321. package/list/list-total.component.d.ts +1 -1
  322. package/list/list-views.component.d.ts +1 -1
  323. package/list/list.component.d.ts +1 -1
  324. package/list/virtual-scroller.d.ts +1 -1
  325. package/menu/menu-item.component.d.ts +1 -1
  326. package/menu/menu.component.d.ts +1 -1
  327. package/package.json +159 -249
  328. package/page-layout/page-layout.component.d.ts +1 -1
  329. package/profile-data-views-list/profile-data-view/profile-data-view.component.d.ts +1 -1
  330. package/profile-data-views-list/profile-data-views-card/profile-data-views-card.component.d.ts +1 -1
  331. package/profile-data-views-list/profile-data-views-list.component.d.ts +1 -1
  332. package/quantity-selector/quantity-selector-validation.directive.d.ts +1 -1
  333. package/quantity-selector/quantity-selector.component.d.ts +1 -1
  334. package/query-builder/query-builder-item/query-builder-item.component.d.ts +1 -1
  335. package/query-builder/query-builder-section/query-builder-section.component.d.ts +1 -1
  336. package/query-builder/query-builder.component.d.ts +1 -1
  337. package/remote-loader/addon-block-loader.component.d.ts +1 -1
  338. package/remote-loader/remote-loader-element.component.d.ts +1 -1
  339. package/remote-loader/remote-loader.component.d.ts +1 -1
  340. package/rich-html-textarea/rich-html-textarea.component.d.ts +1 -1
  341. package/search/search.component.d.ts +1 -1
  342. package/select/select.component.d.ts +1 -1
  343. package/select-panel/select-panel.component.d.ts +1 -1
  344. package/separator/separator.component.d.ts +1 -1
  345. package/side-bar/side-bar.component.d.ts +1 -1
  346. package/signature/signature-dialog.component.d.ts +2 -2
  347. package/signature/signature.component.d.ts +1 -1
  348. package/signature/signature.module.d.ts +2 -2
  349. package/size-detector/size-detector.component.d.ts +1 -1
  350. package/skeleton-loader/skeleton-loader.component.d.ts +1 -1
  351. package/slider/slider.component.d.ts +1 -1
  352. package/slider/slider.component.theme.scss +13 -6
  353. package/smart-filters/boolean-filter/boolean-filter.component.d.ts +1 -1
  354. package/smart-filters/common/filter-actions.component.d.ts +1 -1
  355. package/smart-filters/common/model/base-filter-component.d.ts +1 -1
  356. package/smart-filters/smart-filters.component.d.ts +1 -1
  357. package/snack-bar/snack-bar.component.d.ts +1 -1
  358. package/textarea/textarea.component.d.ts +1 -1
  359. package/textbox/textbox-validation.directive.d.ts +1 -1
  360. package/textbox/textbox.component.d.ts +1 -1
  361. package/textbox-icon/textbox-icon.component.d.ts +1 -1
  362. package/top-bar/top-bar.component.d.ts +1 -1
  363. package/esm2020/address/address.component.mjs +0 -109
  364. package/esm2020/bread-crumbs/bread-crumbs.component.mjs +0 -85
  365. package/esm2020/bread-crumbs/bread-crumbs.model.mjs +0 -7
  366. package/esm2020/bread-crumbs/bread-crumbs.module.mjs +0 -50
  367. package/esm2020/button/button.model.mjs +0 -6
  368. package/esm2020/carousel/carousel-item.directive.mjs +0 -33
  369. package/esm2020/carousel/carousel.component.mjs +0 -745
  370. package/esm2020/checkbox/checkbox.component.mjs +0 -177
  371. package/esm2020/checkbox/checkbox.module.mjs +0 -63
  372. package/esm2020/chips/chips.component.mjs +0 -185
  373. package/esm2020/chips/chips.module.mjs +0 -81
  374. package/esm2020/color/color-picker.component.mjs +0 -224
  375. package/esm2020/color/color.component.mjs +0 -90
  376. package/esm2020/color/color.module.mjs +0 -93
  377. package/esm2020/core/common/directives/auto-width.directive.mjs +0 -77
  378. package/esm2020/core/common/directives/base-destroyer.directive.mjs +0 -22
  379. package/esm2020/core/common/directives/button-blur.directive.mjs +0 -24
  380. package/esm2020/core/common/directives/button-loader.directive.mjs +0 -112
  381. package/esm2020/core/common/directives/data-qa.directive.mjs +0 -23
  382. package/esm2020/core/common/directives/div-loader.directive.mjs +0 -61
  383. package/esm2020/core/common/directives/menu-blur.directive.mjs +0 -32
  384. package/esm2020/core/common/directives/prevent-multi-click.directive.mjs +0 -27
  385. package/esm2020/core/common/directives/print.directive.mjs +0 -170
  386. package/esm2020/core/common/model/wapi.model.mjs +0 -157
  387. package/esm2020/core/common/pipes/common-pipes.mjs +0 -177
  388. package/esm2020/core/common/pipes/date-ago.pipe.mjs +0 -46
  389. package/esm2020/core/common/services/addon.service.mjs +0 -227
  390. package/esm2020/core/common/services/color.service.mjs +0 -385
  391. package/esm2020/core/common/services/cookie.service.mjs +0 -153
  392. package/esm2020/core/common/services/data-convertor.service.mjs +0 -122
  393. package/esm2020/core/common/services/file.service.mjs +0 -250
  394. package/esm2020/core/common/services/session.service.mjs +0 -72
  395. package/esm2020/core/common/services/translate.service.mjs +0 -46
  396. package/esm2020/core/common/services/utilities.service.mjs +0 -301
  397. package/esm2020/core/common/services/validator.service.mjs +0 -272
  398. package/esm2020/core/common/services/window-scrolling.service.mjs +0 -36
  399. package/esm2020/core/customization/customization.model.mjs +0 -338
  400. package/esm2020/core/customization/customization.service.mjs +0 -799
  401. package/esm2020/core/http/interceptors/loader.interceptor.mjs +0 -32
  402. package/esm2020/core/http/services/http.service.mjs +0 -155
  403. package/esm2020/core/layout/layout.service.mjs +0 -168
  404. package/esm2020/core/layout/rtl.directive.mjs +0 -44
  405. package/esm2020/core/portal/attach.directive.mjs +0 -27
  406. package/esm2020/core/portal/portal.service.mjs +0 -36
  407. package/esm2020/core/portal/target.directive.mjs +0 -24
  408. package/esm2020/date/date.component.mjs +0 -334
  409. package/esm2020/date/date.module.mjs +0 -88
  410. package/esm2020/dialog/default-dialog.component.mjs +0 -37
  411. package/esm2020/dialog/dialog.component.mjs +0 -36
  412. package/esm2020/dialog/dialog.model.mjs +0 -33
  413. package/esm2020/dialog/dialog.module.mjs +0 -59
  414. package/esm2020/dialog/dialog.service.mjs +0 -103
  415. package/esm2020/draggable-items/draggable-item/draggable-item.component.mjs +0 -67
  416. package/esm2020/draggable-items/draggable-items.component.mjs +0 -94
  417. package/esm2020/draggable-items/draggable-items.module.mjs +0 -64
  418. package/esm2020/field-title/field-title.component.mjs +0 -48
  419. package/esm2020/field-title/field-title.module.mjs +0 -47
  420. package/esm2020/files-uploader/files-uploader.module.mjs +0 -79
  421. package/esm2020/form/field-generator.component.mjs +0 -152
  422. package/esm2020/form/form.component.mjs +0 -1240
  423. package/esm2020/form/form.module.mjs +0 -179
  424. package/esm2020/form/indicators.component.mjs +0 -23
  425. package/esm2020/form/internal-button.component.mjs +0 -184
  426. package/esm2020/form/internal-carusel.component.mjs +0 -121
  427. package/esm2020/form/internal-carusel.service.mjs +0 -32
  428. package/esm2020/form/internal-field-generator.component.mjs +0 -146
  429. package/esm2020/form/internal-form.component.mjs +0 -1218
  430. package/esm2020/form/internal-list.component.mjs +0 -513
  431. package/esm2020/form/internal-menu.component.mjs +0 -64
  432. package/esm2020/form/internal-page.component.mjs +0 -361
  433. package/esm2020/form/internal-page.service.mjs +0 -120
  434. package/esm2020/group-buttons/group-buttons.component.mjs +0 -71
  435. package/esm2020/group-buttons/group-buttons.module.mjs +0 -59
  436. package/esm2020/icon/icon-registry.service.mjs +0 -26
  437. package/esm2020/icon/icon.component.mjs +0 -91
  438. package/esm2020/icon/icon.service.mjs +0 -31
  439. package/esm2020/image/image.module.mjs +0 -74
  440. package/esm2020/image/image.service.mjs +0 -50
  441. package/esm2020/images-filmstrip/images-filmstrip.component.mjs +0 -338
  442. package/esm2020/images-filmstrip/images-filmstrip.module.mjs +0 -83
  443. package/esm2020/link/link.component.mjs +0 -315
  444. package/esm2020/link/link.module.mjs +0 -80
  445. package/esm2020/list/list-actions.component.mjs +0 -44
  446. package/esm2020/list/list-carousel.component.mjs +0 -107
  447. package/esm2020/list/list-chooser.component.mjs +0 -64
  448. package/esm2020/list/list-pager.component.mjs +0 -120
  449. package/esm2020/list/list-total.component.mjs +0 -33
  450. package/esm2020/list/list-views.component.mjs +0 -85
  451. package/esm2020/list/list.component.mjs +0 -1382
  452. package/esm2020/list/list.module.mjs +0 -144
  453. package/esm2020/list/list.pipes.mjs +0 -47
  454. package/esm2020/list/virtual-scroller.mjs +0 -1080
  455. package/esm2020/menu/menu-item.component.mjs +0 -115
  456. package/esm2020/menu/menu.component.mjs +0 -216
  457. package/esm2020/menu/menu.model.mjs +0 -20
  458. package/esm2020/menu/menu.module.mjs +0 -59
  459. package/esm2020/page-layout/page-layout.component.mjs +0 -35
  460. package/esm2020/profile-data-views-list/profile-data-view/profile-data-view.component.mjs +0 -45
  461. package/esm2020/profile-data-views-list/profile-data-views-card/profile-data-views-card.component.mjs +0 -81
  462. package/esm2020/profile-data-views-list/profile-data-views-list.component.mjs +0 -127
  463. package/esm2020/profile-data-views-list/profile-data-views-list.module.mjs +0 -88
  464. package/esm2020/quantity-selector/quantity-selector-validation.directive.mjs +0 -49
  465. package/esm2020/quantity-selector/quantity-selector.module.mjs +0 -82
  466. package/esm2020/query-builder/common/model/type-map.mjs +0 -27
  467. package/esm2020/query-builder/common/services/output-query.service.mjs +0 -116
  468. package/esm2020/query-builder/common/services/query-structure.service.mjs +0 -258
  469. package/esm2020/query-builder/common/services/type-convertor.service.mjs +0 -42
  470. package/esm2020/query-builder/query-builder-item/query-builder-item.component.mjs +0 -127
  471. package/esm2020/query-builder/query-builder-section/query-builder-section.component.mjs +0 -71
  472. package/esm2020/query-builder/query-builder.component.mjs +0 -110
  473. package/esm2020/query-builder/query-builder.module.mjs +0 -70
  474. package/esm2020/remote-loader/addon-block-loader.component.mjs +0 -112
  475. package/esm2020/remote-loader/addon-block-loader.service.mjs +0 -65
  476. package/esm2020/remote-loader/remote-loader-element.component.mjs +0 -171
  477. package/esm2020/remote-loader/remote-loader.component.mjs +0 -115
  478. package/esm2020/remote-loader/remote-loader.service.mjs +0 -104
  479. package/esm2020/rich-html-textarea/rich-html-textarea.module.mjs +0 -95
  480. package/esm2020/search/search.component.mjs +0 -317
  481. package/esm2020/search/search.module.mjs +0 -70
  482. package/esm2020/select/select.component.mjs +0 -334
  483. package/esm2020/select/select.module.mjs +0 -70
  484. package/esm2020/select-panel/select-panel.component.mjs +0 -157
  485. package/esm2020/separator/separator.component.mjs +0 -63
  486. package/esm2020/side-bar/side-bar.component.mjs +0 -136
  487. package/esm2020/side-bar/side-bar.module.mjs +0 -55
  488. package/esm2020/signature/signature-dialog.component.mjs +0 -79
  489. package/esm2020/signature/signature.module.mjs +0 -91
  490. package/esm2020/size-detector/size-detector.component.mjs +0 -94
  491. package/esm2020/skeleton-loader/skeleton-loader.component.mjs +0 -44
  492. package/esm2020/slider/slider.component.mjs +0 -101
  493. package/esm2020/smart-filters/boolean-filter/boolean-filter.component.mjs +0 -75
  494. package/esm2020/smart-filters/common/filter-actions.component.mjs +0 -29
  495. package/esm2020/smart-filters/common/model/base-filter-component.mjs +0 -290
  496. package/esm2020/smart-filters/common/model/field.mjs +0 -117
  497. package/esm2020/smart-filters/common/model/operator.mjs +0 -280
  498. package/esm2020/smart-filters/date-filter/date-filter.component.mjs +0 -182
  499. package/esm2020/smart-filters/multi-select-filter/multi-select-filter.component.mjs +0 -200
  500. package/esm2020/smart-filters/number-filter/number-filter.component.mjs +0 -136
  501. package/esm2020/smart-filters/smart-filters.component.mjs +0 -141
  502. package/esm2020/smart-filters/smart-filters.module.mjs +0 -158
  503. package/esm2020/smart-filters/text-filter/text-filter.component.mjs +0 -113
  504. package/esm2020/snack-bar/default-snack-bar.component.mjs +0 -29
  505. package/esm2020/snack-bar/snack-bar.component.mjs +0 -26
  506. package/esm2020/snack-bar/snack-bar.model.mjs +0 -7
  507. package/esm2020/snack-bar/snack-bar.module.mjs +0 -63
  508. package/esm2020/snack-bar/snack-bar.service.mjs +0 -60
  509. package/esm2020/textarea/textarea.module.mjs +0 -82
  510. package/esm2020/textbox/textbox-validation.directive.mjs +0 -93
  511. package/esm2020/textbox/textbox.component.mjs +0 -638
  512. package/esm2020/textbox/textbox.module.mjs +0 -72
  513. package/esm2020/textbox-icon/textbox-icon.component.mjs +0 -48
  514. package/esm2020/textbox-icon/textbox-icon.module.mjs +0 -64
  515. package/esm2020/top-bar/top-bar.component.mjs +0 -112
  516. package/esm2020/top-bar/top-bar.module.mjs +0 -62
  517. package/fesm2015/pepperi-addons-ngx-lib-address.mjs +0 -170
  518. package/fesm2015/pepperi-addons-ngx-lib-address.mjs.map +0 -1
  519. package/fesm2015/pepperi-addons-ngx-lib-attachment.mjs +0 -306
  520. package/fesm2015/pepperi-addons-ngx-lib-attachment.mjs.map +0 -1
  521. package/fesm2015/pepperi-addons-ngx-lib-bread-crumbs.mjs +0 -147
  522. package/fesm2015/pepperi-addons-ngx-lib-bread-crumbs.mjs.map +0 -1
  523. package/fesm2015/pepperi-addons-ngx-lib-button.mjs +0 -197
  524. package/fesm2015/pepperi-addons-ngx-lib-button.mjs.map +0 -1
  525. package/fesm2015/pepperi-addons-ngx-lib-carousel.mjs +0 -804
  526. package/fesm2015/pepperi-addons-ngx-lib-carousel.mjs.map +0 -1
  527. package/fesm2015/pepperi-addons-ngx-lib-checkbox.mjs +0 -246
  528. package/fesm2015/pepperi-addons-ngx-lib-checkbox.mjs.map +0 -1
  529. package/fesm2015/pepperi-addons-ngx-lib-chips.mjs +0 -306
  530. package/fesm2015/pepperi-addons-ngx-lib-chips.mjs.map +0 -1
  531. package/fesm2015/pepperi-addons-ngx-lib-color.mjs +0 -404
  532. package/fesm2015/pepperi-addons-ngx-lib-color.mjs.map +0 -1
  533. package/fesm2015/pepperi-addons-ngx-lib-date.mjs +0 -481
  534. package/fesm2015/pepperi-addons-ngx-lib-date.mjs.map +0 -1
  535. package/fesm2015/pepperi-addons-ngx-lib-dialog.mjs +0 -263
  536. package/fesm2015/pepperi-addons-ngx-lib-dialog.mjs.map +0 -1
  537. package/fesm2015/pepperi-addons-ngx-lib-draggable-items.mjs +0 -227
  538. package/fesm2015/pepperi-addons-ngx-lib-draggable-items.mjs.map +0 -1
  539. package/fesm2015/pepperi-addons-ngx-lib-field-title.mjs +0 -102
  540. package/fesm2015/pepperi-addons-ngx-lib-field-title.mjs.map +0 -1
  541. package/fesm2015/pepperi-addons-ngx-lib-files-uploader.mjs +0 -331
  542. package/fesm2015/pepperi-addons-ngx-lib-files-uploader.mjs.map +0 -1
  543. package/fesm2015/pepperi-addons-ngx-lib-form.mjs +0 -4232
  544. package/fesm2015/pepperi-addons-ngx-lib-group-buttons.mjs +0 -136
  545. package/fesm2015/pepperi-addons-ngx-lib-group-buttons.mjs.map +0 -1
  546. package/fesm2015/pepperi-addons-ngx-lib-icon.mjs +0 -741
  547. package/fesm2015/pepperi-addons-ngx-lib-image.mjs +0 -397
  548. package/fesm2015/pepperi-addons-ngx-lib-image.mjs.map +0 -1
  549. package/fesm2015/pepperi-addons-ngx-lib-images-filmstrip.mjs +0 -426
  550. package/fesm2015/pepperi-addons-ngx-lib-images-filmstrip.mjs.map +0 -1
  551. package/fesm2015/pepperi-addons-ngx-lib-link.mjs +0 -414
  552. package/fesm2015/pepperi-addons-ngx-lib-link.mjs.map +0 -1
  553. package/fesm2015/pepperi-addons-ngx-lib-list.mjs +0 -3131
  554. package/fesm2015/pepperi-addons-ngx-lib-list.mjs.map +0 -1
  555. package/fesm2015/pepperi-addons-ngx-lib-menu.mjs +0 -403
  556. package/fesm2015/pepperi-addons-ngx-lib-page-layout.mjs.map +0 -1
  557. package/fesm2015/pepperi-addons-ngx-lib-profile-data-views-list.mjs +0 -337
  558. package/fesm2015/pepperi-addons-ngx-lib-profile-data-views-list.mjs.map +0 -1
  559. package/fesm2015/pepperi-addons-ngx-lib-quantity-selector.mjs +0 -741
  560. package/fesm2015/pepperi-addons-ngx-lib-query-builder.mjs +0 -1226
  561. package/fesm2015/pepperi-addons-ngx-lib-query-builder.mjs.map +0 -1
  562. package/fesm2015/pepperi-addons-ngx-lib-remote-loader.mjs +0 -644
  563. package/fesm2015/pepperi-addons-ngx-lib-remote-loader.mjs.map +0 -1
  564. package/fesm2015/pepperi-addons-ngx-lib-rich-html-textarea.mjs +0 -363
  565. package/fesm2015/pepperi-addons-ngx-lib-rich-html-textarea.mjs.map +0 -1
  566. package/fesm2015/pepperi-addons-ngx-lib-search.mjs +0 -393
  567. package/fesm2015/pepperi-addons-ngx-lib-search.mjs.map +0 -1
  568. package/fesm2015/pepperi-addons-ngx-lib-select-panel.mjs +0 -235
  569. package/fesm2015/pepperi-addons-ngx-lib-select-panel.mjs.map +0 -1
  570. package/fesm2015/pepperi-addons-ngx-lib-select.mjs +0 -410
  571. package/fesm2015/pepperi-addons-ngx-lib-select.mjs.map +0 -1
  572. package/fesm2015/pepperi-addons-ngx-lib-separator.mjs +0 -89
  573. package/fesm2015/pepperi-addons-ngx-lib-separator.mjs.map +0 -1
  574. package/fesm2015/pepperi-addons-ngx-lib-side-bar.mjs +0 -196
  575. package/fesm2015/pepperi-addons-ngx-lib-side-bar.mjs.map +0 -1
  576. package/fesm2015/pepperi-addons-ngx-lib-signature.mjs +0 -464
  577. package/fesm2015/pepperi-addons-ngx-lib-signature.mjs.map +0 -1
  578. package/fesm2015/pepperi-addons-ngx-lib-size-detector.mjs +0 -136
  579. package/fesm2015/pepperi-addons-ngx-lib-size-detector.mjs.map +0 -1
  580. package/fesm2015/pepperi-addons-ngx-lib-skeleton-loader.mjs +0 -78
  581. package/fesm2015/pepperi-addons-ngx-lib-slider.mjs +0 -151
  582. package/fesm2015/pepperi-addons-ngx-lib-slider.mjs.map +0 -1
  583. package/fesm2015/pepperi-addons-ngx-lib-smart-filters.mjs +0 -1731
  584. package/fesm2015/pepperi-addons-ngx-lib-smart-filters.mjs.map +0 -1
  585. package/fesm2015/pepperi-addons-ngx-lib-snack-bar.mjs +0 -183
  586. package/fesm2015/pepperi-addons-ngx-lib-snack-bar.mjs.map +0 -1
  587. package/fesm2015/pepperi-addons-ngx-lib-textarea.mjs +0 -286
  588. package/fesm2015/pepperi-addons-ngx-lib-textbox-icon.mjs +0 -118
  589. package/fesm2015/pepperi-addons-ngx-lib-textbox-icon.mjs.map +0 -1
  590. package/fesm2015/pepperi-addons-ngx-lib-textbox.mjs +0 -806
  591. package/fesm2015/pepperi-addons-ngx-lib-textbox.mjs.map +0 -1
  592. package/fesm2015/pepperi-addons-ngx-lib-top-bar.mjs +0 -180
  593. package/fesm2015/pepperi-addons-ngx-lib-top-bar.mjs.map +0 -1
  594. package/fesm2015/pepperi-addons-ngx-lib.mjs +0 -4995
  595. package/fesm2015/pepperi-addons-ngx-lib.mjs.map +0 -1
  596. package/fesm2020/pepperi-addons-ngx-lib-address.mjs +0 -170
  597. package/fesm2020/pepperi-addons-ngx-lib-button.mjs +0 -197
  598. package/fesm2020/pepperi-addons-ngx-lib-chips.mjs +0 -305
  599. package/fesm2020/pepperi-addons-ngx-lib-draggable-items.mjs +0 -226
  600. package/fesm2020/pepperi-addons-ngx-lib-field-title.mjs +0 -102
  601. package/fesm2020/pepperi-addons-ngx-lib-files-uploader.mjs.map +0 -1
  602. package/fesm2020/pepperi-addons-ngx-lib-form.mjs.map +0 -1
  603. package/fesm2020/pepperi-addons-ngx-lib-icon.mjs.map +0 -1
  604. package/fesm2020/pepperi-addons-ngx-lib-images-filmstrip.mjs.map +0 -1
  605. package/fesm2020/pepperi-addons-ngx-lib-menu.mjs.map +0 -1
  606. package/fesm2020/pepperi-addons-ngx-lib-page-layout.mjs +0 -77
  607. package/fesm2020/pepperi-addons-ngx-lib-quantity-selector.mjs.map +0 -1
  608. package/fesm2020/pepperi-addons-ngx-lib-signature.mjs.map +0 -1
  609. package/fesm2020/pepperi-addons-ngx-lib-size-detector.mjs +0 -136
  610. package/fesm2020/pepperi-addons-ngx-lib-skeleton-loader.mjs +0 -76
  611. package/fesm2020/pepperi-addons-ngx-lib-skeleton-loader.mjs.map +0 -1
  612. package/fesm2020/pepperi-addons-ngx-lib-slider.mjs +0 -150
  613. package/fesm2020/pepperi-addons-ngx-lib-slider.mjs.map +0 -1
  614. package/fesm2020/pepperi-addons-ngx-lib-textarea.mjs.map +0 -1
  615. /package/{esm2020 → esm2022}/address/pepperi-addons-ngx-lib-address.mjs +0 -0
  616. /package/{esm2020 → esm2022}/address/public-api.mjs +0 -0
  617. /package/{esm2020 → esm2022}/attachment/pepperi-addons-ngx-lib-attachment.mjs +0 -0
  618. /package/{esm2020 → esm2022}/attachment/public-api.mjs +0 -0
  619. /package/{esm2020 → esm2022}/bread-crumbs/pepperi-addons-ngx-lib-bread-crumbs.mjs +0 -0
  620. /package/{esm2020 → esm2022}/bread-crumbs/public-api.mjs +0 -0
  621. /package/{esm2020 → esm2022}/button/pepperi-addons-ngx-lib-button.mjs +0 -0
  622. /package/{esm2020 → esm2022}/button/public-api.mjs +0 -0
  623. /package/{esm2020 → esm2022}/carousel/pepperi-addons-ngx-lib-carousel.mjs +0 -0
  624. /package/{esm2020 → esm2022}/carousel/public-api.mjs +0 -0
  625. /package/{esm2020 → esm2022}/checkbox/pepperi-addons-ngx-lib-checkbox.mjs +0 -0
  626. /package/{esm2020 → esm2022}/checkbox/public-api.mjs +0 -0
  627. /package/{esm2020 → esm2022}/chips/chips.model.mjs +0 -0
  628. /package/{esm2020 → esm2022}/chips/pepperi-addons-ngx-lib-chips.mjs +0 -0
  629. /package/{esm2020 → esm2022}/chips/public-api.mjs +0 -0
  630. /package/{esm2020 → esm2022}/color/color.model.mjs +0 -0
  631. /package/{esm2020 → esm2022}/color/pepperi-addons-ngx-lib-color.mjs +0 -0
  632. /package/{esm2020 → esm2022}/color/public-api.mjs +0 -0
  633. /package/{esm2020 → esm2022}/core/clipboard/index.mjs +0 -0
  634. /package/{esm2020 → esm2022}/core/clipboard/public-api.mjs +0 -0
  635. /package/{esm2020 → esm2022}/core/common/directives/index.mjs +0 -0
  636. /package/{esm2020 → esm2022}/core/common/directives/public-api.mjs +0 -0
  637. /package/{esm2020 → esm2022}/core/common/index.mjs +0 -0
  638. /package/{esm2020 → esm2022}/core/common/model/index.mjs +0 -0
  639. /package/{esm2020 → esm2022}/core/common/model/papi.model.mjs +0 -0
  640. /package/{esm2020 → esm2022}/core/common/model/public-api.mjs +0 -0
  641. /package/{esm2020 → esm2022}/core/common/model/utilities.model.mjs +0 -0
  642. /package/{esm2020 → esm2022}/core/common/pipes/index.mjs +0 -0
  643. /package/{esm2020 → esm2022}/core/common/pipes/public-api.mjs +0 -0
  644. /package/{esm2020 → esm2022}/core/common/public-api.mjs +0 -0
  645. /package/{esm2020 → esm2022}/core/common/services/index.mjs +0 -0
  646. /package/{esm2020 → esm2022}/core/common/services/public-api.mjs +0 -0
  647. /package/{esm2020 → esm2022}/core/customization/index.mjs +0 -0
  648. /package/{esm2020 → esm2022}/core/customization/public-api.mjs +0 -0
  649. /package/{esm2020 → esm2022}/core/http/index.mjs +0 -0
  650. /package/{esm2020 → esm2022}/core/http/interceptors/index.mjs +0 -0
  651. /package/{esm2020 → esm2022}/core/http/public-api.mjs +0 -0
  652. /package/{esm2020 → esm2022}/core/index.mjs +0 -0
  653. /package/{esm2020 → esm2022}/core/layout/index.mjs +0 -0
  654. /package/{esm2020 → esm2022}/core/layout/public-api.mjs +0 -0
  655. /package/{esm2020 → esm2022}/core/portal/index.mjs +0 -0
  656. /package/{esm2020 → esm2022}/core/portal/public-api.mjs +0 -0
  657. /package/{esm2020 → esm2022}/core/public-api.mjs +0 -0
  658. /package/{esm2020 → esm2022}/core/scroll-to/index.mjs +0 -0
  659. /package/{esm2020 → esm2022}/core/scroll-to/public-api.mjs +0 -0
  660. /package/{esm2020 → esm2022}/date/pepperi-addons-ngx-lib-date.mjs +0 -0
  661. /package/{esm2020 → esm2022}/date/public-api.mjs +0 -0
  662. /package/{esm2020 → esm2022}/dialog/pepperi-addons-ngx-lib-dialog.mjs +0 -0
  663. /package/{esm2020 → esm2022}/dialog/public-api.mjs +0 -0
  664. /package/{esm2020 → esm2022}/draggable-items/draggable-items.model.mjs +0 -0
  665. /package/{esm2020 → esm2022}/draggable-items/pepperi-addons-ngx-lib-draggable-items.mjs +0 -0
  666. /package/{esm2020 → esm2022}/draggable-items/public-api.mjs +0 -0
  667. /package/{esm2020 → esm2022}/field-title/pepperi-addons-ngx-lib-field-title.mjs +0 -0
  668. /package/{esm2020 → esm2022}/field-title/public-api.mjs +0 -0
  669. /package/{esm2020 → esm2022}/files-uploader/pepperi-addons-ngx-lib-files-uploader.mjs +0 -0
  670. /package/{esm2020 → esm2022}/files-uploader/public-api.mjs +0 -0
  671. /package/{esm2020 → esm2022}/form/form.model.mjs +0 -0
  672. /package/{esm2020 → esm2022}/form/pepperi-addons-ngx-lib-form.mjs +0 -0
  673. /package/{esm2020 → esm2022}/form/public-api.mjs +0 -0
  674. /package/{esm2020 → esm2022}/group-buttons/pepperi-addons-ngx-lib-group-buttons.mjs +0 -0
  675. /package/{esm2020 → esm2022}/group-buttons/public-api.mjs +0 -0
  676. /package/{esm2020 → esm2022}/icon/icon-generated-all.model.mjs +0 -0
  677. /package/{esm2020 → esm2022}/icon/icon-generated.model.mjs +0 -0
  678. /package/{esm2020 → esm2022}/icon/pepperi-addons-ngx-lib-icon.mjs +0 -0
  679. /package/{esm2020 → esm2022}/icon/public-api.mjs +0 -0
  680. /package/{esm2020 → esm2022}/image/pepperi-addons-ngx-lib-image.mjs +0 -0
  681. /package/{esm2020 → esm2022}/image/public-api.mjs +0 -0
  682. /package/{esm2020 → esm2022}/images-filmstrip/pepperi-addons-ngx-lib-images-filmstrip.mjs +0 -0
  683. /package/{esm2020 → esm2022}/images-filmstrip/public-api.mjs +0 -0
  684. /package/{esm2020 → esm2022}/link/pepperi-addons-ngx-lib-link.mjs +0 -0
  685. /package/{esm2020 → esm2022}/link/public-api.mjs +0 -0
  686. /package/{esm2020 → esm2022}/list/pepperi-addons-ngx-lib-list.mjs +0 -0
  687. /package/{esm2020 → esm2022}/list/public-api.mjs +0 -0
  688. /package/{esm2020 → esm2022}/menu/pepperi-addons-ngx-lib-menu.mjs +0 -0
  689. /package/{esm2020 → esm2022}/menu/public-api.mjs +0 -0
  690. /package/{esm2020 → esm2022}/page-layout/pepperi-addons-ngx-lib-page-layout.mjs +0 -0
  691. /package/{esm2020 → esm2022}/page-layout/public-api.mjs +0 -0
  692. /package/{esm2020 → esm2022}/pepperi-addons-ngx-lib.mjs +0 -0
  693. /package/{esm2020 → esm2022}/profile-data-views-list/pepperi-addons-ngx-lib-profile-data-views-list.mjs +0 -0
  694. /package/{esm2020 → esm2022}/profile-data-views-list/profile-data-views-list.model.mjs +0 -0
  695. /package/{esm2020 → esm2022}/profile-data-views-list/public-api.mjs +0 -0
  696. /package/{esm2020 → esm2022}/public-api.mjs +0 -0
  697. /package/{esm2020 → esm2022}/quantity-selector/pepperi-addons-ngx-lib-quantity-selector.mjs +0 -0
  698. /package/{esm2020 → esm2022}/quantity-selector/public-api.mjs +0 -0
  699. /package/{esm2020 → esm2022}/query-builder/common/model/field.mjs +0 -0
  700. /package/{esm2020 → esm2022}/query-builder/common/model/filter.mjs +0 -0
  701. /package/{esm2020 → esm2022}/query-builder/common/model/legacy.mjs +0 -0
  702. /package/{esm2020 → esm2022}/query-builder/common/model/operator-unit.mjs +0 -0
  703. /package/{esm2020 → esm2022}/query-builder/common/model/operator.mjs +0 -0
  704. /package/{esm2020 → esm2022}/query-builder/common/model/structure.mjs +0 -0
  705. /package/{esm2020 → esm2022}/query-builder/common/model/type.mjs +0 -0
  706. /package/{esm2020 → esm2022}/query-builder/pepperi-addons-ngx-lib-query-builder.mjs +0 -0
  707. /package/{esm2020 → esm2022}/query-builder/public-api.mjs +0 -0
  708. /package/{esm2020 → esm2022}/remote-loader/pepperi-addons-ngx-lib-remote-loader.mjs +0 -0
  709. /package/{esm2020 → esm2022}/remote-loader/public-api.mjs +0 -0
  710. /package/{esm2020 → esm2022}/remote-loader/remote-loader.model.mjs +0 -0
  711. /package/{esm2020 → esm2022}/rich-html-textarea/pepperi-addons-ngx-lib-rich-html-textarea.mjs +0 -0
  712. /package/{esm2020 → esm2022}/rich-html-textarea/public-api.mjs +0 -0
  713. /package/{esm2020 → esm2022}/search/pepperi-addons-ngx-lib-search.mjs +0 -0
  714. /package/{esm2020 → esm2022}/search/public-api.mjs +0 -0
  715. /package/{esm2020 → esm2022}/search/search.model.mjs +0 -0
  716. /package/{esm2020 → esm2022}/select/pepperi-addons-ngx-lib-select.mjs +0 -0
  717. /package/{esm2020 → esm2022}/select/public-api.mjs +0 -0
  718. /package/{esm2020 → esm2022}/select-panel/pepperi-addons-ngx-lib-select-panel.mjs +0 -0
  719. /package/{esm2020 → esm2022}/select-panel/public-api.mjs +0 -0
  720. /package/{esm2020 → esm2022}/select-panel/select-panel.model.mjs +0 -0
  721. /package/{esm2020 → esm2022}/separator/pepperi-addons-ngx-lib-separator.mjs +0 -0
  722. /package/{esm2020 → esm2022}/separator/public-api.mjs +0 -0
  723. /package/{esm2020 → esm2022}/side-bar/pepperi-addons-ngx-lib-side-bar.mjs +0 -0
  724. /package/{esm2020 → esm2022}/side-bar/public-api.mjs +0 -0
  725. /package/{esm2020 → esm2022}/side-bar/side-bar.model.mjs +0 -0
  726. /package/{esm2020 → esm2022}/signature/pepperi-addons-ngx-lib-signature.mjs +0 -0
  727. /package/{esm2020 → esm2022}/signature/public-api.mjs +0 -0
  728. /package/{esm2020 → esm2022}/size-detector/pepperi-addons-ngx-lib-size-detector.mjs +0 -0
  729. /package/{esm2020 → esm2022}/size-detector/public-api.mjs +0 -0
  730. /package/{esm2020 → esm2022}/skeleton-loader/pepperi-addons-ngx-lib-skeleton-loader.mjs +0 -0
  731. /package/{esm2020 → esm2022}/skeleton-loader/public-api.mjs +0 -0
  732. /package/{esm2020 → esm2022}/slider/pepperi-addons-ngx-lib-slider.mjs +0 -0
  733. /package/{esm2020 → esm2022}/slider/public-api.mjs +0 -0
  734. /package/{esm2020 → esm2022}/smart-filters/common/model/creator.mjs +0 -0
  735. /package/{esm2020 → esm2022}/smart-filters/common/model/filter.mjs +0 -0
  736. /package/{esm2020 → esm2022}/smart-filters/common/model/type.mjs +0 -0
  737. /package/{esm2020 → esm2022}/smart-filters/pepperi-addons-ngx-lib-smart-filters.mjs +0 -0
  738. /package/{esm2020 → esm2022}/smart-filters/public-api.mjs +0 -0
  739. /package/{esm2020 → esm2022}/snack-bar/pepperi-addons-ngx-lib-snack-bar.mjs +0 -0
  740. /package/{esm2020 → esm2022}/snack-bar/public-api.mjs +0 -0
  741. /package/{esm2020 → esm2022}/textarea/pepperi-addons-ngx-lib-textarea.mjs +0 -0
  742. /package/{esm2020 → esm2022}/textarea/public-api.mjs +0 -0
  743. /package/{esm2020 → esm2022}/textbox/pepperi-addons-ngx-lib-textbox.mjs +0 -0
  744. /package/{esm2020 → esm2022}/textbox/public-api.mjs +0 -0
  745. /package/{esm2020 → esm2022}/textbox-icon/pepperi-addons-ngx-lib-textbox-icon.mjs +0 -0
  746. /package/{esm2020 → esm2022}/textbox-icon/public-api.mjs +0 -0
  747. /package/{esm2020 → esm2022}/top-bar/pepperi-addons-ngx-lib-top-bar.mjs +0 -0
  748. /package/{esm2020 → esm2022}/top-bar/public-api.mjs +0 -0
  749. /package/{esm2020 → esm2022}/top-bar/top-bar.model.mjs +0 -0
@@ -19,6 +19,21 @@ import * as i14 from "@pepperi-addons/ngx-lib/field-title";
19
19
  import * as i15 from "@pepperi-addons/ngx-lib/textbox-icon";
20
20
  import * as i16 from "@ngx-translate/core";
21
21
  export class PepRichHtmlTextareaComponent {
22
+ sanitizer;
23
+ dialogService;
24
+ customizationService;
25
+ renderer;
26
+ element;
27
+ key = '';
28
+ value = '';
29
+ label = '';
30
+ mandatory = false;
31
+ disabled = false;
32
+ readonly = false;
33
+ maxFieldCharacters;
34
+ xAlignment = DEFAULT_HORIZONTAL_ALIGNMENT;
35
+ sanitize = true;
36
+ _rowSpan = 1;
22
37
  set rowSpan(value) {
23
38
  this._rowSpan = value;
24
39
  this.setFieldHeight();
@@ -26,6 +41,7 @@ export class PepRichHtmlTextareaComponent {
26
41
  get rowSpan() {
27
42
  return this._rowSpan;
28
43
  }
44
+ _visible = true;
29
45
  set visible(visible) {
30
46
  this._visible = visible;
31
47
  if (visible) {
@@ -38,6 +54,13 @@ export class PepRichHtmlTextareaComponent {
38
54
  get visible() {
39
55
  return this._visible;
40
56
  }
57
+ controlType = 'richhtmltextarea';
58
+ form = null;
59
+ isActive = false;
60
+ showTitle = true;
61
+ renderTitle = true;
62
+ renderEnlargeButton = true;
63
+ _layoutType = 'form';
41
64
  set layoutType(value) {
42
65
  this._layoutType = value;
43
66
  this.setFieldHeight();
@@ -45,6 +68,8 @@ export class PepRichHtmlTextareaComponent {
45
68
  get layoutType() {
46
69
  return this._layoutType;
47
70
  }
71
+ inlineMode = false;
72
+ _toolbarOptions;
48
73
  get toolbarOptions() {
49
74
  return this._toolbarOptions;
50
75
  }
@@ -53,38 +78,21 @@ export class PepRichHtmlTextareaComponent {
53
78
  this._toolbarOptions = options;
54
79
  }
55
80
  }
81
+ valueChange = new EventEmitter();
82
+ editorCreated = new EventEmitter();
83
+ validationChange = new EventEmitter();
84
+ richTextEditorDialogTemplate;
85
+ quillContent = '';
86
+ quillContentDialog = '';
87
+ fieldHeight = '';
88
+ standAlone = false;
89
+ active = false;
56
90
  constructor(sanitizer, dialogService, customizationService, renderer, element) {
57
91
  this.sanitizer = sanitizer;
58
92
  this.dialogService = dialogService;
59
93
  this.customizationService = customizationService;
60
94
  this.renderer = renderer;
61
95
  this.element = element;
62
- this.key = '';
63
- this.value = '';
64
- this.label = '';
65
- this.mandatory = false;
66
- this.disabled = false;
67
- this.readonly = false;
68
- this.xAlignment = DEFAULT_HORIZONTAL_ALIGNMENT;
69
- this.sanitize = true;
70
- this._rowSpan = 1;
71
- this._visible = true;
72
- this.controlType = 'richhtmltextarea';
73
- this.form = null;
74
- this.isActive = false;
75
- this.showTitle = true;
76
- this.renderTitle = true;
77
- this.renderEnlargeButton = true;
78
- this._layoutType = 'form';
79
- this.inlineMode = false;
80
- this.valueChange = new EventEmitter();
81
- this.editorCreated = new EventEmitter();
82
- this.validationChange = new EventEmitter();
83
- this.quillContent = '';
84
- this.quillContentDialog = '';
85
- this.fieldHeight = '';
86
- this.standAlone = false;
87
- this.active = false;
88
96
  this.toolbarOptions = this.getDefaultToolbarOptions();
89
97
  }
90
98
  setFieldHeight() {
@@ -207,10 +215,10 @@ export class PepRichHtmlTextareaComponent {
207
215
  this.active = true;
208
216
  }
209
217
  }
218
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepRichHtmlTextareaComponent, deps: [{ token: i1.DomSanitizer }, { token: i2.PepDialogService }, { token: i3.PepCustomizationService }, { token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
219
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: PepRichHtmlTextareaComponent, selector: "pep-rich-html-textarea", inputs: { key: "key", value: "value", label: "label", mandatory: "mandatory", disabled: "disabled", readonly: "readonly", maxFieldCharacters: "maxFieldCharacters", xAlignment: "xAlignment", sanitize: "sanitize", rowSpan: "rowSpan", visible: "visible", form: "form", isActive: "isActive", showTitle: "showTitle", renderTitle: "renderTitle", renderEnlargeButton: "renderEnlargeButton", layoutType: "layoutType", inlineMode: "inlineMode", toolbarOptions: "toolbarOptions" }, outputs: { valueChange: "valueChange", editorCreated: "editorCreated", validationChange: "validationChange" }, viewQueries: [{ propertyName: "richTextEditorDialogTemplate", first: true, predicate: ["richTextEditorDialogTemplate"], descendants: true, read: TemplateRef }], usesOnChanges: true, ngImport: i0, template: "<ng-container [formGroup]=\"form\">\n <ng-template #pepTemplate let-isFormView=\"isFormView\">\n <div class=\"pep-textarea-container pep-report-textarea\" [ngClass]=\"{ 'stand-alone': standAlone,\n 'right-alignment': xAlignment == 'right', 'one-row': !isFormView && rowSpan === 1,\n 'pep-textarea-card-container': layoutType === 'card'}\">\n <pep-field-title *ngIf=\"renderTitle && isFormView\" [label]=\"label\" [mandatory]=\"mandatory\"\n [disabled]=\"disabled\"\n [maxFieldCharacters]=\"inlineMode && !disabled && !readonly ? maxFieldCharacters : 0\"\n [xAlignment]=\"xAlignment\" [showTitle]=\"showTitle\" [inputLength]=\"quillContent?.length\">\n </pep-field-title>\n <mat-form-field appearance=\"outline\" dir=\"{{ xAlignment == 'right' ? 'rtl' : 'ltr' }}\"\n [ngClass]=\"{ 'pep-table-textarea': layoutType === 'table', 'active': active, 'ignore-disabled': disabled, 'icon-left': xAlignment === 'left' || xAlignment === 'center', 'icon-right': xAlignment === 'right' }\">\n <textarea [hidden]=\"true\" matInput [formControlName]=\"key\"></textarea>\n\n <ng-container *ngIf=\"inlineMode; then inlineBlock; else notInlineBlock\"></ng-container>\n\n <ng-template #inlineBlock>\n <ng-container *ngTemplateOutlet=\"quilTemplate; context: {inDialog: false}\"></ng-container>\n </ng-template>\n <ng-template #notInlineBlock>\n\n <!-- We can use the quill-view-html\n <quill-view-html class=\"body-sm rich-text-cont \"\n [ngStyle]=\"{ 'text-align': xAlignment == 'right' ? 'right' : 'left' }\" [content]=\"value | pepSafeHtml\"\n theme=\"snow\" [style.height]=\"fieldHeight\"></quill-view-html> \n -->\n\n <div class=\"body-sm rich-text-cont \" [ngClass]=\"{'hide-enlarge-button': !renderEnlargeButton}\"\n [ngStyle]=\"{ 'text-align': xAlignment == 'right' ? 'right' : 'left' }\"\n [innerHtml]=\"value | pepSafeHtml\" [style.height]=\"fieldHeight\">\n </div>\n </ng-template>\n <pep-textbox-icon *ngIf=\"renderEnlargeButton\" matSuffix [value]=\"value\" [label]=\"label\"\n [type]=\"controlType\" [disabled]=\"disabled || readonly\"\n [ngClass]=\"{ 'card-one-row-icon': layoutType === 'card' && rowSpan === 1 }\"\n (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n <mat-error>\n <span class=\"body-xs\"\n [title]=\"mandatory && value.length == 0 ? ('MESSAGES.ERROR_IS_REQUIRED' | translate: { field: label }) : ('MESSAGES.ERROR_IS_NOT_VALID' | translate: { field: label })\"\n [innerText]=\"mandatory && value.length == 0 ? ('MESSAGES.ERROR_IS_REQUIRED' | translate: { field: label }) : ('MESSAGES.ERROR_IS_NOT_VALID' | translate: { field: label })\"></span>\n </mat-error>\n\n </mat-form-field>\n </div>\n </ng-template>\n\n <ng-container *ngIf=\"layoutType === 'form'\">\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: true }\"></ng-container>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'card'\">\n <div class=\"pep-textarea-card-container card-flex-container\"\n [ngClass]=\"{'one-row': rowSpan === 1, 'pep-button weak': isActive && !disabled}\"\n [ngStyle]=\"{ '-webkit-line-clamp': rowSpan }\" [class]=\"'text-align-' + xAlignment\"\n (click)=\"!disabled ? cardTemplateClicked($event) : ''\" [style.height]=\"fieldHeight\">\n <span *ngIf=\"showTitle && label != ''\" class=\"body-xs title no-shrink\" title=\"{{ label }}\">{{ label\n }}:&nbsp;</span>\n <span [id]=\"key\" class=\"body-sm value wrap\" style=\"width: 100%;\" [innerHtml]=\"value | pepSafeHtml\"></span>\n <button *ngIf=\"isActive && !disabled\" class=\"pep-button weak card-edit-button self-start\"\n [ngClass]=\"{'self-end' : value && value !== ''}\" mat-button>\n <mat-icon>\n <pep-icon name=\"system_edit\">\n </pep-icon>\n </mat-icon>\n </button>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'table'\">\n <ng-container *ngIf=\"isActive && !disabled; then selectedBlock; else notSelectedBlock\"></ng-container>\n <ng-template #selectedBlock>\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: false }\"></ng-container>\n </ng-template>\n <ng-template #notSelectedBlock>\n <ng-container *ngIf=\"value?.length > 0; then notEmptyBlock; else emptyBlock\"></ng-container>\n <ng-template #notEmptyBlock>\n <div class=\"pep-textarea-card-container card-flex-container one-row\">\n <span [id]=\"key\" class=\"wrap\" [innerHtml]=\"value | pepSafeHtml\"></span>\n </div>\n </ng-template>\n <ng-template #emptyBlock>\n <span>&nbsp;</span>\n </ng-template>\n </ng-template>\n </ng-container>\n</ng-container>\n\n<ng-template #richTextEditorDialogTemplate>\n <div class=\"rich-text-editor-container\">\n <button mat-button [mat-dialog-close]=\"null\" class=\"pep-button icon-button md weak pull-right flip\">\n <mat-icon>\n <pep-icon name=\"system_close\">\n </pep-icon>\n </mat-icon>\n </button>\n <ng-container *ngTemplateOutlet=\"quilTemplate; context: {inDialog: true}\"></ng-container>\n <div mat-dialog-actions class=\" pep-border-top\">\n <div class=\"pep-spacing-element-negative\">\n <button mat-button [mat-dialog-close]=\"null\" class=\"pep-spacing-element pep-button md weak\">\n {{'ACTIONS.CANCEL' | translate}}\n </button>\n <button mat-button [mat-dialog-close]=\"quillContentDialog || ''\" [disabled]=\"disabled\"\n class=\"pep-spacing-element pep-button md strong \">\n {{'ACTIONS.SAVE' | translate}}\n </button>\n </div>\n </div>\n </div>\n</ng-template>\n\n<ng-template #quilTemplate let-inDialog=\"inDialog\">\n <quill-editor id=\"{{inDialog ? 'quill-editor-dialog' : 'quill-editor-inline'}}\"\n [class]=\"inDialog ? 'dialog-quill' : 'inline-quill'\"\n [ngClass]=\"{ 'rich-text-cont': !inDialog, 'hide-enlarge-button': !renderEnlargeButton }\"\n placeholder=\"{{'RICH_TEXTAREA.HINT' | translate}}\" [ngModel]=\"inDialog ? quillContentDialog : quillContent\"\n [sanitize]=\"sanitize\" [readOnly]=\"disabled\" [maxLength]=\"maxFieldCharacters\" [required]=\"mandatory\"\n (onEditorCreated)=\"onEditorCreated($event, inDialog)\" (onContentChanged)=\"onContentChanged($event, inDialog)\"\n (onBlur)=\"onBlur($event, inDialog)\" (onFocus)=\"onFocus($event, inDialog)\" theme=\"\">\n <div *ngIf=\"!disabled\" quill-editor-toolbar>\n <div class=\"pep-spacing-element-negative\">\n <span class=\"ql-formats\">\n <select *ngIf=\"toolbarOptions?.font\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-font select-arrow\">\n <option selected></option>\n <option value=\"serif\"></option>\n <option value=\"monospace\"></option>\n </select>\n <select *ngIf=\"toolbarOptions?.size\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-size select-arrow\">\n <option value=\"small\"></option>\n <option selected></option>\n <option value=\"large\"></option>\n <option value=\"huge\"></option>\n </select>\n </span>\n <span class=\"ql-formats\">\n <select *ngIf=\"toolbarOptions?.header\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-header select-arrow\">\n <option value=\"1\"></option>\n <option value=\"2\"></option>\n <option value=\"3\"></option>\n <!-- \n <option value=\"4\"></option>\n <option value=\"5\"></option>\n <option value=\"6\"></option> \n -->\n <option value=\"false\" selected></option>\n </select>\n </span>\n <!-- <hr class=\"vertical-separator\" /> -->\n <span class=\"ql-formats\">\n <button mat-button *ngIf=\"toolbarOptions?.bold\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-bold\"></button>\n <button mat-button *ngIf=\"toolbarOptions?.italic\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-italic\"></button>\n <button mat-button *ngIf=\"toolbarOptions?.underline\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-underline\"></button>\n <button mat-button *ngIf=\"toolbarOptions?.strike\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-strike\"></button>\n </span>\n <span class=\"ql-formats\">\n <button mat-button *ngIf=\"toolbarOptions?.link\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-link\"></button>\n <button mat-button *ngIf=\"toolbarOptions?.image\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-image\"></button>\n </span>\n <!-- <hr class=\"vertical-separator\" /> -->\n <span class=\"ql-formats\">\n <button mat-button *ngIf=\"toolbarOptions?.ordered\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-list\" value=\"ordered\"></button>\n <button mat-button *ngIf=\"toolbarOptions?.bullet\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-list\" value=\"bullet\"></button>\n </span>\n <!-- <hr class=\"vertical-separator\" /> -->\n <span class=\"ql-formats\">\n <select *ngIf=\"toolbarOptions?.color\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-color\"></select>\n <select *ngIf=\"toolbarOptions?.background\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-background\"></select>\n </span>\n <span class=\"ql-formats\">\n <select *ngIf=\"toolbarOptions?.align\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-align\">\n <option selected></option>\n <option value=\"center\"></option>\n <option value=\"right\"></option>\n <option value=\"justify\"></option>\n </select>\n </span>\n </div>\n </div>\n </quill-editor>\n</ng-template>", styles: [".pepperi-textarea-container,.pep-textarea-container{height:inherit;display:grid;align-items:center}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{display:flex}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix{line-height:unset;width:100%;height:100%;overflow:hidden;display:grid!important}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{margin:0;padding:.5rem 1.5rem .5rem 0;vertical-align:unset;resize:none;width:100%;max-width:unset;overflow-y:scroll;box-sizing:content-box}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-suffix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-prefix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-suffix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-suffix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-prefix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-suffix{align-self:flex-end!important;margin-bottom:.5rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element{padding-top:.35rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix{align-self:center!important;margin-bottom:unset}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button{width:1rem!important;height:1rem!important}.pepperi-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element{padding-top:.135rem!important}.pepperi-textarea-container .rich-text-cont,.pep-textarea-container .rich-text-cont{overflow-x:hidden;display:inline-block;vertical-align:unset;margin:0;padding:.5rem 1.5rem .5rem 0;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container .rich-text-cont.hide-enlarge-button,.pep-textarea-container .rich-text-cont.hide-enlarge-button{padding-inline-end:3rem}.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-container.right-alignment .rich-text-cont,.pep-textarea-container.right-alignment .rich-text-cont{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{padding-left:.5rem;padding-right:.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element{padding:.25rem 1.5rem .5rem 0}.pepperi-textarea-card-container.card-flex-container,.pep-textarea-card-container.card-flex-container{height:inherit;display:flex;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset;padding:.25rem;max-width:100%}.pepperi-textarea-card-container.card-flex-container.one-row .title,.pep-textarea-card-container.card-flex-container.one-row .title{padding-top:.25rem}.pepperi-textarea-card-container.card-flex-container span.value,.pep-textarea-card-container.card-flex-container span.value{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix{line-height:0!important}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element{padding-top:0;padding-bottom:0}.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{padding:.25rem 0 .5rem 1.5rem}.pepperi-report-textarea ::ng-deep .mat-form-field-suffix,.pepperi-report-textarea ::ng-deep .mat-mdc-form-field-suffix,.pep-report-textarea ::ng-deep .mat-form-field-suffix,.pep-report-textarea ::ng-deep .mat-mdc-form-field-suffix{right:0!important}.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{padding:0}:host{height:inherit;display:block}.pepperi-textarea-container ::ng-deep .mat-form-field-infix,.pepperi-textarea-container ::ng-deep .mat-mdc-form-field-infix,.pep-textarea-container ::ng-deep .mat-form-field-infix,.pep-textarea-container ::ng-deep .mat-mdc-form-field-infix{margin-left:calc(var(--pep-spacing-md, .75rem) * -1)}.pepperi-textarea-container ::ng-deep .icon-left .mat-form-field-suffix,.pepperi-textarea-container ::ng-deep .icon-left .mat-mdc-form-field-suffix,.pep-textarea-container ::ng-deep .icon-left .mat-form-field-suffix,.pep-textarea-container ::ng-deep .icon-left .mat-mdc-form-field-suffix{position:absolute;right:1rem!important;bottom:.5rem}.pepperi-textarea-container ::ng-deep .icon-right .mat-form-field-suffix,.pepperi-textarea-container ::ng-deep .icon-right .mat-mdc-form-field-suffix,.pep-textarea-container ::ng-deep .icon-right .mat-form-field-suffix,.pep-textarea-container ::ng-deep .icon-right .mat-mdc-form-field-suffix{position:absolute;right:calc(100% - 2.5rem)!important;bottom:.5rem}.pepperi-textarea-container ::ng-deep .icon-right .ql-toolbar,.pep-textarea-container ::ng-deep .icon-right .ql-toolbar{padding-left:.4rem!important}.pepperi-textarea-container.right-alignment ::ng-deep .mat-form-field-infix,.pepperi-textarea-container.right-alignment ::ng-deep .mat-mdc-form-field-infix,.pep-textarea-container.right-alignment ::ng-deep .mat-form-field-infix,.pep-textarea-container.right-alignment ::ng-deep .mat-mdc-form-field-infix{margin-left:unset;margin-right:calc(var(--pep-spacing-md, .75rem) * -1)}.vertical-separator{display:none}\n", ".pepperi-textarea-container,.pep-textarea-container{height:inherit;display:grid;align-items:center}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{display:flex}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix{line-height:unset;width:100%;height:100%;overflow:hidden;display:grid!important}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{margin:0;padding:.5rem 1.5rem .5rem 0;vertical-align:unset;resize:none;width:100%;max-width:unset;overflow-y:scroll;box-sizing:content-box}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-suffix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-prefix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-suffix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-suffix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-prefix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-suffix{align-self:flex-end!important;margin-bottom:.5rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element{padding-top:.35rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix{align-self:center!important;margin-bottom:unset}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button{width:1rem!important;height:1rem!important}.pepperi-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element{padding-top:.135rem!important}.pepperi-textarea-container .rich-text-cont,.pep-textarea-container .rich-text-cont{overflow-x:hidden;display:inline-block;vertical-align:unset;margin:0;padding:.5rem 1.5rem .5rem 0;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container .rich-text-cont.hide-enlarge-button,.pep-textarea-container .rich-text-cont.hide-enlarge-button{padding-inline-end:3rem}.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-container.right-alignment .rich-text-cont,.pep-textarea-container.right-alignment .rich-text-cont{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{padding-left:.5rem;padding-right:.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element{padding:.25rem 1.5rem .5rem 0}.pepperi-textarea-card-container.card-flex-container,.pep-textarea-card-container.card-flex-container{height:inherit;display:flex;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset;padding:.25rem;max-width:100%}.pepperi-textarea-card-container.card-flex-container.one-row .title,.pep-textarea-card-container.card-flex-container.one-row .title{padding-top:.25rem}.pepperi-textarea-card-container.card-flex-container span.value,.pep-textarea-card-container.card-flex-container span.value{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix{line-height:0!important}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element{padding-top:0;padding-bottom:0}.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{padding:.25rem 0 .5rem 1.5rem}.pepperi-report-textarea ::ng-deep .mat-form-field-suffix,.pepperi-report-textarea ::ng-deep .mat-mdc-form-field-suffix,.pep-report-textarea ::ng-deep .mat-form-field-suffix,.pep-report-textarea ::ng-deep .mat-mdc-form-field-suffix{right:0!important}.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{padding:0}.pepperi-report-textarea ::ng-deep .mat-form-field-flex,.pepperi-report-textarea ::ng-deep .mat-mdc-form-field-flex,.pep-report-textarea ::ng-deep .mat-form-field-flex,.pep-report-textarea ::ng-deep .mat-mdc-form-field-flex{background:transparent!important}.mat-form-field.mat-form-field-disabled ::ng-deep .mat-form-field-flex,.mat-form-field.mat-form-field-disabled ::ng-deep .mat-mdc-form-field-flex,.mat-form-field.mat-mdc-form-field-disabled ::ng-deep .mat-form-field-flex,.mat-form-field.mat-mdc-form-field-disabled ::ng-deep .mat-mdc-form-field-flex,.mat-mdc-form-field.mat-form-field-disabled ::ng-deep .mat-form-field-flex,.mat-mdc-form-field.mat-form-field-disabled ::ng-deep .mat-mdc-form-field-flex,.mat-mdc-form-field.mat-mdc-form-field-disabled ::ng-deep .mat-form-field-flex,.mat-mdc-form-field.mat-mdc-form-field-disabled ::ng-deep .mat-mdc-form-field-flex{color:hsl(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%))}.right-alignment quill-editor.inline-quill::ng-deep .ql-container .ql-editor{padding-right:unset;padding-left:calc(var(--pep-spacing-sm, .5rem) + 1rem)}quill-editor.inline-quill::ng-deep .ql-container .ql-editor{width:calc(100% + 1rem);padding-right:calc(var(--pep-spacing-sm, .5rem) + 1rem)}quill-editor ::ng-deep .ql-toolbar{display:flex;padding:0!important;border:unset}quill-editor ::ng-deep .ql-toolbar .ql-transparent{opacity:.9}quill-editor ::ng-deep .ql-toolbar .ql-formats{margin-right:0!important;margin-bottom:.5rem}quill-editor ::ng-deep .ql-toolbar .ql-formats button{height:2.5rem}quill-editor ::ng-deep .ql-toolbar .ql-formats button svg{width:1.25rem!important;float:unset!important}quill-editor ::ng-deep .ql-toolbar .ql-formats button.ql-active{box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);position:relative}quill-editor ::ng-deep .ql-toolbar .ql-formats button.ql-active:not(.keep-background-on-focus){background:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}quill-editor ::ng-deep .ql-toolbar .ql-formats button.ql-active:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%))}quill-editor ::ng-deep .ql-toolbar .ql-formats button:focus{box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);position:relative}quill-editor ::ng-deep .ql-toolbar .ql-formats button:focus:not(.keep-background-on-focus){background:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}quill-editor ::ng-deep .ql-toolbar .ql-formats button:focus:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%))}quill-editor ::ng-deep .ql-toolbar .ql-formats button:active{box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);position:relative}quill-editor ::ng-deep .ql-toolbar .ql-formats button:active:not(.keep-background-on-focus){background:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}quill-editor ::ng-deep .ql-toolbar .ql-formats button:active:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item{outline:unset!important;width:100%;height:auto;padding:var(--pep-spacing-xs, .25rem) var(--pep-spacing-sm, .5rem);display:grid}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:hover{background:hsla(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%),.16)}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:active{box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);background:hsla(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%),.24)!important}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:active:not(.keep-background-on-focus){background:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:disabled{box-shadow:unset;border:unset}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:disabled:after{border:unset}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:disabled .svg-icon{fill:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.35)}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:disabled .svg-icon.stroke{fill:unset;stroke:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.35)}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:disabled:not(.disabled-no-background-no-color){color:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.35)!important;background:hsla(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%),.04)!important}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker{height:2.5rem}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-color-picker,quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-icon-picker{width:unset}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker .ql-picker-label{outline:none;display:grid;grid-auto-flow:column;align-items:center;line-height:1rem;border:unset}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker .ql-picker-label svg{width:1.5rem}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker .ql-picker-label:after{content:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgaWQ9InN2ZzQiCiAgIHZlcnNpb249IjEuMSIKICAgdmlld0JveD0iMCAwIDI0IDI0IgogICBoZWlnaHQ9IjE2IgogICB3aWR0aD0iMTYiPgogIDxtZXRhZGF0YQogICAgIGlkPSJtZXRhZGF0YTEwIj4KICAgIDxyZGY6UkRGPgogICAgICA8Y2M6V29yawogICAgICAgICByZGY6YWJvdXQ9IiI+CiAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9zdmcreG1sPC9kYzpmb3JtYXQ+CiAgICAgICAgPGRjOnR5cGUKICAgICAgICAgICByZGY6cmVzb3VyY2U9Imh0dHA6Ly9wdXJsLm9yZy9kYy9kY21pdHlwZS9TdGlsbEltYWdlIiAvPgogICAgICA8L2NjOldvcms+CiAgICA8L3JkZjpSREY+CiAgPC9tZXRhZGF0YT4KICA8ZGVmcwogICAgIGlkPSJkZWZzOCIgLz4KICA8cGF0aAogICAgIGlkPSJwYXRoMiIKICAgICBkPSJNNS44MDAzMjE0OCw5LjI4Njc0MzU0IEwxMS4yNTQyODI0LDEzLjIwMjc1ODMgQzExLjY2NjEzMDksMTMuNTg1MDgzIDEyLjMzMzg2OTEsMTMuNTg1MDgzIDEyLjc0NTcxNzYsMTMuMjAyNzU4MyBMMTguMTk5Njc4NSw5LjI4Njc0MzU0IEMxOC42MTE1MjcsOC45MDQ0MTg4MiAxOS4yNzkyNjUyLDguOTA0NDE4ODIgMTkuNjkxMTEzNyw5LjI4Njc0MzU0IEMyMC4xMDI5NjIxLDkuNjY5MDY4MjYgMjAuMTAyOTYyMSwxMC4yODg5MzkxIDE5LjY5MTExMzcsMTAuNjcxMjYzOCBMMTMuNDkxNDM1MSwxNi40MjY1MTI5IEMxMi42Njc3MzgzLDE3LjE5MTE2MjQgMTEuMzMyMjYxNywxNy4xOTExNjI0IDEwLjUwODU2NDksMTYuNDI2NTEyOSBMNC4zMDg4ODYzMywxMC42NzEyNjM4IEMzLjg5NzAzNzg5LDEwLjI4ODkzOTEgMy44OTcwMzc4OSw5LjY2OTA2ODI2IDQuMzA4ODg2MzMsOS4yODY3NDM1NCBDNC43MjA3MzQ3OCw4LjkwNDQxODgyIDUuMzg4NDczMDMsOC45MDQ0MTg4MiA1LjgwMDMyMTQ4LDkuMjg2NzQzNTQgWiIKICAgICBmaWxsLXJ1bGU9ImV2ZW5vZGQiCiAgICAgZmlsbC1vcGFjaXR5PSIuNSIgLz4KPC9zdmc+Cg==);cursor:pointer;display:grid;height:inherit;justify-content:center;align-content:center}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.select-arrow .ql-picker-label:before{line-height:unset}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.select-arrow .ql-picker-label svg{display:none}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker .ql-picker-options{border-radius:var(--pep-border-radius-md, .25rem);box-sizing:content-box;padding:unset;box-shadow:var(--pep-shadow-sm-offset, 0 .25rem .5rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.32);border:1px solid hsl(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-color-picker .ql-picker-options{padding:var(--pep-spacing-xs, .25rem) var(--pep-spacing-sm, .5rem);width:140px}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-color-picker .ql-picker-options:focus{outline:unset!important}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-color-picker .ql-picker-options .ql-picker-item:focus{outline:unset!important}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-expanded{box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);position:relative}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-expanded:not(.keep-background-on-focus){background:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-expanded:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:hsl(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:hsl(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-expanded .ql-picker-label{border:unset}quill-editor ::ng-deep .ql-toolbar .vertical-separator{border-color:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.24)}@media (max-width: 568px){quill-editor ::ng-deep .ql-toolbar .ql-list{display:none}}@media (max-width: 599px){quill-editor ::ng-deep .ql-toolbar .ql-italic,quill-editor ::ng-deep .ql-toolbar .ql-underline{display:none}}@media (max-width: 460px){quill-editor ::ng-deep .ql-toolbar .ql-italic,quill-editor ::ng-deep .ql-toolbar .ql-image,quill-editor ::ng-deep .ql-toolbar .ql-underline,quill-editor ::ng-deep .ql-toolbar .ql-list,quill-editor ::ng-deep .ql-toolbar .ql-header{display:none}}quill-editor ::ng-deep .ql-container{height:16rem;border:unset;border-top:1px solid hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.24)!important}quill-editor ::ng-deep .ql-container .ql-editor{padding:var(--pep-spacing-sm, .5rem) 0}quill-editor ::ng-deep .ql-container .ql-editor.ql-blank:before{right:0;left:0}quill-editor ::ng-deep .ql-container .ql-tooltip.ql-flip{left:0!important}\n"], dependencies: [{ kind: "directive", type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i4.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i5.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i5.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i5.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i5.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i6.Dir, selector: "[dir]", inputs: ["dir"], outputs: ["dirChange"], exportAs: ["dir"] }, { kind: "component", type: i7.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i8.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i8.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "directive", type: i8.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "directive", type: i9.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { kind: "component", type: i10.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i11.MatDialogClose, selector: "[mat-dialog-close], [matDialogClose]", inputs: ["aria-label", "type", "mat-dialog-close", "matDialogClose"], exportAs: ["matDialogClose"] }, { kind: "directive", type: i11.MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "component", type: i12.QuillEditorComponent, selector: "quill-editor" }, { kind: "component", type: i13.PepIconComponent, selector: "pep-icon", inputs: ["spin", "name", "fill"] }, { kind: "component", type: i14.PepFieldTitleComponent, selector: "pep-field-title", inputs: ["label", "mandatory", "disabled", "maxFieldCharacters", "hint", "xAlignment", "showTitle", "inputLength", "fontBodyType", "multiLine"] }, { kind: "component", type: i15.PepTextboxIconComponent, selector: "pep-textbox-icon", inputs: ["value", "label", "type", "disabled"], outputs: ["iconClick"] }, { kind: "pipe", type: i3.PepSafeHtmlPipe, name: "pepSafeHtml" }, { kind: "pipe", type: i16.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
210
220
  }
211
- PepRichHtmlTextareaComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepRichHtmlTextareaComponent, deps: [{ token: i1.DomSanitizer }, { token: i2.PepDialogService }, { token: i3.PepCustomizationService }, { token: i0.Renderer2 }, { token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Component });
212
- PepRichHtmlTextareaComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PepRichHtmlTextareaComponent, selector: "pep-rich-html-textarea", inputs: { key: "key", value: "value", label: "label", mandatory: "mandatory", disabled: "disabled", readonly: "readonly", maxFieldCharacters: "maxFieldCharacters", xAlignment: "xAlignment", sanitize: "sanitize", rowSpan: "rowSpan", visible: "visible", form: "form", isActive: "isActive", showTitle: "showTitle", renderTitle: "renderTitle", renderEnlargeButton: "renderEnlargeButton", layoutType: "layoutType", inlineMode: "inlineMode", toolbarOptions: "toolbarOptions" }, outputs: { valueChange: "valueChange", editorCreated: "editorCreated", validationChange: "validationChange" }, viewQueries: [{ propertyName: "richTextEditorDialogTemplate", first: true, predicate: ["richTextEditorDialogTemplate"], descendants: true, read: TemplateRef }], usesOnChanges: true, ngImport: i0, template: "<ng-container [formGroup]=\"form\">\n <ng-template #pepTemplate let-isFormView=\"isFormView\">\n <div class=\"pep-textarea-container pep-report-textarea\" [ngClass]=\"{ 'stand-alone': standAlone,\n 'right-alignment': xAlignment == 'right', 'one-row': !isFormView && rowSpan === 1,\n 'pep-textarea-card-container': layoutType === 'card'}\">\n <pep-field-title *ngIf=\"renderTitle && isFormView\" [label]=\"label\" [mandatory]=\"mandatory\"\n [disabled]=\"disabled\"\n [maxFieldCharacters]=\"inlineMode && !disabled && !readonly ? maxFieldCharacters : 0\"\n [xAlignment]=\"xAlignment\" [showTitle]=\"showTitle\" [inputLength]=\"quillContent?.length\">\n </pep-field-title>\n <mat-form-field appearance=\"outline\" dir=\"{{ xAlignment == 'right' ? 'rtl' : 'ltr' }}\"\n [ngClass]=\"{ 'pep-table-textarea': layoutType === 'table', 'active': active, 'ignore-disabled': disabled, 'icon-left': xAlignment === 'left' || xAlignment === 'center', 'icon-right': xAlignment === 'right' }\">\n <textarea [hidden]=\"true\" matInput [formControlName]=\"key\"></textarea>\n\n <ng-container *ngIf=\"inlineMode; then inlineBlock; else notInlineBlock\"></ng-container>\n\n <ng-template #inlineBlock>\n <ng-container *ngTemplateOutlet=\"quilTemplate; context: {inDialog: false}\"></ng-container>\n </ng-template>\n <ng-template #notInlineBlock>\n\n <!-- We can use the quill-view-html\n <quill-view-html class=\"body-sm rich-text-cont \"\n [ngStyle]=\"{ 'text-align': xAlignment == 'right' ? 'right' : 'left' }\" [content]=\"value | pepSafeHtml\"\n theme=\"snow\" [style.height]=\"fieldHeight\"></quill-view-html> \n -->\n\n <div class=\"body-sm rich-text-cont \" [ngClass]=\"{'hide-enlarge-button': !renderEnlargeButton}\"\n [ngStyle]=\"{ 'text-align': xAlignment == 'right' ? 'right' : 'left' }\"\n [innerHtml]=\"value | pepSafeHtml\" [style.height]=\"fieldHeight\">\n </div>\n </ng-template>\n <pep-textbox-icon *ngIf=\"renderEnlargeButton\" matSuffix [value]=\"value\" [label]=\"label\"\n [type]=\"controlType\" [disabled]=\"disabled || readonly\"\n [ngClass]=\"{ 'card-one-row-icon': layoutType === 'card' && rowSpan === 1 }\"\n (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n <mat-error>\n <span class=\"body-xs\"\n [title]=\"mandatory && value.length == 0 ? ('MESSAGES.ERROR_IS_REQUIRED' | translate: { field: label }) : ('MESSAGES.ERROR_IS_NOT_VALID' | translate: { field: label })\"\n [innerText]=\"mandatory && value.length == 0 ? ('MESSAGES.ERROR_IS_REQUIRED' | translate: { field: label }) : ('MESSAGES.ERROR_IS_NOT_VALID' | translate: { field: label })\"></span>\n </mat-error>\n\n </mat-form-field>\n </div>\n </ng-template>\n\n <ng-container *ngIf=\"layoutType === 'form'\">\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: true }\"></ng-container>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'card'\">\n <div class=\"pep-textarea-card-container card-flex-container\"\n [ngClass]=\"{'one-row': rowSpan === 1, 'pep-button weak': isActive && !disabled}\"\n [ngStyle]=\"{ '-webkit-line-clamp': rowSpan }\" [class]=\"'text-align-' + xAlignment\"\n (click)=\"!disabled ? cardTemplateClicked($event) : ''\" [style.height]=\"fieldHeight\">\n <span *ngIf=\"showTitle && label != ''\" class=\"body-xs title no-shrink\" title=\"{{ label }}\">{{ label\n }}:&nbsp;</span>\n <span [id]=\"key\" class=\"body-sm value wrap\" style=\"width: 100%;\" [innerHtml]=\"value | pepSafeHtml\"></span>\n <button *ngIf=\"isActive && !disabled\" class=\"pep-button weak card-edit-button self-start\"\n [ngClass]=\"{'self-end' : value && value !== ''}\" mat-button>\n <mat-icon>\n <pep-icon name=\"system_edit\">\n </pep-icon>\n </mat-icon>\n </button>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'table'\">\n <ng-container *ngIf=\"isActive && !disabled; then selectedBlock; else notSelectedBlock\"></ng-container>\n <ng-template #selectedBlock>\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: false }\"></ng-container>\n </ng-template>\n <ng-template #notSelectedBlock>\n <ng-container *ngIf=\"value?.length > 0; then notEmptyBlock; else emptyBlock\"></ng-container>\n <ng-template #notEmptyBlock>\n <div class=\"pep-textarea-card-container card-flex-container one-row\">\n <span [id]=\"key\" class=\"wrap\" [innerHtml]=\"value | pepSafeHtml\"></span>\n </div>\n </ng-template>\n <ng-template #emptyBlock>\n <span>&nbsp;</span>\n </ng-template>\n </ng-template>\n </ng-container>\n</ng-container>\n\n<ng-template #richTextEditorDialogTemplate>\n <div class=\"rich-text-editor-container\">\n <button mat-button [mat-dialog-close]=\"null\" class=\"pep-button icon-button md weak pull-right flip\">\n <mat-icon>\n <pep-icon name=\"system_close\">\n </pep-icon>\n </mat-icon>\n </button>\n <ng-container *ngTemplateOutlet=\"quilTemplate; context: {inDialog: true}\"></ng-container>\n <div mat-dialog-actions class=\" pep-border-top\">\n <div class=\"pep-spacing-element-negative\">\n <button mat-button [mat-dialog-close]=\"null\" class=\"pep-spacing-element pep-button md weak\">\n {{'ACTIONS.CANCEL' | translate}}\n </button>\n <button mat-button [mat-dialog-close]=\"quillContentDialog || ''\" [disabled]=\"disabled\"\n class=\"pep-spacing-element pep-button md strong \">\n {{'ACTIONS.SAVE' | translate}}\n </button>\n </div>\n </div>\n </div>\n</ng-template>\n\n<ng-template #quilTemplate let-inDialog=\"inDialog\">\n <quill-editor id=\"{{inDialog ? 'quill-editor-dialog' : 'quill-editor-inline'}}\"\n [class]=\"inDialog ? 'dialog-quill' : 'inline-quill'\"\n [ngClass]=\"{ 'rich-text-cont': !inDialog, 'hide-enlarge-button': !renderEnlargeButton }\"\n placeholder=\"{{'RICH_TEXTAREA.HINT' | translate}}\" [ngModel]=\"inDialog ? quillContentDialog : quillContent\"\n [sanitize]=\"sanitize\" [readOnly]=\"disabled\" [maxLength]=\"maxFieldCharacters\" [required]=\"mandatory\"\n (onEditorCreated)=\"onEditorCreated($event, inDialog)\" (onContentChanged)=\"onContentChanged($event, inDialog)\"\n (onBlur)=\"onBlur($event, inDialog)\" (onFocus)=\"onFocus($event, inDialog)\" theme=\"\">\n <div *ngIf=\"!disabled\" quill-editor-toolbar>\n <div class=\"pep-spacing-element-negative\">\n <span class=\"ql-formats\">\n <select *ngIf=\"toolbarOptions?.font\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-font select-arrow\">\n <option selected></option>\n <option value=\"serif\"></option>\n <option value=\"monospace\"></option>\n </select>\n <select *ngIf=\"toolbarOptions?.size\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-size select-arrow\">\n <option value=\"small\"></option>\n <option selected></option>\n <option value=\"large\"></option>\n <option value=\"huge\"></option>\n </select>\n </span>\n <span class=\"ql-formats\">\n <select *ngIf=\"toolbarOptions?.header\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-header select-arrow\">\n <option value=\"1\"></option>\n <option value=\"2\"></option>\n <option value=\"3\"></option>\n <!-- \n <option value=\"4\"></option>\n <option value=\"5\"></option>\n <option value=\"6\"></option> \n -->\n <option value=\"false\" selected></option>\n </select>\n </span>\n <!-- <hr class=\"vertical-separator\" /> -->\n <span class=\"ql-formats\">\n <button mat-button *ngIf=\"toolbarOptions?.bold\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-bold\"></button>\n <button mat-button *ngIf=\"toolbarOptions?.italic\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-italic\"></button>\n <button mat-button *ngIf=\"toolbarOptions?.underline\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-underline\"></button>\n <button mat-button *ngIf=\"toolbarOptions?.strike\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-strike\"></button>\n </span>\n <span class=\"ql-formats\">\n <button mat-button *ngIf=\"toolbarOptions?.link\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-link\"></button>\n <button mat-button *ngIf=\"toolbarOptions?.image\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-image\"></button>\n </span>\n <!-- <hr class=\"vertical-separator\" /> -->\n <span class=\"ql-formats\">\n <button mat-button *ngIf=\"toolbarOptions?.ordered\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-list\" value=\"ordered\"></button>\n <button mat-button *ngIf=\"toolbarOptions?.bullet\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-list\" value=\"bullet\"></button>\n </span>\n <!-- <hr class=\"vertical-separator\" /> -->\n <span class=\"ql-formats\">\n <select *ngIf=\"toolbarOptions?.color\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-color\"></select>\n <select *ngIf=\"toolbarOptions?.background\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-background\"></select>\n </span>\n <span class=\"ql-formats\">\n <select *ngIf=\"toolbarOptions?.align\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-align\">\n <option selected></option>\n <option value=\"center\"></option>\n <option value=\"right\"></option>\n <option value=\"justify\"></option>\n </select>\n </span>\n </div>\n </div>\n </quill-editor>\n</ng-template>", styles: [".pepperi-textarea-container,.pep-textarea-container{height:inherit;display:grid;align-items:center}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{display:flex}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix{line-height:unset;width:100%;height:100%;overflow:hidden;display:grid!important}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{margin:0;padding:.5rem 1.5rem .5rem 0;vertical-align:unset;resize:none;width:100%;max-width:unset;overflow-y:scroll;box-sizing:content-box}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-suffix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-prefix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-suffix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-suffix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-prefix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-suffix{align-self:flex-end!important;margin-bottom:.5rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element{padding-top:.35rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix{align-self:center!important;margin-bottom:unset}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button{width:1rem!important;height:1rem!important}.pepperi-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element{padding-top:.135rem!important}.pepperi-textarea-container .rich-text-cont,.pep-textarea-container .rich-text-cont{overflow-x:hidden;display:inline-block;vertical-align:unset;margin:0;padding:.5rem 1.5rem .5rem 0;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container .rich-text-cont.hide-enlarge-button,.pep-textarea-container .rich-text-cont.hide-enlarge-button{padding-inline-end:3rem}.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-container.right-alignment .rich-text-cont,.pep-textarea-container.right-alignment .rich-text-cont{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{padding-left:.5rem;padding-right:.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element{padding:.25rem 1.5rem .5rem 0}.pepperi-textarea-card-container.card-flex-container,.pep-textarea-card-container.card-flex-container{height:inherit;display:flex;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset;padding:.25rem;max-width:100%}.pepperi-textarea-card-container.card-flex-container.one-row .title,.pep-textarea-card-container.card-flex-container.one-row .title{padding-top:.25rem}.pepperi-textarea-card-container.card-flex-container span.value,.pep-textarea-card-container.card-flex-container span.value{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix{line-height:0!important}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element{padding-top:0;padding-bottom:0}.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{padding:.25rem 0 .5rem 1.5rem}.pepperi-report-textarea ::ng-deep .mat-form-field-suffix,.pepperi-report-textarea ::ng-deep .mat-mdc-form-field-suffix,.pep-report-textarea ::ng-deep .mat-form-field-suffix,.pep-report-textarea ::ng-deep .mat-mdc-form-field-suffix{right:0!important}.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{padding:0}:host{height:inherit;display:block}.pepperi-textarea-container ::ng-deep .mat-form-field-infix,.pepperi-textarea-container ::ng-deep .mat-mdc-form-field-infix,.pep-textarea-container ::ng-deep .mat-form-field-infix,.pep-textarea-container ::ng-deep .mat-mdc-form-field-infix{margin-left:calc(var(--pep-spacing-md, .75rem) * -1)}.pepperi-textarea-container ::ng-deep .icon-left .mat-form-field-suffix,.pepperi-textarea-container ::ng-deep .icon-left .mat-mdc-form-field-suffix,.pep-textarea-container ::ng-deep .icon-left .mat-form-field-suffix,.pep-textarea-container ::ng-deep .icon-left .mat-mdc-form-field-suffix{position:absolute;right:1rem!important;bottom:.5rem}.pepperi-textarea-container ::ng-deep .icon-right .mat-form-field-suffix,.pepperi-textarea-container ::ng-deep .icon-right .mat-mdc-form-field-suffix,.pep-textarea-container ::ng-deep .icon-right .mat-form-field-suffix,.pep-textarea-container ::ng-deep .icon-right .mat-mdc-form-field-suffix{position:absolute;right:calc(100% - 2.5rem)!important;bottom:.5rem}.pepperi-textarea-container ::ng-deep .icon-right .ql-toolbar,.pep-textarea-container ::ng-deep .icon-right .ql-toolbar{padding-left:.4rem!important}.pepperi-textarea-container.right-alignment ::ng-deep .mat-form-field-infix,.pepperi-textarea-container.right-alignment ::ng-deep .mat-mdc-form-field-infix,.pep-textarea-container.right-alignment ::ng-deep .mat-form-field-infix,.pep-textarea-container.right-alignment ::ng-deep .mat-mdc-form-field-infix{margin-left:unset;margin-right:calc(var(--pep-spacing-md, .75rem) * -1)}.vertical-separator{display:none}\n", ".pepperi-textarea-container,.pep-textarea-container{height:inherit;display:grid;align-items:center}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{display:flex}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix{line-height:unset;width:100%;height:100%;overflow:hidden;display:grid!important}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{margin:0;padding:.5rem 1.5rem .5rem 0;vertical-align:unset;resize:none;width:100%;max-width:unset;overflow-y:scroll;box-sizing:content-box}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-suffix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-prefix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-suffix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-suffix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-prefix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-suffix{align-self:flex-end!important;margin-bottom:.5rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element{padding-top:.35rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix{align-self:center!important;margin-bottom:unset}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button{width:1rem!important;height:1rem!important}.pepperi-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element{padding-top:.135rem!important}.pepperi-textarea-container .rich-text-cont,.pep-textarea-container .rich-text-cont{overflow-x:hidden;display:inline-block;vertical-align:unset;margin:0;padding:.5rem 1.5rem .5rem 0;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container .rich-text-cont.hide-enlarge-button,.pep-textarea-container .rich-text-cont.hide-enlarge-button{padding-inline-end:3rem}.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-container.right-alignment .rich-text-cont,.pep-textarea-container.right-alignment .rich-text-cont{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{padding-left:.5rem;padding-right:.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element{padding:.25rem 1.5rem .5rem 0}.pepperi-textarea-card-container.card-flex-container,.pep-textarea-card-container.card-flex-container{height:inherit;display:flex;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset;padding:.25rem;max-width:100%}.pepperi-textarea-card-container.card-flex-container.one-row .title,.pep-textarea-card-container.card-flex-container.one-row .title{padding-top:.25rem}.pepperi-textarea-card-container.card-flex-container span.value,.pep-textarea-card-container.card-flex-container span.value{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix{line-height:0!important}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element{padding-top:0;padding-bottom:0}.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{padding:.25rem 0 .5rem 1.5rem}.pepperi-report-textarea ::ng-deep .mat-form-field-suffix,.pepperi-report-textarea ::ng-deep .mat-mdc-form-field-suffix,.pep-report-textarea ::ng-deep .mat-form-field-suffix,.pep-report-textarea ::ng-deep .mat-mdc-form-field-suffix{right:0!important}.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{padding:0}.pepperi-report-textarea ::ng-deep .mat-form-field-flex,.pepperi-report-textarea ::ng-deep .mat-mdc-form-field-flex,.pep-report-textarea ::ng-deep .mat-form-field-flex,.pep-report-textarea ::ng-deep .mat-mdc-form-field-flex{background:transparent!important}.mat-form-field.mat-form-field-disabled ::ng-deep .mat-form-field-flex,.mat-form-field.mat-form-field-disabled ::ng-deep .mat-mdc-form-field-flex,.mat-form-field.mat-mdc-form-field-disabled ::ng-deep .mat-form-field-flex,.mat-form-field.mat-mdc-form-field-disabled ::ng-deep .mat-mdc-form-field-flex,.mat-mdc-form-field.mat-form-field-disabled ::ng-deep .mat-form-field-flex,.mat-mdc-form-field.mat-form-field-disabled ::ng-deep .mat-mdc-form-field-flex,.mat-mdc-form-field.mat-mdc-form-field-disabled ::ng-deep .mat-form-field-flex,.mat-mdc-form-field.mat-mdc-form-field-disabled ::ng-deep .mat-mdc-form-field-flex{color:hsl(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%))}.right-alignment quill-editor.inline-quill::ng-deep .ql-container .ql-editor{padding-right:unset;padding-left:calc(var(--pep-spacing-sm, .5rem) + 1rem)}quill-editor.inline-quill::ng-deep .ql-container .ql-editor{width:calc(100% + 1rem);padding-right:calc(var(--pep-spacing-sm, .5rem) + 1rem)}quill-editor ::ng-deep .ql-toolbar{display:flex;padding:0!important;border:unset}quill-editor ::ng-deep .ql-toolbar .ql-transparent{opacity:.9}quill-editor ::ng-deep .ql-toolbar .ql-formats{margin-right:0!important;margin-bottom:.5rem}quill-editor ::ng-deep .ql-toolbar .ql-formats button{height:2.5rem}quill-editor ::ng-deep .ql-toolbar .ql-formats button svg{width:1.25rem!important;float:unset!important}quill-editor ::ng-deep .ql-toolbar .ql-formats button.ql-active{box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);position:relative}quill-editor ::ng-deep .ql-toolbar .ql-formats button.ql-active:not(.keep-background-on-focus){background:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}quill-editor ::ng-deep .ql-toolbar .ql-formats button.ql-active:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%))}quill-editor ::ng-deep .ql-toolbar .ql-formats button:focus{box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);position:relative}quill-editor ::ng-deep .ql-toolbar .ql-formats button:focus:not(.keep-background-on-focus){background:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}quill-editor ::ng-deep .ql-toolbar .ql-formats button:focus:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%))}quill-editor ::ng-deep .ql-toolbar .ql-formats button:active{box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);position:relative}quill-editor ::ng-deep .ql-toolbar .ql-formats button:active:not(.keep-background-on-focus){background:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}quill-editor ::ng-deep .ql-toolbar .ql-formats button:active:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item{outline:unset!important;width:100%;height:auto;padding:var(--pep-spacing-xs, .25rem) var(--pep-spacing-sm, .5rem);display:grid}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:hover{background:hsla(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%),.16)}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:active{box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);background:hsla(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%),.24)!important}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:active:not(.keep-background-on-focus){background:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:disabled{box-shadow:unset;border:unset}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:disabled:after{border:unset}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:disabled .svg-icon{fill:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.35)}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:disabled .svg-icon.stroke{fill:unset;stroke:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.35)}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:disabled:not(.disabled-no-background-no-color){color:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.35)!important;background:hsla(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%),.04)!important}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker{height:2.5rem}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-color-picker,quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-icon-picker{width:unset}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker .ql-picker-label{outline:none;display:grid;grid-auto-flow:column;align-items:center;line-height:1rem;border:unset}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker .ql-picker-label svg{width:1.5rem}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker .ql-picker-label:after{content:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgaWQ9InN2ZzQiCiAgIHZlcnNpb249IjEuMSIKICAgdmlld0JveD0iMCAwIDI0IDI0IgogICBoZWlnaHQ9IjE2IgogICB3aWR0aD0iMTYiPgogIDxtZXRhZGF0YQogICAgIGlkPSJtZXRhZGF0YTEwIj4KICAgIDxyZGY6UkRGPgogICAgICA8Y2M6V29yawogICAgICAgICByZGY6YWJvdXQ9IiI+CiAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9zdmcreG1sPC9kYzpmb3JtYXQ+CiAgICAgICAgPGRjOnR5cGUKICAgICAgICAgICByZGY6cmVzb3VyY2U9Imh0dHA6Ly9wdXJsLm9yZy9kYy9kY21pdHlwZS9TdGlsbEltYWdlIiAvPgogICAgICA8L2NjOldvcms+CiAgICA8L3JkZjpSREY+CiAgPC9tZXRhZGF0YT4KICA8ZGVmcwogICAgIGlkPSJkZWZzOCIgLz4KICA8cGF0aAogICAgIGlkPSJwYXRoMiIKICAgICBkPSJNNS44MDAzMjE0OCw5LjI4Njc0MzU0IEwxMS4yNTQyODI0LDEzLjIwMjc1ODMgQzExLjY2NjEzMDksMTMuNTg1MDgzIDEyLjMzMzg2OTEsMTMuNTg1MDgzIDEyLjc0NTcxNzYsMTMuMjAyNzU4MyBMMTguMTk5Njc4NSw5LjI4Njc0MzU0IEMxOC42MTE1MjcsOC45MDQ0MTg4MiAxOS4yNzkyNjUyLDguOTA0NDE4ODIgMTkuNjkxMTEzNyw5LjI4Njc0MzU0IEMyMC4xMDI5NjIxLDkuNjY5MDY4MjYgMjAuMTAyOTYyMSwxMC4yODg5MzkxIDE5LjY5MTExMzcsMTAuNjcxMjYzOCBMMTMuNDkxNDM1MSwxNi40MjY1MTI5IEMxMi42Njc3MzgzLDE3LjE5MTE2MjQgMTEuMzMyMjYxNywxNy4xOTExNjI0IDEwLjUwODU2NDksMTYuNDI2NTEyOSBMNC4zMDg4ODYzMywxMC42NzEyNjM4IEMzLjg5NzAzNzg5LDEwLjI4ODkzOTEgMy44OTcwMzc4OSw5LjY2OTA2ODI2IDQuMzA4ODg2MzMsOS4yODY3NDM1NCBDNC43MjA3MzQ3OCw4LjkwNDQxODgyIDUuMzg4NDczMDMsOC45MDQ0MTg4MiA1LjgwMDMyMTQ4LDkuMjg2NzQzNTQgWiIKICAgICBmaWxsLXJ1bGU9ImV2ZW5vZGQiCiAgICAgZmlsbC1vcGFjaXR5PSIuNSIgLz4KPC9zdmc+Cg==);cursor:pointer;display:grid;height:inherit;justify-content:center;align-content:center}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.select-arrow .ql-picker-label:before{line-height:unset}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.select-arrow .ql-picker-label svg{display:none}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker .ql-picker-options{border-radius:var(--pep-border-radius-md, .25rem);box-sizing:content-box;padding:unset;box-shadow:var(--pep-shadow-sm-offset, 0 .25rem .5rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.32);border:1px solid hsl(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-color-picker .ql-picker-options{padding:var(--pep-spacing-xs, .25rem) var(--pep-spacing-sm, .5rem);width:140px}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-color-picker .ql-picker-options:focus{outline:unset!important}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-color-picker .ql-picker-options .ql-picker-item:focus{outline:unset!important}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-expanded{box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);position:relative}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-expanded:not(.keep-background-on-focus){background:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-expanded:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:hsl(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:hsl(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-expanded .ql-picker-label{border:unset}quill-editor ::ng-deep .ql-toolbar .vertical-separator{border-color:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.24)}@media (max-width: 568px){quill-editor ::ng-deep .ql-toolbar .ql-list{display:none}}@media (max-width: 599px){quill-editor ::ng-deep .ql-toolbar .ql-italic,quill-editor ::ng-deep .ql-toolbar .ql-underline{display:none}}@media (max-width: 460px){quill-editor ::ng-deep .ql-toolbar .ql-italic,quill-editor ::ng-deep .ql-toolbar .ql-image,quill-editor ::ng-deep .ql-toolbar .ql-underline,quill-editor ::ng-deep .ql-toolbar .ql-list,quill-editor ::ng-deep .ql-toolbar .ql-header{display:none}}quill-editor ::ng-deep .ql-container{height:16rem;border:unset;border-top:1px solid hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.24)!important}quill-editor ::ng-deep .ql-container .ql-editor{padding:var(--pep-spacing-sm, .5rem) 0}quill-editor ::ng-deep .ql-container .ql-editor.ql-blank:before{right:0;left:0}quill-editor ::ng-deep .ql-container .ql-tooltip.ql-flip{left:0!important}\n"], dependencies: [{ kind: "directive", type: i4.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i4.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i4.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i5.NgSelectOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.ɵNgSelectMultipleOption, selector: "option", inputs: ["ngValue", "value"] }, { kind: "directive", type: i5.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i5.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i5.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i5.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i5.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i5.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "directive", type: i5.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "directive", type: i6.Dir, selector: "[dir]", inputs: ["dir"], outputs: ["dirChange"], exportAs: ["dir"] }, { kind: "component", type: i7.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i8.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i8.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "directive", type: i8.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "directive", type: i9.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { kind: "component", type: i10.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "directive", type: i11.MatDialogClose, selector: "[mat-dialog-close], [matDialogClose]", inputs: ["aria-label", "type", "mat-dialog-close", "matDialogClose"], exportAs: ["matDialogClose"] }, { kind: "directive", type: i11.MatDialogActions, selector: "[mat-dialog-actions], mat-dialog-actions, [matDialogActions]", inputs: ["align"] }, { kind: "component", type: i12.QuillEditorComponent, selector: "quill-editor" }, { kind: "component", type: i13.PepIconComponent, selector: "pep-icon", inputs: ["spin", "name", "fill"] }, { kind: "component", type: i14.PepFieldTitleComponent, selector: "pep-field-title", inputs: ["label", "mandatory", "disabled", "maxFieldCharacters", "hint", "xAlignment", "showTitle", "inputLength", "fontBodyType", "multiLine"] }, { kind: "component", type: i15.PepTextboxIconComponent, selector: "pep-textbox-icon", inputs: ["value", "label", "type", "disabled"], outputs: ["iconClick"] }, { kind: "pipe", type: i3.PepSafeHtmlPipe, name: "pepSafeHtml" }, { kind: "pipe", type: i16.TranslatePipe, name: "translate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
213
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepRichHtmlTextareaComponent, decorators: [{
221
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: PepRichHtmlTextareaComponent, decorators: [{
214
222
  type: Component,
215
223
  args: [{ selector: 'pep-rich-html-textarea', changeDetection: ChangeDetectionStrategy.OnPush, template: "<ng-container [formGroup]=\"form\">\n <ng-template #pepTemplate let-isFormView=\"isFormView\">\n <div class=\"pep-textarea-container pep-report-textarea\" [ngClass]=\"{ 'stand-alone': standAlone,\n 'right-alignment': xAlignment == 'right', 'one-row': !isFormView && rowSpan === 1,\n 'pep-textarea-card-container': layoutType === 'card'}\">\n <pep-field-title *ngIf=\"renderTitle && isFormView\" [label]=\"label\" [mandatory]=\"mandatory\"\n [disabled]=\"disabled\"\n [maxFieldCharacters]=\"inlineMode && !disabled && !readonly ? maxFieldCharacters : 0\"\n [xAlignment]=\"xAlignment\" [showTitle]=\"showTitle\" [inputLength]=\"quillContent?.length\">\n </pep-field-title>\n <mat-form-field appearance=\"outline\" dir=\"{{ xAlignment == 'right' ? 'rtl' : 'ltr' }}\"\n [ngClass]=\"{ 'pep-table-textarea': layoutType === 'table', 'active': active, 'ignore-disabled': disabled, 'icon-left': xAlignment === 'left' || xAlignment === 'center', 'icon-right': xAlignment === 'right' }\">\n <textarea [hidden]=\"true\" matInput [formControlName]=\"key\"></textarea>\n\n <ng-container *ngIf=\"inlineMode; then inlineBlock; else notInlineBlock\"></ng-container>\n\n <ng-template #inlineBlock>\n <ng-container *ngTemplateOutlet=\"quilTemplate; context: {inDialog: false}\"></ng-container>\n </ng-template>\n <ng-template #notInlineBlock>\n\n <!-- We can use the quill-view-html\n <quill-view-html class=\"body-sm rich-text-cont \"\n [ngStyle]=\"{ 'text-align': xAlignment == 'right' ? 'right' : 'left' }\" [content]=\"value | pepSafeHtml\"\n theme=\"snow\" [style.height]=\"fieldHeight\"></quill-view-html> \n -->\n\n <div class=\"body-sm rich-text-cont \" [ngClass]=\"{'hide-enlarge-button': !renderEnlargeButton}\"\n [ngStyle]=\"{ 'text-align': xAlignment == 'right' ? 'right' : 'left' }\"\n [innerHtml]=\"value | pepSafeHtml\" [style.height]=\"fieldHeight\">\n </div>\n </ng-template>\n <pep-textbox-icon *ngIf=\"renderEnlargeButton\" matSuffix [value]=\"value\" [label]=\"label\"\n [type]=\"controlType\" [disabled]=\"disabled || readonly\"\n [ngClass]=\"{ 'card-one-row-icon': layoutType === 'card' && rowSpan === 1 }\"\n (iconClick)=\"openDialog()\">\n </pep-textbox-icon>\n <mat-error>\n <span class=\"body-xs\"\n [title]=\"mandatory && value.length == 0 ? ('MESSAGES.ERROR_IS_REQUIRED' | translate: { field: label }) : ('MESSAGES.ERROR_IS_NOT_VALID' | translate: { field: label })\"\n [innerText]=\"mandatory && value.length == 0 ? ('MESSAGES.ERROR_IS_REQUIRED' | translate: { field: label }) : ('MESSAGES.ERROR_IS_NOT_VALID' | translate: { field: label })\"></span>\n </mat-error>\n\n </mat-form-field>\n </div>\n </ng-template>\n\n <ng-container *ngIf=\"layoutType === 'form'\">\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: true }\"></ng-container>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'card'\">\n <div class=\"pep-textarea-card-container card-flex-container\"\n [ngClass]=\"{'one-row': rowSpan === 1, 'pep-button weak': isActive && !disabled}\"\n [ngStyle]=\"{ '-webkit-line-clamp': rowSpan }\" [class]=\"'text-align-' + xAlignment\"\n (click)=\"!disabled ? cardTemplateClicked($event) : ''\" [style.height]=\"fieldHeight\">\n <span *ngIf=\"showTitle && label != ''\" class=\"body-xs title no-shrink\" title=\"{{ label }}\">{{ label\n }}:&nbsp;</span>\n <span [id]=\"key\" class=\"body-sm value wrap\" style=\"width: 100%;\" [innerHtml]=\"value | pepSafeHtml\"></span>\n <button *ngIf=\"isActive && !disabled\" class=\"pep-button weak card-edit-button self-start\"\n [ngClass]=\"{'self-end' : value && value !== ''}\" mat-button>\n <mat-icon>\n <pep-icon name=\"system_edit\">\n </pep-icon>\n </mat-icon>\n </button>\n </div>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'table'\">\n <ng-container *ngIf=\"isActive && !disabled; then selectedBlock; else notSelectedBlock\"></ng-container>\n <ng-template #selectedBlock>\n <ng-container *ngTemplateOutlet=\"pepTemplate; context: { isFormView: false }\"></ng-container>\n </ng-template>\n <ng-template #notSelectedBlock>\n <ng-container *ngIf=\"value?.length > 0; then notEmptyBlock; else emptyBlock\"></ng-container>\n <ng-template #notEmptyBlock>\n <div class=\"pep-textarea-card-container card-flex-container one-row\">\n <span [id]=\"key\" class=\"wrap\" [innerHtml]=\"value | pepSafeHtml\"></span>\n </div>\n </ng-template>\n <ng-template #emptyBlock>\n <span>&nbsp;</span>\n </ng-template>\n </ng-template>\n </ng-container>\n</ng-container>\n\n<ng-template #richTextEditorDialogTemplate>\n <div class=\"rich-text-editor-container\">\n <button mat-button [mat-dialog-close]=\"null\" class=\"pep-button icon-button md weak pull-right flip\">\n <mat-icon>\n <pep-icon name=\"system_close\">\n </pep-icon>\n </mat-icon>\n </button>\n <ng-container *ngTemplateOutlet=\"quilTemplate; context: {inDialog: true}\"></ng-container>\n <div mat-dialog-actions class=\" pep-border-top\">\n <div class=\"pep-spacing-element-negative\">\n <button mat-button [mat-dialog-close]=\"null\" class=\"pep-spacing-element pep-button md weak\">\n {{'ACTIONS.CANCEL' | translate}}\n </button>\n <button mat-button [mat-dialog-close]=\"quillContentDialog || ''\" [disabled]=\"disabled\"\n class=\"pep-spacing-element pep-button md strong \">\n {{'ACTIONS.SAVE' | translate}}\n </button>\n </div>\n </div>\n </div>\n</ng-template>\n\n<ng-template #quilTemplate let-inDialog=\"inDialog\">\n <quill-editor id=\"{{inDialog ? 'quill-editor-dialog' : 'quill-editor-inline'}}\"\n [class]=\"inDialog ? 'dialog-quill' : 'inline-quill'\"\n [ngClass]=\"{ 'rich-text-cont': !inDialog, 'hide-enlarge-button': !renderEnlargeButton }\"\n placeholder=\"{{'RICH_TEXTAREA.HINT' | translate}}\" [ngModel]=\"inDialog ? quillContentDialog : quillContent\"\n [sanitize]=\"sanitize\" [readOnly]=\"disabled\" [maxLength]=\"maxFieldCharacters\" [required]=\"mandatory\"\n (onEditorCreated)=\"onEditorCreated($event, inDialog)\" (onContentChanged)=\"onContentChanged($event, inDialog)\"\n (onBlur)=\"onBlur($event, inDialog)\" (onFocus)=\"onFocus($event, inDialog)\" theme=\"\">\n <div *ngIf=\"!disabled\" quill-editor-toolbar>\n <div class=\"pep-spacing-element-negative\">\n <span class=\"ql-formats\">\n <select *ngIf=\"toolbarOptions?.font\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-font select-arrow\">\n <option selected></option>\n <option value=\"serif\"></option>\n <option value=\"monospace\"></option>\n </select>\n <select *ngIf=\"toolbarOptions?.size\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-size select-arrow\">\n <option value=\"small\"></option>\n <option selected></option>\n <option value=\"large\"></option>\n <option value=\"huge\"></option>\n </select>\n </span>\n <span class=\"ql-formats\">\n <select *ngIf=\"toolbarOptions?.header\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-header select-arrow\">\n <option value=\"1\"></option>\n <option value=\"2\"></option>\n <option value=\"3\"></option>\n <!-- \n <option value=\"4\"></option>\n <option value=\"5\"></option>\n <option value=\"6\"></option> \n -->\n <option value=\"false\" selected></option>\n </select>\n </span>\n <!-- <hr class=\"vertical-separator\" /> -->\n <span class=\"ql-formats\">\n <button mat-button *ngIf=\"toolbarOptions?.bold\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-bold\"></button>\n <button mat-button *ngIf=\"toolbarOptions?.italic\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-italic\"></button>\n <button mat-button *ngIf=\"toolbarOptions?.underline\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-underline\"></button>\n <button mat-button *ngIf=\"toolbarOptions?.strike\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-strike\"></button>\n </span>\n <span class=\"ql-formats\">\n <button mat-button *ngIf=\"toolbarOptions?.link\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-link\"></button>\n <button mat-button *ngIf=\"toolbarOptions?.image\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-image\"></button>\n </span>\n <!-- <hr class=\"vertical-separator\" /> -->\n <span class=\"ql-formats\">\n <button mat-button *ngIf=\"toolbarOptions?.ordered\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-list\" value=\"ordered\"></button>\n <button mat-button *ngIf=\"toolbarOptions?.bullet\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-list\" value=\"bullet\"></button>\n </span>\n <!-- <hr class=\"vertical-separator\" /> -->\n <span class=\"ql-formats\">\n <select *ngIf=\"toolbarOptions?.color\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-color\"></select>\n <select *ngIf=\"toolbarOptions?.background\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-background\"></select>\n </span>\n <span class=\"ql-formats\">\n <select *ngIf=\"toolbarOptions?.align\"\n class=\"pep-spacing-element pep-button icon-button md weak ql-align\">\n <option selected></option>\n <option value=\"center\"></option>\n <option value=\"right\"></option>\n <option value=\"justify\"></option>\n </select>\n </span>\n </div>\n </div>\n </quill-editor>\n</ng-template>", styles: [".pepperi-textarea-container,.pep-textarea-container{height:inherit;display:grid;align-items:center}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{display:flex}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix{line-height:unset;width:100%;height:100%;overflow:hidden;display:grid!important}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{margin:0;padding:.5rem 1.5rem .5rem 0;vertical-align:unset;resize:none;width:100%;max-width:unset;overflow-y:scroll;box-sizing:content-box}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-suffix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-prefix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-suffix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-suffix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-prefix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-suffix{align-self:flex-end!important;margin-bottom:.5rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element{padding-top:.35rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix{align-self:center!important;margin-bottom:unset}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button{width:1rem!important;height:1rem!important}.pepperi-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element{padding-top:.135rem!important}.pepperi-textarea-container .rich-text-cont,.pep-textarea-container .rich-text-cont{overflow-x:hidden;display:inline-block;vertical-align:unset;margin:0;padding:.5rem 1.5rem .5rem 0;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container .rich-text-cont.hide-enlarge-button,.pep-textarea-container .rich-text-cont.hide-enlarge-button{padding-inline-end:3rem}.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-container.right-alignment .rich-text-cont,.pep-textarea-container.right-alignment .rich-text-cont{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{padding-left:.5rem;padding-right:.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element{padding:.25rem 1.5rem .5rem 0}.pepperi-textarea-card-container.card-flex-container,.pep-textarea-card-container.card-flex-container{height:inherit;display:flex;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset;padding:.25rem;max-width:100%}.pepperi-textarea-card-container.card-flex-container.one-row .title,.pep-textarea-card-container.card-flex-container.one-row .title{padding-top:.25rem}.pepperi-textarea-card-container.card-flex-container span.value,.pep-textarea-card-container.card-flex-container span.value{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix{line-height:0!important}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element{padding-top:0;padding-bottom:0}.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{padding:.25rem 0 .5rem 1.5rem}.pepperi-report-textarea ::ng-deep .mat-form-field-suffix,.pepperi-report-textarea ::ng-deep .mat-mdc-form-field-suffix,.pep-report-textarea ::ng-deep .mat-form-field-suffix,.pep-report-textarea ::ng-deep .mat-mdc-form-field-suffix{right:0!important}.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{padding:0}:host{height:inherit;display:block}.pepperi-textarea-container ::ng-deep .mat-form-field-infix,.pepperi-textarea-container ::ng-deep .mat-mdc-form-field-infix,.pep-textarea-container ::ng-deep .mat-form-field-infix,.pep-textarea-container ::ng-deep .mat-mdc-form-field-infix{margin-left:calc(var(--pep-spacing-md, .75rem) * -1)}.pepperi-textarea-container ::ng-deep .icon-left .mat-form-field-suffix,.pepperi-textarea-container ::ng-deep .icon-left .mat-mdc-form-field-suffix,.pep-textarea-container ::ng-deep .icon-left .mat-form-field-suffix,.pep-textarea-container ::ng-deep .icon-left .mat-mdc-form-field-suffix{position:absolute;right:1rem!important;bottom:.5rem}.pepperi-textarea-container ::ng-deep .icon-right .mat-form-field-suffix,.pepperi-textarea-container ::ng-deep .icon-right .mat-mdc-form-field-suffix,.pep-textarea-container ::ng-deep .icon-right .mat-form-field-suffix,.pep-textarea-container ::ng-deep .icon-right .mat-mdc-form-field-suffix{position:absolute;right:calc(100% - 2.5rem)!important;bottom:.5rem}.pepperi-textarea-container ::ng-deep .icon-right .ql-toolbar,.pep-textarea-container ::ng-deep .icon-right .ql-toolbar{padding-left:.4rem!important}.pepperi-textarea-container.right-alignment ::ng-deep .mat-form-field-infix,.pepperi-textarea-container.right-alignment ::ng-deep .mat-mdc-form-field-infix,.pep-textarea-container.right-alignment ::ng-deep .mat-form-field-infix,.pep-textarea-container.right-alignment ::ng-deep .mat-mdc-form-field-infix{margin-left:unset;margin-right:calc(var(--pep-spacing-md, .75rem) * -1)}.vertical-separator{display:none}\n", ".pepperi-textarea-container,.pep-textarea-container{height:inherit;display:grid;align-items:center}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{display:flex}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix{line-height:unset;width:100%;height:100%;overflow:hidden;display:grid!important}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{margin:0;padding:.5rem 1.5rem .5rem 0;vertical-align:unset;resize:none;width:100%;max-width:unset;overflow-y:scroll;box-sizing:content-box}.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-prefix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pepperi-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-suffix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-prefix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-prefix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-suffix,.pepperi-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-prefix,.pep-textarea-container .mat-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-form-field ::ng-deep .mat-mdc-form-field-suffix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-prefix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-prefix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-form-field-suffix,.pep-textarea-container .mat-mdc-form-field ::ng-deep .mat-mdc-form-field-suffix{align-self:flex-end!important;margin-bottom:.5rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element{padding-top:.35rem}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix{align-self:center!important;margin-bottom:unset}.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pepperi-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-prefix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-suffix .card-one-row-icon .pep-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pepperi-button,.pep-textarea-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-suffix .card-one-row-icon .pep-button{width:1rem!important;height:1rem!important}.pepperi-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pepperi-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pepperi-table-textarea ::ng-deep .mat-mdc-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-input-element,.pep-textarea-container.one-row .mat-mdc-form-field.pep-table-textarea ::ng-deep .mat-mdc-input-element{padding-top:.135rem!important}.pepperi-textarea-container .rich-text-cont,.pep-textarea-container .rich-text-cont{overflow-x:hidden;display:inline-block;vertical-align:unset;margin:0;padding:.5rem 1.5rem .5rem 0;resize:none;width:calc(100% + 3rem);max-width:unset;overflow-y:scroll;box-sizing:border-box}.pepperi-textarea-container .rich-text-cont.hide-enlarge-button,.pep-textarea-container .rich-text-cont.hide-enlarge-button{padding-inline-end:3rem}.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-container.right-alignment .rich-text-cont,.pep-textarea-container.right-alignment .rich-text-cont{padding:.5rem 0 .5rem 1.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{padding-left:.5rem;padding-right:.5rem}.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pepperi-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-flex .mat-mdc-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-input-element,.pep-textarea-card-container .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-flex .mat-mdc-input-element{padding:.25rem 1.5rem .5rem 0}.pepperi-textarea-card-container.card-flex-container,.pep-textarea-card-container.card-flex-container{height:inherit;display:flex;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset;padding:.25rem;max-width:100%}.pepperi-textarea-card-container.card-flex-container.one-row .title,.pep-textarea-card-container.card-flex-container.one-row .title{padding-top:.25rem}.pepperi-textarea-card-container.card-flex-container span.value,.pep-textarea-card-container.card-flex-container span.value{text-overflow:ellipsis;overflow:hidden;white-space:nowrap;white-space:unset}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix{line-height:0!important}.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pepperi-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-form-field-infix .mat-mdc-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-input-element,.pep-textarea-card-container.one-row .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-form-field-infix .mat-mdc-input-element{padding-top:0;padding-bottom:0}.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pepperi-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-card-container.right-alignment .mat-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-form-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-input-element,.pep-textarea-card-container.right-alignment .mat-mdc-form-field ::ng-deep .mdc-text-field .mat-mdc-input-element{padding:.25rem 0 .5rem 1.5rem}.pepperi-report-textarea ::ng-deep .mat-form-field-suffix,.pepperi-report-textarea ::ng-deep .mat-mdc-form-field-suffix,.pep-report-textarea ::ng-deep .mat-form-field-suffix,.pep-report-textarea ::ng-deep .mat-mdc-form-field-suffix{right:0!important}.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mdc-text-field .mat-form-field-flex,.pepperi-report-textarea.readonly ::ng-deep .mdc-text-field .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-form-field-wrapper .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mdc-text-field .mat-form-field-flex,.pep-report-textarea.readonly ::ng-deep .mdc-text-field .mat-mdc-form-field-flex{padding:0}.pepperi-report-textarea ::ng-deep .mat-form-field-flex,.pepperi-report-textarea ::ng-deep .mat-mdc-form-field-flex,.pep-report-textarea ::ng-deep .mat-form-field-flex,.pep-report-textarea ::ng-deep .mat-mdc-form-field-flex{background:transparent!important}.mat-form-field.mat-form-field-disabled ::ng-deep .mat-form-field-flex,.mat-form-field.mat-form-field-disabled ::ng-deep .mat-mdc-form-field-flex,.mat-form-field.mat-mdc-form-field-disabled ::ng-deep .mat-form-field-flex,.mat-form-field.mat-mdc-form-field-disabled ::ng-deep .mat-mdc-form-field-flex,.mat-mdc-form-field.mat-form-field-disabled ::ng-deep .mat-form-field-flex,.mat-mdc-form-field.mat-form-field-disabled ::ng-deep .mat-mdc-form-field-flex,.mat-mdc-form-field.mat-mdc-form-field-disabled ::ng-deep .mat-form-field-flex,.mat-mdc-form-field.mat-mdc-form-field-disabled ::ng-deep .mat-mdc-form-field-flex{color:hsl(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%))}.right-alignment quill-editor.inline-quill::ng-deep .ql-container .ql-editor{padding-right:unset;padding-left:calc(var(--pep-spacing-sm, .5rem) + 1rem)}quill-editor.inline-quill::ng-deep .ql-container .ql-editor{width:calc(100% + 1rem);padding-right:calc(var(--pep-spacing-sm, .5rem) + 1rem)}quill-editor ::ng-deep .ql-toolbar{display:flex;padding:0!important;border:unset}quill-editor ::ng-deep .ql-toolbar .ql-transparent{opacity:.9}quill-editor ::ng-deep .ql-toolbar .ql-formats{margin-right:0!important;margin-bottom:.5rem}quill-editor ::ng-deep .ql-toolbar .ql-formats button{height:2.5rem}quill-editor ::ng-deep .ql-toolbar .ql-formats button svg{width:1.25rem!important;float:unset!important}quill-editor ::ng-deep .ql-toolbar .ql-formats button.ql-active{box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);position:relative}quill-editor ::ng-deep .ql-toolbar .ql-formats button.ql-active:not(.keep-background-on-focus){background:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}quill-editor ::ng-deep .ql-toolbar .ql-formats button.ql-active:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%))}quill-editor ::ng-deep .ql-toolbar .ql-formats button:focus{box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);position:relative}quill-editor ::ng-deep .ql-toolbar .ql-formats button:focus:not(.keep-background-on-focus){background:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}quill-editor ::ng-deep .ql-toolbar .ql-formats button:focus:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%))}quill-editor ::ng-deep .ql-toolbar .ql-formats button:active{box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);position:relative}quill-editor ::ng-deep .ql-toolbar .ql-formats button:active:not(.keep-background-on-focus){background:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}quill-editor ::ng-deep .ql-toolbar .ql-formats button:active:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item{outline:unset!important;width:100%;height:auto;padding:var(--pep-spacing-xs, .25rem) var(--pep-spacing-sm, .5rem);display:grid}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:hover{background:hsla(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%),.16)}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:active{box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);background:hsla(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%),.24)!important}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:active:not(.keep-background-on-focus){background:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:disabled{box-shadow:unset;border:unset}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:disabled:after{border:unset}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:disabled .svg-icon{fill:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.35)}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:disabled .svg-icon.stroke{fill:unset;stroke:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.35)}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker:not(.ql-color-picker) .ql-picker-options .ql-picker-item:disabled:not(.disabled-no-background-no-color){color:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.35)!important;background:hsla(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%),.04)!important}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker{height:2.5rem}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-color-picker,quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-icon-picker{width:unset}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker .ql-picker-label{outline:none;display:grid;grid-auto-flow:column;align-items:center;line-height:1rem;border:unset}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker .ql-picker-label svg{width:1.5rem}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker .ql-picker-label:after{content:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgaWQ9InN2ZzQiCiAgIHZlcnNpb249IjEuMSIKICAgdmlld0JveD0iMCAwIDI0IDI0IgogICBoZWlnaHQ9IjE2IgogICB3aWR0aD0iMTYiPgogIDxtZXRhZGF0YQogICAgIGlkPSJtZXRhZGF0YTEwIj4KICAgIDxyZGY6UkRGPgogICAgICA8Y2M6V29yawogICAgICAgICByZGY6YWJvdXQ9IiI+CiAgICAgICAgPGRjOmZvcm1hdD5pbWFnZS9zdmcreG1sPC9kYzpmb3JtYXQ+CiAgICAgICAgPGRjOnR5cGUKICAgICAgICAgICByZGY6cmVzb3VyY2U9Imh0dHA6Ly9wdXJsLm9yZy9kYy9kY21pdHlwZS9TdGlsbEltYWdlIiAvPgogICAgICA8L2NjOldvcms+CiAgICA8L3JkZjpSREY+CiAgPC9tZXRhZGF0YT4KICA8ZGVmcwogICAgIGlkPSJkZWZzOCIgLz4KICA8cGF0aAogICAgIGlkPSJwYXRoMiIKICAgICBkPSJNNS44MDAzMjE0OCw5LjI4Njc0MzU0IEwxMS4yNTQyODI0LDEzLjIwMjc1ODMgQzExLjY2NjEzMDksMTMuNTg1MDgzIDEyLjMzMzg2OTEsMTMuNTg1MDgzIDEyLjc0NTcxNzYsMTMuMjAyNzU4MyBMMTguMTk5Njc4NSw5LjI4Njc0MzU0IEMxOC42MTE1MjcsOC45MDQ0MTg4MiAxOS4yNzkyNjUyLDguOTA0NDE4ODIgMTkuNjkxMTEzNyw5LjI4Njc0MzU0IEMyMC4xMDI5NjIxLDkuNjY5MDY4MjYgMjAuMTAyOTYyMSwxMC4yODg5MzkxIDE5LjY5MTExMzcsMTAuNjcxMjYzOCBMMTMuNDkxNDM1MSwxNi40MjY1MTI5IEMxMi42Njc3MzgzLDE3LjE5MTE2MjQgMTEuMzMyMjYxNywxNy4xOTExNjI0IDEwLjUwODU2NDksMTYuNDI2NTEyOSBMNC4zMDg4ODYzMywxMC42NzEyNjM4IEMzLjg5NzAzNzg5LDEwLjI4ODkzOTEgMy44OTcwMzc4OSw5LjY2OTA2ODI2IDQuMzA4ODg2MzMsOS4yODY3NDM1NCBDNC43MjA3MzQ3OCw4LjkwNDQxODgyIDUuMzg4NDczMDMsOC45MDQ0MTg4MiA1LjgwMDMyMTQ4LDkuMjg2NzQzNTQgWiIKICAgICBmaWxsLXJ1bGU9ImV2ZW5vZGQiCiAgICAgZmlsbC1vcGFjaXR5PSIuNSIgLz4KPC9zdmc+Cg==);cursor:pointer;display:grid;height:inherit;justify-content:center;align-content:center}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.select-arrow .ql-picker-label:before{line-height:unset}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.select-arrow .ql-picker-label svg{display:none}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker .ql-picker-options{border-radius:var(--pep-border-radius-md, .25rem);box-sizing:content-box;padding:unset;box-shadow:var(--pep-shadow-sm-offset, 0 .25rem .5rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.32);border:1px solid hsl(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-color-picker .ql-picker-options{padding:var(--pep-spacing-xs, .25rem) var(--pep-spacing-sm, .5rem);width:140px}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-color-picker .ql-picker-options:focus{outline:unset!important}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-color-picker .ql-picker-options .ql-picker-item:focus{outline:unset!important}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-expanded{box-shadow:var(--pep-shadow-xs-offset, 0 .125rem .25rem 0) hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.08);position:relative}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-expanded:not(.keep-background-on-focus){background:hsl(var(--pep-color-system-primary-invert-h, 255),var(--pep-color-system-primary-invert-s, 100%),var(--pep-color-system-primary-invert-l, 100%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-expanded:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-weak-h, 0),var(--pep-color-weak-s, 0%),var(--pep-color-weak-l, 10%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-expanded .ql-picker-label .ql-stroke{stroke:hsl(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-expanded .ql-picker-label .ql-fill{fill:hsl(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%))}quill-editor ::ng-deep .ql-toolbar .ql-formats .ql-picker.ql-expanded .ql-picker-label{border:unset}quill-editor ::ng-deep .ql-toolbar .vertical-separator{border-color:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.24)}@media (max-width: 568px){quill-editor ::ng-deep .ql-toolbar .ql-list{display:none}}@media (max-width: 599px){quill-editor ::ng-deep .ql-toolbar .ql-italic,quill-editor ::ng-deep .ql-toolbar .ql-underline{display:none}}@media (max-width: 460px){quill-editor ::ng-deep .ql-toolbar .ql-italic,quill-editor ::ng-deep .ql-toolbar .ql-image,quill-editor ::ng-deep .ql-toolbar .ql-underline,quill-editor ::ng-deep .ql-toolbar .ql-list,quill-editor ::ng-deep .ql-toolbar .ql-header{display:none}}quill-editor ::ng-deep .ql-container{height:16rem;border:unset;border-top:1px solid hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.24)!important}quill-editor ::ng-deep .ql-container .ql-editor{padding:var(--pep-spacing-sm, .5rem) 0}quill-editor ::ng-deep .ql-container .ql-editor.ql-blank:before{right:0;left:0}quill-editor ::ng-deep .ql-container .ql-tooltip.ql-flip{left:0!important}\n"] }]
216
224
  }], ctorParameters: function () { return [{ type: i1.DomSanitizer }, { type: i2.PepDialogService }, { type: i3.PepCustomizationService }, { type: i0.Renderer2 }, { type: i0.ElementRef }]; }, propDecorators: { key: [{
@@ -261,4 +269,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImpo
261
269
  type: ViewChild,
262
270
  args: ['richTextEditorDialogTemplate', { read: TemplateRef }]
263
271
  }] } });
264
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmljaC1odG1sLXRleHRhcmVhLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1saWIvcmljaC1odG1sLXRleHRhcmVhL3JpY2gtaHRtbC10ZXh0YXJlYS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtbGliL3JpY2gtaHRtbC10ZXh0YXJlYS9yaWNoLWh0bWwtdGV4dGFyZWEuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNILFNBQVMsRUFFVCxLQUFLLEVBQ0wsTUFBTSxFQUNOLFlBQVksRUFDWix1QkFBdUIsRUFJdkIsV0FBVyxFQUNYLFNBQVMsR0FHWixNQUFNLGVBQWUsQ0FBQztBQUV2QixPQUFPLEVBRUgsdUJBQXVCLEVBRXZCLDRCQUE0QixFQUM1Qix3QkFBd0IsR0FDM0IsTUFBTSx5QkFBeUIsQ0FBQztBQUNqQyxPQUFPLEVBRUgsYUFBYSxHQUNoQixNQUFNLGdDQUFnQyxDQUFDOzs7Ozs7Ozs7Ozs7Ozs7Ozs7QUEwQnhDLE1BQU0sT0FBTyw0QkFBNEI7SUFhckMsSUFDSSxPQUFPLENBQUMsS0FBSztRQUNiLElBQUksQ0FBQyxRQUFRLEdBQUcsS0FBSyxDQUFDO1FBQ3RCLElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQztJQUMxQixDQUFDO0lBQ0QsSUFBSSxPQUFPO1FBQ1AsT0FBTyxJQUFJLENBQUMsUUFBUSxDQUFDO0lBQ3pCLENBQUM7SUFHRCxJQUNJLE9BQU8sQ0FBQyxPQUFnQjtRQUN4QixJQUFJLENBQUMsUUFBUSxHQUFHLE9BQU8sQ0FBQztRQUN4QixJQUFJLE9BQU8sRUFBRTtZQUNULElBQUksQ0FBQyxRQUFRLENBQUMsV0FBVyxDQUNyQixJQUFJLENBQUMsT0FBTyxDQUFDLGFBQWEsRUFDMUIsZ0JBQWdCLENBQ25CLENBQUM7U0FDTDthQUFNO1lBQ0gsSUFBSSxDQUFDLFFBQVEsQ0FBQyxRQUFRLENBQ2xCLElBQUksQ0FBQyxPQUFPLENBQUMsYUFBYSxFQUMxQixnQkFBZ0IsQ0FDbkIsQ0FBQztTQUNMO0lBQ0wsQ0FBQztJQUNELElBQUksT0FBTztRQUNQLE9BQU8sSUFBSSxDQUFDLFFBQVEsQ0FBQztJQUN6QixDQUFDO0lBV0QsSUFDSSxVQUFVLENBQUMsS0FBb0I7UUFDL0IsSUFBSSxDQUFDLFdBQVcsR0FBRyxLQUFLLENBQUM7UUFDekIsSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDO0lBQzFCLENBQUM7SUFDRCxJQUFJLFVBQVU7UUFDVixPQUFPLElBQUksQ0FBQyxXQUFXLENBQUM7SUFDNUIsQ0FBQztJQUtELElBQ0ksY0FBYztRQUNkLE9BQU8sSUFBSSxDQUFDLGVBQWUsQ0FBQztJQUNoQyxDQUFDO0lBQ0QsSUFBSSxjQUFjLENBQUMsT0FBMkM7UUFDMUQsSUFBSSxPQUFPLEVBQUU7WUFDVCxJQUFJLENBQUMsZUFBZSxHQUFHLE9BQU8sQ0FBQztTQUNsQztJQUNMLENBQUM7SUFvQkQsWUFDWSxTQUF1QixFQUN2QixhQUErQixFQUMvQixvQkFBNkMsRUFDN0MsUUFBbUIsRUFDbkIsT0FBbUI7UUFKbkIsY0FBUyxHQUFULFNBQVMsQ0FBYztRQUN2QixrQkFBYSxHQUFiLGFBQWEsQ0FBa0I7UUFDL0IseUJBQW9CLEdBQXBCLG9CQUFvQixDQUF5QjtRQUM3QyxhQUFRLEdBQVIsUUFBUSxDQUFXO1FBQ25CLFlBQU8sR0FBUCxPQUFPLENBQVk7UUE5RnRCLFFBQUcsR0FBRyxFQUFFLENBQUM7UUFDVCxVQUFLLEdBQUcsRUFBRSxDQUFDO1FBQ1gsVUFBSyxHQUFHLEVBQUUsQ0FBQztRQUNYLGNBQVMsR0FBRyxLQUFLLENBQUM7UUFDbEIsYUFBUSxHQUFHLEtBQUssQ0FBQztRQUNqQixhQUFRLEdBQUcsS0FBSyxDQUFDO1FBRWpCLGVBQVUsR0FBMkIsNEJBQTRCLENBQUM7UUFDbEUsYUFBUSxHQUFHLElBQUksQ0FBQztRQUVqQixhQUFRLEdBQUcsQ0FBQyxDQUFDO1FBVWIsYUFBUSxHQUFHLElBQUksQ0FBQztRQW9CeEIsZ0JBQVcsR0FBRyxrQkFBa0IsQ0FBQztRQUV4QixTQUFJLEdBQWMsSUFBSSxDQUFDO1FBQ3ZCLGFBQVEsR0FBRyxLQUFLLENBQUM7UUFDakIsY0FBUyxHQUFHLElBQUksQ0FBQztRQUNqQixnQkFBVyxHQUFHLElBQUksQ0FBQztRQUNuQix3QkFBbUIsR0FBRyxJQUFJLENBQUM7UUFFNUIsZ0JBQVcsR0FBa0IsTUFBTSxDQUFDO1FBVW5DLGVBQVUsR0FBRyxLQUFLLENBQUM7UUFjNUIsZ0JBQVcsR0FBeUIsSUFBSSxZQUFZLEVBQVUsQ0FBQztRQUcvRCxrQkFBYSxHQUF5QixJQUFJLFlBQVksRUFBVSxDQUFDO1FBR2pFLHFCQUFnQixHQUEwQixJQUFJLFlBQVksRUFBVyxDQUFDO1FBSXRFLGlCQUFZLEdBQUcsRUFBRSxDQUFDO1FBQ2xCLHVCQUFrQixHQUFHLEVBQUUsQ0FBQztRQUV4QixnQkFBVyxHQUFHLEVBQUUsQ0FBQztRQUNqQixlQUFVLEdBQUcsS0FBSyxDQUFDO1FBQ25CLFdBQU0sR0FBRyxLQUFLLENBQUM7UUFTWCxJQUFJLENBQUMsY0FBYyxHQUFHLElBQUksQ0FBQyx3QkFBd0IsRUFBRSxDQUFDO0lBQzFELENBQUM7SUFFTyxjQUFjO1FBQ2xCLElBQUksQ0FBQyxXQUFXLEdBQUcsSUFBSSxDQUFDLG9CQUFvQixDQUFDLG9CQUFvQixDQUM3RCxJQUFJLENBQUMsVUFBVSxFQUNmLElBQUksQ0FBQyxPQUFPLEVBQ1osSUFBSSxDQUFDLFVBQVUsQ0FDbEIsQ0FBQztJQUNOLENBQUM7SUFFTyxjQUFjO1FBQ2xCLE1BQU0sUUFBUSxHQUFHLElBQUksd0JBQXdCLENBQUM7WUFDMUMsR0FBRyxFQUFFLElBQUksQ0FBQyxHQUFHO1lBQ2IsS0FBSyxFQUFFLElBQUksQ0FBQyxLQUFLO1lBQ2pCLFNBQVMsRUFBRSxJQUFJLENBQUMsU0FBUztZQUN6QixRQUFRLEVBQUUsSUFBSSxDQUFDLFFBQVE7WUFDdkIsUUFBUSxFQUFFLElBQUksQ0FBQyxRQUFRO1lBQ3ZCLGtCQUFrQixFQUFFLElBQUksQ0FBQyxrQkFBa0I7U0FDOUMsQ0FBQyxDQUFDO1FBQ0gsSUFBSSxDQUFDLElBQUksR0FBRyxJQUFJLENBQUMsb0JBQW9CLENBQUMsbUJBQW1CLENBQUMsUUFBUSxDQUFDLENBQUM7SUFDeEUsQ0FBQztJQUVELFFBQVE7UUFDSixJQUFJLElBQUksQ0FBQyxJQUFJLEtBQUssSUFBSSxFQUFFO1lBQ3BCLElBQUksQ0FBQyxVQUFVLEdBQUcsSUFBSSxDQUFDO1lBQ3ZCLElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQztZQUN0QixJQUFJLENBQUMsY0FBYyxFQUFFLENBQUM7WUFFdEIsSUFBSSxDQUFDLFFBQVEsQ0FBQyxRQUFRLENBQ2xCLElBQUksQ0FBQyxPQUFPLENBQUMsYUFBYSxFQUMxQix1QkFBdUIsQ0FBQyw0QkFBNEIsQ0FDdkQsQ0FBQztZQUVGLElBQUksQ0FBQyxJQUFJLENBQUMsV0FBVyxFQUFFO2dCQUNuQixJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsQ0FDbEIsSUFBSSxDQUFDLE9BQU8sQ0FBQyxhQUFhLEVBQzFCLHVCQUF1QixDQUFDLHVDQUF1QyxDQUNsRSxDQUFDO2FBQ0w7U0FDSjtRQUVELElBQUksQ0FBQyxZQUFZLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQztJQUNuQyxDQUFDO0lBRUQsV0FBVztRQUNQLElBQUksSUFBSSxDQUFDLFVBQVUsRUFBRTtZQUNqQixJQUFJLENBQUMsY0FBYyxFQUFFLENBQUM7U0FDekI7SUFDTCxDQUFDO0lBRUQsV0FBVztRQUNQLEVBQUU7SUFDTixDQUFDO0lBRUQsd0JBQXdCO1FBQ3BCLE9BQU87WUFDSCxJQUFJLEVBQUUsS0FBSztZQUNYLElBQUksRUFBRSxLQUFLO1lBQ1gsTUFBTSxFQUFFLElBQUk7WUFDWixJQUFJLEVBQUUsSUFBSTtZQUNWLE1BQU0sRUFBRSxJQUFJO1lBQ1osU0FBUyxFQUFFLElBQUk7WUFDZixNQUFNLEVBQUUsS0FBSztZQUNiLElBQUksRUFBRSxJQUFJO1lBQ1YsS0FBSyxFQUFFLElBQUk7WUFDWCxPQUFPLEVBQUUsSUFBSTtZQUNiLE1BQU0sRUFBRSxJQUFJO1lBQ1osS0FBSyxFQUFFLElBQUk7WUFDWCxVQUFVLEVBQUUsS0FBSztZQUNqQixLQUFLLEVBQUUsSUFBSTtTQUNkLENBQUM7SUFDTixDQUFDO0lBRUQsV0FBVyxDQUFDLEtBQVU7UUFDbEIsSUFBSSxLQUFLLEtBQUssSUFBSSxDQUFDLEtBQUssRUFBRTtZQUN0QixJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztZQUNuQixJQUFJLENBQUMsWUFBWSxHQUFHLEtBQUssQ0FBQztZQUMxQixJQUFJLENBQUMsb0JBQW9CLENBQUMsb0JBQW9CLENBQzFDLElBQUksQ0FBQyxJQUFJLEVBQ1QsSUFBSSxDQUFDLEdBQUcsRUFDUixLQUFLLENBQ1IsQ0FBQztZQUVGLG9HQUFvRztZQUNwRyw4RUFBOEU7WUFDOUUsSUFBSSxJQUFJLENBQUMsVUFBVSxFQUFFO2dCQUNqQixNQUFNLE9BQU8sR0FBRyxDQUFDLElBQUksQ0FBQyxRQUFRLElBQUksSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDO2dCQUMxRSxJQUFJLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDO2FBQ3ZDO1lBRUQsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7U0FDaEM7SUFDTCxDQUFDO0lBRUQsbUJBQW1CLENBQUMsS0FBVTtRQUMxQixJQUFJLENBQUMsVUFBVSxFQUFFLENBQUM7SUFDdEIsQ0FBQztJQUVELFVBQVU7UUFDTixNQUFNLE1BQU0sR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLGVBQWUsQ0FDN0M7UUFDSSxvQkFBb0I7UUFDcEIsb0JBQW9CO1FBQ3BCLHFCQUFxQjtTQUN4QixFQUNELE9BQU8sQ0FDVixDQUFDO1FBRUYsK0NBQStDO1FBQy9DLElBQUksSUFBSSxDQUFDLFFBQVEsSUFBSSxJQUFJLENBQUMsUUFBUSxFQUFFO1lBQ2hDLE1BQU0sSUFBSSxHQUFHLElBQUksYUFBYSxDQUFDO2dCQUMzQixLQUFLLEVBQUUsSUFBSSxDQUFDLEtBQUs7Z0JBQ2pCLE9BQU8sRUFBRSxJQUFJLENBQUMsWUFBWTtnQkFDMUIsVUFBVSxFQUFFLEtBQUs7YUFDcEIsQ0FBQyxDQUFDO1lBQ0gsSUFBSSxDQUFDLGFBQWEsQ0FBQyxpQkFBaUIsQ0FBQyxJQUFJLEVBQUUsTUFBTSxDQUFDLENBQUM7U0FDdEQ7YUFBTTtZQUNILElBQUksQ0FBQyxrQkFBa0IsR0FBRyxJQUFJLENBQUMsWUFBWSxDQUFDO1lBQzVDLE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxhQUFhLENBQUMsVUFBVSxDQUMzQyxJQUFJLENBQUMsNEJBQTRCLEVBQ2pDLEVBQUUsRUFDRixNQUFNLENBQ1QsQ0FBQztZQUVGLFNBQVMsQ0FBQyxXQUFXLEVBQUUsQ0FBQyxTQUFTLENBQUMsQ0FBQyxLQUFLLEVBQUUsRUFBRTtnQkFDeEMsSUFBSSxLQUFLLEtBQUssU0FBUyxJQUFJLEtBQUssS0FBSyxJQUFJLEVBQUU7b0JBQ3ZDLElBQUksQ0FBQyxXQUFXLENBQUMsS0FBSyxDQUFDLENBQUM7aUJBQzNCO1lBQ0wsQ0FBQyxDQUFDLENBQUM7U0FDTjtJQUNMLENBQUM7SUFFRCx3REFBd0Q7SUFDeEQsZUFBZSxDQUFDLEtBQVUsRUFBRSxRQUFpQjtRQUN6QyxJQUFJLENBQUMsUUFBUSxFQUFFO1lBQ1gsSUFBSSxDQUFDLFlBQVksR0FBRyxLQUFLLENBQUMsT0FBTyxFQUFFLENBQUM7U0FDdkM7UUFFRCxJQUFJLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUNuQyxDQUFDO0lBRUQsZ0JBQWdCLENBQUMsR0FBUSxFQUFFLFFBQWlCO1FBQ3hDLElBQUksUUFBUSxFQUFFO1lBQ1YsSUFBSSxDQUFDLGtCQUFrQixHQUFHLEdBQUcsQ0FBQyxJQUFJLENBQUM7U0FDdEM7YUFBTTtZQUNILElBQUksQ0FBQyxZQUFZLEdBQUcsR0FBRyxDQUFDLElBQUksQ0FBQztTQUNoQztJQUNMLENBQUM7SUFFRCxNQUFNLENBQUMsR0FBUSxFQUFFLFFBQWlCO1FBQzlCLElBQUksQ0FBQyxRQUFRLEVBQUU7WUFDWCxJQUFJLENBQUMsTUFBTSxHQUFHLEtBQUssQ0FBQztZQUNwQixJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsQ0FBQztTQUN2QztJQUNMLENBQUM7SUFFRCxPQUFPLENBQUMsR0FBUSxFQUFFLFFBQWlCO1FBQy9CLElBQUksQ0FBQyxRQUFRLEVBQUU7WUFDWCxJQUFJLENBQUMsTUFBTSxHQUFHLElBQUksQ0FBQztTQUN0QjtJQUNMLENBQUM7OzBIQW5RUSw0QkFBNEI7OEdBQTVCLDRCQUE0Qiw4dkJBa0ZjLFdBQVcsa0RDdElsRSxrbFhBaU1jOzRGRDdJRCw0QkFBNEI7a0JBTnhDLFNBQVM7K0JBQ0ksd0JBQXdCLG1CQUdqQix1QkFBdUIsQ0FBQyxNQUFNO3lOQUl0QyxHQUFHO3NCQUFYLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLEtBQUs7c0JBQWIsS0FBSztnQkFDRyxTQUFTO3NCQUFqQixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csUUFBUTtzQkFBaEIsS0FBSztnQkFDRyxrQkFBa0I7c0JBQTFCLEtBQUs7Z0JBQ0csVUFBVTtzQkFBbEIsS0FBSztnQkFDRyxRQUFRO3NCQUFoQixLQUFLO2dCQUlGLE9BQU87c0JBRFYsS0FBSztnQkFXRixPQUFPO3NCQURWLEtBQUs7Z0JBcUJHLElBQUk7c0JBQVosS0FBSztnQkFDRyxRQUFRO3NCQUFoQixLQUFLO2dCQUNHLFNBQVM7c0JBQWpCLEtBQUs7Z0JBQ0csV0FBVztzQkFBbkIsS0FBSztnQkFDRyxtQkFBbUI7c0JBQTNCLEtBQUs7Z0JBSUYsVUFBVTtzQkFEYixLQUFLO2dCQVNHLFVBQVU7c0JBQWxCLEtBQUs7Z0JBSUYsY0FBYztzQkFEakIsS0FBSztnQkFXTixXQUFXO3NCQURWLE1BQU07Z0JBSVAsYUFBYTtzQkFEWixNQUFNO2dCQUlQLGdCQUFnQjtzQkFEZixNQUFNO2dCQUlQLDRCQUE0QjtzQkFEM0IsU0FBUzt1QkFBQyw4QkFBOEIsRUFBRSxFQUFFLElBQUksRUFBRSxXQUFXLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICAgIENvbXBvbmVudCxcbiAgICBPbkluaXQsXG4gICAgSW5wdXQsXG4gICAgT3V0cHV0LFxuICAgIEV2ZW50RW1pdHRlcixcbiAgICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgICBPbkRlc3Ryb3ksXG4gICAgRWxlbWVudFJlZixcbiAgICBSZW5kZXJlcjIsXG4gICAgVGVtcGxhdGVSZWYsXG4gICAgVmlld0NoaWxkLFxuICAgIE9uQ2hhbmdlcyxcbiAgICBTaW1wbGVDaGFuZ2VzLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZvcm1Hcm91cCB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7XG4gICAgUGVwTGF5b3V0VHlwZSxcbiAgICBQZXBDdXN0b21pemF0aW9uU2VydmljZSxcbiAgICBQZXBIb3Jpem9udGFsQWxpZ25tZW50LFxuICAgIERFRkFVTFRfSE9SSVpPTlRBTF9BTElHTk1FTlQsXG4gICAgUGVwUmljaEh0bWxUZXh0YXJlYUZpZWxkLFxufSBmcm9tICdAcGVwcGVyaS1hZGRvbnMvbmd4LWxpYic7XG5pbXBvcnQge1xuICAgIFBlcERpYWxvZ1NlcnZpY2UsXG4gICAgUGVwRGlhbG9nRGF0YSxcbn0gZnJvbSAnQHBlcHBlcmktYWRkb25zL25neC1saWIvZGlhbG9nJztcbmltcG9ydCB7IFNhZmVIdG1sLCBEb21TYW5pdGl6ZXIgfSBmcm9tICdAYW5ndWxhci9wbGF0Zm9ybS1icm93c2VyJztcblxuZXhwb3J0IGludGVyZmFjZSBJUGVwUmljaEh0bWxUZXh0YXJlYVRvb2xiYXJPcHRpb25zIHtcbiAgICBmb250PzogYW55O1xuICAgIHNpemU/OiBhbnk7XG4gICAgaGVhZGVyPzogYW55O1xuICAgIGJvbGQ/OiBhbnk7XG4gICAgaXRhbGljPzogYW55O1xuICAgIHVuZGVybGluZT86IGFueTtcbiAgICBzdHJpa2U/OiBhbnk7XG4gICAgbGluaz86IGFueTtcbiAgICBpbWFnZT86IGFueTtcbiAgICBvcmRlcmVkPzogYW55O1xuICAgIGJ1bGxldD86IGFueTtcbiAgICBjb2xvcj86IGFueTtcbiAgICBiYWNrZ3JvdW5kPzogYW55O1xuICAgIGFsaWduPzogYW55O1xufVxuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ3BlcC1yaWNoLWh0bWwtdGV4dGFyZWEnLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9yaWNoLWh0bWwtdGV4dGFyZWEuY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL3JpY2gtaHRtbC10ZXh0YXJlYS5jb21wb25lbnQuc2NzcycsICcuL3JpY2gtaHRtbC10ZXh0YXJlYS5jb21wb25lbnQudGhlbWUuc2NzcyddLFxuICAgIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxufSlcbmV4cG9ydCBjbGFzcyBQZXBSaWNoSHRtbFRleHRhcmVhQ29tcG9uZW50XG4gICAgaW1wbGVtZW50cyBPbkluaXQsIE9uQ2hhbmdlcywgT25EZXN0cm95IHtcbiAgICBASW5wdXQoKSBrZXkgPSAnJztcbiAgICBASW5wdXQoKSB2YWx1ZSA9ICcnO1xuICAgIEBJbnB1dCgpIGxhYmVsID0gJyc7XG4gICAgQElucHV0KCkgbWFuZGF0b3J5ID0gZmFsc2U7XG4gICAgQElucHV0KCkgZGlzYWJsZWQgPSBmYWxzZTtcbiAgICBASW5wdXQoKSByZWFkb25seSA9IGZhbHNlO1xuICAgIEBJbnB1dCgpIG1heEZpZWxkQ2hhcmFjdGVyczogbnVtYmVyO1xuICAgIEBJbnB1dCgpIHhBbGlnbm1lbnQ6IFBlcEhvcml6b250YWxBbGlnbm1lbnQgPSBERUZBVUxUX0hPUklaT05UQUxfQUxJR05NRU5UO1xuICAgIEBJbnB1dCgpIHNhbml0aXplID0gdHJ1ZTtcblxuICAgIHByaXZhdGUgX3Jvd1NwYW4gPSAxO1xuICAgIEBJbnB1dCgpXG4gICAgc2V0IHJvd1NwYW4odmFsdWUpIHtcbiAgICAgICAgdGhpcy5fcm93U3BhbiA9IHZhbHVlO1xuICAgICAgICB0aGlzLnNldEZpZWxkSGVpZ2h0KCk7XG4gICAgfVxuICAgIGdldCByb3dTcGFuKCk6IG51bWJlciB7XG4gICAgICAgIHJldHVybiB0aGlzLl9yb3dTcGFuO1xuICAgIH1cblxuICAgIHByaXZhdGUgX3Zpc2libGUgPSB0cnVlO1xuICAgIEBJbnB1dCgpXG4gICAgc2V0IHZpc2libGUodmlzaWJsZTogYm9vbGVhbikge1xuICAgICAgICB0aGlzLl92aXNpYmxlID0gdmlzaWJsZTtcbiAgICAgICAgaWYgKHZpc2libGUpIHtcbiAgICAgICAgICAgIHRoaXMucmVuZGVyZXIucmVtb3ZlQ2xhc3MoXG4gICAgICAgICAgICAgICAgdGhpcy5lbGVtZW50Lm5hdGl2ZUVsZW1lbnQsXG4gICAgICAgICAgICAgICAgJ2hpZGRlbi1lbGVtZW50J1xuICAgICAgICAgICAgKTtcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIHRoaXMucmVuZGVyZXIuYWRkQ2xhc3MoXG4gICAgICAgICAgICAgICAgdGhpcy5lbGVtZW50Lm5hdGl2ZUVsZW1lbnQsXG4gICAgICAgICAgICAgICAgJ2hpZGRlbi1lbGVtZW50J1xuICAgICAgICAgICAgKTtcbiAgICAgICAgfVxuICAgIH1cbiAgICBnZXQgdmlzaWJsZSgpOiBib29sZWFuIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX3Zpc2libGU7XG4gICAgfVxuXG4gICAgY29udHJvbFR5cGUgPSAncmljaGh0bWx0ZXh0YXJlYSc7XG5cbiAgICBASW5wdXQoKSBmb3JtOiBGb3JtR3JvdXAgPSBudWxsO1xuICAgIEBJbnB1dCgpIGlzQWN0aXZlID0gZmFsc2U7XG4gICAgQElucHV0KCkgc2hvd1RpdGxlID0gdHJ1ZTtcbiAgICBASW5wdXQoKSByZW5kZXJUaXRsZSA9IHRydWU7XG4gICAgQElucHV0KCkgcmVuZGVyRW5sYXJnZUJ1dHRvbiA9IHRydWU7XG5cbiAgICBwcml2YXRlIF9sYXlvdXRUeXBlOiBQZXBMYXlvdXRUeXBlID0gJ2Zvcm0nO1xuICAgIEBJbnB1dCgpXG4gICAgc2V0IGxheW91dFR5cGUodmFsdWU6IFBlcExheW91dFR5cGUpIHtcbiAgICAgICAgdGhpcy5fbGF5b3V0VHlwZSA9IHZhbHVlO1xuICAgICAgICB0aGlzLnNldEZpZWxkSGVpZ2h0KCk7XG4gICAgfVxuICAgIGdldCBsYXlvdXRUeXBlKCk6IFBlcExheW91dFR5cGUge1xuICAgICAgICByZXR1cm4gdGhpcy5fbGF5b3V0VHlwZTtcbiAgICB9XG5cbiAgICBASW5wdXQoKSBpbmxpbmVNb2RlID0gZmFsc2U7XG5cbiAgICBwcm90ZWN0ZWQgX3Rvb2xiYXJPcHRpb25zOiBJUGVwUmljaEh0bWxUZXh0YXJlYVRvb2xiYXJPcHRpb25zO1xuICAgIEBJbnB1dCgpXG4gICAgZ2V0IHRvb2xiYXJPcHRpb25zKCk6IElQZXBSaWNoSHRtbFRleHRhcmVhVG9vbGJhck9wdGlvbnMge1xuICAgICAgICByZXR1cm4gdGhpcy5fdG9vbGJhck9wdGlvbnM7XG4gICAgfVxuICAgIHNldCB0b29sYmFyT3B0aW9ucyhvcHRpb25zOiBJUGVwUmljaEh0bWxUZXh0YXJlYVRvb2xiYXJPcHRpb25zKSB7XG4gICAgICAgIGlmIChvcHRpb25zKSB7XG4gICAgICAgICAgICB0aGlzLl90b29sYmFyT3B0aW9ucyA9IG9wdGlvbnM7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBAT3V0cHV0KClcbiAgICB2YWx1ZUNoYW5nZTogRXZlbnRFbWl0dGVyPHN0cmluZz4gPSBuZXcgRXZlbnRFbWl0dGVyPHN0cmluZz4oKTtcblxuICAgIEBPdXRwdXQoKVxuICAgIGVkaXRvckNyZWF0ZWQ6IEV2ZW50RW1pdHRlcjxzdHJpbmc+ID0gbmV3IEV2ZW50RW1pdHRlcjxzdHJpbmc+KCk7XG5cbiAgICBAT3V0cHV0KClcbiAgICB2YWxpZGF0aW9uQ2hhbmdlOiBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4gPSBuZXcgRXZlbnRFbWl0dGVyPGJvb2xlYW4+KCk7XG5cbiAgICBAVmlld0NoaWxkKCdyaWNoVGV4dEVkaXRvckRpYWxvZ1RlbXBsYXRlJywgeyByZWFkOiBUZW1wbGF0ZVJlZiB9KVxuICAgIHJpY2hUZXh0RWRpdG9yRGlhbG9nVGVtcGxhdGU6IFRlbXBsYXRlUmVmPGFueT47XG4gICAgcXVpbGxDb250ZW50ID0gJyc7XG4gICAgcXVpbGxDb250ZW50RGlhbG9nID0gJyc7XG5cbiAgICBmaWVsZEhlaWdodCA9ICcnO1xuICAgIHN0YW5kQWxvbmUgPSBmYWxzZTtcbiAgICBhY3RpdmUgPSBmYWxzZTtcblxuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICBwcml2YXRlIHNhbml0aXplcjogRG9tU2FuaXRpemVyLFxuICAgICAgICBwcml2YXRlIGRpYWxvZ1NlcnZpY2U6IFBlcERpYWxvZ1NlcnZpY2UsXG4gICAgICAgIHByaXZhdGUgY3VzdG9taXphdGlvblNlcnZpY2U6IFBlcEN1c3RvbWl6YXRpb25TZXJ2aWNlLFxuICAgICAgICBwcml2YXRlIHJlbmRlcmVyOiBSZW5kZXJlcjIsXG4gICAgICAgIHByaXZhdGUgZWxlbWVudDogRWxlbWVudFJlZlxuICAgICkge1xuICAgICAgICB0aGlzLnRvb2xiYXJPcHRpb25zID0gdGhpcy5nZXREZWZhdWx0VG9vbGJhck9wdGlvbnMoKTtcbiAgICB9XG5cbiAgICBwcml2YXRlIHNldEZpZWxkSGVpZ2h0KCk6IHZvaWQge1xuICAgICAgICB0aGlzLmZpZWxkSGVpZ2h0ID0gdGhpcy5jdXN0b21pemF0aW9uU2VydmljZS5jYWxjdWxhdGVGaWVsZEhlaWdodChcbiAgICAgICAgICAgIHRoaXMubGF5b3V0VHlwZSxcbiAgICAgICAgICAgIHRoaXMucm93U3BhbixcbiAgICAgICAgICAgIHRoaXMuc3RhbmRBbG9uZVxuICAgICAgICApO1xuICAgIH1cblxuICAgIHByaXZhdGUgc2V0RGVmYXVsdEZvcm0oKTogdm9pZCB7XG4gICAgICAgIGNvbnN0IHBlcEZpZWxkID0gbmV3IFBlcFJpY2hIdG1sVGV4dGFyZWFGaWVsZCh7XG4gICAgICAgICAgICBrZXk6IHRoaXMua2V5LFxuICAgICAgICAgICAgdmFsdWU6IHRoaXMudmFsdWUsXG4gICAgICAgICAgICBtYW5kYXRvcnk6IHRoaXMubWFuZGF0b3J5LFxuICAgICAgICAgICAgcmVhZG9ubHk6IHRoaXMucmVhZG9ubHksXG4gICAgICAgICAgICBkaXNhYmxlZDogdGhpcy5kaXNhYmxlZCxcbiAgICAgICAgICAgIG1heEZpZWxkQ2hhcmFjdGVyczogdGhpcy5tYXhGaWVsZENoYXJhY3RlcnMsXG4gICAgICAgIH0pO1xuICAgICAgICB0aGlzLmZvcm0gPSB0aGlzLmN1c3RvbWl6YXRpb25TZXJ2aWNlLmdldERlZmF1bHRGcm9tR3JvdXAocGVwRmllbGQpO1xuICAgIH1cblxuICAgIG5nT25Jbml0KCk6IHZvaWQge1xuICAgICAgICBpZiAodGhpcy5mb3JtID09PSBudWxsKSB7XG4gICAgICAgICAgICB0aGlzLnN0YW5kQWxvbmUgPSB0cnVlO1xuICAgICAgICAgICAgdGhpcy5zZXRGaWVsZEhlaWdodCgpO1xuICAgICAgICAgICAgdGhpcy5zZXREZWZhdWx0Rm9ybSgpO1xuXG4gICAgICAgICAgICB0aGlzLnJlbmRlcmVyLmFkZENsYXNzKFxuICAgICAgICAgICAgICAgIHRoaXMuZWxlbWVudC5uYXRpdmVFbGVtZW50LFxuICAgICAgICAgICAgICAgIFBlcEN1c3RvbWl6YXRpb25TZXJ2aWNlLlNUQU5EX0FMT05FX0ZJRUxEX0NMQVNTX05BTUVcbiAgICAgICAgICAgICk7XG5cbiAgICAgICAgICAgIGlmICghdGhpcy5yZW5kZXJUaXRsZSkge1xuICAgICAgICAgICAgICAgIHRoaXMucmVuZGVyZXIuYWRkQ2xhc3MoXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuZWxlbWVudC5uYXRpdmVFbGVtZW50LFxuICAgICAgICAgICAgICAgICAgICBQZXBDdXN0b21pemF0aW9uU2VydmljZS5TVEFORF9BTE9ORV9GSUVMRF9OT19TUEFDSU5HX0NMQVNTX05BTUVcbiAgICAgICAgICAgICAgICApO1xuICAgICAgICAgICAgfVxuICAgICAgICB9XG5cbiAgICAgICAgdGhpcy5xdWlsbENvbnRlbnQgPSB0aGlzLnZhbHVlO1xuICAgIH1cblxuICAgIG5nT25DaGFuZ2VzKCk6IHZvaWQge1xuICAgICAgICBpZiAodGhpcy5zdGFuZEFsb25lKSB7XG4gICAgICAgICAgICB0aGlzLnNldERlZmF1bHRGb3JtKCk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICAgICAgLy9cbiAgICB9XG5cbiAgICBnZXREZWZhdWx0VG9vbGJhck9wdGlvbnMoKTogSVBlcFJpY2hIdG1sVGV4dGFyZWFUb29sYmFyT3B0aW9ucyB7XG4gICAgICAgIHJldHVybiB7XG4gICAgICAgICAgICBmb250OiBmYWxzZSxcbiAgICAgICAgICAgIHNpemU6IGZhbHNlLFxuICAgICAgICAgICAgaGVhZGVyOiB0cnVlLFxuICAgICAgICAgICAgYm9sZDogdHJ1ZSxcbiAgICAgICAgICAgIGl0YWxpYzogdHJ1ZSxcbiAgICAgICAgICAgIHVuZGVybGluZTogdHJ1ZSxcbiAgICAgICAgICAgIHN0cmlrZTogZmFsc2UsXG4gICAgICAgICAgICBsaW5rOiB0cnVlLFxuICAgICAgICAgICAgaW1hZ2U6IHRydWUsXG4gICAgICAgICAgICBvcmRlcmVkOiB0cnVlLFxuICAgICAgICAgICAgYnVsbGV0OiB0cnVlLFxuICAgICAgICAgICAgY29sb3I6IHRydWUsXG4gICAgICAgICAgICBiYWNrZ3JvdW5kOiBmYWxzZSxcbiAgICAgICAgICAgIGFsaWduOiB0cnVlLFxuICAgICAgICB9O1xuICAgIH1cblxuICAgIGNoYW5nZVZhbHVlKHZhbHVlOiBhbnkpOiB2b2lkIHtcbiAgICAgICAgaWYgKHZhbHVlICE9PSB0aGlzLnZhbHVlKSB7XG4gICAgICAgICAgICB0aGlzLnZhbHVlID0gdmFsdWU7XG4gICAgICAgICAgICB0aGlzLnF1aWxsQ29udGVudCA9IHZhbHVlO1xuICAgICAgICAgICAgdGhpcy5jdXN0b21pemF0aW9uU2VydmljZS51cGRhdGVGb3JtRmllbGRWYWx1ZShcbiAgICAgICAgICAgICAgICB0aGlzLmZvcm0sXG4gICAgICAgICAgICAgICAgdGhpcy5rZXksXG4gICAgICAgICAgICAgICAgdmFsdWVcbiAgICAgICAgICAgICk7XG5cbiAgICAgICAgICAgIC8vIFJhaXNlIHRoaXMgb25seSBmb3Igc3RhbmQgYWxvbmUgZmllbGRzLCBJZiBmYWxzZSB0aGVuIHRoZSB1c2FnZSBmb3IgdGhpcyBmaWVsZCBpcyBpbnNpZGUgYSBmb3JtLiBcbiAgICAgICAgICAgIC8vIFRoZW4gdGhlIGZvcm0gd2lsbCB0YWtlIGNhcmUgb2YgcmFpc2luZyB0aGUgKG9uRm9ybVZhbGlkYXRpb25DaGFuZ2VkKSBldmVudFxuICAgICAgICAgICAgaWYgKHRoaXMuc3RhbmRBbG9uZSkge1xuICAgICAgICAgICAgICAgIGNvbnN0IGlzVmFsaWQgPSAodGhpcy5kaXNhYmxlZCB8fCB0aGlzLnJlYWRvbmx5KSA/IHRydWUgOiB0aGlzLmZvcm0udmFsaWQ7IFxuICAgICAgICAgICAgICAgIHRoaXMudmFsaWRhdGlvbkNoYW5nZS5lbWl0KGlzVmFsaWQpO1xuICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICB0aGlzLnZhbHVlQ2hhbmdlLmVtaXQodmFsdWUpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgY2FyZFRlbXBsYXRlQ2xpY2tlZChldmVudDogYW55KTogdm9pZCB7XG4gICAgICAgIHRoaXMub3BlbkRpYWxvZygpO1xuICAgIH1cblxuICAgIG9wZW5EaWFsb2coKTogdm9pZCB7XG4gICAgICAgIGNvbnN0IGNvbmZpZyA9IHRoaXMuZGlhbG9nU2VydmljZS5nZXREaWFsb2dDb25maWcoXG4gICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgLy8gbWluV2lkdGg6ICc1MHZ3JyxcbiAgICAgICAgICAgICAgICAvLyBtYXhXaWR0aDogJzkwdncnLFxuICAgICAgICAgICAgICAgIC8vIG1heEhlaWdodDogJzkwdmgnLFxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICdsYXJnZSdcbiAgICAgICAgKTtcblxuICAgICAgICAvLyBJZiBkaXNhYmxlZCBvcGVuIHJlZ3VsYXIgbW9kYWwgYXMgaHRtbCBtb2RlLlxuICAgICAgICBpZiAodGhpcy5kaXNhYmxlZCB8fCB0aGlzLnJlYWRvbmx5KSB7XG4gICAgICAgICAgICBjb25zdCBkYXRhID0gbmV3IFBlcERpYWxvZ0RhdGEoe1xuICAgICAgICAgICAgICAgIHRpdGxlOiB0aGlzLmxhYmVsLFxuICAgICAgICAgICAgICAgIGNvbnRlbnQ6IHRoaXMucXVpbGxDb250ZW50LFxuICAgICAgICAgICAgICAgIHNob3dGb290ZXI6IGZhbHNlLFxuICAgICAgICAgICAgfSk7XG4gICAgICAgICAgICB0aGlzLmRpYWxvZ1NlcnZpY2Uub3BlbkRlZmF1bHREaWFsb2coZGF0YSwgY29uZmlnKTtcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIHRoaXMucXVpbGxDb250ZW50RGlhbG9nID0gdGhpcy5xdWlsbENvbnRlbnQ7XG4gICAgICAgICAgICBjb25zdCBkaWFsb2dSZWYgPSB0aGlzLmRpYWxvZ1NlcnZpY2Uub3BlbkRpYWxvZyhcbiAgICAgICAgICAgICAgICB0aGlzLnJpY2hUZXh0RWRpdG9yRGlhbG9nVGVtcGxhdGUsXG4gICAgICAgICAgICAgICAge30sXG4gICAgICAgICAgICAgICAgY29uZmlnXG4gICAgICAgICAgICApO1xuXG4gICAgICAgICAgICBkaWFsb2dSZWYuYWZ0ZXJDbG9zZWQoKS5zdWJzY3JpYmUoKHZhbHVlKSA9PiB7XG4gICAgICAgICAgICAgICAgaWYgKHZhbHVlICE9PSB1bmRlZmluZWQgJiYgdmFsdWUgIT09IG51bGwpIHtcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5jaGFuZ2VWYWx1ZSh2YWx1ZSk7XG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfSk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICAvLyBJbml0IHF1aWxsQ29udGVudCBpbiBjYXNlIHRoYXQgdGhlcmUgYXJlIGh0bWwgdGFncy4uLlxuICAgIG9uRWRpdG9yQ3JlYXRlZChxdWlsbDogYW55LCBpbkRpYWxvZzogYm9vbGVhbik6IHZvaWQge1xuICAgICAgICBpZiAoIWluRGlhbG9nKSB7XG4gICAgICAgICAgICB0aGlzLnF1aWxsQ29udGVudCA9IHF1aWxsLmdldFRleHQoKTtcbiAgICAgICAgfVxuXG4gICAgICAgIHRoaXMuZWRpdG9yQ3JlYXRlZC5lbWl0KHF1aWxsKTtcbiAgICB9XG5cbiAgICBvbkNvbnRlbnRDaGFuZ2VkKG9iajogYW55LCBpbkRpYWxvZzogYm9vbGVhbik6IHZvaWQge1xuICAgICAgICBpZiAoaW5EaWFsb2cpIHtcbiAgICAgICAgICAgIHRoaXMucXVpbGxDb250ZW50RGlhbG9nID0gb2JqLmh0bWw7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICB0aGlzLnF1aWxsQ29udGVudCA9IG9iai5odG1sO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgb25CbHVyKG9iajogYW55LCBpbkRpYWxvZzogYm9vbGVhbik6IHZvaWQge1xuICAgICAgICBpZiAoIWluRGlhbG9nKSB7XG4gICAgICAgICAgICB0aGlzLmFjdGl2ZSA9IGZhbHNlO1xuICAgICAgICAgICAgdGhpcy5jaGFuZ2VWYWx1ZSh0aGlzLnF1aWxsQ29udGVudCk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBvbkZvY3VzKG9iajogYW55LCBpbkRpYWxvZzogYm9vbGVhbik6IHZvaWQge1xuICAgICAgICBpZiAoIWluRGlhbG9nKSB7XG4gICAgICAgICAgICB0aGlzLmFjdGl2ZSA9IHRydWU7XG4gICAgICAgIH1cbiAgICB9XG59XG4iLCI8bmctY29udGFpbmVyIFtmb3JtR3JvdXBdPVwiZm9ybVwiPlxuICAgIDxuZy10ZW1wbGF0ZSAjcGVwVGVtcGxhdGUgbGV0LWlzRm9ybVZpZXc9XCJpc0Zvcm1WaWV3XCI+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJwZXAtdGV4dGFyZWEtY29udGFpbmVyIHBlcC1yZXBvcnQtdGV4dGFyZWFcIiBbbmdDbGFzc109XCJ7ICdzdGFuZC1hbG9uZSc6IHN0YW5kQWxvbmUsXG4gICAgICAgICAgICAncmlnaHQtYWxpZ25tZW50JzogeEFsaWdubWVudCA9PSAncmlnaHQnLCAnb25lLXJvdyc6ICFpc0Zvcm1WaWV3ICYmIHJvd1NwYW4gPT09IDEsXG4gICAgICAgICAgICAncGVwLXRleHRhcmVhLWNhcmQtY29udGFpbmVyJzogbGF5b3V0VHlwZSA9PT0gJ2NhcmQnfVwiPlxuICAgICAgICAgICAgPHBlcC1maWVsZC10aXRsZSAqbmdJZj1cInJlbmRlclRpdGxlICYmIGlzRm9ybVZpZXdcIiBbbGFiZWxdPVwibGFiZWxcIiBbbWFuZGF0b3J5XT1cIm1hbmRhdG9yeVwiXG4gICAgICAgICAgICAgICAgW2Rpc2FibGVkXT1cImRpc2FibGVkXCJcbiAgICAgICAgICAgICAgICBbbWF4RmllbGRDaGFyYWN0ZXJzXT1cImlubGluZU1vZGUgJiYgIWRpc2FibGVkICYmICFyZWFkb25seSA/IG1heEZpZWxkQ2hhcmFjdGVycyA6IDBcIlxuICAgICAgICAgICAgICAgIFt4QWxpZ25tZW50XT1cInhBbGlnbm1lbnRcIiBbc2hvd1RpdGxlXT1cInNob3dUaXRsZVwiIFtpbnB1dExlbmd0aF09XCJxdWlsbENvbnRlbnQ/Lmxlbmd0aFwiPlxuICAgICAgICAgICAgPC9wZXAtZmllbGQtdGl0bGU+XG4gICAgICAgICAgICA8bWF0LWZvcm0tZmllbGQgYXBwZWFyYW5jZT1cIm91dGxpbmVcIiBkaXI9XCJ7eyB4QWxpZ25tZW50ID09ICdyaWdodCcgPyAncnRsJyA6ICdsdHInIH19XCJcbiAgICAgICAgICAgICAgICBbbmdDbGFzc109XCJ7ICdwZXAtdGFibGUtdGV4dGFyZWEnOiBsYXlvdXRUeXBlID09PSAndGFibGUnLCAnYWN0aXZlJzogYWN0aXZlLCAnaWdub3JlLWRpc2FibGVkJzogZGlzYWJsZWQsICdpY29uLWxlZnQnOiB4QWxpZ25tZW50ID09PSAnbGVmdCcgfHwgeEFsaWdubWVudCA9PT0gJ2NlbnRlcicsICdpY29uLXJpZ2h0JzogeEFsaWdubWVudCA9PT0gJ3JpZ2h0JyB9XCI+XG4gICAgICAgICAgICAgICAgPHRleHRhcmVhIFtoaWRkZW5dPVwidHJ1ZVwiIG1hdElucHV0IFtmb3JtQ29udHJvbE5hbWVdPVwia2V5XCI+PC90ZXh0YXJlYT5cblxuICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpbmxpbmVNb2RlOyB0aGVuIGlubGluZUJsb2NrOyBlbHNlIG5vdElubGluZUJsb2NrXCI+PC9uZy1jb250YWluZXI+XG5cbiAgICAgICAgICAgICAgICA8bmctdGVtcGxhdGUgI2lubGluZUJsb2NrPlxuICAgICAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwicXVpbFRlbXBsYXRlOyBjb250ZXh0OiB7aW5EaWFsb2c6IGZhbHNlfVwiPjwvbmctY29udGFpbmVyPlxuICAgICAgICAgICAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgICAgICAgICAgICAgPG5nLXRlbXBsYXRlICNub3RJbmxpbmVCbG9jaz5cblxuICAgICAgICAgICAgICAgICAgICA8IS0tIFdlIGNhbiB1c2UgdGhlIHF1aWxsLXZpZXctaHRtbFxuICAgICAgICAgICAgICAgICAgICA8cXVpbGwtdmlldy1odG1sIGNsYXNzPVwiYm9keS1zbSByaWNoLXRleHQtY29udCBcIlxuICAgICAgICAgICAgICAgICAgICBbbmdTdHlsZV09XCJ7ICd0ZXh0LWFsaWduJzogeEFsaWdubWVudCA9PSAncmlnaHQnID8gJ3JpZ2h0JyA6ICdsZWZ0JyB9XCIgW2NvbnRlbnRdPVwidmFsdWUgfCBwZXBTYWZlSHRtbFwiXG4gICAgICAgICAgICAgICAgICAgIHRoZW1lPVwic25vd1wiIFtzdHlsZS5oZWlnaHRdPVwiZmllbGRIZWlnaHRcIj48L3F1aWxsLXZpZXctaHRtbD4gXG4gICAgICAgICAgICAgICAgLS0+XG5cbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImJvZHktc20gcmljaC10ZXh0LWNvbnQgXCIgW25nQ2xhc3NdPVwieydoaWRlLWVubGFyZ2UtYnV0dG9uJzogIXJlbmRlckVubGFyZ2VCdXR0b259XCJcbiAgICAgICAgICAgICAgICAgICAgICAgIFtuZ1N0eWxlXT1cInsgJ3RleHQtYWxpZ24nOiB4QWxpZ25tZW50ID09ICdyaWdodCcgPyAncmlnaHQnIDogJ2xlZnQnIH1cIlxuICAgICAgICAgICAgICAgICAgICAgICAgW2lubmVySHRtbF09XCJ2YWx1ZSB8IHBlcFNhZmVIdG1sXCIgW3N0eWxlLmhlaWdodF09XCJmaWVsZEhlaWdodFwiPlxuICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICA8L25nLXRlbXBsYXRlPlxuICAgICAgICAgICAgICAgIDxwZXAtdGV4dGJveC1pY29uICpuZ0lmPVwicmVuZGVyRW5sYXJnZUJ1dHRvblwiIG1hdFN1ZmZpeCBbdmFsdWVdPVwidmFsdWVcIiBbbGFiZWxdPVwibGFiZWxcIlxuICAgICAgICAgICAgICAgICAgICBbdHlwZV09XCJjb250cm9sVHlwZVwiIFtkaXNhYmxlZF09XCJkaXNhYmxlZCB8fCByZWFkb25seVwiXG4gICAgICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsgJ2NhcmQtb25lLXJvdy1pY29uJzogbGF5b3V0VHlwZSA9PT0gJ2NhcmQnICYmIHJvd1NwYW4gPT09IDEgfVwiXG4gICAgICAgICAgICAgICAgICAgIChpY29uQ2xpY2spPVwib3BlbkRpYWxvZygpXCI+XG4gICAgICAgICAgICAgICAgPC9wZXAtdGV4dGJveC1pY29uPlxuICAgICAgICAgICAgICAgIDxtYXQtZXJyb3I+XG4gICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiYm9keS14c1wiXG4gICAgICAgICAgICAgICAgICAgICAgICBbdGl0bGVdPVwibWFuZGF0b3J5ICYmIHZhbHVlLmxlbmd0aCA9PSAwID8gKCdNRVNTQUdFUy5FUlJPUl9JU19SRVFVSVJFRCcgfCB0cmFuc2xhdGU6IHsgZmllbGQ6IGxhYmVsIH0pIDogKCdNRVNTQUdFUy5FUlJPUl9JU19OT1RfVkFMSUQnIHwgdHJhbnNsYXRlOiB7IGZpZWxkOiBsYWJlbCB9KVwiXG4gICAgICAgICAgICAgICAgICAgICAgICBbaW5uZXJUZXh0XT1cIm1hbmRhdG9yeSAmJiB2YWx1ZS5sZW5ndGggPT0gMCA/ICgnTUVTU0FHRVMuRVJST1JfSVNfUkVRVUlSRUQnIHwgdHJhbnNsYXRlOiB7IGZpZWxkOiBsYWJlbCB9KSA6ICgnTUVTU0FHRVMuRVJST1JfSVNfTk9UX1ZBTElEJyB8IHRyYW5zbGF0ZTogeyBmaWVsZDogbGFiZWwgfSlcIj48L3NwYW4+XG4gICAgICAgICAgICAgICAgPC9tYXQtZXJyb3I+XG5cbiAgICAgICAgICAgIDwvbWF0LWZvcm0tZmllbGQ+XG4gICAgICAgIDwvZGl2PlxuICAgIDwvbmctdGVtcGxhdGU+XG5cbiAgICA8bmctY29udGFpbmVyICpuZ0lmPVwibGF5b3V0VHlwZSA9PT0gJ2Zvcm0nXCI+XG4gICAgICAgIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJwZXBUZW1wbGF0ZTsgY29udGV4dDogeyBpc0Zvcm1WaWV3OiB0cnVlIH1cIj48L25nLWNvbnRhaW5lcj5cbiAgICA8L25nLWNvbnRhaW5lcj5cblxuICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJsYXlvdXRUeXBlID09PSAnY2FyZCdcIj5cbiAgICAgICAgPGRpdiBjbGFzcz1cInBlcC10ZXh0YXJlYS1jYXJkLWNvbnRhaW5lciBjYXJkLWZsZXgtY29udGFpbmVyXCJcbiAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsnb25lLXJvdyc6IHJvd1NwYW4gPT09IDEsICdwZXAtYnV0dG9uIHdlYWsnOiBpc0FjdGl2ZSAmJiAhZGlzYWJsZWR9XCJcbiAgICAgICAgICAgIFtuZ1N0eWxlXT1cInsgJy13ZWJraXQtbGluZS1jbGFtcCc6IHJvd1NwYW4gfVwiIFtjbGFzc109XCIndGV4dC1hbGlnbi0nICsgeEFsaWdubWVudFwiXG4gICAgICAgICAgICAoY2xpY2spPVwiIWRpc2FibGVkID8gY2FyZFRlbXBsYXRlQ2xpY2tlZCgkZXZlbnQpIDogJydcIiBbc3R5bGUuaGVpZ2h0XT1cImZpZWxkSGVpZ2h0XCI+XG4gICAgICAgICAgICA8c3BhbiAqbmdJZj1cInNob3dUaXRsZSAmJiBsYWJlbCAhPSAnJ1wiIGNsYXNzPVwiYm9keS14cyB0aXRsZSBuby1zaHJpbmtcIiB0aXRsZT1cInt7IGxhYmVsIH19XCI+e3sgbGFiZWxcbiAgICAgICAgICAgICAgICB9fTombmJzcDs8L3NwYW4+XG4gICAgICAgICAgICA8c3BhbiBbaWRdPVwia2V5XCIgY2xhc3M9XCJib2R5LXNtIHZhbHVlIHdyYXBcIiBzdHlsZT1cIndpZHRoOiAxMDAlO1wiIFtpbm5lckh0bWxdPVwidmFsdWUgfCBwZXBTYWZlSHRtbFwiPjwvc3Bhbj5cbiAgICAgICAgICAgIDxidXR0b24gKm5nSWY9XCJpc0FjdGl2ZSAmJiAhZGlzYWJsZWRcIiBjbGFzcz1cInBlcC1idXR0b24gd2VhayBjYXJkLWVkaXQtYnV0dG9uIHNlbGYtc3RhcnRcIlxuICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsnc2VsZi1lbmQnIDogdmFsdWUgJiYgdmFsdWUgIT09ICcnfVwiIG1hdC1idXR0b24+XG4gICAgICAgICAgICAgICAgPG1hdC1pY29uPlxuICAgICAgICAgICAgICAgICAgICA8cGVwLWljb24gbmFtZT1cInN5c3RlbV9lZGl0XCI+XG4gICAgICAgICAgICAgICAgICAgIDwvcGVwLWljb24+XG4gICAgICAgICAgICAgICAgPC9tYXQtaWNvbj5cbiAgICAgICAgICAgIDwvYnV0dG9uPlxuICAgICAgICA8L2Rpdj5cbiAgICA8L25nLWNvbnRhaW5lcj5cblxuICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJsYXlvdXRUeXBlID09PSAndGFibGUnXCI+XG4gICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpc0FjdGl2ZSAmJiAhZGlzYWJsZWQ7IHRoZW4gc2VsZWN0ZWRCbG9jazsgZWxzZSBub3RTZWxlY3RlZEJsb2NrXCI+PC9uZy1jb250YWluZXI+XG4gICAgICAgIDxuZy10ZW1wbGF0ZSAjc2VsZWN0ZWRCbG9jaz5cbiAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJwZXBUZW1wbGF0ZTsgY29udGV4dDogeyBpc0Zvcm1WaWV3OiBmYWxzZSB9XCI+PC9uZy1jb250YWluZXI+XG4gICAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgICAgIDxuZy10ZW1wbGF0ZSAjbm90U2VsZWN0ZWRCbG9jaz5cbiAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJ2YWx1ZT8ubGVuZ3RoID4gMDsgdGhlbiBub3RFbXB0eUJsb2NrOyBlbHNlIGVtcHR5QmxvY2tcIj48L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjbm90RW1wdHlCbG9jaz5cbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwicGVwLXRleHRhcmVhLWNhcmQtY29udGFpbmVyIGNhcmQtZmxleC1jb250YWluZXIgb25lLXJvd1wiPlxuICAgICAgICAgICAgICAgICAgICA8c3BhbiBbaWRdPVwia2V5XCIgY2xhc3M9XCJ3cmFwXCIgW2lubmVySHRtbF09XCJ2YWx1ZSB8IHBlcFNhZmVIdG1sXCI+PC9zcGFuPlxuICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPC9uZy10ZW1wbGF0ZT5cbiAgICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjZW1wdHlCbG9jaz5cbiAgICAgICAgICAgICAgICA8c3Bhbj4mbmJzcDs8L3NwYW4+XG4gICAgICAgICAgICA8L25nLXRlbXBsYXRlPlxuICAgICAgICA8L25nLXRlbXBsYXRlPlxuICAgIDwvbmctY29udGFpbmVyPlxuPC9uZy1jb250YWluZXI+XG5cbjxuZy10ZW1wbGF0ZSAjcmljaFRleHRFZGl0b3JEaWFsb2dUZW1wbGF0ZT5cbiAgICA8ZGl2IGNsYXNzPVwicmljaC10ZXh0LWVkaXRvci1jb250YWluZXJcIj5cbiAgICAgICAgPGJ1dHRvbiBtYXQtYnV0dG9uIFttYXQtZGlhbG9nLWNsb3NlXT1cIm51bGxcIiBjbGFzcz1cInBlcC1idXR0b24gaWNvbi1idXR0b24gbWQgd2VhayBwdWxsLXJpZ2h0IGZsaXBcIj5cbiAgICAgICAgICAgIDxtYXQtaWNvbj5cbiAgICAgICAgICAgICAgICA8cGVwLWljb24gbmFtZT1cInN5c3RlbV9jbG9zZVwiPlxuICAgICAgICAgICAgICAgIDwvcGVwLWljb24+XG4gICAgICAgICAgICA8L21hdC1pY29uPlxuICAgICAgICA8L2J1dHRvbj5cbiAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cInF1aWxUZW1wbGF0ZTsgY29udGV4dDoge2luRGlhbG9nOiB0cnVlfVwiPjwvbmctY29udGFpbmVyPlxuICAgICAgICA8ZGl2IG1hdC1kaWFsb2ctYWN0aW9ucyBjbGFzcz1cIiBwZXAtYm9yZGVyLXRvcFwiPlxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cInBlcC1zcGFjaW5nLWVsZW1lbnQtbmVnYXRpdmVcIj5cbiAgICAgICAgICAgICAgICA8YnV0dG9uIG1hdC1idXR0b24gW21hdC1kaWFsb2ctY2xvc2VdPVwibnVsbFwiIGNsYXNzPVwicGVwLXNwYWNpbmctZWxlbWVudCBwZXAtYnV0dG9uIG1kIHdlYWtcIj5cbiAgICAgICAgICAgICAgICAgICAge3snQUNUSU9OUy5DQU5DRUwnIHwgdHJhbnNsYXRlfX1cbiAgICAgICAgICAgICAgICA8L2J1dHRvbj5cbiAgICAgICAgICAgICAgICA8YnV0dG9uIG1hdC1idXR0b24gW21hdC1kaWFsb2ctY2xvc2VdPVwicXVpbGxDb250ZW50RGlhbG9nIHx8ICcnXCIgW2Rpc2FibGVkXT1cImRpc2FibGVkXCJcbiAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJwZXAtc3BhY2luZy1lbGVtZW50IHBlcC1idXR0b24gbWQgc3Ryb25nIFwiPlxuICAgICAgICAgICAgICAgICAgICB7eydBQ1RJT05TLlNBVkUnIHwgdHJhbnNsYXRlfX1cbiAgICAgICAgICAgICAgICA8L2J1dHRvbj5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICA8L2Rpdj5cbiAgICA8L2Rpdj5cbjwvbmctdGVtcGxhdGU+XG5cbjxuZy10ZW1wbGF0ZSAjcXVpbFRlbXBsYXRlIGxldC1pbkRpYWxvZz1cImluRGlhbG9nXCI+XG4gICAgPHF1aWxsLWVkaXRvciBpZD1cInt7aW5EaWFsb2cgPyAncXVpbGwtZWRpdG9yLWRpYWxvZycgOiAncXVpbGwtZWRpdG9yLWlubGluZSd9fVwiXG4gICAgICAgIFtjbGFzc109XCJpbkRpYWxvZyA/ICdkaWFsb2ctcXVpbGwnIDogJ2lubGluZS1xdWlsbCdcIlxuICAgICAgICBbbmdDbGFzc109XCJ7ICdyaWNoLXRleHQtY29udCc6ICFpbkRpYWxvZywgJ2hpZGUtZW5sYXJnZS1idXR0b24nOiAhcmVuZGVyRW5sYXJnZUJ1dHRvbiB9XCJcbiAgICAgICAgcGxhY2Vob2xkZXI9XCJ7eydSSUNIX1RFWFRBUkVBLkhJTlQnIHwgdHJhbnNsYXRlfX1cIiBbbmdNb2RlbF09XCJpbkRpYWxvZyA/IHF1aWxsQ29udGVudERpYWxvZyA6IHF1aWxsQ29udGVudFwiXG4gICAgICAgIFtzYW5pdGl6ZV09XCJzYW5pdGl6ZVwiIFtyZWFkT25seV09XCJkaXNhYmxlZFwiIFttYXhMZW5ndGhdPVwibWF4RmllbGRDaGFyYWN0ZXJzXCIgW3JlcXVpcmVkXT1cIm1hbmRhdG9yeVwiXG4gICAgICAgIChvbkVkaXRvckNyZWF0ZWQpPVwib25FZGl0b3JDcmVhdGVkKCRldmVudCwgaW5EaWFsb2cpXCIgKG9uQ29udGVudENoYW5nZWQpPVwib25Db250ZW50Q2hhbmdlZCgkZXZlbnQsIGluRGlhbG9nKVwiXG4gICAgICAgIChvbkJsdXIpPVwib25CbHVyKCRldmVudCwgaW5EaWFsb2cpXCIgKG9uRm9jdXMpPVwib25Gb2N1cygkZXZlbnQsIGluRGlhbG9nKVwiIHRoZW1lPVwiXCI+XG4gICAgICAgIDxkaXYgKm5nSWY9XCIhZGlzYWJsZWRcIiBxdWlsbC1lZGl0b3ItdG9vbGJhcj5cbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJwZXAtc3BhY2luZy1lbGVtZW50LW5lZ2F0aXZlXCI+XG4gICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJxbC1mb3JtYXRzXCI+XG4gICAgICAgICAgICAgICAgICAgIDxzZWxlY3QgKm5nSWY9XCJ0b29sYmFyT3B0aW9ucz8uZm9udFwiXG4gICAgICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInBlcC1zcGFjaW5nLWVsZW1lbnQgcGVwLWJ1dHRvbiBpY29uLWJ1dHRvbiBtZCB3ZWFrIHFsLWZvbnQgc2VsZWN0LWFycm93XCI+XG4gICAgICAgICAgICAgICAgICAgICAgICA8b3B0aW9uIHNlbGVjdGVkPjwvb3B0aW9uPlxuICAgICAgICAgICAgICAgICAgICAgICAgPG9wdGlvbiB2YWx1ZT1cInNlcmlmXCI+PC9vcHRpb24+XG4gICAgICAgICAgICAgICAgICAgICAgICA8b3B0aW9uIHZhbHVlPVwibW9ub3NwYWNlXCI+PC9vcHRpb24+XG4gICAgICAgICAgICAgICAgICAgIDwvc2VsZWN0PlxuICAgICAgICAgICAgICAgICAgICA8c2VsZWN0ICpuZ0lmPVwidG9vbGJhck9wdGlvbnM/LnNpemVcIlxuICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJwZXAtc3BhY2luZy1lbGVtZW50IHBlcC1idXR0b24gaWNvbi1idXR0b24gbWQgd2VhayBxbC1zaXplIHNlbGVjdC1hcnJvd1wiPlxuICAgICAgICAgICAgICAgICAgICAgICAgPG9wdGlvbiB2YWx1ZT1cInNtYWxsXCI+PC9vcHRpb24+XG4gICAgICAgICAgICAgICAgICAgICAgICA8b3B0aW9uIHNlbGVjdGVkPjwvb3B0aW9uPlxuICAgICAgICAgICAgICAgICAgICAgICAgPG9wdGlvbiB2YWx1ZT1cImxhcmdlXCI+PC9vcHRpb24+XG4gICAgICAgICAgICAgICAgICAgICAgICA8b3B0aW9uIHZhbHVlPVwiaHVnZVwiPjwvb3B0aW9uPlxuICAgICAgICAgICAgICAgICAgICA8L3NlbGVjdD5cbiAgICAgICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJxbC1mb3JtYXRzXCI+XG4gICAgICAgICAgICAgICAgICAgIDxzZWxlY3QgKm5nSWY9XCJ0b29sYmFyT3B0aW9ucz8uaGVhZGVyXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwicGVwLXNwYWNpbmctZWxlbWVudCBwZXAtYnV0dG9uIGljb24tYnV0dG9uIG1kIHdlYWsgcWwtaGVhZGVyIHNlbGVjdC1hcnJvd1wiPlxuICAgICAgICAgICAgICAgICAgICAgICAgPG9wdGlvbiB2YWx1ZT1cIjFcIj48L29wdGlvbj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxvcHRpb24gdmFsdWU9XCIyXCI+PC9vcHRpb24+XG4gICAgICAgICAgICAgICAgICAgICAgICA8b3B0aW9uIHZhbHVlPVwiM1wiPjwvb3B0aW9uPlxuICAgICAgICAgICAgICAgICAgICAgICAgPCEtLSBcbiAgICAgICAgICAgICAgICAgICAgICAgIDxvcHRpb24gdmFsdWU9XCI0XCI+PC9vcHRpb24+XG4gICAgICAgICAgICAgICAgICAgICAgICA8b3B0aW9uIHZhbHVlPVwiNVwiPjwvb3B0aW9uPlxuICAgICAgICAgICAgICAgICAgICAgICAgPG9wdGlvbiB2YWx1ZT1cIjZcIj48L29wdGlvbj4gXG4gICAgICAgICAgICAgICAgICAgICAgICAtLT5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxvcHRpb24gdmFsdWU9XCJmYWxzZVwiIHNlbGVjdGVkPjwvb3B0aW9uPlxuICAgICAgICAgICAgICAgICAgICA8L3NlbGVjdD5cbiAgICAgICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgICAgICAgPCEtLSA8aHIgY2xhc3M9XCJ2ZXJ0aWNhbC1zZXBhcmF0b3JcIiAvPiAtLT5cbiAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInFsLWZvcm1hdHNcIj5cbiAgICAgICAgICAgICAgICAgICAgPGJ1dHRvbiBtYXQtYnV0dG9uICpuZ0lmPVwidG9vbGJhck9wdGlvbnM/LmJvbGRcIlxuICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJwZXAtc3BhY2luZy1lbGVtZW50IHBlcC1idXR0b24gaWNvbi1idXR0b24gbWQgd2VhayBxbC1ib2xkXCI+PC9idXR0b24+XG4gICAgICAgICAgICAgICAgICAgIDxidXR0b24gbWF0LWJ1dHRvbiAqbmdJZj1cInRvb2xiYXJPcHRpb25zPy5pdGFsaWNcIlxuICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJwZXAtc3BhY2luZy1lbGVtZW50IHBlcC1idXR0b24gaWNvbi1idXR0b24gbWQgd2VhayBxbC1pdGFsaWNcIj48L2J1dHRvbj5cbiAgICAgICAgICAgICAgICAgICAgPGJ1dHRvbiBtYXQtYnV0dG9uICpuZ0lmPVwidG9vbGJhck9wdGlvbnM/LnVuZGVybGluZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInBlcC1zcGFjaW5nLWVsZW1lbnQgcGVwLWJ1dHRvbiBpY29uLWJ1dHRvbiBtZCB3ZWFrIHFsLXVuZGVybGluZVwiPjwvYnV0dG9uPlxuICAgICAgICAgICAgICAgICAgICA8YnV0dG9uIG1hdC1idXR0b24gKm5nSWY9XCJ0b29sYmFyT3B0aW9ucz8uc3RyaWtlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwicGVwLXNwYWNpbmctZWxlbWVudCBwZXAtYnV0dG9uIGljb24tYnV0dG9uIG1kIHdlYWsgcWwtc3RyaWtlXCI+PC9idXR0b24+XG4gICAgICAgICAgICAgICAgPC9zcGFuPlxuICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwicWwtZm9ybWF0c1wiPlxuICAgICAgICAgICAgICAgICAgICA8YnV0dG9uIG1hdC1idXR0b24gKm5nSWY9XCJ0b29sYmFyT3B0aW9ucz8ubGlua1wiXG4gICAgICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInBlcC1zcGFjaW5nLWVsZW1lbnQgcGVwLWJ1dHRvbiBpY29uLWJ1dHRvbiBtZCB3ZWFrIHFsLWxpbmtcIj48L2J1dHRvbj5cbiAgICAgICAgICAgICAgICAgICAgPGJ1dHRvbiBtYXQtYnV0dG9uICpuZ0lmPVwidG9vbGJhck9wdGlvbnM/LmltYWdlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwicGVwLXNwYWNpbmctZWxlbWVudCBwZXAtYnV0dG9uIGljb24tYnV0dG9uIG1kIHdlYWsgcWwtaW1hZ2VcIj48L2J1dHRvbj5cbiAgICAgICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgICAgICAgPCEtLSA8aHIgY2xhc3M9XCJ2ZXJ0aWNhbC1zZXBhcmF0b3JcIiAvPiAtLT5cbiAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInFsLWZvcm1hdHNcIj5cbiAgICAgICAgICAgICAgICAgICAgPGJ1dHRvbiBtYXQtYnV0dG9uICpuZ0lmPVwidG9vbGJhck9wdGlvbnM/Lm9yZGVyZWRcIlxuICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJwZXAtc3BhY2luZy1lbGVtZW50IHBlcC1idXR0b24gaWNvbi1idXR0b24gbWQgd2VhayBxbC1saXN0XCIgdmFsdWU9XCJvcmRlcmVkXCI+PC9idXR0b24+XG4gICAgICAgICAgICAgICAgICAgIDxidXR0b24gbWF0LWJ1dHRvbiAqbmdJZj1cInRvb2xiYXJPcHRpb25zPy5idWxsZXRcIlxuICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJwZXAtc3BhY2luZy1lbGVtZW50IHBlcC1idXR0b24gaWNvbi1idXR0b24gbWQgd2VhayBxbC1saXN0XCIgdmFsdWU9XCJidWxsZXRcIj48L2J1dHRvbj5cbiAgICAgICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgICAgICAgPCEtLSA8aHIgY2xhc3M9XCJ2ZXJ0aWNhbC1zZXBhcmF0b3JcIiAvPiAtLT5cbiAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInFsLWZvcm1hdHNcIj5cbiAgICAgICAgICAgICAgICAgICAgPHNlbGVjdCAqbmdJZj1cInRvb2xiYXJPcHRpb25zPy5jb2xvclwiXG4gICAgICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInBlcC1zcGFjaW5nLWVsZW1lbnQgcGVwLWJ1dHRvbiBpY29uLWJ1dHRvbiBtZCB3ZWFrIHFsLWNvbG9yXCI+PC9zZWxlY3Q+XG4gICAgICAgICAgICAgICAgICAgIDxzZWxlY3QgKm5nSWY9XCJ0b29sYmFyT3B0aW9ucz8uYmFja2dyb3VuZFwiXG4gICAgICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInBlcC1zcGFjaW5nLWVsZW1lbnQgcGVwLWJ1dHRvbiBpY29uLWJ1dHRvbiBtZCB3ZWFrIHFsLWJhY2tncm91bmRcIj48L3NlbGVjdD5cbiAgICAgICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJxbC1mb3JtYXRzXCI+XG4gICAgICAgICAgICAgICAgICAgIDxzZWxlY3QgKm5nSWY9XCJ0b29sYmFyT3B0aW9ucz8uYWxpZ25cIlxuICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJwZXAtc3BhY2luZy1lbGVtZW50IHBlcC1idXR0b24gaWNvbi1idXR0b24gbWQgd2VhayBxbC1hbGlnblwiPlxuICAgICAgICAgICAgICAgICAgICAgICAgPG9wdGlvbiBzZWxlY3RlZD48L29wdGlvbj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxvcHRpb24gdmFsdWU9XCJjZW50ZXJcIj48L29wdGlvbj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxvcHRpb24gdmFsdWU9XCJyaWdodFwiPjwvb3B0aW9uPlxuICAgICAgICAgICAgICAgICAgICAgICAgPG9wdGlvbiB2YWx1ZT1cImp1c3RpZnlcIj48L29wdGlvbj5cbiAgICAgICAgICAgICAgICAgICAgPC9zZWxlY3Q+XG4gICAgICAgICAgICAgICAgPC9zcGFuPlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvZGl2PlxuICAgIDwvcXVpbGwtZWRpdG9yPlxuPC9uZy10ZW1wbGF0ZT4iXX0=
272
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoicmljaC1odG1sLXRleHRhcmVhLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uL3Byb2plY3RzL25neC1saWIvcmljaC1odG1sLXRleHRhcmVhL3JpY2gtaHRtbC10ZXh0YXJlYS5jb21wb25lbnQudHMiLCIuLi8uLi8uLi8uLi9wcm9qZWN0cy9uZ3gtbGliL3JpY2gtaHRtbC10ZXh0YXJlYS9yaWNoLWh0bWwtdGV4dGFyZWEuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUNILFNBQVMsRUFFVCxLQUFLLEVBQ0wsTUFBTSxFQUNOLFlBQVksRUFDWix1QkFBdUIsRUFJdkIsV0FBVyxFQUNYLFNBQVMsR0FHWixNQUFNLGVBQWUsQ0FBQztBQUV2QixPQUFPLEVBRUgsdUJBQXVCLEVBRXZCLDRCQUE0QixFQUM1Qix3QkFBd0IsR0FDM0IsTUFBTSx5QkFBeUIsQ0FBQztBQUNqQyxPQUFPLEVBRUgsYUFBYSxHQUNoQixNQUFNLGdDQUFnQyxDQUFDOzs7Ozs7Ozs7Ozs7Ozs7Ozs7QUEwQnhDLE1BQU0sT0FBTyw0QkFBNEI7SUE0RnpCO0lBQ0E7SUFDQTtJQUNBO0lBQ0E7SUE5RkgsR0FBRyxHQUFHLEVBQUUsQ0FBQztJQUNULEtBQUssR0FBRyxFQUFFLENBQUM7SUFDWCxLQUFLLEdBQUcsRUFBRSxDQUFDO0lBQ1gsU0FBUyxHQUFHLEtBQUssQ0FBQztJQUNsQixRQUFRLEdBQUcsS0FBSyxDQUFDO0lBQ2pCLFFBQVEsR0FBRyxLQUFLLENBQUM7SUFDakIsa0JBQWtCLENBQVM7SUFDM0IsVUFBVSxHQUEyQiw0QkFBNEIsQ0FBQztJQUNsRSxRQUFRLEdBQUcsSUFBSSxDQUFDO0lBRWpCLFFBQVEsR0FBRyxDQUFDLENBQUM7SUFDckIsSUFDSSxPQUFPLENBQUMsS0FBSztRQUNiLElBQUksQ0FBQyxRQUFRLEdBQUcsS0FBSyxDQUFDO1FBQ3RCLElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQztJQUMxQixDQUFDO0lBQ0QsSUFBSSxPQUFPO1FBQ1AsT0FBTyxJQUFJLENBQUMsUUFBUSxDQUFDO0lBQ3pCLENBQUM7SUFFTyxRQUFRLEdBQUcsSUFBSSxDQUFDO0lBQ3hCLElBQ0ksT0FBTyxDQUFDLE9BQWdCO1FBQ3hCLElBQUksQ0FBQyxRQUFRLEdBQUcsT0FBTyxDQUFDO1FBQ3hCLElBQUksT0FBTyxFQUFFO1lBQ1QsSUFBSSxDQUFDLFFBQVEsQ0FBQyxXQUFXLENBQ3JCLElBQUksQ0FBQyxPQUFPLENBQUMsYUFBYSxFQUMxQixnQkFBZ0IsQ0FDbkIsQ0FBQztTQUNMO2FBQU07WUFDSCxJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsQ0FDbEIsSUFBSSxDQUFDLE9BQU8sQ0FBQyxhQUFhLEVBQzFCLGdCQUFnQixDQUNuQixDQUFDO1NBQ0w7SUFDTCxDQUFDO0lBQ0QsSUFBSSxPQUFPO1FBQ1AsT0FBTyxJQUFJLENBQUMsUUFBUSxDQUFDO0lBQ3pCLENBQUM7SUFFRCxXQUFXLEdBQUcsa0JBQWtCLENBQUM7SUFFeEIsSUFBSSxHQUFjLElBQUksQ0FBQztJQUN2QixRQUFRLEdBQUcsS0FBSyxDQUFDO0lBQ2pCLFNBQVMsR0FBRyxJQUFJLENBQUM7SUFDakIsV0FBVyxHQUFHLElBQUksQ0FBQztJQUNuQixtQkFBbUIsR0FBRyxJQUFJLENBQUM7SUFFNUIsV0FBVyxHQUFrQixNQUFNLENBQUM7SUFDNUMsSUFDSSxVQUFVLENBQUMsS0FBb0I7UUFDL0IsSUFBSSxDQUFDLFdBQVcsR0FBRyxLQUFLLENBQUM7UUFDekIsSUFBSSxDQUFDLGNBQWMsRUFBRSxDQUFDO0lBQzFCLENBQUM7SUFDRCxJQUFJLFVBQVU7UUFDVixPQUFPLElBQUksQ0FBQyxXQUFXLENBQUM7SUFDNUIsQ0FBQztJQUVRLFVBQVUsR0FBRyxLQUFLLENBQUM7SUFFbEIsZUFBZSxDQUFxQztJQUM5RCxJQUNJLGNBQWM7UUFDZCxPQUFPLElBQUksQ0FBQyxlQUFlLENBQUM7SUFDaEMsQ0FBQztJQUNELElBQUksY0FBYyxDQUFDLE9BQTJDO1FBQzFELElBQUksT0FBTyxFQUFFO1lBQ1QsSUFBSSxDQUFDLGVBQWUsR0FBRyxPQUFPLENBQUM7U0FDbEM7SUFDTCxDQUFDO0lBR0QsV0FBVyxHQUF5QixJQUFJLFlBQVksRUFBVSxDQUFDO0lBRy9ELGFBQWEsR0FBeUIsSUFBSSxZQUFZLEVBQVUsQ0FBQztJQUdqRSxnQkFBZ0IsR0FBMEIsSUFBSSxZQUFZLEVBQVcsQ0FBQztJQUd0RSw0QkFBNEIsQ0FBbUI7SUFDL0MsWUFBWSxHQUFHLEVBQUUsQ0FBQztJQUNsQixrQkFBa0IsR0FBRyxFQUFFLENBQUM7SUFFeEIsV0FBVyxHQUFHLEVBQUUsQ0FBQztJQUNqQixVQUFVLEdBQUcsS0FBSyxDQUFDO0lBQ25CLE1BQU0sR0FBRyxLQUFLLENBQUM7SUFFZixZQUNZLFNBQXVCLEVBQ3ZCLGFBQStCLEVBQy9CLG9CQUE2QyxFQUM3QyxRQUFtQixFQUNuQixPQUFtQjtRQUpuQixjQUFTLEdBQVQsU0FBUyxDQUFjO1FBQ3ZCLGtCQUFhLEdBQWIsYUFBYSxDQUFrQjtRQUMvQix5QkFBb0IsR0FBcEIsb0JBQW9CLENBQXlCO1FBQzdDLGFBQVEsR0FBUixRQUFRLENBQVc7UUFDbkIsWUFBTyxHQUFQLE9BQU8sQ0FBWTtRQUUzQixJQUFJLENBQUMsY0FBYyxHQUFHLElBQUksQ0FBQyx3QkFBd0IsRUFBRSxDQUFDO0lBQzFELENBQUM7SUFFTyxjQUFjO1FBQ2xCLElBQUksQ0FBQyxXQUFXLEdBQUcsSUFBSSxDQUFDLG9CQUFvQixDQUFDLG9CQUFvQixDQUM3RCxJQUFJLENBQUMsVUFBVSxFQUNmLElBQUksQ0FBQyxPQUFPLEVBQ1osSUFBSSxDQUFDLFVBQVUsQ0FDbEIsQ0FBQztJQUNOLENBQUM7SUFFTyxjQUFjO1FBQ2xCLE1BQU0sUUFBUSxHQUFHLElBQUksd0JBQXdCLENBQUM7WUFDMUMsR0FBRyxFQUFFLElBQUksQ0FBQyxHQUFHO1lBQ2IsS0FBSyxFQUFFLElBQUksQ0FBQyxLQUFLO1lBQ2pCLFNBQVMsRUFBRSxJQUFJLENBQUMsU0FBUztZQUN6QixRQUFRLEVBQUUsSUFBSSxDQUFDLFFBQVE7WUFDdkIsUUFBUSxFQUFFLElBQUksQ0FBQyxRQUFRO1lBQ3ZCLGtCQUFrQixFQUFFLElBQUksQ0FBQyxrQkFBa0I7U0FDOUMsQ0FBQyxDQUFDO1FBQ0gsSUFBSSxDQUFDLElBQUksR0FBRyxJQUFJLENBQUMsb0JBQW9CLENBQUMsbUJBQW1CLENBQUMsUUFBUSxDQUFDLENBQUM7SUFDeEUsQ0FBQztJQUVELFFBQVE7UUFDSixJQUFJLElBQUksQ0FBQyxJQUFJLEtBQUssSUFBSSxFQUFFO1lBQ3BCLElBQUksQ0FBQyxVQUFVLEdBQUcsSUFBSSxDQUFDO1lBQ3ZCLElBQUksQ0FBQyxjQUFjLEVBQUUsQ0FBQztZQUN0QixJQUFJLENBQUMsY0FBYyxFQUFFLENBQUM7WUFFdEIsSUFBSSxDQUFDLFFBQVEsQ0FBQyxRQUFRLENBQ2xCLElBQUksQ0FBQyxPQUFPLENBQUMsYUFBYSxFQUMxQix1QkFBdUIsQ0FBQyw0QkFBNEIsQ0FDdkQsQ0FBQztZQUVGLElBQUksQ0FBQyxJQUFJLENBQUMsV0FBVyxFQUFFO2dCQUNuQixJQUFJLENBQUMsUUFBUSxDQUFDLFFBQVEsQ0FDbEIsSUFBSSxDQUFDLE9BQU8sQ0FBQyxhQUFhLEVBQzFCLHVCQUF1QixDQUFDLHVDQUF1QyxDQUNsRSxDQUFDO2FBQ0w7U0FDSjtRQUVELElBQUksQ0FBQyxZQUFZLEdBQUcsSUFBSSxDQUFDLEtBQUssQ0FBQztJQUNuQyxDQUFDO0lBRUQsV0FBVztRQUNQLElBQUksSUFBSSxDQUFDLFVBQVUsRUFBRTtZQUNqQixJQUFJLENBQUMsY0FBYyxFQUFFLENBQUM7U0FDekI7SUFDTCxDQUFDO0lBRUQsV0FBVztRQUNQLEVBQUU7SUFDTixDQUFDO0lBRUQsd0JBQXdCO1FBQ3BCLE9BQU87WUFDSCxJQUFJLEVBQUUsS0FBSztZQUNYLElBQUksRUFBRSxLQUFLO1lBQ1gsTUFBTSxFQUFFLElBQUk7WUFDWixJQUFJLEVBQUUsSUFBSTtZQUNWLE1BQU0sRUFBRSxJQUFJO1lBQ1osU0FBUyxFQUFFLElBQUk7WUFDZixNQUFNLEVBQUUsS0FBSztZQUNiLElBQUksRUFBRSxJQUFJO1lBQ1YsS0FBSyxFQUFFLElBQUk7WUFDWCxPQUFPLEVBQUUsSUFBSTtZQUNiLE1BQU0sRUFBRSxJQUFJO1lBQ1osS0FBSyxFQUFFLElBQUk7WUFDWCxVQUFVLEVBQUUsS0FBSztZQUNqQixLQUFLLEVBQUUsSUFBSTtTQUNkLENBQUM7SUFDTixDQUFDO0lBRUQsV0FBVyxDQUFDLEtBQVU7UUFDbEIsSUFBSSxLQUFLLEtBQUssSUFBSSxDQUFDLEtBQUssRUFBRTtZQUN0QixJQUFJLENBQUMsS0FBSyxHQUFHLEtBQUssQ0FBQztZQUNuQixJQUFJLENBQUMsWUFBWSxHQUFHLEtBQUssQ0FBQztZQUMxQixJQUFJLENBQUMsb0JBQW9CLENBQUMsb0JBQW9CLENBQzFDLElBQUksQ0FBQyxJQUFJLEVBQ1QsSUFBSSxDQUFDLEdBQUcsRUFDUixLQUFLLENBQ1IsQ0FBQztZQUVGLG9HQUFvRztZQUNwRyw4RUFBOEU7WUFDOUUsSUFBSSxJQUFJLENBQUMsVUFBVSxFQUFFO2dCQUNqQixNQUFNLE9BQU8sR0FBRyxDQUFDLElBQUksQ0FBQyxRQUFRLElBQUksSUFBSSxDQUFDLFFBQVEsQ0FBQyxDQUFDLENBQUMsQ0FBQyxJQUFJLENBQUMsQ0FBQyxDQUFDLElBQUksQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDO2dCQUMxRSxJQUFJLENBQUMsZ0JBQWdCLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxDQUFDO2FBQ3ZDO1lBRUQsSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7U0FDaEM7SUFDTCxDQUFDO0lBRUQsbUJBQW1CLENBQUMsS0FBVTtRQUMxQixJQUFJLENBQUMsVUFBVSxFQUFFLENBQUM7SUFDdEIsQ0FBQztJQUVELFVBQVU7UUFDTixNQUFNLE1BQU0sR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLGVBQWUsQ0FDN0M7UUFDSSxvQkFBb0I7UUFDcEIsb0JBQW9CO1FBQ3BCLHFCQUFxQjtTQUN4QixFQUNELE9BQU8sQ0FDVixDQUFDO1FBRUYsK0NBQStDO1FBQy9DLElBQUksSUFBSSxDQUFDLFFBQVEsSUFBSSxJQUFJLENBQUMsUUFBUSxFQUFFO1lBQ2hDLE1BQU0sSUFBSSxHQUFHLElBQUksYUFBYSxDQUFDO2dCQUMzQixLQUFLLEVBQUUsSUFBSSxDQUFDLEtBQUs7Z0JBQ2pCLE9BQU8sRUFBRSxJQUFJLENBQUMsWUFBWTtnQkFDMUIsVUFBVSxFQUFFLEtBQUs7YUFDcEIsQ0FBQyxDQUFDO1lBQ0gsSUFBSSxDQUFDLGFBQWEsQ0FBQyxpQkFBaUIsQ0FBQyxJQUFJLEVBQUUsTUFBTSxDQUFDLENBQUM7U0FDdEQ7YUFBTTtZQUNILElBQUksQ0FBQyxrQkFBa0IsR0FBRyxJQUFJLENBQUMsWUFBWSxDQUFDO1lBQzVDLE1BQU0sU0FBUyxHQUFHLElBQUksQ0FBQyxhQUFhLENBQUMsVUFBVSxDQUMzQyxJQUFJLENBQUMsNEJBQTRCLEVBQ2pDLEVBQUUsRUFDRixNQUFNLENBQ1QsQ0FBQztZQUVGLFNBQVMsQ0FBQyxXQUFXLEVBQUUsQ0FBQyxTQUFTLENBQUMsQ0FBQyxLQUFLLEVBQUUsRUFBRTtnQkFDeEMsSUFBSSxLQUFLLEtBQUssU0FBUyxJQUFJLEtBQUssS0FBSyxJQUFJLEVBQUU7b0JBQ3ZDLElBQUksQ0FBQyxXQUFXLENBQUMsS0FBSyxDQUFDLENBQUM7aUJBQzNCO1lBQ0wsQ0FBQyxDQUFDLENBQUM7U0FDTjtJQUNMLENBQUM7SUFFRCx3REFBd0Q7SUFDeEQsZUFBZSxDQUFDLEtBQVUsRUFBRSxRQUFpQjtRQUN6QyxJQUFJLENBQUMsUUFBUSxFQUFFO1lBQ1gsSUFBSSxDQUFDLFlBQVksR0FBRyxLQUFLLENBQUMsT0FBTyxFQUFFLENBQUM7U0FDdkM7UUFFRCxJQUFJLENBQUMsYUFBYSxDQUFDLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUNuQyxDQUFDO0lBRUQsZ0JBQWdCLENBQUMsR0FBUSxFQUFFLFFBQWlCO1FBQ3hDLElBQUksUUFBUSxFQUFFO1lBQ1YsSUFBSSxDQUFDLGtCQUFrQixHQUFHLEdBQUcsQ0FBQyxJQUFJLENBQUM7U0FDdEM7YUFBTTtZQUNILElBQUksQ0FBQyxZQUFZLEdBQUcsR0FBRyxDQUFDLElBQUksQ0FBQztTQUNoQztJQUNMLENBQUM7SUFFRCxNQUFNLENBQUMsR0FBUSxFQUFFLFFBQWlCO1FBQzlCLElBQUksQ0FBQyxRQUFRLEVBQUU7WUFDWCxJQUFJLENBQUMsTUFBTSxHQUFHLEtBQUssQ0FBQztZQUNwQixJQUFJLENBQUMsV0FBVyxDQUFDLElBQUksQ0FBQyxZQUFZLENBQUMsQ0FBQztTQUN2QztJQUNMLENBQUM7SUFFRCxPQUFPLENBQUMsR0FBUSxFQUFFLFFBQWlCO1FBQy9CLElBQUksQ0FBQyxRQUFRLEVBQUU7WUFDWCxJQUFJLENBQUMsTUFBTSxHQUFHLElBQUksQ0FBQztTQUN0QjtJQUNMLENBQUM7d0dBblFRLDRCQUE0Qjs0RkFBNUIsNEJBQTRCLDh2QkFrRmMsV0FBVyxrREN0SWxFLGtsWEFpTWM7OzRGRDdJRCw0QkFBNEI7a0JBTnhDLFNBQVM7K0JBQ0ksd0JBQXdCLG1CQUdqQix1QkFBdUIsQ0FBQyxNQUFNO3lOQUl0QyxHQUFHO3NCQUFYLEtBQUs7Z0JBQ0csS0FBSztzQkFBYixLQUFLO2dCQUNHLEtBQUs7c0JBQWIsS0FBSztnQkFDRyxTQUFTO3NCQUFqQixLQUFLO2dCQUNHLFFBQVE7c0JBQWhCLEtBQUs7Z0JBQ0csUUFBUTtzQkFBaEIsS0FBSztnQkFDRyxrQkFBa0I7c0JBQTFCLEtBQUs7Z0JBQ0csVUFBVTtzQkFBbEIsS0FBSztnQkFDRyxRQUFRO3NCQUFoQixLQUFLO2dCQUlGLE9BQU87c0JBRFYsS0FBSztnQkFXRixPQUFPO3NCQURWLEtBQUs7Z0JBcUJHLElBQUk7c0JBQVosS0FBSztnQkFDRyxRQUFRO3NCQUFoQixLQUFLO2dCQUNHLFNBQVM7c0JBQWpCLEtBQUs7Z0JBQ0csV0FBVztzQkFBbkIsS0FBSztnQkFDRyxtQkFBbUI7c0JBQTNCLEtBQUs7Z0JBSUYsVUFBVTtzQkFEYixLQUFLO2dCQVNHLFVBQVU7c0JBQWxCLEtBQUs7Z0JBSUYsY0FBYztzQkFEakIsS0FBSztnQkFXTixXQUFXO3NCQURWLE1BQU07Z0JBSVAsYUFBYTtzQkFEWixNQUFNO2dCQUlQLGdCQUFnQjtzQkFEZixNQUFNO2dCQUlQLDRCQUE0QjtzQkFEM0IsU0FBUzt1QkFBQyw4QkFBOEIsRUFBRSxFQUFFLElBQUksRUFBRSxXQUFXLEVBQUUiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuICAgIENvbXBvbmVudCxcbiAgICBPbkluaXQsXG4gICAgSW5wdXQsXG4gICAgT3V0cHV0LFxuICAgIEV2ZW50RW1pdHRlcixcbiAgICBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneSxcbiAgICBPbkRlc3Ryb3ksXG4gICAgRWxlbWVudFJlZixcbiAgICBSZW5kZXJlcjIsXG4gICAgVGVtcGxhdGVSZWYsXG4gICAgVmlld0NoaWxkLFxuICAgIE9uQ2hhbmdlcyxcbiAgICBTaW1wbGVDaGFuZ2VzLFxufSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEZvcm1Hcm91cCB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7XG4gICAgUGVwTGF5b3V0VHlwZSxcbiAgICBQZXBDdXN0b21pemF0aW9uU2VydmljZSxcbiAgICBQZXBIb3Jpem9udGFsQWxpZ25tZW50LFxuICAgIERFRkFVTFRfSE9SSVpPTlRBTF9BTElHTk1FTlQsXG4gICAgUGVwUmljaEh0bWxUZXh0YXJlYUZpZWxkLFxufSBmcm9tICdAcGVwcGVyaS1hZGRvbnMvbmd4LWxpYic7XG5pbXBvcnQge1xuICAgIFBlcERpYWxvZ1NlcnZpY2UsXG4gICAgUGVwRGlhbG9nRGF0YSxcbn0gZnJvbSAnQHBlcHBlcmktYWRkb25zL25neC1saWIvZGlhbG9nJztcbmltcG9ydCB7IFNhZmVIdG1sLCBEb21TYW5pdGl6ZXIgfSBmcm9tICdAYW5ndWxhci9wbGF0Zm9ybS1icm93c2VyJztcblxuZXhwb3J0IGludGVyZmFjZSBJUGVwUmljaEh0bWxUZXh0YXJlYVRvb2xiYXJPcHRpb25zIHtcbiAgICBmb250PzogYW55O1xuICAgIHNpemU/OiBhbnk7XG4gICAgaGVhZGVyPzogYW55O1xuICAgIGJvbGQ/OiBhbnk7XG4gICAgaXRhbGljPzogYW55O1xuICAgIHVuZGVybGluZT86IGFueTtcbiAgICBzdHJpa2U/OiBhbnk7XG4gICAgbGluaz86IGFueTtcbiAgICBpbWFnZT86IGFueTtcbiAgICBvcmRlcmVkPzogYW55O1xuICAgIGJ1bGxldD86IGFueTtcbiAgICBjb2xvcj86IGFueTtcbiAgICBiYWNrZ3JvdW5kPzogYW55O1xuICAgIGFsaWduPzogYW55O1xufVxuXG5AQ29tcG9uZW50KHtcbiAgICBzZWxlY3RvcjogJ3BlcC1yaWNoLWh0bWwtdGV4dGFyZWEnLFxuICAgIHRlbXBsYXRlVXJsOiAnLi9yaWNoLWh0bWwtdGV4dGFyZWEuY29tcG9uZW50Lmh0bWwnLFxuICAgIHN0eWxlVXJsczogWycuL3JpY2gtaHRtbC10ZXh0YXJlYS5jb21wb25lbnQuc2NzcycsICcuL3JpY2gtaHRtbC10ZXh0YXJlYS5jb21wb25lbnQudGhlbWUuc2NzcyddLFxuICAgIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxufSlcbmV4cG9ydCBjbGFzcyBQZXBSaWNoSHRtbFRleHRhcmVhQ29tcG9uZW50XG4gICAgaW1wbGVtZW50cyBPbkluaXQsIE9uQ2hhbmdlcywgT25EZXN0cm95IHtcbiAgICBASW5wdXQoKSBrZXkgPSAnJztcbiAgICBASW5wdXQoKSB2YWx1ZSA9ICcnO1xuICAgIEBJbnB1dCgpIGxhYmVsID0gJyc7XG4gICAgQElucHV0KCkgbWFuZGF0b3J5ID0gZmFsc2U7XG4gICAgQElucHV0KCkgZGlzYWJsZWQgPSBmYWxzZTtcbiAgICBASW5wdXQoKSByZWFkb25seSA9IGZhbHNlO1xuICAgIEBJbnB1dCgpIG1heEZpZWxkQ2hhcmFjdGVyczogbnVtYmVyO1xuICAgIEBJbnB1dCgpIHhBbGlnbm1lbnQ6IFBlcEhvcml6b250YWxBbGlnbm1lbnQgPSBERUZBVUxUX0hPUklaT05UQUxfQUxJR05NRU5UO1xuICAgIEBJbnB1dCgpIHNhbml0aXplID0gdHJ1ZTtcblxuICAgIHByaXZhdGUgX3Jvd1NwYW4gPSAxO1xuICAgIEBJbnB1dCgpXG4gICAgc2V0IHJvd1NwYW4odmFsdWUpIHtcbiAgICAgICAgdGhpcy5fcm93U3BhbiA9IHZhbHVlO1xuICAgICAgICB0aGlzLnNldEZpZWxkSGVpZ2h0KCk7XG4gICAgfVxuICAgIGdldCByb3dTcGFuKCk6IG51bWJlciB7XG4gICAgICAgIHJldHVybiB0aGlzLl9yb3dTcGFuO1xuICAgIH1cblxuICAgIHByaXZhdGUgX3Zpc2libGUgPSB0cnVlO1xuICAgIEBJbnB1dCgpXG4gICAgc2V0IHZpc2libGUodmlzaWJsZTogYm9vbGVhbikge1xuICAgICAgICB0aGlzLl92aXNpYmxlID0gdmlzaWJsZTtcbiAgICAgICAgaWYgKHZpc2libGUpIHtcbiAgICAgICAgICAgIHRoaXMucmVuZGVyZXIucmVtb3ZlQ2xhc3MoXG4gICAgICAgICAgICAgICAgdGhpcy5lbGVtZW50Lm5hdGl2ZUVsZW1lbnQsXG4gICAgICAgICAgICAgICAgJ2hpZGRlbi1lbGVtZW50J1xuICAgICAgICAgICAgKTtcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIHRoaXMucmVuZGVyZXIuYWRkQ2xhc3MoXG4gICAgICAgICAgICAgICAgdGhpcy5lbGVtZW50Lm5hdGl2ZUVsZW1lbnQsXG4gICAgICAgICAgICAgICAgJ2hpZGRlbi1lbGVtZW50J1xuICAgICAgICAgICAgKTtcbiAgICAgICAgfVxuICAgIH1cbiAgICBnZXQgdmlzaWJsZSgpOiBib29sZWFuIHtcbiAgICAgICAgcmV0dXJuIHRoaXMuX3Zpc2libGU7XG4gICAgfVxuXG4gICAgY29udHJvbFR5cGUgPSAncmljaGh0bWx0ZXh0YXJlYSc7XG5cbiAgICBASW5wdXQoKSBmb3JtOiBGb3JtR3JvdXAgPSBudWxsO1xuICAgIEBJbnB1dCgpIGlzQWN0aXZlID0gZmFsc2U7XG4gICAgQElucHV0KCkgc2hvd1RpdGxlID0gdHJ1ZTtcbiAgICBASW5wdXQoKSByZW5kZXJUaXRsZSA9IHRydWU7XG4gICAgQElucHV0KCkgcmVuZGVyRW5sYXJnZUJ1dHRvbiA9IHRydWU7XG5cbiAgICBwcml2YXRlIF9sYXlvdXRUeXBlOiBQZXBMYXlvdXRUeXBlID0gJ2Zvcm0nO1xuICAgIEBJbnB1dCgpXG4gICAgc2V0IGxheW91dFR5cGUodmFsdWU6IFBlcExheW91dFR5cGUpIHtcbiAgICAgICAgdGhpcy5fbGF5b3V0VHlwZSA9IHZhbHVlO1xuICAgICAgICB0aGlzLnNldEZpZWxkSGVpZ2h0KCk7XG4gICAgfVxuICAgIGdldCBsYXlvdXRUeXBlKCk6IFBlcExheW91dFR5cGUge1xuICAgICAgICByZXR1cm4gdGhpcy5fbGF5b3V0VHlwZTtcbiAgICB9XG5cbiAgICBASW5wdXQoKSBpbmxpbmVNb2RlID0gZmFsc2U7XG5cbiAgICBwcm90ZWN0ZWQgX3Rvb2xiYXJPcHRpb25zOiBJUGVwUmljaEh0bWxUZXh0YXJlYVRvb2xiYXJPcHRpb25zO1xuICAgIEBJbnB1dCgpXG4gICAgZ2V0IHRvb2xiYXJPcHRpb25zKCk6IElQZXBSaWNoSHRtbFRleHRhcmVhVG9vbGJhck9wdGlvbnMge1xuICAgICAgICByZXR1cm4gdGhpcy5fdG9vbGJhck9wdGlvbnM7XG4gICAgfVxuICAgIHNldCB0b29sYmFyT3B0aW9ucyhvcHRpb25zOiBJUGVwUmljaEh0bWxUZXh0YXJlYVRvb2xiYXJPcHRpb25zKSB7XG4gICAgICAgIGlmIChvcHRpb25zKSB7XG4gICAgICAgICAgICB0aGlzLl90b29sYmFyT3B0aW9ucyA9IG9wdGlvbnM7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBAT3V0cHV0KClcbiAgICB2YWx1ZUNoYW5nZTogRXZlbnRFbWl0dGVyPHN0cmluZz4gPSBuZXcgRXZlbnRFbWl0dGVyPHN0cmluZz4oKTtcblxuICAgIEBPdXRwdXQoKVxuICAgIGVkaXRvckNyZWF0ZWQ6IEV2ZW50RW1pdHRlcjxzdHJpbmc+ID0gbmV3IEV2ZW50RW1pdHRlcjxzdHJpbmc+KCk7XG5cbiAgICBAT3V0cHV0KClcbiAgICB2YWxpZGF0aW9uQ2hhbmdlOiBFdmVudEVtaXR0ZXI8Ym9vbGVhbj4gPSBuZXcgRXZlbnRFbWl0dGVyPGJvb2xlYW4+KCk7XG5cbiAgICBAVmlld0NoaWxkKCdyaWNoVGV4dEVkaXRvckRpYWxvZ1RlbXBsYXRlJywgeyByZWFkOiBUZW1wbGF0ZVJlZiB9KVxuICAgIHJpY2hUZXh0RWRpdG9yRGlhbG9nVGVtcGxhdGU6IFRlbXBsYXRlUmVmPGFueT47XG4gICAgcXVpbGxDb250ZW50ID0gJyc7XG4gICAgcXVpbGxDb250ZW50RGlhbG9nID0gJyc7XG5cbiAgICBmaWVsZEhlaWdodCA9ICcnO1xuICAgIHN0YW5kQWxvbmUgPSBmYWxzZTtcbiAgICBhY3RpdmUgPSBmYWxzZTtcblxuICAgIGNvbnN0cnVjdG9yKFxuICAgICAgICBwcml2YXRlIHNhbml0aXplcjogRG9tU2FuaXRpemVyLFxuICAgICAgICBwcml2YXRlIGRpYWxvZ1NlcnZpY2U6IFBlcERpYWxvZ1NlcnZpY2UsXG4gICAgICAgIHByaXZhdGUgY3VzdG9taXphdGlvblNlcnZpY2U6IFBlcEN1c3RvbWl6YXRpb25TZXJ2aWNlLFxuICAgICAgICBwcml2YXRlIHJlbmRlcmVyOiBSZW5kZXJlcjIsXG4gICAgICAgIHByaXZhdGUgZWxlbWVudDogRWxlbWVudFJlZlxuICAgICkge1xuICAgICAgICB0aGlzLnRvb2xiYXJPcHRpb25zID0gdGhpcy5nZXREZWZhdWx0VG9vbGJhck9wdGlvbnMoKTtcbiAgICB9XG5cbiAgICBwcml2YXRlIHNldEZpZWxkSGVpZ2h0KCk6IHZvaWQge1xuICAgICAgICB0aGlzLmZpZWxkSGVpZ2h0ID0gdGhpcy5jdXN0b21pemF0aW9uU2VydmljZS5jYWxjdWxhdGVGaWVsZEhlaWdodChcbiAgICAgICAgICAgIHRoaXMubGF5b3V0VHlwZSxcbiAgICAgICAgICAgIHRoaXMucm93U3BhbixcbiAgICAgICAgICAgIHRoaXMuc3RhbmRBbG9uZVxuICAgICAgICApO1xuICAgIH1cblxuICAgIHByaXZhdGUgc2V0RGVmYXVsdEZvcm0oKTogdm9pZCB7XG4gICAgICAgIGNvbnN0IHBlcEZpZWxkID0gbmV3IFBlcFJpY2hIdG1sVGV4dGFyZWFGaWVsZCh7XG4gICAgICAgICAgICBrZXk6IHRoaXMua2V5LFxuICAgICAgICAgICAgdmFsdWU6IHRoaXMudmFsdWUsXG4gICAgICAgICAgICBtYW5kYXRvcnk6IHRoaXMubWFuZGF0b3J5LFxuICAgICAgICAgICAgcmVhZG9ubHk6IHRoaXMucmVhZG9ubHksXG4gICAgICAgICAgICBkaXNhYmxlZDogdGhpcy5kaXNhYmxlZCxcbiAgICAgICAgICAgIG1heEZpZWxkQ2hhcmFjdGVyczogdGhpcy5tYXhGaWVsZENoYXJhY3RlcnMsXG4gICAgICAgIH0pO1xuICAgICAgICB0aGlzLmZvcm0gPSB0aGlzLmN1c3RvbWl6YXRpb25TZXJ2aWNlLmdldERlZmF1bHRGcm9tR3JvdXAocGVwRmllbGQpO1xuICAgIH1cblxuICAgIG5nT25Jbml0KCk6IHZvaWQge1xuICAgICAgICBpZiAodGhpcy5mb3JtID09PSBudWxsKSB7XG4gICAgICAgICAgICB0aGlzLnN0YW5kQWxvbmUgPSB0cnVlO1xuICAgICAgICAgICAgdGhpcy5zZXRGaWVsZEhlaWdodCgpO1xuICAgICAgICAgICAgdGhpcy5zZXREZWZhdWx0Rm9ybSgpO1xuXG4gICAgICAgICAgICB0aGlzLnJlbmRlcmVyLmFkZENsYXNzKFxuICAgICAgICAgICAgICAgIHRoaXMuZWxlbWVudC5uYXRpdmVFbGVtZW50LFxuICAgICAgICAgICAgICAgIFBlcEN1c3RvbWl6YXRpb25TZXJ2aWNlLlNUQU5EX0FMT05FX0ZJRUxEX0NMQVNTX05BTUVcbiAgICAgICAgICAgICk7XG5cbiAgICAgICAgICAgIGlmICghdGhpcy5yZW5kZXJUaXRsZSkge1xuICAgICAgICAgICAgICAgIHRoaXMucmVuZGVyZXIuYWRkQ2xhc3MoXG4gICAgICAgICAgICAgICAgICAgIHRoaXMuZWxlbWVudC5uYXRpdmVFbGVtZW50LFxuICAgICAgICAgICAgICAgICAgICBQZXBDdXN0b21pemF0aW9uU2VydmljZS5TVEFORF9BTE9ORV9GSUVMRF9OT19TUEFDSU5HX0NMQVNTX05BTUVcbiAgICAgICAgICAgICAgICApO1xuICAgICAgICAgICAgfVxuICAgICAgICB9XG5cbiAgICAgICAgdGhpcy5xdWlsbENvbnRlbnQgPSB0aGlzLnZhbHVlO1xuICAgIH1cblxuICAgIG5nT25DaGFuZ2VzKCk6IHZvaWQge1xuICAgICAgICBpZiAodGhpcy5zdGFuZEFsb25lKSB7XG4gICAgICAgICAgICB0aGlzLnNldERlZmF1bHRGb3JtKCk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBuZ09uRGVzdHJveSgpOiB2b2lkIHtcbiAgICAgICAgLy9cbiAgICB9XG5cbiAgICBnZXREZWZhdWx0VG9vbGJhck9wdGlvbnMoKTogSVBlcFJpY2hIdG1sVGV4dGFyZWFUb29sYmFyT3B0aW9ucyB7XG4gICAgICAgIHJldHVybiB7XG4gICAgICAgICAgICBmb250OiBmYWxzZSxcbiAgICAgICAgICAgIHNpemU6IGZhbHNlLFxuICAgICAgICAgICAgaGVhZGVyOiB0cnVlLFxuICAgICAgICAgICAgYm9sZDogdHJ1ZSxcbiAgICAgICAgICAgIGl0YWxpYzogdHJ1ZSxcbiAgICAgICAgICAgIHVuZGVybGluZTogdHJ1ZSxcbiAgICAgICAgICAgIHN0cmlrZTogZmFsc2UsXG4gICAgICAgICAgICBsaW5rOiB0cnVlLFxuICAgICAgICAgICAgaW1hZ2U6IHRydWUsXG4gICAgICAgICAgICBvcmRlcmVkOiB0cnVlLFxuICAgICAgICAgICAgYnVsbGV0OiB0cnVlLFxuICAgICAgICAgICAgY29sb3I6IHRydWUsXG4gICAgICAgICAgICBiYWNrZ3JvdW5kOiBmYWxzZSxcbiAgICAgICAgICAgIGFsaWduOiB0cnVlLFxuICAgICAgICB9O1xuICAgIH1cblxuICAgIGNoYW5nZVZhbHVlKHZhbHVlOiBhbnkpOiB2b2lkIHtcbiAgICAgICAgaWYgKHZhbHVlICE9PSB0aGlzLnZhbHVlKSB7XG4gICAgICAgICAgICB0aGlzLnZhbHVlID0gdmFsdWU7XG4gICAgICAgICAgICB0aGlzLnF1aWxsQ29udGVudCA9IHZhbHVlO1xuICAgICAgICAgICAgdGhpcy5jdXN0b21pemF0aW9uU2VydmljZS51cGRhdGVGb3JtRmllbGRWYWx1ZShcbiAgICAgICAgICAgICAgICB0aGlzLmZvcm0sXG4gICAgICAgICAgICAgICAgdGhpcy5rZXksXG4gICAgICAgICAgICAgICAgdmFsdWVcbiAgICAgICAgICAgICk7XG5cbiAgICAgICAgICAgIC8vIFJhaXNlIHRoaXMgb25seSBmb3Igc3RhbmQgYWxvbmUgZmllbGRzLCBJZiBmYWxzZSB0aGVuIHRoZSB1c2FnZSBmb3IgdGhpcyBmaWVsZCBpcyBpbnNpZGUgYSBmb3JtLiBcbiAgICAgICAgICAgIC8vIFRoZW4gdGhlIGZvcm0gd2lsbCB0YWtlIGNhcmUgb2YgcmFpc2luZyB0aGUgKG9uRm9ybVZhbGlkYXRpb25DaGFuZ2VkKSBldmVudFxuICAgICAgICAgICAgaWYgKHRoaXMuc3RhbmRBbG9uZSkge1xuICAgICAgICAgICAgICAgIGNvbnN0IGlzVmFsaWQgPSAodGhpcy5kaXNhYmxlZCB8fCB0aGlzLnJlYWRvbmx5KSA/IHRydWUgOiB0aGlzLmZvcm0udmFsaWQ7IFxuICAgICAgICAgICAgICAgIHRoaXMudmFsaWRhdGlvbkNoYW5nZS5lbWl0KGlzVmFsaWQpO1xuICAgICAgICAgICAgfVxuXG4gICAgICAgICAgICB0aGlzLnZhbHVlQ2hhbmdlLmVtaXQodmFsdWUpO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgY2FyZFRlbXBsYXRlQ2xpY2tlZChldmVudDogYW55KTogdm9pZCB7XG4gICAgICAgIHRoaXMub3BlbkRpYWxvZygpO1xuICAgIH1cblxuICAgIG9wZW5EaWFsb2coKTogdm9pZCB7XG4gICAgICAgIGNvbnN0IGNvbmZpZyA9IHRoaXMuZGlhbG9nU2VydmljZS5nZXREaWFsb2dDb25maWcoXG4gICAgICAgICAgICB7XG4gICAgICAgICAgICAgICAgLy8gbWluV2lkdGg6ICc1MHZ3JyxcbiAgICAgICAgICAgICAgICAvLyBtYXhXaWR0aDogJzkwdncnLFxuICAgICAgICAgICAgICAgIC8vIG1heEhlaWdodDogJzkwdmgnLFxuICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICdsYXJnZSdcbiAgICAgICAgKTtcblxuICAgICAgICAvLyBJZiBkaXNhYmxlZCBvcGVuIHJlZ3VsYXIgbW9kYWwgYXMgaHRtbCBtb2RlLlxuICAgICAgICBpZiAodGhpcy5kaXNhYmxlZCB8fCB0aGlzLnJlYWRvbmx5KSB7XG4gICAgICAgICAgICBjb25zdCBkYXRhID0gbmV3IFBlcERpYWxvZ0RhdGEoe1xuICAgICAgICAgICAgICAgIHRpdGxlOiB0aGlzLmxhYmVsLFxuICAgICAgICAgICAgICAgIGNvbnRlbnQ6IHRoaXMucXVpbGxDb250ZW50LFxuICAgICAgICAgICAgICAgIHNob3dGb290ZXI6IGZhbHNlLFxuICAgICAgICAgICAgfSk7XG4gICAgICAgICAgICB0aGlzLmRpYWxvZ1NlcnZpY2Uub3BlbkRlZmF1bHREaWFsb2coZGF0YSwgY29uZmlnKTtcbiAgICAgICAgfSBlbHNlIHtcbiAgICAgICAgICAgIHRoaXMucXVpbGxDb250ZW50RGlhbG9nID0gdGhpcy5xdWlsbENvbnRlbnQ7XG4gICAgICAgICAgICBjb25zdCBkaWFsb2dSZWYgPSB0aGlzLmRpYWxvZ1NlcnZpY2Uub3BlbkRpYWxvZyhcbiAgICAgICAgICAgICAgICB0aGlzLnJpY2hUZXh0RWRpdG9yRGlhbG9nVGVtcGxhdGUsXG4gICAgICAgICAgICAgICAge30sXG4gICAgICAgICAgICAgICAgY29uZmlnXG4gICAgICAgICAgICApO1xuXG4gICAgICAgICAgICBkaWFsb2dSZWYuYWZ0ZXJDbG9zZWQoKS5zdWJzY3JpYmUoKHZhbHVlKSA9PiB7XG4gICAgICAgICAgICAgICAgaWYgKHZhbHVlICE9PSB1bmRlZmluZWQgJiYgdmFsdWUgIT09IG51bGwpIHtcbiAgICAgICAgICAgICAgICAgICAgdGhpcy5jaGFuZ2VWYWx1ZSh2YWx1ZSk7XG4gICAgICAgICAgICAgICAgfVxuICAgICAgICAgICAgfSk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICAvLyBJbml0IHF1aWxsQ29udGVudCBpbiBjYXNlIHRoYXQgdGhlcmUgYXJlIGh0bWwgdGFncy4uLlxuICAgIG9uRWRpdG9yQ3JlYXRlZChxdWlsbDogYW55LCBpbkRpYWxvZzogYm9vbGVhbik6IHZvaWQge1xuICAgICAgICBpZiAoIWluRGlhbG9nKSB7XG4gICAgICAgICAgICB0aGlzLnF1aWxsQ29udGVudCA9IHF1aWxsLmdldFRleHQoKTtcbiAgICAgICAgfVxuXG4gICAgICAgIHRoaXMuZWRpdG9yQ3JlYXRlZC5lbWl0KHF1aWxsKTtcbiAgICB9XG5cbiAgICBvbkNvbnRlbnRDaGFuZ2VkKG9iajogYW55LCBpbkRpYWxvZzogYm9vbGVhbik6IHZvaWQge1xuICAgICAgICBpZiAoaW5EaWFsb2cpIHtcbiAgICAgICAgICAgIHRoaXMucXVpbGxDb250ZW50RGlhbG9nID0gb2JqLmh0bWw7XG4gICAgICAgIH0gZWxzZSB7XG4gICAgICAgICAgICB0aGlzLnF1aWxsQ29udGVudCA9IG9iai5odG1sO1xuICAgICAgICB9XG4gICAgfVxuXG4gICAgb25CbHVyKG9iajogYW55LCBpbkRpYWxvZzogYm9vbGVhbik6IHZvaWQge1xuICAgICAgICBpZiAoIWluRGlhbG9nKSB7XG4gICAgICAgICAgICB0aGlzLmFjdGl2ZSA9IGZhbHNlO1xuICAgICAgICAgICAgdGhpcy5jaGFuZ2VWYWx1ZSh0aGlzLnF1aWxsQ29udGVudCk7XG4gICAgICAgIH1cbiAgICB9XG5cbiAgICBvbkZvY3VzKG9iajogYW55LCBpbkRpYWxvZzogYm9vbGVhbik6IHZvaWQge1xuICAgICAgICBpZiAoIWluRGlhbG9nKSB7XG4gICAgICAgICAgICB0aGlzLmFjdGl2ZSA9IHRydWU7XG4gICAgICAgIH1cbiAgICB9XG59XG4iLCI8bmctY29udGFpbmVyIFtmb3JtR3JvdXBdPVwiZm9ybVwiPlxuICAgIDxuZy10ZW1wbGF0ZSAjcGVwVGVtcGxhdGUgbGV0LWlzRm9ybVZpZXc9XCJpc0Zvcm1WaWV3XCI+XG4gICAgICAgIDxkaXYgY2xhc3M9XCJwZXAtdGV4dGFyZWEtY29udGFpbmVyIHBlcC1yZXBvcnQtdGV4dGFyZWFcIiBbbmdDbGFzc109XCJ7ICdzdGFuZC1hbG9uZSc6IHN0YW5kQWxvbmUsXG4gICAgICAgICAgICAncmlnaHQtYWxpZ25tZW50JzogeEFsaWdubWVudCA9PSAncmlnaHQnLCAnb25lLXJvdyc6ICFpc0Zvcm1WaWV3ICYmIHJvd1NwYW4gPT09IDEsXG4gICAgICAgICAgICAncGVwLXRleHRhcmVhLWNhcmQtY29udGFpbmVyJzogbGF5b3V0VHlwZSA9PT0gJ2NhcmQnfVwiPlxuICAgICAgICAgICAgPHBlcC1maWVsZC10aXRsZSAqbmdJZj1cInJlbmRlclRpdGxlICYmIGlzRm9ybVZpZXdcIiBbbGFiZWxdPVwibGFiZWxcIiBbbWFuZGF0b3J5XT1cIm1hbmRhdG9yeVwiXG4gICAgICAgICAgICAgICAgW2Rpc2FibGVkXT1cImRpc2FibGVkXCJcbiAgICAgICAgICAgICAgICBbbWF4RmllbGRDaGFyYWN0ZXJzXT1cImlubGluZU1vZGUgJiYgIWRpc2FibGVkICYmICFyZWFkb25seSA/IG1heEZpZWxkQ2hhcmFjdGVycyA6IDBcIlxuICAgICAgICAgICAgICAgIFt4QWxpZ25tZW50XT1cInhBbGlnbm1lbnRcIiBbc2hvd1RpdGxlXT1cInNob3dUaXRsZVwiIFtpbnB1dExlbmd0aF09XCJxdWlsbENvbnRlbnQ/Lmxlbmd0aFwiPlxuICAgICAgICAgICAgPC9wZXAtZmllbGQtdGl0bGU+XG4gICAgICAgICAgICA8bWF0LWZvcm0tZmllbGQgYXBwZWFyYW5jZT1cIm91dGxpbmVcIiBkaXI9XCJ7eyB4QWxpZ25tZW50ID09ICdyaWdodCcgPyAncnRsJyA6ICdsdHInIH19XCJcbiAgICAgICAgICAgICAgICBbbmdDbGFzc109XCJ7ICdwZXAtdGFibGUtdGV4dGFyZWEnOiBsYXlvdXRUeXBlID09PSAndGFibGUnLCAnYWN0aXZlJzogYWN0aXZlLCAnaWdub3JlLWRpc2FibGVkJzogZGlzYWJsZWQsICdpY29uLWxlZnQnOiB4QWxpZ25tZW50ID09PSAnbGVmdCcgfHwgeEFsaWdubWVudCA9PT0gJ2NlbnRlcicsICdpY29uLXJpZ2h0JzogeEFsaWdubWVudCA9PT0gJ3JpZ2h0JyB9XCI+XG4gICAgICAgICAgICAgICAgPHRleHRhcmVhIFtoaWRkZW5dPVwidHJ1ZVwiIG1hdElucHV0IFtmb3JtQ29udHJvbE5hbWVdPVwia2V5XCI+PC90ZXh0YXJlYT5cblxuICAgICAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpbmxpbmVNb2RlOyB0aGVuIGlubGluZUJsb2NrOyBlbHNlIG5vdElubGluZUJsb2NrXCI+PC9uZy1jb250YWluZXI+XG5cbiAgICAgICAgICAgICAgICA8bmctdGVtcGxhdGUgI2lubGluZUJsb2NrPlxuICAgICAgICAgICAgICAgICAgICA8bmctY29udGFpbmVyICpuZ1RlbXBsYXRlT3V0bGV0PVwicXVpbFRlbXBsYXRlOyBjb250ZXh0OiB7aW5EaWFsb2c6IGZhbHNlfVwiPjwvbmctY29udGFpbmVyPlxuICAgICAgICAgICAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgICAgICAgICAgICAgPG5nLXRlbXBsYXRlICNub3RJbmxpbmVCbG9jaz5cblxuICAgICAgICAgICAgICAgICAgICA8IS0tIFdlIGNhbiB1c2UgdGhlIHF1aWxsLXZpZXctaHRtbFxuICAgICAgICAgICAgICAgICAgICA8cXVpbGwtdmlldy1odG1sIGNsYXNzPVwiYm9keS1zbSByaWNoLXRleHQtY29udCBcIlxuICAgICAgICAgICAgICAgICAgICBbbmdTdHlsZV09XCJ7ICd0ZXh0LWFsaWduJzogeEFsaWdubWVudCA9PSAncmlnaHQnID8gJ3JpZ2h0JyA6ICdsZWZ0JyB9XCIgW2NvbnRlbnRdPVwidmFsdWUgfCBwZXBTYWZlSHRtbFwiXG4gICAgICAgICAgICAgICAgICAgIHRoZW1lPVwic25vd1wiIFtzdHlsZS5oZWlnaHRdPVwiZmllbGRIZWlnaHRcIj48L3F1aWxsLXZpZXctaHRtbD4gXG4gICAgICAgICAgICAgICAgLS0+XG5cbiAgICAgICAgICAgICAgICAgICAgPGRpdiBjbGFzcz1cImJvZHktc20gcmljaC10ZXh0LWNvbnQgXCIgW25nQ2xhc3NdPVwieydoaWRlLWVubGFyZ2UtYnV0dG9uJzogIXJlbmRlckVubGFyZ2VCdXR0b259XCJcbiAgICAgICAgICAgICAgICAgICAgICAgIFtuZ1N0eWxlXT1cInsgJ3RleHQtYWxpZ24nOiB4QWxpZ25tZW50ID09ICdyaWdodCcgPyAncmlnaHQnIDogJ2xlZnQnIH1cIlxuICAgICAgICAgICAgICAgICAgICAgICAgW2lubmVySHRtbF09XCJ2YWx1ZSB8IHBlcFNhZmVIdG1sXCIgW3N0eWxlLmhlaWdodF09XCJmaWVsZEhlaWdodFwiPlxuICAgICAgICAgICAgICAgICAgICA8L2Rpdj5cbiAgICAgICAgICAgICAgICA8L25nLXRlbXBsYXRlPlxuICAgICAgICAgICAgICAgIDxwZXAtdGV4dGJveC1pY29uICpuZ0lmPVwicmVuZGVyRW5sYXJnZUJ1dHRvblwiIG1hdFN1ZmZpeCBbdmFsdWVdPVwidmFsdWVcIiBbbGFiZWxdPVwibGFiZWxcIlxuICAgICAgICAgICAgICAgICAgICBbdHlwZV09XCJjb250cm9sVHlwZVwiIFtkaXNhYmxlZF09XCJkaXNhYmxlZCB8fCByZWFkb25seVwiXG4gICAgICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsgJ2NhcmQtb25lLXJvdy1pY29uJzogbGF5b3V0VHlwZSA9PT0gJ2NhcmQnICYmIHJvd1NwYW4gPT09IDEgfVwiXG4gICAgICAgICAgICAgICAgICAgIChpY29uQ2xpY2spPVwib3BlbkRpYWxvZygpXCI+XG4gICAgICAgICAgICAgICAgPC9wZXAtdGV4dGJveC1pY29uPlxuICAgICAgICAgICAgICAgIDxtYXQtZXJyb3I+XG4gICAgICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwiYm9keS14c1wiXG4gICAgICAgICAgICAgICAgICAgICAgICBbdGl0bGVdPVwibWFuZGF0b3J5ICYmIHZhbHVlLmxlbmd0aCA9PSAwID8gKCdNRVNTQUdFUy5FUlJPUl9JU19SRVFVSVJFRCcgfCB0cmFuc2xhdGU6IHsgZmllbGQ6IGxhYmVsIH0pIDogKCdNRVNTQUdFUy5FUlJPUl9JU19OT1RfVkFMSUQnIHwgdHJhbnNsYXRlOiB7IGZpZWxkOiBsYWJlbCB9KVwiXG4gICAgICAgICAgICAgICAgICAgICAgICBbaW5uZXJUZXh0XT1cIm1hbmRhdG9yeSAmJiB2YWx1ZS5sZW5ndGggPT0gMCA/ICgnTUVTU0FHRVMuRVJST1JfSVNfUkVRVUlSRUQnIHwgdHJhbnNsYXRlOiB7IGZpZWxkOiBsYWJlbCB9KSA6ICgnTUVTU0FHRVMuRVJST1JfSVNfTk9UX1ZBTElEJyB8IHRyYW5zbGF0ZTogeyBmaWVsZDogbGFiZWwgfSlcIj48L3NwYW4+XG4gICAgICAgICAgICAgICAgPC9tYXQtZXJyb3I+XG5cbiAgICAgICAgICAgIDwvbWF0LWZvcm0tZmllbGQ+XG4gICAgICAgIDwvZGl2PlxuICAgIDwvbmctdGVtcGxhdGU+XG5cbiAgICA8bmctY29udGFpbmVyICpuZ0lmPVwibGF5b3V0VHlwZSA9PT0gJ2Zvcm0nXCI+XG4gICAgICAgIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJwZXBUZW1wbGF0ZTsgY29udGV4dDogeyBpc0Zvcm1WaWV3OiB0cnVlIH1cIj48L25nLWNvbnRhaW5lcj5cbiAgICA8L25nLWNvbnRhaW5lcj5cblxuICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJsYXlvdXRUeXBlID09PSAnY2FyZCdcIj5cbiAgICAgICAgPGRpdiBjbGFzcz1cInBlcC10ZXh0YXJlYS1jYXJkLWNvbnRhaW5lciBjYXJkLWZsZXgtY29udGFpbmVyXCJcbiAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsnb25lLXJvdyc6IHJvd1NwYW4gPT09IDEsICdwZXAtYnV0dG9uIHdlYWsnOiBpc0FjdGl2ZSAmJiAhZGlzYWJsZWR9XCJcbiAgICAgICAgICAgIFtuZ1N0eWxlXT1cInsgJy13ZWJraXQtbGluZS1jbGFtcCc6IHJvd1NwYW4gfVwiIFtjbGFzc109XCIndGV4dC1hbGlnbi0nICsgeEFsaWdubWVudFwiXG4gICAgICAgICAgICAoY2xpY2spPVwiIWRpc2FibGVkID8gY2FyZFRlbXBsYXRlQ2xpY2tlZCgkZXZlbnQpIDogJydcIiBbc3R5bGUuaGVpZ2h0XT1cImZpZWxkSGVpZ2h0XCI+XG4gICAgICAgICAgICA8c3BhbiAqbmdJZj1cInNob3dUaXRsZSAmJiBsYWJlbCAhPSAnJ1wiIGNsYXNzPVwiYm9keS14cyB0aXRsZSBuby1zaHJpbmtcIiB0aXRsZT1cInt7IGxhYmVsIH19XCI+e3sgbGFiZWxcbiAgICAgICAgICAgICAgICB9fTombmJzcDs8L3NwYW4+XG4gICAgICAgICAgICA8c3BhbiBbaWRdPVwia2V5XCIgY2xhc3M9XCJib2R5LXNtIHZhbHVlIHdyYXBcIiBzdHlsZT1cIndpZHRoOiAxMDAlO1wiIFtpbm5lckh0bWxdPVwidmFsdWUgfCBwZXBTYWZlSHRtbFwiPjwvc3Bhbj5cbiAgICAgICAgICAgIDxidXR0b24gKm5nSWY9XCJpc0FjdGl2ZSAmJiAhZGlzYWJsZWRcIiBjbGFzcz1cInBlcC1idXR0b24gd2VhayBjYXJkLWVkaXQtYnV0dG9uIHNlbGYtc3RhcnRcIlxuICAgICAgICAgICAgICAgIFtuZ0NsYXNzXT1cInsnc2VsZi1lbmQnIDogdmFsdWUgJiYgdmFsdWUgIT09ICcnfVwiIG1hdC1idXR0b24+XG4gICAgICAgICAgICAgICAgPG1hdC1pY29uPlxuICAgICAgICAgICAgICAgICAgICA8cGVwLWljb24gbmFtZT1cInN5c3RlbV9lZGl0XCI+XG4gICAgICAgICAgICAgICAgICAgIDwvcGVwLWljb24+XG4gICAgICAgICAgICAgICAgPC9tYXQtaWNvbj5cbiAgICAgICAgICAgIDwvYnV0dG9uPlxuICAgICAgICA8L2Rpdj5cbiAgICA8L25nLWNvbnRhaW5lcj5cblxuICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJsYXlvdXRUeXBlID09PSAndGFibGUnXCI+XG4gICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJpc0FjdGl2ZSAmJiAhZGlzYWJsZWQ7IHRoZW4gc2VsZWN0ZWRCbG9jazsgZWxzZSBub3RTZWxlY3RlZEJsb2NrXCI+PC9uZy1jb250YWluZXI+XG4gICAgICAgIDxuZy10ZW1wbGF0ZSAjc2VsZWN0ZWRCbG9jaz5cbiAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nVGVtcGxhdGVPdXRsZXQ9XCJwZXBUZW1wbGF0ZTsgY29udGV4dDogeyBpc0Zvcm1WaWV3OiBmYWxzZSB9XCI+PC9uZy1jb250YWluZXI+XG4gICAgICAgIDwvbmctdGVtcGxhdGU+XG4gICAgICAgIDxuZy10ZW1wbGF0ZSAjbm90U2VsZWN0ZWRCbG9jaz5cbiAgICAgICAgICAgIDxuZy1jb250YWluZXIgKm5nSWY9XCJ2YWx1ZT8ubGVuZ3RoID4gMDsgdGhlbiBub3RFbXB0eUJsb2NrOyBlbHNlIGVtcHR5QmxvY2tcIj48L25nLWNvbnRhaW5lcj5cbiAgICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjbm90RW1wdHlCbG9jaz5cbiAgICAgICAgICAgICAgICA8ZGl2IGNsYXNzPVwicGVwLXRleHRhcmVhLWNhcmQtY29udGFpbmVyIGNhcmQtZmxleC1jb250YWluZXIgb25lLXJvd1wiPlxuICAgICAgICAgICAgICAgICAgICA8c3BhbiBbaWRdPVwia2V5XCIgY2xhc3M9XCJ3cmFwXCIgW2lubmVySHRtbF09XCJ2YWx1ZSB8IHBlcFNhZmVIdG1sXCI+PC9zcGFuPlxuICAgICAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICAgICAgPC9uZy10ZW1wbGF0ZT5cbiAgICAgICAgICAgIDxuZy10ZW1wbGF0ZSAjZW1wdHlCbG9jaz5cbiAgICAgICAgICAgICAgICA8c3Bhbj4mbmJzcDs8L3NwYW4+XG4gICAgICAgICAgICA8L25nLXRlbXBsYXRlPlxuICAgICAgICA8L25nLXRlbXBsYXRlPlxuICAgIDwvbmctY29udGFpbmVyPlxuPC9uZy1jb250YWluZXI+XG5cbjxuZy10ZW1wbGF0ZSAjcmljaFRleHRFZGl0b3JEaWFsb2dUZW1wbGF0ZT5cbiAgICA8ZGl2IGNsYXNzPVwicmljaC10ZXh0LWVkaXRvci1jb250YWluZXJcIj5cbiAgICAgICAgPGJ1dHRvbiBtYXQtYnV0dG9uIFttYXQtZGlhbG9nLWNsb3NlXT1cIm51bGxcIiBjbGFzcz1cInBlcC1idXR0b24gaWNvbi1idXR0b24gbWQgd2VhayBwdWxsLXJpZ2h0IGZsaXBcIj5cbiAgICAgICAgICAgIDxtYXQtaWNvbj5cbiAgICAgICAgICAgICAgICA8cGVwLWljb24gbmFtZT1cInN5c3RlbV9jbG9zZVwiPlxuICAgICAgICAgICAgICAgIDwvcGVwLWljb24+XG4gICAgICAgICAgICA8L21hdC1pY29uPlxuICAgICAgICA8L2J1dHRvbj5cbiAgICAgICAgPG5nLWNvbnRhaW5lciAqbmdUZW1wbGF0ZU91dGxldD1cInF1aWxUZW1wbGF0ZTsgY29udGV4dDoge2luRGlhbG9nOiB0cnVlfVwiPjwvbmctY29udGFpbmVyPlxuICAgICAgICA8ZGl2IG1hdC1kaWFsb2ctYWN0aW9ucyBjbGFzcz1cIiBwZXAtYm9yZGVyLXRvcFwiPlxuICAgICAgICAgICAgPGRpdiBjbGFzcz1cInBlcC1zcGFjaW5nLWVsZW1lbnQtbmVnYXRpdmVcIj5cbiAgICAgICAgICAgICAgICA8YnV0dG9uIG1hdC1idXR0b24gW21hdC1kaWFsb2ctY2xvc2VdPVwibnVsbFwiIGNsYXNzPVwicGVwLXNwYWNpbmctZWxlbWVudCBwZXAtYnV0dG9uIG1kIHdlYWtcIj5cbiAgICAgICAgICAgICAgICAgICAge3snQUNUSU9OUy5DQU5DRUwnIHwgdHJhbnNsYXRlfX1cbiAgICAgICAgICAgICAgICA8L2J1dHRvbj5cbiAgICAgICAgICAgICAgICA8YnV0dG9uIG1hdC1idXR0b24gW21hdC1kaWFsb2ctY2xvc2VdPVwicXVpbGxDb250ZW50RGlhbG9nIHx8ICcnXCIgW2Rpc2FibGVkXT1cImRpc2FibGVkXCJcbiAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJwZXAtc3BhY2luZy1lbGVtZW50IHBlcC1idXR0b24gbWQgc3Ryb25nIFwiPlxuICAgICAgICAgICAgICAgICAgICB7eydBQ1RJT05TLlNBVkUnIHwgdHJhbnNsYXRlfX1cbiAgICAgICAgICAgICAgICA8L2J1dHRvbj5cbiAgICAgICAgICAgIDwvZGl2PlxuICAgICAgICA8L2Rpdj5cbiAgICA8L2Rpdj5cbjwvbmctdGVtcGxhdGU+XG5cbjxuZy10ZW1wbGF0ZSAjcXVpbFRlbXBsYXRlIGxldC1pbkRpYWxvZz1cImluRGlhbG9nXCI+XG4gICAgPHF1aWxsLWVkaXRvciBpZD1cInt7aW5EaWFsb2cgPyAncXVpbGwtZWRpdG9yLWRpYWxvZycgOiAncXVpbGwtZWRpdG9yLWlubGluZSd9fVwiXG4gICAgICAgIFtjbGFzc109XCJpbkRpYWxvZyA/ICdkaWFsb2ctcXVpbGwnIDogJ2lubGluZS1xdWlsbCdcIlxuICAgICAgICBbbmdDbGFzc109XCJ7ICdyaWNoLXRleHQtY29udCc6ICFpbkRpYWxvZywgJ2hpZGUtZW5sYXJnZS1idXR0b24nOiAhcmVuZGVyRW5sYXJnZUJ1dHRvbiB9XCJcbiAgICAgICAgcGxhY2Vob2xkZXI9XCJ7eydSSUNIX1RFWFRBUkVBLkhJTlQnIHwgdHJhbnNsYXRlfX1cIiBbbmdNb2RlbF09XCJpbkRpYWxvZyA/IHF1aWxsQ29udGVudERpYWxvZyA6IHF1aWxsQ29udGVudFwiXG4gICAgICAgIFtzYW5pdGl6ZV09XCJzYW5pdGl6ZVwiIFtyZWFkT25seV09XCJkaXNhYmxlZFwiIFttYXhMZW5ndGhdPVwibWF4RmllbGRDaGFyYWN0ZXJzXCIgW3JlcXVpcmVkXT1cIm1hbmRhdG9yeVwiXG4gICAgICAgIChvbkVkaXRvckNyZWF0ZWQpPVwib25FZGl0b3JDcmVhdGVkKCRldmVudCwgaW5EaWFsb2cpXCIgKG9uQ29udGVudENoYW5nZWQpPVwib25Db250ZW50Q2hhbmdlZCgkZXZlbnQsIGluRGlhbG9nKVwiXG4gICAgICAgIChvbkJsdXIpPVwib25CbHVyKCRldmVudCwgaW5EaWFsb2cpXCIgKG9uRm9jdXMpPVwib25Gb2N1cygkZXZlbnQsIGluRGlhbG9nKVwiIHRoZW1lPVwiXCI+XG4gICAgICAgIDxkaXYgKm5nSWY9XCIhZGlzYWJsZWRcIiBxdWlsbC1lZGl0b3ItdG9vbGJhcj5cbiAgICAgICAgICAgIDxkaXYgY2xhc3M9XCJwZXAtc3BhY2luZy1lbGVtZW50LW5lZ2F0aXZlXCI+XG4gICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJxbC1mb3JtYXRzXCI+XG4gICAgICAgICAgICAgICAgICAgIDxzZWxlY3QgKm5nSWY9XCJ0b29sYmFyT3B0aW9ucz8uZm9udFwiXG4gICAgICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInBlcC1zcGFjaW5nLWVsZW1lbnQgcGVwLWJ1dHRvbiBpY29uLWJ1dHRvbiBtZCB3ZWFrIHFsLWZvbnQgc2VsZWN0LWFycm93XCI+XG4gICAgICAgICAgICAgICAgICAgICAgICA8b3B0aW9uIHNlbGVjdGVkPjwvb3B0aW9uPlxuICAgICAgICAgICAgICAgICAgICAgICAgPG9wdGlvbiB2YWx1ZT1cInNlcmlmXCI+PC9vcHRpb24+XG4gICAgICAgICAgICAgICAgICAgICAgICA8b3B0aW9uIHZhbHVlPVwibW9ub3NwYWNlXCI+PC9vcHRpb24+XG4gICAgICAgICAgICAgICAgICAgIDwvc2VsZWN0PlxuICAgICAgICAgICAgICAgICAgICA8c2VsZWN0ICpuZ0lmPVwidG9vbGJhck9wdGlvbnM/LnNpemVcIlxuICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJwZXAtc3BhY2luZy1lbGVtZW50IHBlcC1idXR0b24gaWNvbi1idXR0b24gbWQgd2VhayBxbC1zaXplIHNlbGVjdC1hcnJvd1wiPlxuICAgICAgICAgICAgICAgICAgICAgICAgPG9wdGlvbiB2YWx1ZT1cInNtYWxsXCI+PC9vcHRpb24+XG4gICAgICAgICAgICAgICAgICAgICAgICA8b3B0aW9uIHNlbGVjdGVkPjwvb3B0aW9uPlxuICAgICAgICAgICAgICAgICAgICAgICAgPG9wdGlvbiB2YWx1ZT1cImxhcmdlXCI+PC9vcHRpb24+XG4gICAgICAgICAgICAgICAgICAgICAgICA8b3B0aW9uIHZhbHVlPVwiaHVnZVwiPjwvb3B0aW9uPlxuICAgICAgICAgICAgICAgICAgICA8L3NlbGVjdD5cbiAgICAgICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJxbC1mb3JtYXRzXCI+XG4gICAgICAgICAgICAgICAgICAgIDxzZWxlY3QgKm5nSWY9XCJ0b29sYmFyT3B0aW9ucz8uaGVhZGVyXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwicGVwLXNwYWNpbmctZWxlbWVudCBwZXAtYnV0dG9uIGljb24tYnV0dG9uIG1kIHdlYWsgcWwtaGVhZGVyIHNlbGVjdC1hcnJvd1wiPlxuICAgICAgICAgICAgICAgICAgICAgICAgPG9wdGlvbiB2YWx1ZT1cIjFcIj48L29wdGlvbj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxvcHRpb24gdmFsdWU9XCIyXCI+PC9vcHRpb24+XG4gICAgICAgICAgICAgICAgICAgICAgICA8b3B0aW9uIHZhbHVlPVwiM1wiPjwvb3B0aW9uPlxuICAgICAgICAgICAgICAgICAgICAgICAgPCEtLSBcbiAgICAgICAgICAgICAgICAgICAgICAgIDxvcHRpb24gdmFsdWU9XCI0XCI+PC9vcHRpb24+XG4gICAgICAgICAgICAgICAgICAgICAgICA8b3B0aW9uIHZhbHVlPVwiNVwiPjwvb3B0aW9uPlxuICAgICAgICAgICAgICAgICAgICAgICAgPG9wdGlvbiB2YWx1ZT1cIjZcIj48L29wdGlvbj4gXG4gICAgICAgICAgICAgICAgICAgICAgICAtLT5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxvcHRpb24gdmFsdWU9XCJmYWxzZVwiIHNlbGVjdGVkPjwvb3B0aW9uPlxuICAgICAgICAgICAgICAgICAgICA8L3NlbGVjdD5cbiAgICAgICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgICAgICAgPCEtLSA8aHIgY2xhc3M9XCJ2ZXJ0aWNhbC1zZXBhcmF0b3JcIiAvPiAtLT5cbiAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInFsLWZvcm1hdHNcIj5cbiAgICAgICAgICAgICAgICAgICAgPGJ1dHRvbiBtYXQtYnV0dG9uICpuZ0lmPVwidG9vbGJhck9wdGlvbnM/LmJvbGRcIlxuICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJwZXAtc3BhY2luZy1lbGVtZW50IHBlcC1idXR0b24gaWNvbi1idXR0b24gbWQgd2VhayBxbC1ib2xkXCI+PC9idXR0b24+XG4gICAgICAgICAgICAgICAgICAgIDxidXR0b24gbWF0LWJ1dHRvbiAqbmdJZj1cInRvb2xiYXJPcHRpb25zPy5pdGFsaWNcIlxuICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJwZXAtc3BhY2luZy1lbGVtZW50IHBlcC1idXR0b24gaWNvbi1idXR0b24gbWQgd2VhayBxbC1pdGFsaWNcIj48L2J1dHRvbj5cbiAgICAgICAgICAgICAgICAgICAgPGJ1dHRvbiBtYXQtYnV0dG9uICpuZ0lmPVwidG9vbGJhck9wdGlvbnM/LnVuZGVybGluZVwiXG4gICAgICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInBlcC1zcGFjaW5nLWVsZW1lbnQgcGVwLWJ1dHRvbiBpY29uLWJ1dHRvbiBtZCB3ZWFrIHFsLXVuZGVybGluZVwiPjwvYnV0dG9uPlxuICAgICAgICAgICAgICAgICAgICA8YnV0dG9uIG1hdC1idXR0b24gKm5nSWY9XCJ0b29sYmFyT3B0aW9ucz8uc3RyaWtlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwicGVwLXNwYWNpbmctZWxlbWVudCBwZXAtYnV0dG9uIGljb24tYnV0dG9uIG1kIHdlYWsgcWwtc3RyaWtlXCI+PC9idXR0b24+XG4gICAgICAgICAgICAgICAgPC9zcGFuPlxuICAgICAgICAgICAgICAgIDxzcGFuIGNsYXNzPVwicWwtZm9ybWF0c1wiPlxuICAgICAgICAgICAgICAgICAgICA8YnV0dG9uIG1hdC1idXR0b24gKm5nSWY9XCJ0b29sYmFyT3B0aW9ucz8ubGlua1wiXG4gICAgICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInBlcC1zcGFjaW5nLWVsZW1lbnQgcGVwLWJ1dHRvbiBpY29uLWJ1dHRvbiBtZCB3ZWFrIHFsLWxpbmtcIj48L2J1dHRvbj5cbiAgICAgICAgICAgICAgICAgICAgPGJ1dHRvbiBtYXQtYnV0dG9uICpuZ0lmPVwidG9vbGJhck9wdGlvbnM/LmltYWdlXCJcbiAgICAgICAgICAgICAgICAgICAgICAgIGNsYXNzPVwicGVwLXNwYWNpbmctZWxlbWVudCBwZXAtYnV0dG9uIGljb24tYnV0dG9uIG1kIHdlYWsgcWwtaW1hZ2VcIj48L2J1dHRvbj5cbiAgICAgICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgICAgICAgPCEtLSA8aHIgY2xhc3M9XCJ2ZXJ0aWNhbC1zZXBhcmF0b3JcIiAvPiAtLT5cbiAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInFsLWZvcm1hdHNcIj5cbiAgICAgICAgICAgICAgICAgICAgPGJ1dHRvbiBtYXQtYnV0dG9uICpuZ0lmPVwidG9vbGJhck9wdGlvbnM/Lm9yZGVyZWRcIlxuICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJwZXAtc3BhY2luZy1lbGVtZW50IHBlcC1idXR0b24gaWNvbi1idXR0b24gbWQgd2VhayBxbC1saXN0XCIgdmFsdWU9XCJvcmRlcmVkXCI+PC9idXR0b24+XG4gICAgICAgICAgICAgICAgICAgIDxidXR0b24gbWF0LWJ1dHRvbiAqbmdJZj1cInRvb2xiYXJPcHRpb25zPy5idWxsZXRcIlxuICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJwZXAtc3BhY2luZy1lbGVtZW50IHBlcC1idXR0b24gaWNvbi1idXR0b24gbWQgd2VhayBxbC1saXN0XCIgdmFsdWU9XCJidWxsZXRcIj48L2J1dHRvbj5cbiAgICAgICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgICAgICAgPCEtLSA8aHIgY2xhc3M9XCJ2ZXJ0aWNhbC1zZXBhcmF0b3JcIiAvPiAtLT5cbiAgICAgICAgICAgICAgICA8c3BhbiBjbGFzcz1cInFsLWZvcm1hdHNcIj5cbiAgICAgICAgICAgICAgICAgICAgPHNlbGVjdCAqbmdJZj1cInRvb2xiYXJPcHRpb25zPy5jb2xvclwiXG4gICAgICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInBlcC1zcGFjaW5nLWVsZW1lbnQgcGVwLWJ1dHRvbiBpY29uLWJ1dHRvbiBtZCB3ZWFrIHFsLWNvbG9yXCI+PC9zZWxlY3Q+XG4gICAgICAgICAgICAgICAgICAgIDxzZWxlY3QgKm5nSWY9XCJ0b29sYmFyT3B0aW9ucz8uYmFja2dyb3VuZFwiXG4gICAgICAgICAgICAgICAgICAgICAgICBjbGFzcz1cInBlcC1zcGFjaW5nLWVsZW1lbnQgcGVwLWJ1dHRvbiBpY29uLWJ1dHRvbiBtZCB3ZWFrIHFsLWJhY2tncm91bmRcIj48L3NlbGVjdD5cbiAgICAgICAgICAgICAgICA8L3NwYW4+XG4gICAgICAgICAgICAgICAgPHNwYW4gY2xhc3M9XCJxbC1mb3JtYXRzXCI+XG4gICAgICAgICAgICAgICAgICAgIDxzZWxlY3QgKm5nSWY9XCJ0b29sYmFyT3B0aW9ucz8uYWxpZ25cIlxuICAgICAgICAgICAgICAgICAgICAgICAgY2xhc3M9XCJwZXAtc3BhY2luZy1lbGVtZW50IHBlcC1idXR0b24gaWNvbi1idXR0b24gbWQgd2VhayBxbC1hbGlnblwiPlxuICAgICAgICAgICAgICAgICAgICAgICAgPG9wdGlvbiBzZWxlY3RlZD48L29wdGlvbj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxvcHRpb24gdmFsdWU9XCJjZW50ZXJcIj48L29wdGlvbj5cbiAgICAgICAgICAgICAgICAgICAgICAgIDxvcHRpb24gdmFsdWU9XCJyaWdodFwiPjwvb3B0aW9uPlxuICAgICAgICAgICAgICAgICAgICAgICAgPG9wdGlvbiB2YWx1ZT1cImp1c3RpZnlcIj48L29wdGlvbj5cbiAgICAgICAgICAgICAgICAgICAgPC9zZWxlY3Q+XG4gICAgICAgICAgICAgICAgPC9zcGFuPlxuICAgICAgICAgICAgPC9kaXY+XG4gICAgICAgIDwvZGl2PlxuICAgIDwvcXVpbGwtZWRpdG9yPlxuPC9uZy10ZW1wbGF0ZT4iXX0=