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

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 +145 -235
  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
@@ -1,741 +0,0 @@
1
- import * as i0 from '@angular/core';
2
- import { Directive, Input, HostListener, EventEmitter, Component, ChangeDetectionStrategy, Output, ViewChild, Pipe, NgModule } from '@angular/core';
3
- import * as i3 from '@angular/common';
4
- import { CommonModule } from '@angular/common';
5
- import * as i4 from '@angular/forms';
6
- import { ReactiveFormsModule } from '@angular/forms';
7
- import { MatCommonModule } from '@angular/material/core';
8
- import * as i5 from '@angular/material/form-field';
9
- import { MatFormFieldModule } from '@angular/material/form-field';
10
- import * as i6 from '@angular/material/input';
11
- import { MatInputModule } from '@angular/material/input';
12
- import * as i7 from '@angular/material/button';
13
- import { MatButtonModule } from '@angular/material/button';
14
- import * as i8 from '@angular/material/badge';
15
- import { MatBadgeModule } from '@angular/material/badge';
16
- import * as i9 from '@angular/material/icon';
17
- import { MatIconModule } from '@angular/material/icon';
18
- import * as i1 from '@pepperi-addons/ngx-lib';
19
- import { BaseDestroyerDirective, PepCustomizationService, DEFAULT_HORIZONTAL_ALIGNMENT, PepQuantitySelectorField, PepNgxLibModule } from '@pepperi-addons/ngx-lib';
20
- import * as i1$1 from '@pepperi-addons/ngx-lib/icon';
21
- import { pepIconNumberMinus, pepIconNumberPlus, PepIconModule } from '@pepperi-addons/ngx-lib/icon';
22
- import * as i11 from '@pepperi-addons/ngx-lib/field-title';
23
- import { PepFieldTitleModule } from '@pepperi-addons/ngx-lib/field-title';
24
- import { trigger, state, style, transition, animate } from '@angular/animations';
25
- import { BehaviorSubject } from 'rxjs';
26
- import { distinctUntilChanged } from 'rxjs/operators';
27
- import * as i2 from '@ngx-translate/core';
28
-
29
- class PepQuantitySelectorValidationDirective {
30
- constructor(hostElement, utilitiesService, validatorService) {
31
- this.hostElement = hostElement;
32
- this.utilitiesService = utilitiesService;
33
- this.validatorService = validatorService;
34
- this.previousValue = '';
35
- }
36
- ngOnInit() {
37
- //
38
- }
39
- onChange(e) {
40
- this.validateValue(this.hostElement.nativeElement.value);
41
- }
42
- onKeyDown(e) {
43
- const originalValue = e.target['value'];
44
- // save value before keydown event
45
- this.previousValue = originalValue;
46
- const isNumber = this.validatorService.isNumber(e, this.allowDecimal);
47
- if (isNumber)
48
- return;
49
- else
50
- e.preventDefault();
51
- }
52
- validateValue(value) {
53
- const newValue = this.validatorService.validateNumber(value, this.allowDecimal);
54
- // this.hostElement.nativeElement['value'] = newValue ? newValue : 0;
55
- this.hostElement.nativeElement['value'] = newValue ? this.utilitiesService.changeDecimalSeparatorWhenItsComma(newValue) : 0;
56
- }
57
- }
58
- PepQuantitySelectorValidationDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepQuantitySelectorValidationDirective, deps: [{ token: i0.ElementRef }, { token: i1.PepUtilitiesService }, { token: i1.PepValidatorService }], target: i0.ɵɵFactoryTarget.Directive });
59
- PepQuantitySelectorValidationDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "15.2.10", type: PepQuantitySelectorValidationDirective, selector: "[pepQsValidation]", inputs: { allowDecimal: "allowDecimal" }, host: { listeners: { "change": "onChange($event)", "keydown": "onKeyDown($event)" } }, ngImport: i0 });
60
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepQuantitySelectorValidationDirective, decorators: [{
61
- type: Directive,
62
- args: [{
63
- selector: '[pepQsValidation]',
64
- }]
65
- }], ctorParameters: function () { return [{ type: i0.ElementRef }, { type: i1.PepUtilitiesService }, { type: i1.PepValidatorService }]; }, propDecorators: { allowDecimal: [{
66
- type: Input
67
- }], onChange: [{
68
- type: HostListener,
69
- args: ['change', ['$event']]
70
- }], onKeyDown: [{
71
- type: HostListener,
72
- args: ['keydown', ['$event']]
73
- }] } });
74
-
75
- class PepQuantitySelectorComponent extends BaseDestroyerDirective {
76
- set value(value) {
77
- var _a;
78
- if (!value) {
79
- value = '';
80
- }
81
- if (this._value === '' || this.isDifferentValue(value)) {
82
- this._value = value;
83
- }
84
- // Cut the .000 if exist for non allowDecimal.
85
- if (!this.allowDecimal) {
86
- this._value = (_a = this._value) === null || _a === void 0 ? void 0 : _a.split('.')[0];
87
- }
88
- this.setFormattedValue(this.value);
89
- this.changeDisplayValue();
90
- }
91
- get value() {
92
- return this._value;
93
- }
94
- get valueAsCurrentCulture() {
95
- return this.utilitiesService.changeDecimalSeparatorWhenItsComma(this.value, true);
96
- // let res = this.value;
97
- // if (this.allowDecimal) {
98
- // res = this.utilitiesService.formatDecimal(this.value, this.minFractionDigits, this.maxFractionDigits, false);
99
- // }
100
- // return res;
101
- }
102
- set minFractionDigits(value) {
103
- this._minFractionDigits = value;
104
- this.setFormattedValue(this.value);
105
- this.changeDisplayValue();
106
- }
107
- get minFractionDigits() {
108
- return this._minFractionDigits;
109
- }
110
- set maxFractionDigits(value) {
111
- this._maxFractionDigits = value;
112
- this.setFormattedValue(this.value);
113
- this.changeDisplayValue();
114
- }
115
- get maxFractionDigits() {
116
- return this._maxFractionDigits;
117
- }
118
- set textColor(value) {
119
- this._textColor = value;
120
- this.isCaution = value === '#FF0000';
121
- }
122
- get textColor() {
123
- return this._textColor;
124
- }
125
- set allowDecimal(value) {
126
- this._allowDecimal = value;
127
- if (this.value) {
128
- this.setFormattedValue(this.value);
129
- this.changeDisplayValue();
130
- }
131
- }
132
- get allowDecimal() {
133
- return this._allowDecimal;
134
- }
135
- set notificationInfo(value) {
136
- this._notificationInfo = value;
137
- const messages = value && value > 0 ? JSON.parse(value).Messages : '';
138
- if (messages && messages.length > 0) {
139
- // Replace the msg keys.
140
- for (const msg of messages) {
141
- if (msg.Key === 'Inventory_Limit_Msg') {
142
- msg.Key = 'MESSAGES.ERROR_INVENTORY_LIMIT';
143
- }
144
- else if (msg.Key === 'Case_Quantity_Limit_Msg') {
145
- msg.Key = 'MESSAGES.ERROR_CASE_QUANTITY_LIMIT';
146
- }
147
- else if (msg.Key === 'Min_Quantity_Limit_Msg') {
148
- msg.Key = 'MESSAGES.ERROR_MIN_QUANTITY_LIMIT';
149
- }
150
- else if (msg.Key === 'Max_Quantity_Limit_Msg') {
151
- msg.Key = 'MESSAGES.ERROR_MAX_QUANTITY_LIMIT';
152
- }
153
- }
154
- this.messages = messages;
155
- const fieldControl = this.form.controls[this.key];
156
- fieldControl.setErrors({
157
- serverError: 'Error',
158
- });
159
- this.sameElementInTheWantedRow = null;
160
- setTimeout(() => {
161
- if (this.QSInput && this.QSInput.nativeElement) {
162
- this.QSInput.nativeElement.focus();
163
- }
164
- }, 150);
165
- }
166
- }
167
- get notificationInfo() {
168
- return this._notificationInfo;
169
- }
170
- set visible(visible) {
171
- this._visible = visible;
172
- if (visible) {
173
- this.renderer.removeClass(this.element.nativeElement, 'hidden-element');
174
- }
175
- else {
176
- this.renderer.addClass(this.element.nativeElement, 'hidden-element');
177
- }
178
- }
179
- get visible() {
180
- return this._visible;
181
- }
182
- set styleType(value) {
183
- if (value) {
184
- this._styleType = value;
185
- }
186
- else {
187
- this._styleType = document.documentElement.style.getPropertyValue(PepCustomizationService.STYLE_QS_KEY); //'strong';
188
- }
189
- }
190
- get styleType() {
191
- return this._styleType;
192
- }
193
- get calculateFormattedValue() {
194
- return this._calculateFormattedValue;
195
- }
196
- set isInFocus(isInFocus) {
197
- this._isInFocus = isInFocus;
198
- this.changeDisplayValue();
199
- }
200
- get isInFocus() {
201
- return this._isInFocus;
202
- }
203
- get displayValue$() {
204
- return this._displayValueSubject.asObservable().pipe(distinctUntilChanged());
205
- }
206
- constructor(cd, customizationService, renderer, element, translate, utilitiesService) {
207
- super();
208
- this.cd = cd;
209
- this.customizationService = customizationService;
210
- this.renderer = renderer;
211
- this.element = element;
212
- this.translate = translate;
213
- this.utilitiesService = utilitiesService;
214
- this.key = '';
215
- this._value = '';
216
- this.formattedValue = '';
217
- // private _formattedValue = '';
218
- // @Input()
219
- // set formattedValue(value: string) {
220
- // // if (!value) {
221
- // // value = '';
222
- // // }
223
- // // if (this._calculateFormattedValue) {
224
- // // this._calculateFormattedValue = false;
225
- // // }
226
- // // this.setFormattedValue(value);
227
- // }
228
- // get formattedValue(): string {
229
- // return this._formattedValue;
230
- // }
231
- this._minFractionDigits = NaN;
232
- this._maxFractionDigits = NaN;
233
- this.label = '';
234
- this.type = 'qs';
235
- this.mandatory = false;
236
- this.disabled = false;
237
- this.readonly = false;
238
- this._textColor = '';
239
- this.xAlignment = DEFAULT_HORIZONTAL_ALIGNMENT;
240
- this.rowSpan = 2;
241
- this._allowDecimal = false;
242
- this.additionalValue = '';
243
- this._visible = true;
244
- this.controlType = 'qs';
245
- this.form = null;
246
- this.showTitle = true;
247
- this.renderTitle = true;
248
- this.layoutType = 'form';
249
- this.isActive = false;
250
- // Get default style from theme.
251
- this._styleType = document.documentElement.style.getPropertyValue(PepCustomizationService.STYLE_QS_KEY); //'strong';
252
- this.valueChange = new EventEmitter();
253
- this.elementClick = new EventEmitter();
254
- this.validationChange = new EventEmitter();
255
- this._calculateFormattedValue = true;
256
- this.lastQsContClientWidth = 0;
257
- //showQsBtn = true;
258
- this.standAlone = false;
259
- this._isInFocus = false;
260
- this.isMatrixFocus = false;
261
- this.isCaution = false;
262
- this.messages = null;
263
- this.sameElementInTheWantedRow = null;
264
- this.isEmptyKey = false;
265
- this._displayValueSubject = new BehaviorSubject('');
266
- // this.qsWidthSubject = new BehaviorSubject(0);
267
- }
268
- setForm() {
269
- const pepField = new PepQuantitySelectorField({
270
- key: this.key,
271
- value: this.valueAsCurrentCulture,
272
- mandatory: this.mandatory,
273
- readonly: this.readonly,
274
- disabled: this.disabled,
275
- });
276
- this.form = this.customizationService.getDefaultFromGroup(pepField);
277
- }
278
- setFormattedValue(value) {
279
- if (this._calculateFormattedValue) {
280
- if (this.allowDecimal) {
281
- this.formattedValue = this.utilitiesService.formatDecimal(value, this.minFractionDigits, this.maxFractionDigits);
282
- }
283
- else {
284
- this.formattedValue = this.utilitiesService.formatNumber(value);
285
- }
286
- }
287
- else {
288
- this.formattedValue = value;
289
- }
290
- this.updateFormFieldValue();
291
- }
292
- notifyDisplayValueChange(value) {
293
- this._displayValueSubject.next(value);
294
- }
295
- changeDisplayValue() {
296
- let res = '';
297
- if (this.allowDecimal) {
298
- res = this.isInFocus ? this.valueAsCurrentCulture : this.formattedValue;
299
- }
300
- else {
301
- res = this.isInFocus ? this.value : this.formattedValue;
302
- }
303
- this.notifyDisplayValueChange(res);
304
- // console.log('changeDisplayValue' + res);
305
- }
306
- updateFormFieldValue(firstLoad = false) {
307
- // Set the formatted value only for the first load cause it's not formatted if we set the value (I don't know why)
308
- // Else we set the value - this is important to set the value only cause setting the formatted value will cause bug when the number is with thousand separator
309
- this.customizationService.updateFormFieldValue(this.form, this.key, firstLoad ? this.formattedValue : this.value);
310
- // Raise this only for stand alone fields, If false then the usage for this field is inside a form.
311
- // Then the form will take care of raising the (onFormValidationChanged) event
312
- if (this.standAlone) {
313
- const isValid = (this.disabled || this.readonly) ? true : this.form.valid;
314
- this.validationChange.emit(isValid);
315
- }
316
- }
317
- // get displayValue(): string {
318
- // const res = this.isInFocus
319
- // ? this.utilitiesService.formatDecimal(this.value, this.minFractionDigits, this.maxFractionDigits)
320
- // : this.formattedValue;
321
- // return res;
322
- // }
323
- ngOnInit() {
324
- if (this.form === null) {
325
- if (this.key === '') {
326
- this.isEmptyKey = true;
327
- }
328
- this.standAlone = true;
329
- this.setForm();
330
- this.renderer.addClass(this.element.nativeElement, PepCustomizationService.STAND_ALONE_FIELD_CLASS_NAME);
331
- if (!this.renderTitle) {
332
- this.renderer.addClass(this.element.nativeElement, PepCustomizationService.STAND_ALONE_FIELD_NO_SPACING_CLASS_NAME);
333
- }
334
- }
335
- // this.qsWidthSubject
336
- // .asObservable()
337
- // .pipe(this.getDestroyer(), distinctUntilChanged())
338
- // .subscribe((qsWidth: number) => {
339
- // this.setupQsButtons(qsWidth);
340
- // });
341
- this.updateFormFieldValue(true);
342
- }
343
- ngAfterViewInit() {
344
- // setTimeout(() => {
345
- // if (this.QSCont &&
346
- // this.QSCont.nativeElement &&
347
- // this.QSCont.nativeElement.clientWidth > 0
348
- // ) {
349
- // this.showQsBtn = this.QSCont.nativeElement.clientWidth > 120;
350
- // }
351
- // if (!this.cd['destroyed']) {
352
- // this.cd.detectChanges();
353
- // }
354
- // }, 0);
355
- }
356
- ngAfterViewChecked() {
357
- // this.setQsView();
358
- }
359
- ngOnChanges(changes) {
360
- // Bug fix for addons when the key is '' in the ngOnInit for some reson
361
- if (this.isEmptyKey && this.key !== '') {
362
- this.setForm();
363
- }
364
- setTimeout(() => {
365
- this.focusToTheSameElementInTheWantedRow();
366
- }, 150);
367
- }
368
- get getAdditionalValue() {
369
- return this.additionalValue.length > 0 ? 'show' : 'hide';
370
- }
371
- getParentByClass(el, parentSelector /* optional */) {
372
- var _a;
373
- // If no parentSelector defined will bubble up all the way to *document*
374
- if (parentSelector === undefined) {
375
- parentSelector = document;
376
- }
377
- let p = el.parentNode;
378
- while (p &&
379
- !((_a = p === null || p === void 0 ? void 0 : p.classList) === null || _a === void 0 ? void 0 : _a.contains(parentSelector)) &&
380
- parentSelector !== document) {
381
- const o = p;
382
- p = (o === null || o === void 0 ? void 0 : o.parentNode) || null;
383
- }
384
- return (p === null || p === void 0 ? void 0 : p.className.indexOf(parentSelector)) > -1 ? p : null;
385
- }
386
- getSameElementInTheWantedRowByClassName(event, isNext = true) {
387
- const eventTarget = event.target || event.srcElement;
388
- let sameElementInTheWantedRowByClassName;
389
- let parentSelector;
390
- if (this.layoutType === 'table') {
391
- parentSelector = this.getParentByClass(eventTarget, 'table-row');
392
- }
393
- else if (this.layoutType === 'card') {
394
- parentSelector = this.getParentByClass(eventTarget, 'card-view');
395
- if (!parentSelector) {
396
- parentSelector = this.getParentByClass(eventTarget, 'line-view');
397
- }
398
- }
399
- if (parentSelector.nextElementSibling === null &&
400
- parentSelector.previousElementSibling === null) {
401
- sameElementInTheWantedRowByClassName = null;
402
- }
403
- else {
404
- if (isNext) {
405
- if (parentSelector.nextElementSibling === null) {
406
- sameElementInTheWantedRowByClassName = parentSelector.parentElement.querySelectorAll('[name=' + this.key + ']')[0];
407
- }
408
- else {
409
- sameElementInTheWantedRowByClassName = parentSelector.nextElementSibling.querySelectorAll('[name=' + this.key + ']')[0];
410
- }
411
- }
412
- else {
413
- if (parentSelector.previousElementSibling === null) {
414
- const elementsList = parentSelector.parentElement.querySelectorAll('[name=' + this.key + ']');
415
- sameElementInTheWantedRowByClassName =
416
- elementsList[elementsList.length - 1];
417
- }
418
- else {
419
- sameElementInTheWantedRowByClassName = parentSelector.previousElementSibling.querySelectorAll('[name=' + this.key + ']')[0];
420
- }
421
- }
422
- }
423
- return sameElementInTheWantedRowByClassName;
424
- }
425
- setSameElementInTheWantedRow(event, isNext = true) {
426
- // Navigate to the QS in the next row.
427
- if (this.layoutType === 'card' || this.layoutType === 'table') {
428
- this.sameElementInTheWantedRow = this.getSameElementInTheWantedRowByClassName(event, isNext);
429
- }
430
- this.QSInput.nativeElement.blur();
431
- }
432
- focusToTheSameElementInTheWantedRow() {
433
- if (this.sameElementInTheWantedRow) {
434
- const elem = this.sameElementInTheWantedRow;
435
- // If this is regular item (qs and not button) .
436
- if (elem instanceof HTMLInputElement && elem.type === 'text') {
437
- elem.click();
438
- elem.select();
439
- }
440
- else {
441
- const parentElem = elem.parentNode;
442
- parentElem.click();
443
- elem.focus();
444
- }
445
- this.sameElementInTheWantedRow = null;
446
- }
447
- }
448
- cleanError() {
449
- const fieldControl = this.form.controls[this.key];
450
- // Clean the error message
451
- if (this.messages && this.messages.length > 0) {
452
- this.messages = this.notificationInfo = null;
453
- fieldControl.setErrors(null);
454
- }
455
- }
456
- onMatrixMouseEnter(event) {
457
- this.isMatrixFocus = true;
458
- }
459
- onMatrixMouseleave(event) {
460
- this.isMatrixFocus = false;
461
- }
462
- onMatrixClick(event) {
463
- this.isInFocus = true;
464
- if (this.QSInput && this.QSInput.nativeElement) {
465
- this.QSInput.nativeElement.focus();
466
- }
467
- }
468
- onMatrixBlur(event) {
469
- if (!event.relatedTarget ||
470
- event.relatedTarget.className.indexOf('qs') < 0) {
471
- this.isMatrixFocus = false;
472
- }
473
- this.onBlur(event);
474
- }
475
- onFocus(event) {
476
- this.isInFocus = true;
477
- // setTimeout(() => {
478
- // if (this.isInFocus) {
479
- // const eventTarget = event.target || event.srcElement;
480
- // if (eventTarget) {
481
- // eventTarget.select();
482
- // }
483
- // }
484
- // }, 0);
485
- }
486
- isDifferentValue(value) {
487
- const res = this.utilitiesService.isEqualNumber(this.valueAsCurrentCulture, value) === false;
488
- return res;
489
- }
490
- onBlur(event) {
491
- this.isInFocus = false;
492
- this.cleanError();
493
- const value = event.target ? event.target.value : event;
494
- // For decimal we need to replace the decimal separator back if it's comma (',').
495
- const correctValue = this.allowDecimal ? this.utilitiesService.changeDecimalSeparatorWhenItsComma(value) : value;
496
- if (correctValue !== this.valueAsCurrentCulture && this.isDifferentValue(value)) {
497
- this.value = correctValue;
498
- this.valueChange.emit(this.value);
499
- }
500
- this.focusToTheSameElementInTheWantedRow();
501
- }
502
- onKeydown(event) {
503
- const keyboardEvent = event;
504
- if (keyboardEvent.key === 'Enter') {
505
- this.setSameElementInTheWantedRow(keyboardEvent, !keyboardEvent.shiftKey);
506
- return true;
507
- }
508
- }
509
- increment(event) {
510
- if (this.standAlone) {
511
- this.value = this.utilitiesService.incrementNumber(this.value);
512
- }
513
- this.elementClick.emit({
514
- key: this.key,
515
- value: PepQuantitySelectorComponent.PLUS,
516
- controlType: this.controlType,
517
- eventWhich: event.which,
518
- });
519
- event.stopPropagation();
520
- }
521
- decrement(event) {
522
- if (this.standAlone) {
523
- this.value = this.utilitiesService.decrementNumber(this.value);
524
- }
525
- this.elementClick.emit({
526
- key: this.key,
527
- value: PepQuantitySelectorComponent.MINUS,
528
- controlType: this.controlType,
529
- eventWhich: event.which,
530
- });
531
- event.stopPropagation();
532
- }
533
- enterChildren(event) {
534
- this.elementClick.emit({
535
- key: this.key,
536
- value: PepQuantitySelectorComponent.ENTER_CHILDREN,
537
- controlType: this.controlType,
538
- eventWhich: event.which,
539
- });
540
- }
541
- enterPackage(event) {
542
- this.elementClick.emit({
543
- key: this.key,
544
- value: PepQuantitySelectorComponent.ENTER_PACKAGE,
545
- controlType: this.controlType,
546
- eventWhich: event.which,
547
- otherData: this.notificationInfo,
548
- });
549
- }
550
- }
551
- PepQuantitySelectorComponent.ENTER_CHILDREN = '[EnterChildren]';
552
- PepQuantitySelectorComponent.ENTER_PACKAGE = '[EnterPackage]';
553
- PepQuantitySelectorComponent.PLUS = '[+]';
554
- PepQuantitySelectorComponent.MINUS = '[-]';
555
- PepQuantitySelectorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepQuantitySelectorComponent, deps: [{ token: i0.ChangeDetectorRef }, { token: i1.PepCustomizationService }, { token: i0.Renderer2 }, { token: i0.ElementRef }, { token: i2.TranslateService }, { token: i1.PepUtilitiesService }], target: i0.ɵɵFactoryTarget.Component });
556
- PepQuantitySelectorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.10", type: PepQuantitySelectorComponent, selector: "pep-quantity-selector", inputs: { key: "key", value: "value", minFractionDigits: "minFractionDigits", maxFractionDigits: "maxFractionDigits", label: "label", type: "type", mandatory: "mandatory", disabled: "disabled", readonly: "readonly", textColor: "textColor", xAlignment: "xAlignment", rowSpan: "rowSpan", allowDecimal: "allowDecimal", additionalValue: "additionalValue", notificationInfo: "notificationInfo", visible: "visible", form: "form", showTitle: "showTitle", renderTitle: "renderTitle", layoutType: "layoutType", isActive: "isActive", styleType: "styleType", isInFocus: "isInFocus" }, outputs: { valueChange: "valueChange", elementClick: "elementClick", validationChange: "validationChange" }, viewQueries: [{ propertyName: "QSCont", first: true, predicate: ["QSCont"], descendants: true }, { propertyName: "QSInput", first: true, predicate: ["QSInput"], descendants: true }], usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<ng-container [formGroup]=\"form\">\n <ng-template #pepTemplate>\n <div #QSCont class=\"pep-quantity-selector-container {{ styleType }}\" [ngClass]=\"{\n 'hide-qs-actions' : layoutType === 'card' && rowSpan <= 1,\n 'pep-table-quantity-selector': layoutType === 'table',\n 'one-row': rowSpan === 1,\n caution: isCaution,\n 'matrix-qs': type === 'qsForMatrix',\n 'zero-quantity': formattedValue === '0'\n }\">\n <pep-field-title *ngIf=\"renderTitle && layoutType !== 'table' && layoutType !== 'card'\" [label]=\"label\"\n [mandatory]=\"mandatory\" [disabled]=\"disabled\" [showTitle]=\"showTitle\" [xAlignment]=\"xAlignment\">\n </pep-field-title>\n\n <ng-container *ngIf=\"type == 'qs'\">\n <ng-container *ngIf=\"readonly; then readonlyBlock; else editableQSBlock\"></ng-container>\n <ng-template #readonlyBlock>\n <button [id]=\"key\" mat-button class=\"pep-button {{ styleType }} disable \"\n [ngClass]=\"{caution: isCaution, md: rowSpan !== 1, xs: rowSpan === 1}\"\n title=\"{{ formattedValue }}\" disabled=\"true\">\n <span class=\"ellipsis\">\n {{ formattedValue }}\n </span>\n </button>\n </ng-template>\n <ng-template #editableQSBlock>\n <mat-form-field appearance=\"outline\" class=\"qs-container\">\n <input pepQsValidation [allowDecimal]=\"allowDecimal\" type=\"decimalNumber\" inputmode=\"decimal\"\n matInput #QSInput name=\"{{ key }}\" class=\"body-lg ellipsis\" title=\"{{ formattedValue }}\"\n autocomplete=\"off\" [id]=\"key\" [formControlName]=\"key\" [value]=\"displayValue$ | async\"\n (click)=\"$event.target.setSelectionRange(0, 999)\" (keydown)=\"onKeydown($event)\"\n (blur)=\"onBlur($event)\" (focus)=\"onFocus($event)\" />\n <button mat-button matPrefix (click)=\"decrement($event)\"\n class=\"pep-button icon-button sm weak qs-action\" [disabled]=\"disabled\" [ngClass]=\"{ disable: disabled, caution: isCaution && styleType !== 'strong',\n 'keep-background-on-focus': styleType === 'strong'}\">\n <mat-icon>\n <pep-icon name=\"number_minus\">\n </pep-icon>\n </mat-icon>\n </button>\n <button mat-button matSuffix (click)=\"increment($event)\"\n class=\"pep-button icon-button sm weak qs-action\" [disabled]=\"disabled\" [ngClass]=\"{ disable: disabled, caution: isCaution && styleType !== 'strong',\n 'keep-background-on-focus': styleType === 'strong'}\">\n <mat-icon>\n <pep-icon name=\"number_plus\">\n </pep-icon>\n </mat-icon>\n </button>\n <mat-error *ngIf=\"messages?.length > 0\">\n <span class=\"qs-error body-xs\" *ngFor=\"let msg of messages\"> {{ msg.Key | translate }} :\n {{ msg.Value }} </span>\n </mat-error>\n </mat-form-field>\n </ng-template>\n </ng-container>\n\n <ng-container *ngIf=\"type == 'qsForMatrix'\">\n <ng-container *ngIf=\"readonly; then readonlyBlock; else editableQSBlock\"></ng-container>\n <ng-template #readonlyBlock>\n <button [id]=\"key\" mat-button class=\"pep-button {{ styleType }} disable\" disabled=\"true\"\n [ngClass]=\"{caution: isCaution, md: rowSpan !== 1, xs: rowSpan === 1}\">\n X\n </button>\n </ng-template>\n <ng-template #editableQSBlock>\n <span *ngIf=\" xAlignment=='right'\" class=\" body-sm additional-value prefix\"\n matBadge=\"{{ additionalValue }}\" matBadgePosition=\"before\"\n matBadgeSize=\"rowSpan === 1 ? small : medium\" [@showHide]=\"getAdditionalValue\"></span>\n\n <mat-form-field appearance=\"outline\" (mouseleave)=\"!isInFocus ? onMatrixMouseleave($event) : null\">\n <input pepQsValidation [allowDecimal]=\"allowDecimal\" type=\"decimalNumber\" inputmode=\"decimal\"\n matInput #QSInput name=\"{{ key }}\" title=\"{{ formattedValue }}\" class=\"body-sm ellipsis\"\n autocomplete=\"off\" [id]=\"key\" [formControlName]=\"key\" [value]=\"displayValue$ | async\"\n (click)=\"onMatrixClick($event); $event.target.setSelectionRange(0, 999)\"\n (keydown)=\"onKeydown($event)\" (blur)=\"onMatrixBlur($event)\"\n (focus)=\"onMatrixMouseEnter($event); onFocus($event)\"\n (mouseenter)=\"onMatrixMouseEnter($event)\" />\n\n <mat-error *ngIf=\"messages?.length > 0\">\n <span class=\"qs-error body-xs\" *ngFor=\"let msg of messages\"> {{ msg.Key | translate }} :\n {{ msg.Value }} </span>\n </mat-error>\n </mat-form-field>\n\n <span *ngIf=\"xAlignment != 'right'\" class=\"body-sm additional-value suffix\"\n matBadge=\"{{ additionalValue }}\" matBadgePosition=\"before\"\n matBadgeSize=\"rowSpan === 1 ? small : medium\" [@showHide]=\"getAdditionalValue\"></span>\n </ng-template>\n </ng-container>\n\n <ng-container *ngIf=\"type == 'button'\">\n <ng-container *ngIf=\"(value | pepToNumber) == 0; then regularBlock; else withBadgeBlock\">\n </ng-container>\n <ng-template #regularBlock>\n <button mat-button [disabled]=\"disabled\" class=\"pep-button {{ styleType }} \" [id]=\"key\"\n name=\"{{ key }}\"\n [ngClass]=\"{ disable: disabled, caution: isCaution, md: rowSpan !== 1, xs: rowSpan === 1}\"\n [title]=\"'QS.ORDER' | translate\" (click)=\"enterChildren($event)\">\n <span class=\"ellipsis\">\n {{ 'QS.ORDER' | translate }}\n </span>\n </button>\n </ng-template>\n <ng-template #withBadgeBlock>\n <button mat-button matBadge=\"{{ formattedValue }}\"\n matBadgePosition=\"{{xAlignment == 'right' ? 'before' : 'after'}}\"\n [matBadgeSize]=\"layoutType === 'card' && rowSpan === 1 ? 'small' : 'medium'\"\n class=\"pep-button {{ styleType }} \" [id]=\"key\" name=\"{{ key }}\" [ngClass]=\"{ disable: disabled, caution: isCaution, md: rowSpan !== 1, xs: rowSpan === 1,\n 'right-alignment': xAlignment == 'right', 'left-alignment': xAlignment != 'right'}\"\n [title]=\"'QS.ORDER' | translate\" (click)=\"enterChildren($event)\" [disabled]=\"disabled\">\n <span class=\"ellipsis\">\n {{ 'QS.ORDER' | translate }}\n </span>\n </button>\n </ng-template>\n </ng-container>\n <ng-container *ngIf=\"type == 'packageButton'\">\n <button mat-button class=\"pep-button {{ styleType }} \" [id]=\"key\" name=\"{{ key }}\"\n [ngClass]=\"{ disable: disabled, caution: isCaution, md: rowSpan !== 1, xs: rowSpan === 1}\"\n [title]=\"'QS.ORDER' | translate\" (click)=\"enterPackage($event)\" [disabled]=\"disabled\">\n <span class=\"ellipsis\">\n {{ 'QS.ORDER' | translate }} &#40;{{ formattedValue }}&#41;\n </span>\n </button>\n </ng-container>\n </div>\n </ng-template>\n\n <ng-container *ngIf=\"layoutType === 'form'\">\n <ng-container *ngTemplateOutlet=\"pepTemplate\"></ng-container>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'card'\">\n <ng-container *ngTemplateOutlet=\"pepTemplate\"></ng-container>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'table'\">\n <ng-container *ngIf=\"readonly || disabled; then readonlyBlock; else editableBlock\"></ng-container>\n <ng-template #readonlyBlock>\n <div class=\"pep-quantity-selector-container pep-table-quantity-selector disable {{ styleType }}\" [ngClass]=\"{\n 'one-row': rowSpan === 1,\n caution: isCaution,\n 'zero-quantity': formattedValue === '0'\n }\">\n <span class=\"mat-form-field\">\n <span class=\"mat-input-element\">{{formattedValue}}</span>\n </span>\n </div>\n </ng-template>\n <ng-template #editableBlock>\n <ng-container *ngTemplateOutlet=\"pepTemplate\"></ng-container>\n </ng-template>\n </ng-container>\n</ng-container>", styles: [":host{height:inherit;display:grid}::ng-deep .pepperi-quantity-selector-container,::ng-deep .pep-quantity-selector-container{display:flex;flex-flow:wrap;align-items:center;min-width:2rem;width:100%;height:inherit}::ng-deep .pepperi-quantity-selector-container input::-webkit-outer-spin-button,::ng-deep .pepperi-quantity-selector-container input::-webkit-inner-spin-button,::ng-deep .pep-quantity-selector-container input::-webkit-outer-spin-button,::ng-deep .pep-quantity-selector-container input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}::ng-deep .pepperi-quantity-selector-container input[type=number],::ng-deep .pep-quantity-selector-container input[type=number]{-moz-appearance:textfield}::ng-deep .pepperi-quantity-selector-container .mat-input-element,::ng-deep .pepperi-quantity-selector-container .mat-mdc-input-element,::ng-deep .pep-quantity-selector-container .mat-input-element,::ng-deep .pep-quantity-selector-container .mat-mdc-input-element{padding:0 .25rem;text-align:center;font-weight:var(--pep-font-weight-bold, 600);width:100%}::ng-deep .pepperi-quantity-selector-container .mat-form-field .mat-form-field-wrapper .mat-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-form-field .mat-form-field-wrapper .mat-mdc-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-form-field .mat-mdc-text-field-wrapper .mat-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-form-field .mat-mdc-text-field-wrapper .mat-mdc-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-form-field .mdc-text-field .mat-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-form-field .mdc-text-field .mat-mdc-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mat-form-field-wrapper .mat-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mat-form-field-wrapper .mat-mdc-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mat-mdc-text-field-wrapper .mat-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mat-mdc-text-field-wrapper .mat-mdc-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mdc-text-field .mat-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mdc-text-field .mat-mdc-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-form-field .mat-form-field-wrapper .mat-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-form-field .mat-form-field-wrapper .mat-mdc-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-form-field .mat-mdc-text-field-wrapper .mat-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-form-field .mat-mdc-text-field-wrapper .mat-mdc-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-form-field .mdc-text-field .mat-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-form-field .mdc-text-field .mat-mdc-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mat-form-field-wrapper .mat-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mat-form-field-wrapper .mat-mdc-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mat-mdc-text-field-wrapper .mat-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mat-mdc-text-field-wrapper .mat-mdc-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mdc-text-field .mat-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mdc-text-field .mat-mdc-form-field-subscript-wrapper{height:unset}::ng-deep .pepperi-quantity-selector-container .mat-form-field .mat-form-field-wrapper .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-form-field .mat-form-field-wrapper .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-form-field .mat-mdc-text-field-wrapper .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-form-field .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-form-field .mdc-text-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-form-field .mdc-text-field .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mat-form-field-wrapper .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mat-form-field-wrapper .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mat-mdc-text-field-wrapper .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mdc-text-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mdc-text-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-form-field .mat-form-field-wrapper .mat-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-form-field .mat-form-field-wrapper .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-form-field .mat-mdc-text-field-wrapper .mat-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-form-field .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-form-field .mdc-text-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-form-field .mdc-text-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mat-form-field-wrapper .mat-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mat-form-field-wrapper .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mat-mdc-text-field-wrapper .mat-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mdc-text-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mdc-text-field .mat-mdc-form-field-flex{padding:0 .25rem!important}::ng-deep .pepperi-quantity-selector-container .pepperi-button,::ng-deep .pepperi-quantity-selector-container .pep-button,::ng-deep .pep-quantity-selector-container .pepperi-button,::ng-deep .pep-quantity-selector-container .pep-button{width:100%}::ng-deep .pepperi-quantity-selector-container .pepperi-button.qs-action,::ng-deep .pepperi-quantity-selector-container .pep-button.qs-action,::ng-deep .pep-quantity-selector-container .pepperi-button.qs-action,::ng-deep .pep-quantity-selector-container .pep-button.qs-action{min-width:2rem;line-height:2rem;width:2rem!important;height:2rem!important}::ng-deep .pepperi-quantity-selector-container .pepperi-button.qs-action .mat-icon,::ng-deep .pepperi-quantity-selector-container .pepperi-button.qs-action .mat-mdc-icon,::ng-deep .pepperi-quantity-selector-container .pep-button.qs-action .mat-icon,::ng-deep .pepperi-quantity-selector-container .pep-button.qs-action .mat-mdc-icon,::ng-deep .pep-quantity-selector-container .pepperi-button.qs-action .mat-icon,::ng-deep .pep-quantity-selector-container .pepperi-button.qs-action .mat-mdc-icon,::ng-deep .pep-quantity-selector-container .pep-button.qs-action .mat-icon,::ng-deep .pep-quantity-selector-container .pep-button.qs-action .mat-mdc-icon{height:inherit;width:inherit}::ng-deep .pepperi-quantity-selector-container .qs-error,::ng-deep .pep-quantity-selector-container .qs-error{display:block}::ng-deep .pepperi-quantity-selector-container.hide-qs-actions .pepperi-button.qs-action,::ng-deep .pepperi-quantity-selector-container.hide-qs-actions .pep-button.qs-action,::ng-deep .pep-quantity-selector-container.hide-qs-actions .pepperi-button.qs-action,::ng-deep .pep-quantity-selector-container.hide-qs-actions .pep-button.qs-action{display:none}::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value{height:1.25rem;top:calc(var(--pep-spacing-xs, .25rem) * -1);transform:unset!important;display:flex;align-self:flex-start;justify-content:flex-end}::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value.prefix,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value.prefix{left:calc(var(--pep-spacing-sm, .5rem) * -1)!important}::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value.suffix,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value.suffix{right:calc(var(--pep-spacing-sm, .5rem) * -1)!important}::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value .mat-badge-content,::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value .mat-mdc-badge-content,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value .mat-badge-content,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value .mat-mdc-badge-content{z-index:97;min-width:1.5rem;width:fit-content!important;border-radius:.625rem;padding:0 .5rem;top:calc(var(--pep-spacing-sm, .5rem) * -1)!important;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:inherit}::ng-deep .pepperi-quantity-selector-container.matrix-qs .disable,::ng-deep .pep-quantity-selector-container.matrix-qs .disable{min-width:.5rem;padding:0 .25rem}::ng-deep .pepperi-quantity-selector-container.pepperi-table-quantity-selector.disable .mat-form-field .mat-input-element,::ng-deep .pepperi-quantity-selector-container.pepperi-table-quantity-selector.disable .mat-mdc-form-field .mat-mdc-input-element,::ng-deep .pepperi-quantity-selector-container.pep-table-quantity-selector.disable .mat-form-field .mat-input-element,::ng-deep .pepperi-quantity-selector-container.pep-table-quantity-selector.disable .mat-mdc-form-field .mat-mdc-input-element,::ng-deep .pep-quantity-selector-container.pepperi-table-quantity-selector.disable .mat-form-field .mat-input-element,::ng-deep .pep-quantity-selector-container.pepperi-table-quantity-selector.disable .mat-mdc-form-field .mat-mdc-input-element,::ng-deep .pep-quantity-selector-container.pep-table-quantity-selector.disable .mat-form-field .mat-input-element,::ng-deep .pep-quantity-selector-container.pep-table-quantity-selector.disable .mat-mdc-form-field .mat-mdc-input-element{display:flex;justify-content:center;align-items:center}::ng-deep .pepperi-quantity-selector-container.pepperi-table-quantity-selector .pepperi-button:not(.qs-action),::ng-deep .pepperi-quantity-selector-container.pepperi-table-quantity-selector .pep-button:not(.qs-action),::ng-deep .pepperi-quantity-selector-container.pep-table-quantity-selector .pepperi-button:not(.qs-action),::ng-deep .pepperi-quantity-selector-container.pep-table-quantity-selector .pep-button:not(.qs-action),::ng-deep .pep-quantity-selector-container.pepperi-table-quantity-selector .pepperi-button:not(.qs-action),::ng-deep .pep-quantity-selector-container.pepperi-table-quantity-selector .pep-button:not(.qs-action),::ng-deep .pep-quantity-selector-container.pep-table-quantity-selector .pepperi-button:not(.qs-action),::ng-deep .pep-quantity-selector-container.pep-table-quantity-selector .pep-button:not(.qs-action){height:2rem;line-height:2rem}::ng-deep .pepperi-quantity-selector-container.pepperi-table-quantity-selector .pepperi-button.qs-action,::ng-deep .pepperi-quantity-selector-container.pepperi-table-quantity-selector .pep-button.qs-action,::ng-deep .pepperi-quantity-selector-container.pep-table-quantity-selector .pepperi-button.qs-action,::ng-deep .pepperi-quantity-selector-container.pep-table-quantity-selector .pep-button.qs-action,::ng-deep .pep-quantity-selector-container.pepperi-table-quantity-selector .pepperi-button.qs-action,::ng-deep .pep-quantity-selector-container.pepperi-table-quantity-selector .pep-button.qs-action,::ng-deep .pep-quantity-selector-container.pep-table-quantity-selector .pepperi-button.qs-action,::ng-deep .pep-quantity-selector-container.pep-table-quantity-selector .pep-button.qs-action{min-width:1.5rem;line-height:1.5rem;width:1.5rem!important;height:1.5rem!important}::ng-deep .pepperi-quantity-selector-container.pepperi-table-quantity-selector .mat-form-field .mat-form-field-wrapper,::ng-deep .pepperi-quantity-selector-container.pepperi-table-quantity-selector .mat-mdc-form-field .mat-mdc-text-field-wrapper,::ng-deep .pepperi-quantity-selector-container.pep-table-quantity-selector .mat-form-field .mat-form-field-wrapper,::ng-deep .pepperi-quantity-selector-container.pep-table-quantity-selector .mat-mdc-form-field .mat-mdc-text-field-wrapper,::ng-deep .pep-quantity-selector-container.pepperi-table-quantity-selector .mat-form-field .mat-form-field-wrapper,::ng-deep .pep-quantity-selector-container.pepperi-table-quantity-selector .mat-mdc-form-field .mat-mdc-text-field-wrapper,::ng-deep .pep-quantity-selector-container.pep-table-quantity-selector .mat-form-field .mat-form-field-wrapper,::ng-deep .pep-quantity-selector-container.pep-table-quantity-selector .mat-mdc-form-field .mat-mdc-text-field-wrapper{margin-top:0!important}.qs-container{resize:both;container-type:inline-size;container-name:qs-container}@container qs-container (max-width: 7.5rem){.pep-button{display:none!important}}\n", "::ng-deep .pepperi-quantity-selector-container:not(.strong) .mat-form-field .mat-input-element,::ng-deep .pepperi-quantity-selector-container:not(.strong) .mat-form-field .mat-mdc-input-element,::ng-deep .pepperi-quantity-selector-container:not(.strong) .mat-mdc-form-field .mat-input-element,::ng-deep .pepperi-quantity-selector-container:not(.strong) .mat-mdc-form-field .mat-mdc-input-element,::ng-deep .pep-quantity-selector-container:not(.strong) .mat-form-field .mat-input-element,::ng-deep .pep-quantity-selector-container:not(.strong) .mat-form-field .mat-mdc-input-element,::ng-deep .pep-quantity-selector-container:not(.strong) .mat-mdc-form-field .mat-input-element,::ng-deep .pep-quantity-selector-container:not(.strong) .mat-mdc-form-field .mat-mdc-input-element{color:hsl(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%))}::ng-deep .pepperi-quantity-selector-container:not(.strong).zero-quantity .mat-form-field .mat-input-element,::ng-deep .pepperi-quantity-selector-container:not(.strong).zero-quantity .mat-form-field .mat-mdc-input-element,::ng-deep .pepperi-quantity-selector-container:not(.strong).zero-quantity .mat-mdc-form-field .mat-input-element,::ng-deep .pepperi-quantity-selector-container:not(.strong).zero-quantity .mat-mdc-form-field .mat-mdc-input-element,::ng-deep .pep-quantity-selector-container:not(.strong).zero-quantity .mat-form-field .mat-input-element,::ng-deep .pep-quantity-selector-container:not(.strong).zero-quantity .mat-form-field .mat-mdc-input-element,::ng-deep .pep-quantity-selector-container:not(.strong).zero-quantity .mat-mdc-form-field .mat-input-element,::ng-deep .pep-quantity-selector-container:not(.strong).zero-quantity .mat-mdc-form-field .mat-mdc-input-element{color:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.7)}::ng-deep .pepperi-quantity-selector-container:not(.strong).zero-quantity button,::ng-deep .pep-quantity-selector-container:not(.strong).zero-quantity button{color:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.7)}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field .mat-mdc-form-field-flex{background:hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.08)}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.16)}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{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;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex: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%))}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{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}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex: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%))}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex{box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after{border:unset}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex: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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.04)!important}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button,::ng-deep .pepperi-quantity-selector-container.weak .pep-button,::ng-deep .pep-quantity-selector-container.weak .pepperi-button,::ng-deep .pep-quantity-selector-container.weak .pep-button{background:hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.08)}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:hover,::ng-deep .pepperi-quantity-selector-container.weak .pep-button:hover,::ng-deep .pep-quantity-selector-container.weak .pepperi-button:hover,::ng-deep .pep-quantity-selector-container.weak .pep-button:hover{background:hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.16)}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:focus,::ng-deep .pepperi-quantity-selector-container.weak .pep-button:focus,::ng-deep .pep-quantity-selector-container.weak .pepperi-button:focus,::ng-deep .pep-quantity-selector-container.weak .pep-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;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:focus:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .pep-button:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .pepperi-button:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .pep-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%))}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:focus:after,::ng-deep .pepperi-quantity-selector-container.weak .pep-button:focus:after,::ng-deep .pep-quantity-selector-container.weak .pepperi-button:focus:after,::ng-deep .pep-quantity-selector-container.weak .pep-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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:active,::ng-deep .pepperi-quantity-selector-container.weak .pep-button:active,::ng-deep .pep-quantity-selector-container.weak .pepperi-button:active,::ng-deep .pep-quantity-selector-container.weak .pep-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}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:active:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .pep-button:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .pepperi-button:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .pep-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%))}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:active:after,::ng-deep .pepperi-quantity-selector-container.weak .pep-button:active:after,::ng-deep .pep-quantity-selector-container.weak .pepperi-button:active:after,::ng-deep .pep-quantity-selector-container.weak .pep-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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.weak .pep-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.weak .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.weak .pep-button:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.weak .pep-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.weak .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.weak .pep-button:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak .pep-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.weak .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.weak .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .pep-button:disabled:not(.ignore-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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.04)!important}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action,::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action,::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action,::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action{background:hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.08);box-shadow:unset;border:unset;z-index:1}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:hover,::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action:hover{background:hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.16)}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:focus,::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action: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;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:focus:after,::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action: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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:active,::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:active,::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:active,::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action: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}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:active:after,::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action: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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action:disabled:not(.ignore-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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.04)!important}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field .mat-mdc-form-field-flex{background:hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.08)}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.16)}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{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;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex: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%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{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}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex: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%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex{box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after{border:unset}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex: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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.04)!important}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button{background:hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.08)}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:hover,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:hover,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:hover,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button:hover{background:hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.16)}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:focus,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:focus,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:focus,::ng-deep .pep-quantity-selector-container.weak.caution .pep-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;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:focus:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .pep-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%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:focus:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:focus:after,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:focus:after,::ng-deep .pep-quantity-selector-container.weak.caution .pep-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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:active,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:active,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:active,::ng-deep .pep-quantity-selector-container.weak.caution .pep-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}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:active:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .pep-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%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:active:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:active:after,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:active:after,::ng-deep .pep-quantity-selector-container.weak.caution .pep-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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.weak.caution .pep-button:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .pep-button:disabled:not(.ignore-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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.04)!important}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action{background:hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.08);box-shadow:unset;border:unset;z-index:1}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:hover,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action:hover{background:hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.16)}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:focus,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action: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;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:focus:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action: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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:active,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:active,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:active,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action: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}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:active:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action: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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action:disabled:not(.ignore-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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.04)!important}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field .mat-mdc-form-field-flex{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),98%);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}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),calc(var(--pep-color-qs-l, 10%) + 30%))}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),98%);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%),.16);position:relative}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),calc(var(--pep-color-qs-l, 10%) + 20%))}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),88%);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%),.16);position:relative;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),88%);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%),.32);position:relative}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex{box-shadow:unset;border:unset;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%),.04)!important;position:relative}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after{border:unset}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex: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:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),88%)!important}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.08)}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button,::ng-deep .pepperi-quantity-selector-container.regular .pep-button,::ng-deep .pep-quantity-selector-container.regular .pepperi-button,::ng-deep .pep-quantity-selector-container.regular .pep-button{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),98%);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);border:1px solid hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),calc(var(--pep-color-qs-l, 10%) + 30%))}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button:hover,::ng-deep .pepperi-quantity-selector-container.regular .pep-button:hover,::ng-deep .pep-quantity-selector-container.regular .pepperi-button:hover,::ng-deep .pep-quantity-selector-container.regular .pep-button:hover{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),98%);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%),.16);border:1px solid hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),calc(var(--pep-color-qs-l, 10%) + 20%))}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button:focus,::ng-deep .pepperi-quantity-selector-container.regular .pep-button:focus,::ng-deep .pep-quantity-selector-container.regular .pepperi-button:focus,::ng-deep .pep-quantity-selector-container.regular .pep-button:focus{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),88%);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%),.16);border:1px solid hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%));box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button:active,::ng-deep .pepperi-quantity-selector-container.regular .pep-button:active,::ng-deep .pep-quantity-selector-container.regular .pepperi-button:active,::ng-deep .pep-quantity-selector-container.regular .pep-button:active{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),88%);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%),.32);border:1px solid hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.regular .pep-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.regular .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.regular .pep-button:disabled:not(.ignore-disabled){box-shadow:unset;border:unset;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%),.04)!important;border:1px solid hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.08)}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.regular .pep-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.regular .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.regular .pep-button:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular .pep-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.regular .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.regular .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .pep-button:disabled:not(.ignore-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:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),88%)!important}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action,::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action,::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action,::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action{background:hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.08);box-shadow:unset;border:unset;z-index:1}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:hover,::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action:hover{background:hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.16)}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:focus,::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action: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;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:focus:after,::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action: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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:active,::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:active,::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:active,::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action: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}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:active:after,::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action: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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action:disabled:not(.ignore-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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.04)!important}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field .mat-mdc-form-field-flex{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),98%);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}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),calc(var(--pep-color-system-caution-l, 45%) + 30%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),98%);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%),.16);position:relative}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),calc(var(--pep-color-system-caution-l, 45%) + 20%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),88%);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%),.16);position:relative;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),88%);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%),.32);position:relative}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex{box-shadow:unset;border:unset;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%),.04)!important;position:relative}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after{border:unset}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex: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:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),88%)!important}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.08)}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),98%);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);border:1px solid hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),calc(var(--pep-color-system-caution-l, 45%) + 30%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button:hover,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button:hover,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button:hover,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button:hover{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),98%);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%),.16);border:1px solid hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),calc(var(--pep-color-system-caution-l, 45%) + 20%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button:focus,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button:focus,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button:focus,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button:focus{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),88%);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%),.16);border:1px solid hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%));box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button:active,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button:active,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button:active,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button:active{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),88%);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%),.32);border:1px solid hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.regular.caution .pep-button:disabled:not(.ignore-disabled){box-shadow:unset;border:unset;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%),.04)!important;border:1px solid hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.08)}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .pep-button:disabled:not(.ignore-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:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),88%)!important}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action{background:hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.08);box-shadow:unset;border:unset;z-index:1}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:hover,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action:hover{background:hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.16)}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:focus,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action: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;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:focus:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action: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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:active,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:active,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:active,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action: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}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:active:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action: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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action:disabled:not(.ignore-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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.04)!important}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field .mat-mdc-form-field-flex{font-weight:var(--pep-font-weight-bold, 600);background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%));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%),.08);color: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%))}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-form-field .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-form-field .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field .mat-mdc-form-field-flex .svg-icon{fill: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%))}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-form-field .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-form-field .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field .mat-mdc-form-field-flex .svg-icon.stroke{fill:unset;stroke: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%))}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),calc(var(--pep-color-qs-l, 10%) - 8%));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%),.16)}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),calc(var(--pep-color-qs-l, 10%) - 15%));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%),.08);box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),calc(var(--pep-color-qs-l, 10%) - 15%));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)}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex{box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after{border:unset}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color){background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))!important;opacity:.5!important;color: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%))}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon{fill: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%))}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke{fill:unset;stroke: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%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button,::ng-deep .pepperi-quantity-selector-container.strong .pep-button,::ng-deep .pep-quantity-selector-container.strong .pepperi-button,::ng-deep .pep-quantity-selector-container.strong .pep-button{font-weight:var(--pep-font-weight-bold, 600);background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%));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%),.08);color: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%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .pep-button .svg-icon,::ng-deep .pep-quantity-selector-container.strong .pepperi-button .svg-icon,::ng-deep .pep-quantity-selector-container.strong .pep-button .svg-icon{fill: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%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .pep-button .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .pepperi-button .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .pep-button .svg-icon.stroke{fill:unset;stroke: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%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button:hover,::ng-deep .pepperi-quantity-selector-container.strong .pep-button:hover,::ng-deep .pep-quantity-selector-container.strong .pepperi-button:hover,::ng-deep .pep-quantity-selector-container.strong .pep-button:hover{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),calc(var(--pep-color-qs-l, 10%) - 8%));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%),.16)}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button:focus,::ng-deep .pepperi-quantity-selector-container.strong .pep-button:focus,::ng-deep .pep-quantity-selector-container.strong .pepperi-button:focus,::ng-deep .pep-quantity-selector-container.strong .pep-button:focus{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),calc(var(--pep-color-qs-l, 10%) - 15%));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%),.08);box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button:active,::ng-deep .pepperi-quantity-selector-container.strong .pep-button:active,::ng-deep .pep-quantity-selector-container.strong .pepperi-button:active,::ng-deep .pep-quantity-selector-container.strong .pep-button:active{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),calc(var(--pep-color-qs-l, 10%) - 15%));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)}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color){background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))!important;opacity:.5!important;color: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%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon{fill: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%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke{fill:unset;stroke: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%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action,::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action,::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action,::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action{background:hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.08);box-shadow:unset;border:unset;z-index:1}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:hover,::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action:hover{background:hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.16)}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:focus,::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action: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;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:focus:after,::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action: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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:active,::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:active,::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:active,::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action: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}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:active:after,::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action: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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action:disabled:not(.ignore-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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.04)!important}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-mdc-form-field-flex{font-weight:var(--pep-font-weight-bold, 600);background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%));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%),.08);color: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-mdc-form-field-flex .svg-icon{fill: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-mdc-form-field-flex .svg-icon.stroke{fill:unset;stroke: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),calc(var(--pep-color-system-caution-l, 45%) - 8%));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%),.16)}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),calc(var(--pep-color-system-caution-l, 45%) - 15%));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%),.08);box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),calc(var(--pep-color-system-caution-l, 45%) - 15%));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)}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex{box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after{border:unset}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color){background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))!important;opacity:.5!important;color: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon{fill: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke{fill:unset;stroke: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button{font-weight:var(--pep-font-weight-bold, 600);background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%));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%),.08);color: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button .svg-icon{fill: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button .svg-icon.stroke{fill:unset;stroke: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button:hover,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button:hover,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button:hover,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button:hover{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),calc(var(--pep-color-system-caution-l, 45%) - 8%));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%),.16)}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button:focus,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button:focus,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button:focus,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button:focus{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),calc(var(--pep-color-system-caution-l, 45%) - 15%));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%),.08);box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button:active,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button:active,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button:active,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button:active{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),calc(var(--pep-color-system-caution-l, 45%) - 15%));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)}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color){background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))!important;opacity:.5!important;color: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled) .svg-icon{fill: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke{fill:unset;stroke: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action{background:hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.08);box-shadow:unset;border:unset;z-index:1}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:hover,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action:hover{background:hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.16)}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:focus,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action: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;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:focus:after,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action: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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:active,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:active,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:active,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action: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}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:active:after,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action: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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action:disabled:not(.ignore-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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.04)!important}::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value .mat-badge-content,::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value .mat-mdc-badge-content,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value .mat-badge-content,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value .mat-mdc-badge-content{font-weight:var(--pep-font-weight-bold, 600);background:hsl(var(--pep-color-strong-h, 78),var(--pep-color-strong-s, 87%),var(--pep-color-strong-l, 27%));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%),.08);color: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%));background-color:hsl(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%))!important;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)}::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value .mat-badge-content .svg-icon,::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value .mat-mdc-badge-content .svg-icon,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value .mat-badge-content .svg-icon,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value .mat-mdc-badge-content .svg-icon{fill: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%))}::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value .mat-badge-content .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value .mat-mdc-badge-content .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value .mat-badge-content .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value .mat-mdc-badge-content .svg-icon.stroke{fill:unset;stroke: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%))}\n", ""], dependencies: [{ kind: "directive", type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i3.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i4.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: i4.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i4.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i4.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i4.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: i5.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i5.MatError, selector: "mat-error, [matError]", inputs: ["id"] }, { kind: "directive", type: i5.MatPrefix, selector: "[matPrefix], [matIconPrefix], [matTextPrefix]", inputs: ["matTextPrefix"] }, { kind: "directive", type: i5.MatSuffix, selector: "[matSuffix], [matIconSuffix], [matTextSuffix]", inputs: ["matTextSuffix"] }, { kind: "directive", type: i6.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: 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: "directive", type: i8.MatBadge, selector: "[matBadge]", inputs: ["matBadgeDisabled", "matBadgeColor", "matBadgeOverlap", "matBadgePosition", "matBadge", "matBadgeDescription", "matBadgeSize", "matBadgeHidden"] }, { kind: "component", type: i9.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i1$1.PepIconComponent, selector: "pep-icon", inputs: ["spin", "name", "fill"] }, { kind: "component", type: i11.PepFieldTitleComponent, selector: "pep-field-title", inputs: ["label", "mandatory", "disabled", "maxFieldCharacters", "hint", "xAlignment", "showTitle", "inputLength", "fontBodyType", "multiLine"] }, { kind: "directive", type: PepQuantitySelectorValidationDirective, selector: "[pepQsValidation]", inputs: ["allowDecimal"] }, { kind: "pipe", type: i3.AsyncPipe, name: "async" }, { kind: "pipe", type: i1.PepToNumberPipe, name: "pepToNumber" }, { kind: "pipe", type: i2.TranslatePipe, name: "translate" }], animations: [
557
- trigger('showHide', [
558
- state('show', style({
559
- opacity: 1,
560
- transform: 'scale(1)',
561
- })),
562
- state('hide', style({
563
- opacity: 0,
564
- transform: 'scale(0)',
565
- })),
566
- transition('show => hide', animate('250ms ease-out')),
567
- transition('hide => show', animate('250ms ease-in')),
568
- ]),
569
- ], changeDetection: i0.ChangeDetectionStrategy.OnPush });
570
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepQuantitySelectorComponent, decorators: [{
571
- type: Component,
572
- args: [{ selector: 'pep-quantity-selector', changeDetection: ChangeDetectionStrategy.OnPush, animations: [
573
- trigger('showHide', [
574
- state('show', style({
575
- opacity: 1,
576
- transform: 'scale(1)',
577
- })),
578
- state('hide', style({
579
- opacity: 0,
580
- transform: 'scale(0)',
581
- })),
582
- transition('show => hide', animate('250ms ease-out')),
583
- transition('hide => show', animate('250ms ease-in')),
584
- ]),
585
- ], template: "<ng-container [formGroup]=\"form\">\n <ng-template #pepTemplate>\n <div #QSCont class=\"pep-quantity-selector-container {{ styleType }}\" [ngClass]=\"{\n 'hide-qs-actions' : layoutType === 'card' && rowSpan <= 1,\n 'pep-table-quantity-selector': layoutType === 'table',\n 'one-row': rowSpan === 1,\n caution: isCaution,\n 'matrix-qs': type === 'qsForMatrix',\n 'zero-quantity': formattedValue === '0'\n }\">\n <pep-field-title *ngIf=\"renderTitle && layoutType !== 'table' && layoutType !== 'card'\" [label]=\"label\"\n [mandatory]=\"mandatory\" [disabled]=\"disabled\" [showTitle]=\"showTitle\" [xAlignment]=\"xAlignment\">\n </pep-field-title>\n\n <ng-container *ngIf=\"type == 'qs'\">\n <ng-container *ngIf=\"readonly; then readonlyBlock; else editableQSBlock\"></ng-container>\n <ng-template #readonlyBlock>\n <button [id]=\"key\" mat-button class=\"pep-button {{ styleType }} disable \"\n [ngClass]=\"{caution: isCaution, md: rowSpan !== 1, xs: rowSpan === 1}\"\n title=\"{{ formattedValue }}\" disabled=\"true\">\n <span class=\"ellipsis\">\n {{ formattedValue }}\n </span>\n </button>\n </ng-template>\n <ng-template #editableQSBlock>\n <mat-form-field appearance=\"outline\" class=\"qs-container\">\n <input pepQsValidation [allowDecimal]=\"allowDecimal\" type=\"decimalNumber\" inputmode=\"decimal\"\n matInput #QSInput name=\"{{ key }}\" class=\"body-lg ellipsis\" title=\"{{ formattedValue }}\"\n autocomplete=\"off\" [id]=\"key\" [formControlName]=\"key\" [value]=\"displayValue$ | async\"\n (click)=\"$event.target.setSelectionRange(0, 999)\" (keydown)=\"onKeydown($event)\"\n (blur)=\"onBlur($event)\" (focus)=\"onFocus($event)\" />\n <button mat-button matPrefix (click)=\"decrement($event)\"\n class=\"pep-button icon-button sm weak qs-action\" [disabled]=\"disabled\" [ngClass]=\"{ disable: disabled, caution: isCaution && styleType !== 'strong',\n 'keep-background-on-focus': styleType === 'strong'}\">\n <mat-icon>\n <pep-icon name=\"number_minus\">\n </pep-icon>\n </mat-icon>\n </button>\n <button mat-button matSuffix (click)=\"increment($event)\"\n class=\"pep-button icon-button sm weak qs-action\" [disabled]=\"disabled\" [ngClass]=\"{ disable: disabled, caution: isCaution && styleType !== 'strong',\n 'keep-background-on-focus': styleType === 'strong'}\">\n <mat-icon>\n <pep-icon name=\"number_plus\">\n </pep-icon>\n </mat-icon>\n </button>\n <mat-error *ngIf=\"messages?.length > 0\">\n <span class=\"qs-error body-xs\" *ngFor=\"let msg of messages\"> {{ msg.Key | translate }} :\n {{ msg.Value }} </span>\n </mat-error>\n </mat-form-field>\n </ng-template>\n </ng-container>\n\n <ng-container *ngIf=\"type == 'qsForMatrix'\">\n <ng-container *ngIf=\"readonly; then readonlyBlock; else editableQSBlock\"></ng-container>\n <ng-template #readonlyBlock>\n <button [id]=\"key\" mat-button class=\"pep-button {{ styleType }} disable\" disabled=\"true\"\n [ngClass]=\"{caution: isCaution, md: rowSpan !== 1, xs: rowSpan === 1}\">\n X\n </button>\n </ng-template>\n <ng-template #editableQSBlock>\n <span *ngIf=\" xAlignment=='right'\" class=\" body-sm additional-value prefix\"\n matBadge=\"{{ additionalValue }}\" matBadgePosition=\"before\"\n matBadgeSize=\"rowSpan === 1 ? small : medium\" [@showHide]=\"getAdditionalValue\"></span>\n\n <mat-form-field appearance=\"outline\" (mouseleave)=\"!isInFocus ? onMatrixMouseleave($event) : null\">\n <input pepQsValidation [allowDecimal]=\"allowDecimal\" type=\"decimalNumber\" inputmode=\"decimal\"\n matInput #QSInput name=\"{{ key }}\" title=\"{{ formattedValue }}\" class=\"body-sm ellipsis\"\n autocomplete=\"off\" [id]=\"key\" [formControlName]=\"key\" [value]=\"displayValue$ | async\"\n (click)=\"onMatrixClick($event); $event.target.setSelectionRange(0, 999)\"\n (keydown)=\"onKeydown($event)\" (blur)=\"onMatrixBlur($event)\"\n (focus)=\"onMatrixMouseEnter($event); onFocus($event)\"\n (mouseenter)=\"onMatrixMouseEnter($event)\" />\n\n <mat-error *ngIf=\"messages?.length > 0\">\n <span class=\"qs-error body-xs\" *ngFor=\"let msg of messages\"> {{ msg.Key | translate }} :\n {{ msg.Value }} </span>\n </mat-error>\n </mat-form-field>\n\n <span *ngIf=\"xAlignment != 'right'\" class=\"body-sm additional-value suffix\"\n matBadge=\"{{ additionalValue }}\" matBadgePosition=\"before\"\n matBadgeSize=\"rowSpan === 1 ? small : medium\" [@showHide]=\"getAdditionalValue\"></span>\n </ng-template>\n </ng-container>\n\n <ng-container *ngIf=\"type == 'button'\">\n <ng-container *ngIf=\"(value | pepToNumber) == 0; then regularBlock; else withBadgeBlock\">\n </ng-container>\n <ng-template #regularBlock>\n <button mat-button [disabled]=\"disabled\" class=\"pep-button {{ styleType }} \" [id]=\"key\"\n name=\"{{ key }}\"\n [ngClass]=\"{ disable: disabled, caution: isCaution, md: rowSpan !== 1, xs: rowSpan === 1}\"\n [title]=\"'QS.ORDER' | translate\" (click)=\"enterChildren($event)\">\n <span class=\"ellipsis\">\n {{ 'QS.ORDER' | translate }}\n </span>\n </button>\n </ng-template>\n <ng-template #withBadgeBlock>\n <button mat-button matBadge=\"{{ formattedValue }}\"\n matBadgePosition=\"{{xAlignment == 'right' ? 'before' : 'after'}}\"\n [matBadgeSize]=\"layoutType === 'card' && rowSpan === 1 ? 'small' : 'medium'\"\n class=\"pep-button {{ styleType }} \" [id]=\"key\" name=\"{{ key }}\" [ngClass]=\"{ disable: disabled, caution: isCaution, md: rowSpan !== 1, xs: rowSpan === 1,\n 'right-alignment': xAlignment == 'right', 'left-alignment': xAlignment != 'right'}\"\n [title]=\"'QS.ORDER' | translate\" (click)=\"enterChildren($event)\" [disabled]=\"disabled\">\n <span class=\"ellipsis\">\n {{ 'QS.ORDER' | translate }}\n </span>\n </button>\n </ng-template>\n </ng-container>\n <ng-container *ngIf=\"type == 'packageButton'\">\n <button mat-button class=\"pep-button {{ styleType }} \" [id]=\"key\" name=\"{{ key }}\"\n [ngClass]=\"{ disable: disabled, caution: isCaution, md: rowSpan !== 1, xs: rowSpan === 1}\"\n [title]=\"'QS.ORDER' | translate\" (click)=\"enterPackage($event)\" [disabled]=\"disabled\">\n <span class=\"ellipsis\">\n {{ 'QS.ORDER' | translate }} &#40;{{ formattedValue }}&#41;\n </span>\n </button>\n </ng-container>\n </div>\n </ng-template>\n\n <ng-container *ngIf=\"layoutType === 'form'\">\n <ng-container *ngTemplateOutlet=\"pepTemplate\"></ng-container>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'card'\">\n <ng-container *ngTemplateOutlet=\"pepTemplate\"></ng-container>\n </ng-container>\n\n <ng-container *ngIf=\"layoutType === 'table'\">\n <ng-container *ngIf=\"readonly || disabled; then readonlyBlock; else editableBlock\"></ng-container>\n <ng-template #readonlyBlock>\n <div class=\"pep-quantity-selector-container pep-table-quantity-selector disable {{ styleType }}\" [ngClass]=\"{\n 'one-row': rowSpan === 1,\n caution: isCaution,\n 'zero-quantity': formattedValue === '0'\n }\">\n <span class=\"mat-form-field\">\n <span class=\"mat-input-element\">{{formattedValue}}</span>\n </span>\n </div>\n </ng-template>\n <ng-template #editableBlock>\n <ng-container *ngTemplateOutlet=\"pepTemplate\"></ng-container>\n </ng-template>\n </ng-container>\n</ng-container>", styles: [":host{height:inherit;display:grid}::ng-deep .pepperi-quantity-selector-container,::ng-deep .pep-quantity-selector-container{display:flex;flex-flow:wrap;align-items:center;min-width:2rem;width:100%;height:inherit}::ng-deep .pepperi-quantity-selector-container input::-webkit-outer-spin-button,::ng-deep .pepperi-quantity-selector-container input::-webkit-inner-spin-button,::ng-deep .pep-quantity-selector-container input::-webkit-outer-spin-button,::ng-deep .pep-quantity-selector-container input::-webkit-inner-spin-button{-webkit-appearance:none;margin:0}::ng-deep .pepperi-quantity-selector-container input[type=number],::ng-deep .pep-quantity-selector-container input[type=number]{-moz-appearance:textfield}::ng-deep .pepperi-quantity-selector-container .mat-input-element,::ng-deep .pepperi-quantity-selector-container .mat-mdc-input-element,::ng-deep .pep-quantity-selector-container .mat-input-element,::ng-deep .pep-quantity-selector-container .mat-mdc-input-element{padding:0 .25rem;text-align:center;font-weight:var(--pep-font-weight-bold, 600);width:100%}::ng-deep .pepperi-quantity-selector-container .mat-form-field .mat-form-field-wrapper .mat-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-form-field .mat-form-field-wrapper .mat-mdc-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-form-field .mat-mdc-text-field-wrapper .mat-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-form-field .mat-mdc-text-field-wrapper .mat-mdc-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-form-field .mdc-text-field .mat-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-form-field .mdc-text-field .mat-mdc-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mat-form-field-wrapper .mat-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mat-form-field-wrapper .mat-mdc-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mat-mdc-text-field-wrapper .mat-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mat-mdc-text-field-wrapper .mat-mdc-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mdc-text-field .mat-form-field-subscript-wrapper,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mdc-text-field .mat-mdc-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-form-field .mat-form-field-wrapper .mat-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-form-field .mat-form-field-wrapper .mat-mdc-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-form-field .mat-mdc-text-field-wrapper .mat-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-form-field .mat-mdc-text-field-wrapper .mat-mdc-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-form-field .mdc-text-field .mat-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-form-field .mdc-text-field .mat-mdc-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mat-form-field-wrapper .mat-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mat-form-field-wrapper .mat-mdc-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mat-mdc-text-field-wrapper .mat-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mat-mdc-text-field-wrapper .mat-mdc-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mdc-text-field .mat-form-field-subscript-wrapper,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mdc-text-field .mat-mdc-form-field-subscript-wrapper{height:unset}::ng-deep .pepperi-quantity-selector-container .mat-form-field .mat-form-field-wrapper .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-form-field .mat-form-field-wrapper .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-form-field .mat-mdc-text-field-wrapper .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-form-field .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-form-field .mdc-text-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-form-field .mdc-text-field .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mat-form-field-wrapper .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mat-form-field-wrapper .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mat-mdc-text-field-wrapper .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mdc-text-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container .mat-mdc-form-field .mdc-text-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-form-field .mat-form-field-wrapper .mat-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-form-field .mat-form-field-wrapper .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-form-field .mat-mdc-text-field-wrapper .mat-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-form-field .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-form-field .mdc-text-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-form-field .mdc-text-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mat-form-field-wrapper .mat-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mat-form-field-wrapper .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mat-mdc-text-field-wrapper .mat-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mat-mdc-text-field-wrapper .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mdc-text-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container .mat-mdc-form-field .mdc-text-field .mat-mdc-form-field-flex{padding:0 .25rem!important}::ng-deep .pepperi-quantity-selector-container .pepperi-button,::ng-deep .pepperi-quantity-selector-container .pep-button,::ng-deep .pep-quantity-selector-container .pepperi-button,::ng-deep .pep-quantity-selector-container .pep-button{width:100%}::ng-deep .pepperi-quantity-selector-container .pepperi-button.qs-action,::ng-deep .pepperi-quantity-selector-container .pep-button.qs-action,::ng-deep .pep-quantity-selector-container .pepperi-button.qs-action,::ng-deep .pep-quantity-selector-container .pep-button.qs-action{min-width:2rem;line-height:2rem;width:2rem!important;height:2rem!important}::ng-deep .pepperi-quantity-selector-container .pepperi-button.qs-action .mat-icon,::ng-deep .pepperi-quantity-selector-container .pepperi-button.qs-action .mat-mdc-icon,::ng-deep .pepperi-quantity-selector-container .pep-button.qs-action .mat-icon,::ng-deep .pepperi-quantity-selector-container .pep-button.qs-action .mat-mdc-icon,::ng-deep .pep-quantity-selector-container .pepperi-button.qs-action .mat-icon,::ng-deep .pep-quantity-selector-container .pepperi-button.qs-action .mat-mdc-icon,::ng-deep .pep-quantity-selector-container .pep-button.qs-action .mat-icon,::ng-deep .pep-quantity-selector-container .pep-button.qs-action .mat-mdc-icon{height:inherit;width:inherit}::ng-deep .pepperi-quantity-selector-container .qs-error,::ng-deep .pep-quantity-selector-container .qs-error{display:block}::ng-deep .pepperi-quantity-selector-container.hide-qs-actions .pepperi-button.qs-action,::ng-deep .pepperi-quantity-selector-container.hide-qs-actions .pep-button.qs-action,::ng-deep .pep-quantity-selector-container.hide-qs-actions .pepperi-button.qs-action,::ng-deep .pep-quantity-selector-container.hide-qs-actions .pep-button.qs-action{display:none}::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value{height:1.25rem;top:calc(var(--pep-spacing-xs, .25rem) * -1);transform:unset!important;display:flex;align-self:flex-start;justify-content:flex-end}::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value.prefix,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value.prefix{left:calc(var(--pep-spacing-sm, .5rem) * -1)!important}::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value.suffix,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value.suffix{right:calc(var(--pep-spacing-sm, .5rem) * -1)!important}::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value .mat-badge-content,::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value .mat-mdc-badge-content,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value .mat-badge-content,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value .mat-mdc-badge-content{z-index:97;min-width:1.5rem;width:fit-content!important;border-radius:.625rem;padding:0 .5rem;top:calc(var(--pep-spacing-sm, .5rem) * -1)!important;text-overflow:ellipsis;overflow:hidden;white-space:nowrap;max-width:inherit}::ng-deep .pepperi-quantity-selector-container.matrix-qs .disable,::ng-deep .pep-quantity-selector-container.matrix-qs .disable{min-width:.5rem;padding:0 .25rem}::ng-deep .pepperi-quantity-selector-container.pepperi-table-quantity-selector.disable .mat-form-field .mat-input-element,::ng-deep .pepperi-quantity-selector-container.pepperi-table-quantity-selector.disable .mat-mdc-form-field .mat-mdc-input-element,::ng-deep .pepperi-quantity-selector-container.pep-table-quantity-selector.disable .mat-form-field .mat-input-element,::ng-deep .pepperi-quantity-selector-container.pep-table-quantity-selector.disable .mat-mdc-form-field .mat-mdc-input-element,::ng-deep .pep-quantity-selector-container.pepperi-table-quantity-selector.disable .mat-form-field .mat-input-element,::ng-deep .pep-quantity-selector-container.pepperi-table-quantity-selector.disable .mat-mdc-form-field .mat-mdc-input-element,::ng-deep .pep-quantity-selector-container.pep-table-quantity-selector.disable .mat-form-field .mat-input-element,::ng-deep .pep-quantity-selector-container.pep-table-quantity-selector.disable .mat-mdc-form-field .mat-mdc-input-element{display:flex;justify-content:center;align-items:center}::ng-deep .pepperi-quantity-selector-container.pepperi-table-quantity-selector .pepperi-button:not(.qs-action),::ng-deep .pepperi-quantity-selector-container.pepperi-table-quantity-selector .pep-button:not(.qs-action),::ng-deep .pepperi-quantity-selector-container.pep-table-quantity-selector .pepperi-button:not(.qs-action),::ng-deep .pepperi-quantity-selector-container.pep-table-quantity-selector .pep-button:not(.qs-action),::ng-deep .pep-quantity-selector-container.pepperi-table-quantity-selector .pepperi-button:not(.qs-action),::ng-deep .pep-quantity-selector-container.pepperi-table-quantity-selector .pep-button:not(.qs-action),::ng-deep .pep-quantity-selector-container.pep-table-quantity-selector .pepperi-button:not(.qs-action),::ng-deep .pep-quantity-selector-container.pep-table-quantity-selector .pep-button:not(.qs-action){height:2rem;line-height:2rem}::ng-deep .pepperi-quantity-selector-container.pepperi-table-quantity-selector .pepperi-button.qs-action,::ng-deep .pepperi-quantity-selector-container.pepperi-table-quantity-selector .pep-button.qs-action,::ng-deep .pepperi-quantity-selector-container.pep-table-quantity-selector .pepperi-button.qs-action,::ng-deep .pepperi-quantity-selector-container.pep-table-quantity-selector .pep-button.qs-action,::ng-deep .pep-quantity-selector-container.pepperi-table-quantity-selector .pepperi-button.qs-action,::ng-deep .pep-quantity-selector-container.pepperi-table-quantity-selector .pep-button.qs-action,::ng-deep .pep-quantity-selector-container.pep-table-quantity-selector .pepperi-button.qs-action,::ng-deep .pep-quantity-selector-container.pep-table-quantity-selector .pep-button.qs-action{min-width:1.5rem;line-height:1.5rem;width:1.5rem!important;height:1.5rem!important}::ng-deep .pepperi-quantity-selector-container.pepperi-table-quantity-selector .mat-form-field .mat-form-field-wrapper,::ng-deep .pepperi-quantity-selector-container.pepperi-table-quantity-selector .mat-mdc-form-field .mat-mdc-text-field-wrapper,::ng-deep .pepperi-quantity-selector-container.pep-table-quantity-selector .mat-form-field .mat-form-field-wrapper,::ng-deep .pepperi-quantity-selector-container.pep-table-quantity-selector .mat-mdc-form-field .mat-mdc-text-field-wrapper,::ng-deep .pep-quantity-selector-container.pepperi-table-quantity-selector .mat-form-field .mat-form-field-wrapper,::ng-deep .pep-quantity-selector-container.pepperi-table-quantity-selector .mat-mdc-form-field .mat-mdc-text-field-wrapper,::ng-deep .pep-quantity-selector-container.pep-table-quantity-selector .mat-form-field .mat-form-field-wrapper,::ng-deep .pep-quantity-selector-container.pep-table-quantity-selector .mat-mdc-form-field .mat-mdc-text-field-wrapper{margin-top:0!important}.qs-container{resize:both;container-type:inline-size;container-name:qs-container}@container qs-container (max-width: 7.5rem){.pep-button{display:none!important}}\n", "::ng-deep .pepperi-quantity-selector-container:not(.strong) .mat-form-field .mat-input-element,::ng-deep .pepperi-quantity-selector-container:not(.strong) .mat-form-field .mat-mdc-input-element,::ng-deep .pepperi-quantity-selector-container:not(.strong) .mat-mdc-form-field .mat-input-element,::ng-deep .pepperi-quantity-selector-container:not(.strong) .mat-mdc-form-field .mat-mdc-input-element,::ng-deep .pep-quantity-selector-container:not(.strong) .mat-form-field .mat-input-element,::ng-deep .pep-quantity-selector-container:not(.strong) .mat-form-field .mat-mdc-input-element,::ng-deep .pep-quantity-selector-container:not(.strong) .mat-mdc-form-field .mat-input-element,::ng-deep .pep-quantity-selector-container:not(.strong) .mat-mdc-form-field .mat-mdc-input-element{color:hsl(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%))}::ng-deep .pepperi-quantity-selector-container:not(.strong).zero-quantity .mat-form-field .mat-input-element,::ng-deep .pepperi-quantity-selector-container:not(.strong).zero-quantity .mat-form-field .mat-mdc-input-element,::ng-deep .pepperi-quantity-selector-container:not(.strong).zero-quantity .mat-mdc-form-field .mat-input-element,::ng-deep .pepperi-quantity-selector-container:not(.strong).zero-quantity .mat-mdc-form-field .mat-mdc-input-element,::ng-deep .pep-quantity-selector-container:not(.strong).zero-quantity .mat-form-field .mat-input-element,::ng-deep .pep-quantity-selector-container:not(.strong).zero-quantity .mat-form-field .mat-mdc-input-element,::ng-deep .pep-quantity-selector-container:not(.strong).zero-quantity .mat-mdc-form-field .mat-input-element,::ng-deep .pep-quantity-selector-container:not(.strong).zero-quantity .mat-mdc-form-field .mat-mdc-input-element{color:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.7)}::ng-deep .pepperi-quantity-selector-container:not(.strong).zero-quantity button,::ng-deep .pep-quantity-selector-container:not(.strong).zero-quantity button{color:hsla(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%),.7)}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field .mat-mdc-form-field-flex{background:hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.08)}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.16)}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{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;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex: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%))}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{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}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex: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%))}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex{box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after{border:unset}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex: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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.04)!important}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button,::ng-deep .pepperi-quantity-selector-container.weak .pep-button,::ng-deep .pep-quantity-selector-container.weak .pepperi-button,::ng-deep .pep-quantity-selector-container.weak .pep-button{background:hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.08)}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:hover,::ng-deep .pepperi-quantity-selector-container.weak .pep-button:hover,::ng-deep .pep-quantity-selector-container.weak .pepperi-button:hover,::ng-deep .pep-quantity-selector-container.weak .pep-button:hover{background:hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.16)}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:focus,::ng-deep .pepperi-quantity-selector-container.weak .pep-button:focus,::ng-deep .pep-quantity-selector-container.weak .pepperi-button:focus,::ng-deep .pep-quantity-selector-container.weak .pep-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;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:focus:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .pep-button:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .pepperi-button:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .pep-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%))}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:focus:after,::ng-deep .pepperi-quantity-selector-container.weak .pep-button:focus:after,::ng-deep .pep-quantity-selector-container.weak .pepperi-button:focus:after,::ng-deep .pep-quantity-selector-container.weak .pep-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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:active,::ng-deep .pepperi-quantity-selector-container.weak .pep-button:active,::ng-deep .pep-quantity-selector-container.weak .pepperi-button:active,::ng-deep .pep-quantity-selector-container.weak .pep-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}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:active:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .pep-button:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .pepperi-button:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .pep-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%))}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:active:after,::ng-deep .pepperi-quantity-selector-container.weak .pep-button:active:after,::ng-deep .pep-quantity-selector-container.weak .pepperi-button:active:after,::ng-deep .pep-quantity-selector-container.weak .pep-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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.weak .pep-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.weak .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.weak .pep-button:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.weak .pep-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.weak .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.weak .pep-button:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak .pep-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.weak .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.weak .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .pep-button:disabled:not(.ignore-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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.04)!important}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action,::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action,::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action,::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action{background:hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.08);box-shadow:unset;border:unset;z-index:1}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:hover,::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action:hover{background:hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.16)}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:focus,::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action: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;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:focus:after,::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action: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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:active,::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:active,::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:active,::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action: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}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:active:after,::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action: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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.weak .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak .pep-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak .pep-button.qs-action:disabled:not(.ignore-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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.04)!important}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field .mat-mdc-form-field-flex{background:hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.08)}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.16)}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{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;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex: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%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{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}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex: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%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex{box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after{border:unset}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex: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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.04)!important}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button{background:hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.08)}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:hover,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:hover,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:hover,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button:hover{background:hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.16)}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:focus,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:focus,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:focus,::ng-deep .pep-quantity-selector-container.weak.caution .pep-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;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:focus:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .pep-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%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:focus:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:focus:after,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:focus:after,::ng-deep .pep-quantity-selector-container.weak.caution .pep-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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:active,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:active,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:active,::ng-deep .pep-quantity-selector-container.weak.caution .pep-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}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:active:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .pep-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%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:active:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:active:after,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:active:after,::ng-deep .pep-quantity-selector-container.weak.caution .pep-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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.weak.caution .pep-button:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .pep-button:disabled:not(.ignore-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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.04)!important}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action{background:hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.08);box-shadow:unset;border:unset;z-index:1}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:hover,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action:hover{background:hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.16)}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:focus,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action: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;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:focus:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action: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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:active,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:active,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:active,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action: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}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:active:after,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action: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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.weak.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.weak.caution .pep-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.weak.caution .pep-button.qs-action:disabled:not(.ignore-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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.04)!important}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field .mat-mdc-form-field-flex{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),98%);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}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),calc(var(--pep-color-qs-l, 10%) + 30%))}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),98%);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%),.16);position:relative}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),calc(var(--pep-color-qs-l, 10%) + 20%))}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),88%);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%),.16);position:relative;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),88%);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%),.32);position:relative}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex{box-shadow:unset;border:unset;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%),.04)!important;position:relative}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after{border:unset}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex: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:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),88%)!important}::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.08)}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button,::ng-deep .pepperi-quantity-selector-container.regular .pep-button,::ng-deep .pep-quantity-selector-container.regular .pepperi-button,::ng-deep .pep-quantity-selector-container.regular .pep-button{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),98%);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);border:1px solid hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),calc(var(--pep-color-qs-l, 10%) + 30%))}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button:hover,::ng-deep .pepperi-quantity-selector-container.regular .pep-button:hover,::ng-deep .pep-quantity-selector-container.regular .pepperi-button:hover,::ng-deep .pep-quantity-selector-container.regular .pep-button:hover{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),98%);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%),.16);border:1px solid hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),calc(var(--pep-color-qs-l, 10%) + 20%))}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button:focus,::ng-deep .pepperi-quantity-selector-container.regular .pep-button:focus,::ng-deep .pep-quantity-selector-container.regular .pepperi-button:focus,::ng-deep .pep-quantity-selector-container.regular .pep-button:focus{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),88%);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%),.16);border:1px solid hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%));box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button:active,::ng-deep .pepperi-quantity-selector-container.regular .pep-button:active,::ng-deep .pep-quantity-selector-container.regular .pepperi-button:active,::ng-deep .pep-quantity-selector-container.regular .pep-button:active{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),88%);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%),.32);border:1px solid hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.regular .pep-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.regular .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.regular .pep-button:disabled:not(.ignore-disabled){box-shadow:unset;border:unset;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%),.04)!important;border:1px solid hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.08)}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.regular .pep-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.regular .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.regular .pep-button:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular .pep-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.regular .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.regular .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .pep-button:disabled:not(.ignore-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:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),88%)!important}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action,::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action,::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action,::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action{background:hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.08);box-shadow:unset;border:unset;z-index:1}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:hover,::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action:hover{background:hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.16)}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:focus,::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action: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;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:focus:after,::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action: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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:active,::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:active,::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:active,::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action: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}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:active:after,::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action: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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.regular .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular .pep-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular .pep-button.qs-action:disabled:not(.ignore-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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.04)!important}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field .mat-mdc-form-field-flex{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),98%);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}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),calc(var(--pep-color-system-caution-l, 45%) + 30%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),98%);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%),.16);position:relative}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),calc(var(--pep-color-system-caution-l, 45%) + 20%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),88%);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%),.16);position:relative;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),88%);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%),.32);position:relative}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex{box-shadow:unset;border:unset;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%),.04)!important;position:relative}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after{border:unset}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex: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:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),88%)!important}::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.regular.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after{z-index:0;content:\"\";transition:all .25s;display:block;position:absolute;inset:0;border-radius:inherit;border:1px solid hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.08)}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),98%);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);border:1px solid hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),calc(var(--pep-color-system-caution-l, 45%) + 30%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button:hover,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button:hover,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button:hover,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button:hover{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),98%);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%),.16);border:1px solid hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),calc(var(--pep-color-system-caution-l, 45%) + 20%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button:focus,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button:focus,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button:focus,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button:focus{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),88%);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%),.16);border:1px solid hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%));box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button:active,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button:active,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button:active,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button:active{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),88%);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%),.32);border:1px solid hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.regular.caution .pep-button:disabled:not(.ignore-disabled){box-shadow:unset;border:unset;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%),.04)!important;border:1px solid hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.08)}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .pep-button:disabled:not(.ignore-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:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),88%)!important}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action{background:hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.08);box-shadow:unset;border:unset;z-index:1}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:hover,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action:hover{background:hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.16)}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:focus,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action: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;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:focus:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action: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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:active,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:active,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:active,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action: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}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:active:after,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action: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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.regular.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.regular.caution .pep-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.regular.caution .pep-button.qs-action:disabled:not(.ignore-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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.04)!important}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field .mat-mdc-form-field-flex{font-weight:var(--pep-font-weight-bold, 600);background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%));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%),.08);color: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%))}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-form-field .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-form-field .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field .mat-mdc-form-field-flex .svg-icon{fill: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%))}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-form-field .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-form-field .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field .mat-mdc-form-field-flex .svg-icon.stroke{fill:unset;stroke: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%))}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),calc(var(--pep-color-qs-l, 10%) - 8%));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%),.16)}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),calc(var(--pep-color-qs-l, 10%) - 15%));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%),.08);box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),calc(var(--pep-color-qs-l, 10%) - 15%));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)}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex{box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after{border:unset}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color){background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))!important;opacity:.5!important;color: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%))}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon{fill: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%))}::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke{fill:unset;stroke: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%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button,::ng-deep .pepperi-quantity-selector-container.strong .pep-button,::ng-deep .pep-quantity-selector-container.strong .pepperi-button,::ng-deep .pep-quantity-selector-container.strong .pep-button{font-weight:var(--pep-font-weight-bold, 600);background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%));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%),.08);color: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%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .pep-button .svg-icon,::ng-deep .pep-quantity-selector-container.strong .pepperi-button .svg-icon,::ng-deep .pep-quantity-selector-container.strong .pep-button .svg-icon{fill: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%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .pep-button .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .pepperi-button .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .pep-button .svg-icon.stroke{fill:unset;stroke: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%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button:hover,::ng-deep .pepperi-quantity-selector-container.strong .pep-button:hover,::ng-deep .pep-quantity-selector-container.strong .pepperi-button:hover,::ng-deep .pep-quantity-selector-container.strong .pep-button:hover{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),calc(var(--pep-color-qs-l, 10%) - 8%));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%),.16)}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button:focus,::ng-deep .pepperi-quantity-selector-container.strong .pep-button:focus,::ng-deep .pep-quantity-selector-container.strong .pepperi-button:focus,::ng-deep .pep-quantity-selector-container.strong .pep-button:focus{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),calc(var(--pep-color-qs-l, 10%) - 15%));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%),.08);box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button:active,::ng-deep .pepperi-quantity-selector-container.strong .pep-button:active,::ng-deep .pep-quantity-selector-container.strong .pepperi-button:active,::ng-deep .pep-quantity-selector-container.strong .pep-button:active{background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),calc(var(--pep-color-qs-l, 10%) - 15%));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)}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color){background:hsl(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))!important;opacity:.5!important;color: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%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon{fill: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%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke{fill:unset;stroke: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%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action,::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action,::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action,::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action{background:hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.08);box-shadow:unset;border:unset;z-index:1}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:hover,::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action:hover{background:hsla(var(--pep-color-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.16)}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:focus,::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action: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;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:focus:after,::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action: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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:active,::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:active,::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:active,::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action: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}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:active:after,::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action: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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%))}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.strong .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong .pep-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong .pep-button.qs-action:disabled:not(.ignore-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-qs-h, 0),var(--pep-color-qs-s, 0%),var(--pep-color-qs-l, 10%),.04)!important}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-mdc-form-field-flex{font-weight:var(--pep-font-weight-bold, 600);background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%));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%),.08);color: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-mdc-form-field-flex .svg-icon{fill: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field .mat-mdc-form-field-flex .svg-icon.stroke{fill:unset;stroke: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:hover .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:hover .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:hover:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:hover:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),calc(var(--pep-color-system-caution-l, 45%) - 8%));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%),.16)}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-focused:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),calc(var(--pep-color-system-caution-l, 45%) - 15%));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%),.08);box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:active .ignore-disabled .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:active .ignore-disabled .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:active:not(.mat-form-field-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field:active:not(.mat-mdc-form-field-disabled) .mat-mdc-form-field-flex{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),calc(var(--pep-color-system-caution-l, 45%) - 15%));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)}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex{box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:after,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:after{border:unset}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .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)}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex:not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex:not(.disabled-no-background-no-color){background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))!important;opacity:.5!important;color: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon{fill: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-form-field-flex .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .mat-mdc-form-field.mat-mdc-form-field-disabled:not(.ignore-disabled) .mat-mdc-form-field-flex .svg-icon.stroke{fill:unset;stroke: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button{font-weight:var(--pep-font-weight-bold, 600);background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%));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%),.08);color: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button .svg-icon{fill: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button .svg-icon.stroke{fill:unset;stroke: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button:hover,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button:hover,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button:hover,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button:hover{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),calc(var(--pep-color-system-caution-l, 45%) - 8%));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%),.16)}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button:focus,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button:focus,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button:focus,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button:focus{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),calc(var(--pep-color-system-caution-l, 45%) - 15%));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%),.08);box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button:active,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button:active,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button:active,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button:active{background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),calc(var(--pep-color-system-caution-l, 45%) - 15%));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)}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color){background:hsl(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))!important;opacity:.5!important;color: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled) .svg-icon{fill: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button:disabled:not(.ignore-disabled) .svg-icon.stroke{fill:unset;stroke: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action{background:hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.08);box-shadow:unset;border:unset;z-index:1}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:hover,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:hover,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action:hover{background:hsla(var(--pep-color-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.16)}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:focus,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:focus,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action: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;box-shadow:0 0 0 var(--pep-spacing-xs, .25rem) hsla(var(--pep-color-text-link-h, 207),var(--pep-color-text-link-s, 76%),var(--pep-color-text-link-l, 37%),.5)}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:focus:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:focus:after,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:focus:after,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action: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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:active,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:active,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:active,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action: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}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:active:not(.keep-background-on-focus),::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action: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%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:active:after,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:active:after,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action: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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%))}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled),::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action:disabled:not(.ignore-disabled){box-shadow:unset;border:unset}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):after,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action:disabled:not(.ignore-disabled):after{border:unset}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled) .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action:disabled:not(.ignore-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)}::ng-deep .pepperi-quantity-selector-container.strong.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pepperi-quantity-selector-container.strong.caution .pep-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .pepperi-button.qs-action:disabled:not(.ignore-disabled):not(.disabled-no-background-no-color),::ng-deep .pep-quantity-selector-container.strong.caution .pep-button.qs-action:disabled:not(.ignore-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-system-caution-h, 360),var(--pep-color-system-caution-s, 100%),var(--pep-color-system-caution-l, 45%),.04)!important}::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value .mat-badge-content,::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value .mat-mdc-badge-content,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value .mat-badge-content,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value .mat-mdc-badge-content{font-weight:var(--pep-font-weight-bold, 600);background:hsl(var(--pep-color-strong-h, 78),var(--pep-color-strong-s, 87%),var(--pep-color-strong-l, 27%));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%),.08);color: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%));background-color:hsl(var(--pep-color-system-primary-h, 0),var(--pep-color-system-primary-s, 0%),var(--pep-color-system-primary-l, 10%))!important;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)}::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value .mat-badge-content .svg-icon,::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value .mat-mdc-badge-content .svg-icon,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value .mat-badge-content .svg-icon,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value .mat-mdc-badge-content .svg-icon{fill: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%))}::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value .mat-badge-content .svg-icon.stroke,::ng-deep .pepperi-quantity-selector-container.matrix-qs .additional-value .mat-mdc-badge-content .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value .mat-badge-content .svg-icon.stroke,::ng-deep .pep-quantity-selector-container.matrix-qs .additional-value .mat-mdc-badge-content .svg-icon.stroke{fill:unset;stroke: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%))}\n"] }]
586
- }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }, { type: i1.PepCustomizationService }, { type: i0.Renderer2 }, { type: i0.ElementRef }, { type: i2.TranslateService }, { type: i1.PepUtilitiesService }]; }, propDecorators: { key: [{
587
- type: Input
588
- }], value: [{
589
- type: Input
590
- }], minFractionDigits: [{
591
- type: Input
592
- }], maxFractionDigits: [{
593
- type: Input
594
- }], label: [{
595
- type: Input
596
- }], type: [{
597
- type: Input
598
- }], mandatory: [{
599
- type: Input
600
- }], disabled: [{
601
- type: Input
602
- }], readonly: [{
603
- type: Input
604
- }], textColor: [{
605
- type: Input
606
- }], xAlignment: [{
607
- type: Input
608
- }], rowSpan: [{
609
- type: Input
610
- }], allowDecimal: [{
611
- type: Input
612
- }], additionalValue: [{
613
- type: Input
614
- }], notificationInfo: [{
615
- type: Input
616
- }], visible: [{
617
- type: Input
618
- }], form: [{
619
- type: Input
620
- }], showTitle: [{
621
- type: Input
622
- }], renderTitle: [{
623
- type: Input
624
- }], layoutType: [{
625
- type: Input
626
- }], isActive: [{
627
- type: Input
628
- }], styleType: [{
629
- type: Input
630
- }], valueChange: [{
631
- type: Output
632
- }], elementClick: [{
633
- type: Output
634
- }], validationChange: [{
635
- type: Output
636
- }], QSCont: [{
637
- type: ViewChild,
638
- args: ['QSCont']
639
- }], QSInput: [{
640
- type: ViewChild,
641
- args: ['QSInput']
642
- }], isInFocus: [{
643
- type: Input
644
- }] } });
645
-
646
- class PepQuantitySelectorNumberPipe {
647
- transform(value, allowDecimal) {
648
- const tmpValue = parseFloat(value);
649
- if (tmpValue === 0) {
650
- return '0';
651
- }
652
- else if (allowDecimal) {
653
- return tmpValue.toString();
654
- }
655
- else {
656
- return parseInt(value).toString();
657
- }
658
- }
659
- }
660
- PepQuantitySelectorNumberPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepQuantitySelectorNumberPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
661
- PepQuantitySelectorNumberPipe.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: PepQuantitySelectorNumberPipe, name: "pepQuantitySelectorNumber" });
662
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepQuantitySelectorNumberPipe, decorators: [{
663
- type: Pipe,
664
- args: [{ name: 'pepQuantitySelectorNumber' }]
665
- }] });
666
-
667
- class PepQuantitySelectorModule {
668
- constructor(pepIconRegistry) {
669
- this.pepIconRegistry = pepIconRegistry;
670
- this.pepIconRegistry.registerIcons([
671
- pepIconNumberMinus,
672
- pepIconNumberPlus,
673
- ]);
674
- }
675
- }
676
- PepQuantitySelectorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepQuantitySelectorModule, deps: [{ token: i1$1.PepIconRegistry }], target: i0.ɵɵFactoryTarget.NgModule });
677
- PepQuantitySelectorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "15.2.10", ngImport: i0, type: PepQuantitySelectorModule, declarations: [PepQuantitySelectorComponent,
678
- PepQuantitySelectorNumberPipe,
679
- PepQuantitySelectorValidationDirective], imports: [CommonModule,
680
- ReactiveFormsModule,
681
- // Material modules
682
- MatCommonModule,
683
- MatFormFieldModule,
684
- MatInputModule,
685
- MatButtonModule,
686
- MatBadgeModule,
687
- MatIconModule,
688
- // ngx-lib modules
689
- PepNgxLibModule,
690
- PepIconModule,
691
- PepFieldTitleModule], exports: [PepQuantitySelectorComponent] });
692
- PepQuantitySelectorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepQuantitySelectorModule, imports: [CommonModule,
693
- ReactiveFormsModule,
694
- // Material modules
695
- MatCommonModule,
696
- MatFormFieldModule,
697
- MatInputModule,
698
- MatButtonModule,
699
- MatBadgeModule,
700
- MatIconModule,
701
- // ngx-lib modules
702
- PepNgxLibModule,
703
- PepIconModule,
704
- PepFieldTitleModule] });
705
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.10", ngImport: i0, type: PepQuantitySelectorModule, decorators: [{
706
- type: NgModule,
707
- args: [{
708
- imports: [
709
- CommonModule,
710
- ReactiveFormsModule,
711
- // Material modules
712
- MatCommonModule,
713
- MatFormFieldModule,
714
- MatInputModule,
715
- MatButtonModule,
716
- MatBadgeModule,
717
- MatIconModule,
718
- // ngx-lib modules
719
- PepNgxLibModule,
720
- PepIconModule,
721
- PepFieldTitleModule,
722
- ],
723
- exports: [PepQuantitySelectorComponent],
724
- declarations: [
725
- PepQuantitySelectorComponent,
726
- PepQuantitySelectorNumberPipe,
727
- PepQuantitySelectorValidationDirective,
728
- ],
729
- }]
730
- }], ctorParameters: function () { return [{ type: i1$1.PepIconRegistry }]; } });
731
-
732
- /*
733
- * Public API Surface of ngx-lib/quantity-selector
734
- */
735
-
736
- /**
737
- * Generated bundle index. Do not edit.
738
- */
739
-
740
- export { PepQuantitySelectorComponent, PepQuantitySelectorModule };
741
- //# sourceMappingURL=pepperi-addons-ngx-lib-quantity-selector.mjs.map