novo-elements 8.0.1 → 8.1.0-next.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (211) hide show
  1. package/elements/agenda/common/AgendaDateChange.scss +3 -1
  2. package/elements/agenda/common/AgendaHoursLayout.scss +52 -0
  3. package/elements/agenda/day/AgendaDayView.scss +40 -85
  4. package/elements/agenda/month/AgendaMonthView.scss +139 -135
  5. package/elements/agenda/week/AgendaWeekView.scss +70 -66
  6. package/elements/card/Card.d.ts +2 -2
  7. package/elements/card/Card.scss +27 -55
  8. package/elements/card/CardContent.scss +8 -0
  9. package/elements/card/CardFooter.scss +10 -0
  10. package/elements/card/CardHeader.scss +14 -0
  11. package/elements/date-picker/DatePicker.scss +181 -348
  12. package/elements/date-picker/DatePickerInput.scss +45 -0
  13. package/elements/date-picker/DateRangeInput.scss +55 -0
  14. package/elements/date-picker/MultiDateInput.scss +50 -0
  15. package/elements/date-time-picker/DateTimePickerInput.scss +14 -0
  16. package/elements/date-time-picker/_DateTimePicker.scss +4 -17
  17. package/elements/dropdown/Dropdown.scss +3 -3
  18. package/elements/header/Header.scss +14 -19
  19. package/elements/header/HeaderSpacer.scss +7 -0
  20. package/elements/icon/Icon.scss +1 -1
  21. package/elements/list/List.scss +5 -111
  22. package/elements/list/list-item-content.scss +34 -0
  23. package/elements/list/list-item-end.scss +8 -0
  24. package/elements/list/list-item-header-avatar.scss +12 -0
  25. package/elements/list/list-item-header-end.scss +4 -0
  26. package/elements/list/list-item-header-title.scss +17 -0
  27. package/elements/list/list-item-header.scss +17 -0
  28. package/elements/list/list-item.scss +47 -0
  29. package/elements/loading/Loading.scss +4 -1
  30. package/elements/loading/NovoSpinner.scss +3 -1
  31. package/elements/modal/modal.component.scss +19 -115
  32. package/elements/modal/notification.component.scss +108 -0
  33. package/elements/places/places.component.scss +3 -1
  34. package/elements/quick-note/QuickNote.scss +2 -31
  35. package/elements/quick-note/extras/quick-note-results/QuickNoteResults.scss +18 -0
  36. package/elements/radio/Radio.scss +32 -41
  37. package/elements/radio/radio-group.scss +53 -0
  38. package/elements/search/SearchBox.scss +2 -2
  39. package/elements/select/Select.scss +1 -1
  40. package/elements/simple-table/table.scss +2 -1
  41. package/elements/slider/Slider.scss +2 -2
  42. package/elements/stepper/step-header.component.scss +141 -52
  43. package/elements/stepper/stepper.component.scss +66 -166
  44. package/elements/switch/Switch.scss +5 -5
  45. package/elements/tabbed-group-picker/TabbedGroupPicker.scss +127 -125
  46. package/elements/table/extras/table-footer/table-footer.scss +3 -0
  47. package/elements/table/extras/table-header/table-header.scss +9 -0
  48. package/elements/tabs/tab-button.scss +54 -0
  49. package/elements/tabs/tab-content.scss +6 -0
  50. package/elements/tabs/tab-header.scss +6 -0
  51. package/elements/tabs/tab-nav.scss +39 -0
  52. package/elements/tabs/tab-outlet.scss +3 -0
  53. package/elements/tabs/tab.scss +190 -0
  54. package/elements/tiles/Tiles.scss +3 -1
  55. package/elements/time-picker/TimePicker.scss +3 -46
  56. package/elements/time-picker/TimePickerInput.scss +44 -0
  57. package/elements/tip-well/TipWell.scss +4 -1
  58. package/elements/toast/Toast.scss +151 -162
  59. package/elements/tooltip/Tooltip.scss +1 -1
  60. package/elements/value/Value.scss +21 -23
  61. package/esm2020/elements/agenda/common/AgendaDateChange.mjs +4 -7
  62. package/esm2020/elements/agenda/day/AgendaDayView.mjs +4 -7
  63. package/esm2020/elements/agenda/month/AgendaMonthView.mjs +4 -7
  64. package/esm2020/elements/agenda/week/AgendaWeekView.mjs +4 -7
  65. package/esm2020/elements/card/Card.mjs +17 -31
  66. package/esm2020/elements/date-picker/DatePicker.mjs +5 -10
  67. package/esm2020/elements/date-picker/DatePickerInput.mjs +4 -8
  68. package/esm2020/elements/date-picker/DateRangeInput.mjs +4 -8
  69. package/esm2020/elements/date-picker/MultiDateInput.mjs +4 -8
  70. package/esm2020/elements/date-time-picker/DateTimePicker.mjs +5 -10
  71. package/esm2020/elements/date-time-picker/DateTimePickerInput.mjs +4 -8
  72. package/esm2020/elements/dropdown/Dropdown.mjs +5 -10
  73. package/esm2020/elements/header/Header.mjs +6 -12
  74. package/esm2020/elements/icon/Icon.mjs +5 -10
  75. package/esm2020/elements/list/List.mjs +27 -59
  76. package/esm2020/elements/loading/Loading.mjs +7 -13
  77. package/esm2020/elements/modal/modal.component.mjs +9 -17
  78. package/esm2020/elements/places/places.component.mjs +4 -8
  79. package/esm2020/elements/quick-note/QuickNote.mjs +3 -7
  80. package/esm2020/elements/quick-note/extras/quick-note-results/QuickNoteResults.mjs +5 -9
  81. package/esm2020/elements/radio/Radio.mjs +5 -10
  82. package/esm2020/elements/radio/RadioGroup.mjs +5 -10
  83. package/esm2020/elements/search/SearchBox.mjs +4 -9
  84. package/esm2020/elements/select/Select.mjs +6 -12
  85. package/esm2020/elements/slider/Slider.mjs +5 -9
  86. package/esm2020/elements/stepper/step-header.component.mjs +2 -2
  87. package/esm2020/elements/stepper/stepper.component.mjs +7 -7
  88. package/esm2020/elements/switch/Switch.mjs +5 -10
  89. package/esm2020/elements/tabbed-group-picker/TabbedGroupPicker.mjs +3 -3
  90. package/esm2020/elements/table/extras/table-footer/TableFooter.mjs +3 -6
  91. package/esm2020/elements/table/extras/table-header/TableHeader.mjs +3 -6
  92. package/esm2020/elements/tabs/Tabs.mjs +22 -50
  93. package/esm2020/elements/tiles/Tiles.mjs +4 -9
  94. package/esm2020/elements/time-picker/TimePicker.mjs +5 -10
  95. package/esm2020/elements/time-picker/TimePickerInput.mjs +4 -8
  96. package/esm2020/elements/tip-well/TipWell.mjs +5 -9
  97. package/esm2020/elements/toast/Toast.mjs +5 -9
  98. package/esm2020/elements/tooltip/Tooltip.component.mjs +3 -3
  99. package/esm2020/elements/value/Value.mjs +4 -7
  100. package/fesm2015/novo-elements-elements-agenda.mjs +12 -24
  101. package/fesm2015/novo-elements-elements-agenda.mjs.map +1 -1
  102. package/fesm2015/novo-elements-elements-card.mjs +16 -30
  103. package/fesm2015/novo-elements-elements-card.mjs.map +1 -1
  104. package/fesm2015/novo-elements-elements-date-picker.mjs +13 -30
  105. package/fesm2015/novo-elements-elements-date-picker.mjs.map +1 -1
  106. package/fesm2015/novo-elements-elements-date-time-picker.mjs +7 -16
  107. package/fesm2015/novo-elements-elements-date-time-picker.mjs.map +1 -1
  108. package/fesm2015/novo-elements-elements-dropdown.mjs +4 -9
  109. package/fesm2015/novo-elements-elements-dropdown.mjs.map +1 -1
  110. package/fesm2015/novo-elements-elements-header.mjs +5 -11
  111. package/fesm2015/novo-elements-elements-header.mjs.map +1 -1
  112. package/fesm2015/novo-elements-elements-icon.mjs +4 -9
  113. package/fesm2015/novo-elements-elements-icon.mjs.map +1 -1
  114. package/fesm2015/novo-elements-elements-list.mjs +26 -58
  115. package/fesm2015/novo-elements-elements-list.mjs.map +1 -1
  116. package/fesm2015/novo-elements-elements-loading.mjs +6 -12
  117. package/fesm2015/novo-elements-elements-loading.mjs.map +1 -1
  118. package/fesm2015/novo-elements-elements-modal.mjs +8 -16
  119. package/fesm2015/novo-elements-elements-modal.mjs.map +1 -1
  120. package/fesm2015/novo-elements-elements-places.mjs +3 -7
  121. package/fesm2015/novo-elements-elements-places.mjs.map +1 -1
  122. package/fesm2015/novo-elements-elements-quick-note.mjs +6 -14
  123. package/fesm2015/novo-elements-elements-quick-note.mjs.map +1 -1
  124. package/fesm2015/novo-elements-elements-radio.mjs +8 -18
  125. package/fesm2015/novo-elements-elements-radio.mjs.map +1 -1
  126. package/fesm2015/novo-elements-elements-search.mjs +3 -8
  127. package/fesm2015/novo-elements-elements-search.mjs.map +1 -1
  128. package/fesm2015/novo-elements-elements-select.mjs +5 -11
  129. package/fesm2015/novo-elements-elements-select.mjs.map +1 -1
  130. package/fesm2015/novo-elements-elements-slider.mjs +4 -8
  131. package/fesm2015/novo-elements-elements-slider.mjs.map +1 -1
  132. package/fesm2015/novo-elements-elements-stepper.mjs +8 -8
  133. package/fesm2015/novo-elements-elements-stepper.mjs.map +1 -1
  134. package/fesm2015/novo-elements-elements-switch.mjs +4 -9
  135. package/fesm2015/novo-elements-elements-switch.mjs.map +1 -1
  136. package/fesm2015/novo-elements-elements-tabbed-group-picker.mjs +2 -2
  137. package/fesm2015/novo-elements-elements-tabbed-group-picker.mjs.map +1 -1
  138. package/fesm2015/novo-elements-elements-table.mjs +4 -10
  139. package/fesm2015/novo-elements-elements-table.mjs.map +1 -1
  140. package/fesm2015/novo-elements-elements-tabs.mjs +21 -49
  141. package/fesm2015/novo-elements-elements-tabs.mjs.map +1 -1
  142. package/fesm2015/novo-elements-elements-tiles.mjs +3 -8
  143. package/fesm2015/novo-elements-elements-tiles.mjs.map +1 -1
  144. package/fesm2015/novo-elements-elements-time-picker.mjs +7 -16
  145. package/fesm2015/novo-elements-elements-time-picker.mjs.map +1 -1
  146. package/fesm2015/novo-elements-elements-tip-well.mjs +4 -8
  147. package/fesm2015/novo-elements-elements-tip-well.mjs.map +1 -1
  148. package/fesm2015/novo-elements-elements-toast.mjs +4 -8
  149. package/fesm2015/novo-elements-elements-toast.mjs.map +1 -1
  150. package/fesm2015/novo-elements-elements-tooltip.mjs +2 -2
  151. package/fesm2015/novo-elements-elements-tooltip.mjs.map +1 -1
  152. package/fesm2015/novo-elements-elements-value.mjs +3 -6
  153. package/fesm2015/novo-elements-elements-value.mjs.map +1 -1
  154. package/fesm2020/novo-elements-elements-agenda.mjs +12 -24
  155. package/fesm2020/novo-elements-elements-agenda.mjs.map +1 -1
  156. package/fesm2020/novo-elements-elements-card.mjs +16 -30
  157. package/fesm2020/novo-elements-elements-card.mjs.map +1 -1
  158. package/fesm2020/novo-elements-elements-date-picker.mjs +13 -30
  159. package/fesm2020/novo-elements-elements-date-picker.mjs.map +1 -1
  160. package/fesm2020/novo-elements-elements-date-time-picker.mjs +7 -16
  161. package/fesm2020/novo-elements-elements-date-time-picker.mjs.map +1 -1
  162. package/fesm2020/novo-elements-elements-dropdown.mjs +4 -9
  163. package/fesm2020/novo-elements-elements-dropdown.mjs.map +1 -1
  164. package/fesm2020/novo-elements-elements-header.mjs +5 -11
  165. package/fesm2020/novo-elements-elements-header.mjs.map +1 -1
  166. package/fesm2020/novo-elements-elements-icon.mjs +4 -9
  167. package/fesm2020/novo-elements-elements-icon.mjs.map +1 -1
  168. package/fesm2020/novo-elements-elements-list.mjs +26 -58
  169. package/fesm2020/novo-elements-elements-list.mjs.map +1 -1
  170. package/fesm2020/novo-elements-elements-loading.mjs +6 -12
  171. package/fesm2020/novo-elements-elements-loading.mjs.map +1 -1
  172. package/fesm2020/novo-elements-elements-modal.mjs +8 -16
  173. package/fesm2020/novo-elements-elements-modal.mjs.map +1 -1
  174. package/fesm2020/novo-elements-elements-places.mjs +3 -7
  175. package/fesm2020/novo-elements-elements-places.mjs.map +1 -1
  176. package/fesm2020/novo-elements-elements-quick-note.mjs +6 -14
  177. package/fesm2020/novo-elements-elements-quick-note.mjs.map +1 -1
  178. package/fesm2020/novo-elements-elements-radio.mjs +8 -18
  179. package/fesm2020/novo-elements-elements-radio.mjs.map +1 -1
  180. package/fesm2020/novo-elements-elements-search.mjs +3 -8
  181. package/fesm2020/novo-elements-elements-search.mjs.map +1 -1
  182. package/fesm2020/novo-elements-elements-select.mjs +5 -11
  183. package/fesm2020/novo-elements-elements-select.mjs.map +1 -1
  184. package/fesm2020/novo-elements-elements-slider.mjs +4 -8
  185. package/fesm2020/novo-elements-elements-slider.mjs.map +1 -1
  186. package/fesm2020/novo-elements-elements-stepper.mjs +8 -8
  187. package/fesm2020/novo-elements-elements-stepper.mjs.map +1 -1
  188. package/fesm2020/novo-elements-elements-switch.mjs +4 -9
  189. package/fesm2020/novo-elements-elements-switch.mjs.map +1 -1
  190. package/fesm2020/novo-elements-elements-tabbed-group-picker.mjs +2 -2
  191. package/fesm2020/novo-elements-elements-tabbed-group-picker.mjs.map +1 -1
  192. package/fesm2020/novo-elements-elements-table.mjs +4 -10
  193. package/fesm2020/novo-elements-elements-table.mjs.map +1 -1
  194. package/fesm2020/novo-elements-elements-tabs.mjs +21 -49
  195. package/fesm2020/novo-elements-elements-tabs.mjs.map +1 -1
  196. package/fesm2020/novo-elements-elements-tiles.mjs +3 -8
  197. package/fesm2020/novo-elements-elements-tiles.mjs.map +1 -1
  198. package/fesm2020/novo-elements-elements-time-picker.mjs +7 -16
  199. package/fesm2020/novo-elements-elements-time-picker.mjs.map +1 -1
  200. package/fesm2020/novo-elements-elements-tip-well.mjs +4 -8
  201. package/fesm2020/novo-elements-elements-tip-well.mjs.map +1 -1
  202. package/fesm2020/novo-elements-elements-toast.mjs +4 -8
  203. package/fesm2020/novo-elements-elements-toast.mjs.map +1 -1
  204. package/fesm2020/novo-elements-elements-tooltip.mjs +2 -2
  205. package/fesm2020/novo-elements-elements-tooltip.mjs.map +1 -1
  206. package/fesm2020/novo-elements-elements-value.mjs +3 -6
  207. package/fesm2020/novo-elements-elements-value.mjs.map +1 -1
  208. package/novo-elements.scss +10 -43
  209. package/package.json +1 -1
  210. package/elements/tabs/Tabs.scss +0 -298
  211. package/elements/value/Values.scss +0 -57
@@ -102,12 +102,10 @@ NovoToastElement.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", versi
102
102
  <div class="close-icon" *ngIf="isCloseable" (click)="close($event)">
103
103
  <i class="bhi-times"></i>
104
104
  </div>
105
- `, isInline: true, components: [{ type: i2.NovoButtonElement, selector: "novo-button,button[theme]", inputs: ["color", "side", "size", "theme", "loading", "icon", "disabled"] }], directives: [{ type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
105
+ `, isInline: true, styles: [":host{display:grid;grid-template-columns:5rem 1fr;justify-content:flex-start;align-content:center;align-items:center;position:relative;background:#0d2d42;color:#fff;padding:1rem;box-shadow:0 1px 3px #00000026}:host.show{display:grid!important}:host.launched{display:none;position:fixed;z-index:9999}:host .toast-icon{display:flex;justify-content:center;align-content:center;align-items:center;width:32px;height:32px;background:rgba(0,0,0,.15);border-radius:3px}:host .close-icon{display:flex;justify-content:center;align-content:center;align-items:center;align-self:flex-start;cursor:pointer;position:absolute;top:8px;right:8px}:host .toast-icon i,:host .close-icon i{display:flex;position:relative;font-size:1.2rem;line-height:1.2}:host.toast-container .toast-content .link-generated{width:100%;position:relative}:host.toast-container .toast-content .link-generated input{background:transparent!important;border:none;border-bottom:1px solid #afb9c0;border-radius:0;outline:none;height:2rem;width:95%;margin:0;padding:0;box-shadow:none;box-sizing:content-box;transition:all .3s;color:#fff;text-overflow:ellipsis}:host.toast-container .toast-content .link-generated input:focus{background-color:#4a89dc}:host.toast-container .toast-content .link-generated input:hover{border-bottom:1px solid #5f6d78}:host p{white-space:pre-line}:host h5{display:block;font-size:1.4rem;color:inherit}:host .toast-content>p{margin:0;max-width:inherit;font-size:1.3rem}:host .toast-content>p.message-only{padding:0;font-size:1.4rem}:host.text{background:#3d464d}:host.neutral{background:#4f5361}:host.background{background:#f7f7f7}:host.background .toast-content>h5{color:#3d464d!important}:host.background i,:host.background p{color:#3d464d}:host.fixedBottom,:host.fixedTop{left:0;right:0}:host.fixedBottom{bottom:-100%;padding-bottom:20px;transition:all .5s cubic-bezier(.35,0,.25,1)}:host.fixedBottom.animate{padding-bottom:20px;bottom:-6px}:host.fixedBottom:nth-last-of-type(2){bottom:25px;z-index:9997;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(3){bottom:50px;z-index:9996;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(4){bottom:75px;z-index:9995;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(5){bottom:100px;z-index:9994;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(6){bottom:125px;z-index:9993;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(7){bottom:150px;z-index:9992;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(8){bottom:175px;z-index:9991;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(9){bottom:200px;z-index:9990;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(10){bottom:225px;z-index:9989;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(11){bottom:250px;z-index:9988;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(12){bottom:275px;z-index:9987;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(13){bottom:300px;z-index:9986;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(14){bottom:325px;z-index:9985;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(15){bottom:350px;z-index:9984;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(16){bottom:375px;z-index:9983;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(17){bottom:400px;z-index:9982;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(18){bottom:425px;z-index:9981;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(19){bottom:450px;z-index:9980;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(20){bottom:475px;z-index:9979;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(21){bottom:500px;z-index:9978;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(22){bottom:525px;z-index:9977;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(23){bottom:550px;z-index:9976;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(24){bottom:575px;z-index:9975;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(25){bottom:600px;z-index:9974;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(26){bottom:625px;z-index:9973;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(27){bottom:650px;z-index:9972;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(28){bottom:675px;z-index:9971;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(29){bottom:700px;z-index:9970;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(30){bottom:725px;z-index:9969;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(31){bottom:750px;z-index:9968;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(32){bottom:775px;z-index:9967;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(33){bottom:800px;z-index:9966;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(34){bottom:825px;z-index:9965;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(35){bottom:850px;z-index:9964;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(36){bottom:875px;z-index:9963;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(37){bottom:900px;z-index:9962;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(38){bottom:925px;z-index:9961;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(39){bottom:950px;z-index:9960;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(40){bottom:975px;z-index:9959;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(41){bottom:1000px;z-index:9958;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(42){bottom:1025px;z-index:9957;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(43){bottom:1050px;z-index:9956;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(44){bottom:1075px;z-index:9955;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(45){bottom:1100px;z-index:9954;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(46){bottom:1125px;z-index:9953;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(47){bottom:1150px;z-index:9952;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(48){bottom:1175px;z-index:9951;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(49){bottom:1200px;z-index:9950;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(50){bottom:1225px;z-index:9949;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(51){bottom:1250px;z-index:9948;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(52){bottom:1275px;z-index:9947;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(53){bottom:1300px;z-index:9946;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(54){bottom:1325px;z-index:9945;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(55){bottom:1350px;z-index:9944;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(56){bottom:1375px;z-index:9943;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(57){bottom:1400px;z-index:9942;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(58){bottom:1425px;z-index:9941;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(59){bottom:1450px;z-index:9940;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(60){bottom:1475px;z-index:9939;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(61){bottom:1500px;z-index:9938;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(62){bottom:1525px;z-index:9937;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(63){bottom:1550px;z-index:9936;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(64){bottom:1575px;z-index:9935;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(65){bottom:1600px;z-index:9934;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(66){bottom:1625px;z-index:9933;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(67){bottom:1650px;z-index:9932;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(68){bottom:1675px;z-index:9931;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(69){bottom:1700px;z-index:9930;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(70){bottom:1725px;z-index:9929;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(71){bottom:1750px;z-index:9928;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(72){bottom:1775px;z-index:9927;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(73){bottom:1800px;z-index:9926;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(74){bottom:1825px;z-index:9925;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(75){bottom:1850px;z-index:9924;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(76){bottom:1875px;z-index:9923;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(77){bottom:1900px;z-index:9922;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(78){bottom:1925px;z-index:9921;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(79){bottom:1950px;z-index:9920;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(80){bottom:1975px;z-index:9919;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(81){bottom:2000px;z-index:9918;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(82){bottom:2025px;z-index:9917;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(83){bottom:2050px;z-index:9916;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(84){bottom:2075px;z-index:9915;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(85){bottom:2100px;z-index:9914;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(86){bottom:2125px;z-index:9913;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(87){bottom:2150px;z-index:9912;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(88){bottom:2175px;z-index:9911;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(89){bottom:2200px;z-index:9910;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(90){bottom:2225px;z-index:9909;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(91){bottom:2250px;z-index:9908;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(92){bottom:2275px;z-index:9907;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(93){bottom:2300px;z-index:9906;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(94){bottom:2325px;z-index:9905;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(95){bottom:2350px;z-index:9904;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(96){bottom:2375px;z-index:9903;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(97){bottom:2400px;z-index:9902;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(98){bottom:2425px;z-index:9901;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(99){bottom:2450px;z-index:9900;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(100){bottom:2475px;z-index:9899;filter:brightness(.8571428571)}:host.fixedTop{top:-100%;padding-top:20px;transition:all .5s cubic-bezier(.35,0,.25,1)}:host.fixedTop.animate{padding-top:20px;top:-6px}:host.fixedTop:nth-last-of-type(2){top:25px;z-index:9997;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(3){top:50px;z-index:9996;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(4){top:75px;z-index:9995;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(5){top:100px;z-index:9994;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(6){top:125px;z-index:9993;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(7){top:150px;z-index:9992;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(8){top:175px;z-index:9991;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(9){top:200px;z-index:9990;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(10){top:225px;z-index:9989;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(11){top:250px;z-index:9988;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(12){top:275px;z-index:9987;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(13){top:300px;z-index:9986;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(14){top:325px;z-index:9985;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(15){top:350px;z-index:9984;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(16){top:375px;z-index:9983;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(17){top:400px;z-index:9982;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(18){top:425px;z-index:9981;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(19){top:450px;z-index:9980;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(20){top:475px;z-index:9979;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(21){top:500px;z-index:9978;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(22){top:525px;z-index:9977;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(23){top:550px;z-index:9976;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(24){top:575px;z-index:9975;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(25){top:600px;z-index:9974;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(26){top:625px;z-index:9973;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(27){top:650px;z-index:9972;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(28){top:675px;z-index:9971;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(29){top:700px;z-index:9970;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(30){top:725px;z-index:9969;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(31){top:750px;z-index:9968;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(32){top:775px;z-index:9967;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(33){top:800px;z-index:9966;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(34){top:825px;z-index:9965;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(35){top:850px;z-index:9964;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(36){top:875px;z-index:9963;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(37){top:900px;z-index:9962;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(38){top:925px;z-index:9961;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(39){top:950px;z-index:9960;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(40){top:975px;z-index:9959;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(41){top:1000px;z-index:9958;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(42){top:1025px;z-index:9957;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(43){top:1050px;z-index:9956;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(44){top:1075px;z-index:9955;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(45){top:1100px;z-index:9954;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(46){top:1125px;z-index:9953;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(47){top:1150px;z-index:9952;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(48){top:1175px;z-index:9951;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(49){top:1200px;z-index:9950;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(50){top:1225px;z-index:9949;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(51){top:1250px;z-index:9948;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(52){top:1275px;z-index:9947;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(53){top:1300px;z-index:9946;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(54){top:1325px;z-index:9945;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(55){top:1350px;z-index:9944;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(56){top:1375px;z-index:9943;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(57){top:1400px;z-index:9942;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(58){top:1425px;z-index:9941;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(59){top:1450px;z-index:9940;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(60){top:1475px;z-index:9939;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(61){top:1500px;z-index:9938;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(62){top:1525px;z-index:9937;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(63){top:1550px;z-index:9936;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(64){top:1575px;z-index:9935;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(65){top:1600px;z-index:9934;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(66){top:1625px;z-index:9933;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(67){top:1650px;z-index:9932;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(68){top:1675px;z-index:9931;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(69){top:1700px;z-index:9930;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(70){top:1725px;z-index:9929;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(71){top:1750px;z-index:9928;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(72){top:1775px;z-index:9927;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(73){top:1800px;z-index:9926;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(74){top:1825px;z-index:9925;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(75){top:1850px;z-index:9924;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(76){top:1875px;z-index:9923;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(77){top:1900px;z-index:9922;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(78){top:1925px;z-index:9921;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(79){top:1950px;z-index:9920;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(80){top:1975px;z-index:9919;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(81){top:2000px;z-index:9918;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(82){top:2025px;z-index:9917;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(83){top:2050px;z-index:9916;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(84){top:2075px;z-index:9915;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(85){top:2100px;z-index:9914;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(86){top:2125px;z-index:9913;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(87){top:2150px;z-index:9912;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(88){top:2175px;z-index:9911;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(89){top:2200px;z-index:9910;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(90){top:2225px;z-index:9909;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(91){top:2250px;z-index:9908;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(92){top:2275px;z-index:9907;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(93){top:2300px;z-index:9906;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(94){top:2325px;z-index:9905;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(95){top:2350px;z-index:9904;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(96){top:2375px;z-index:9903;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(97){top:2400px;z-index:9902;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(98){top:2425px;z-index:9901;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(99){top:2450px;z-index:9900;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(100){top:2475px;z-index:9899;filter:brightness(.8571428571)}:host.embedded.fixedBottom,:host.embedded.fixedTop{top:auto;left:auto;right:auto;width:inherit;margin:-1rem -3rem}:host.embedded.fixedBottom.animate,:host.embedded.fixedTop.animate{top:auto}:host[class*=growl]{border-radius:3px;max-width:350px}:host.growlBottomLeft,:host.growlTopLeft{left:-100%;right:auto;width:calc(100% - 30px);transition:all .5s cubic-bezier(.35,0,.25,1)}:host.growlBottomLeft.animate,:host.growlTopLeft.animate{left:15px}:host.growlTopLeft,:host.growlTopRight{top:1rem}:host.growlTopLeft:nth-last-of-type(2),:host.growlTopRight:nth-last-of-type(2){top:50px;transform:scale(.96);z-index:9997;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(3),:host.growlTopRight:nth-last-of-type(3){top:75px;transform:scale(.96);z-index:9996;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(4),:host.growlTopRight:nth-last-of-type(4){top:100px;transform:scale(.96);z-index:9995;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(5),:host.growlTopRight:nth-last-of-type(5){top:125px;transform:scale(.96);z-index:9994;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(6),:host.growlTopRight:nth-last-of-type(6){top:150px;transform:scale(.96);z-index:9993;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(7),:host.growlTopRight:nth-last-of-type(7){top:175px;transform:scale(.96);z-index:9992;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(8),:host.growlTopRight:nth-last-of-type(8){top:200px;transform:scale(.96);z-index:9991;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(9),:host.growlTopRight:nth-last-of-type(9){top:225px;transform:scale(.96);z-index:9990;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(10),:host.growlTopRight:nth-last-of-type(10){top:250px;transform:scale(.96);z-index:9989;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(11),:host.growlTopRight:nth-last-of-type(11){top:275px;transform:scale(.96);z-index:9988;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(12),:host.growlTopRight:nth-last-of-type(12){top:300px;transform:scale(.96);z-index:9987;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(13),:host.growlTopRight:nth-last-of-type(13){top:325px;transform:scale(.96);z-index:9986;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(14),:host.growlTopRight:nth-last-of-type(14){top:350px;transform:scale(.96);z-index:9985;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(15),:host.growlTopRight:nth-last-of-type(15){top:375px;transform:scale(.96);z-index:9984;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(16),:host.growlTopRight:nth-last-of-type(16){top:400px;transform:scale(.96);z-index:9983;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(17),:host.growlTopRight:nth-last-of-type(17){top:425px;transform:scale(.96);z-index:9982;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(18),:host.growlTopRight:nth-last-of-type(18){top:450px;transform:scale(.96);z-index:9981;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(19),:host.growlTopRight:nth-last-of-type(19){top:475px;transform:scale(.96);z-index:9980;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(20),:host.growlTopRight:nth-last-of-type(20){top:500px;transform:scale(.96);z-index:9979;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(21),:host.growlTopRight:nth-last-of-type(21){top:525px;transform:scale(.96);z-index:9978;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(22),:host.growlTopRight:nth-last-of-type(22){top:550px;transform:scale(.96);z-index:9977;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(23),:host.growlTopRight:nth-last-of-type(23){top:575px;transform:scale(.96);z-index:9976;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(24),:host.growlTopRight:nth-last-of-type(24){top:600px;transform:scale(.96);z-index:9975;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(25),:host.growlTopRight:nth-last-of-type(25){top:625px;transform:scale(.96);z-index:9974;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(26),:host.growlTopRight:nth-last-of-type(26){top:650px;transform:scale(.96);z-index:9973;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(27),:host.growlTopRight:nth-last-of-type(27){top:675px;transform:scale(.96);z-index:9972;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(28),:host.growlTopRight:nth-last-of-type(28){top:700px;transform:scale(.96);z-index:9971;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(29),:host.growlTopRight:nth-last-of-type(29){top:725px;transform:scale(.96);z-index:9970;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(30),:host.growlTopRight:nth-last-of-type(30){top:750px;transform:scale(.96);z-index:9969;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(31),:host.growlTopRight:nth-last-of-type(31){top:775px;transform:scale(.96);z-index:9968;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(32),:host.growlTopRight:nth-last-of-type(32){top:800px;transform:scale(.96);z-index:9967;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(33),:host.growlTopRight:nth-last-of-type(33){top:825px;transform:scale(.96);z-index:9966;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(34),:host.growlTopRight:nth-last-of-type(34){top:850px;transform:scale(.96);z-index:9965;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(35),:host.growlTopRight:nth-last-of-type(35){top:875px;transform:scale(.96);z-index:9964;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(36),:host.growlTopRight:nth-last-of-type(36){top:900px;transform:scale(.96);z-index:9963;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(37),:host.growlTopRight:nth-last-of-type(37){top:925px;transform:scale(.96);z-index:9962;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(38),:host.growlTopRight:nth-last-of-type(38){top:950px;transform:scale(.96);z-index:9961;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(39),:host.growlTopRight:nth-last-of-type(39){top:975px;transform:scale(.96);z-index:9960;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(40),:host.growlTopRight:nth-last-of-type(40){top:1000px;transform:scale(.96);z-index:9959;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(41),:host.growlTopRight:nth-last-of-type(41){top:1025px;transform:scale(.96);z-index:9958;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(42),:host.growlTopRight:nth-last-of-type(42){top:1050px;transform:scale(.96);z-index:9957;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(43),:host.growlTopRight:nth-last-of-type(43){top:1075px;transform:scale(.96);z-index:9956;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(44),:host.growlTopRight:nth-last-of-type(44){top:1100px;transform:scale(.96);z-index:9955;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(45),:host.growlTopRight:nth-last-of-type(45){top:1125px;transform:scale(.96);z-index:9954;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(46),:host.growlTopRight:nth-last-of-type(46){top:1150px;transform:scale(.96);z-index:9953;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(47),:host.growlTopRight:nth-last-of-type(47){top:1175px;transform:scale(.96);z-index:9952;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(48),:host.growlTopRight:nth-last-of-type(48){top:1200px;transform:scale(.96);z-index:9951;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(49),:host.growlTopRight:nth-last-of-type(49){top:1225px;transform:scale(.96);z-index:9950;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(50),:host.growlTopRight:nth-last-of-type(50){top:1250px;transform:scale(.96);z-index:9949;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(51),:host.growlTopRight:nth-last-of-type(51){top:1275px;transform:scale(.96);z-index:9948;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(52),:host.growlTopRight:nth-last-of-type(52){top:1300px;transform:scale(.96);z-index:9947;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(53),:host.growlTopRight:nth-last-of-type(53){top:1325px;transform:scale(.96);z-index:9946;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(54),:host.growlTopRight:nth-last-of-type(54){top:1350px;transform:scale(.96);z-index:9945;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(55),:host.growlTopRight:nth-last-of-type(55){top:1375px;transform:scale(.96);z-index:9944;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(56),:host.growlTopRight:nth-last-of-type(56){top:1400px;transform:scale(.96);z-index:9943;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(57),:host.growlTopRight:nth-last-of-type(57){top:1425px;transform:scale(.96);z-index:9942;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(58),:host.growlTopRight:nth-last-of-type(58){top:1450px;transform:scale(.96);z-index:9941;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(59),:host.growlTopRight:nth-last-of-type(59){top:1475px;transform:scale(.96);z-index:9940;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(60),:host.growlTopRight:nth-last-of-type(60){top:1500px;transform:scale(.96);z-index:9939;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(61),:host.growlTopRight:nth-last-of-type(61){top:1525px;transform:scale(.96);z-index:9938;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(62),:host.growlTopRight:nth-last-of-type(62){top:1550px;transform:scale(.96);z-index:9937;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(63),:host.growlTopRight:nth-last-of-type(63){top:1575px;transform:scale(.96);z-index:9936;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(64),:host.growlTopRight:nth-last-of-type(64){top:1600px;transform:scale(.96);z-index:9935;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(65),:host.growlTopRight:nth-last-of-type(65){top:1625px;transform:scale(.96);z-index:9934;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(66),:host.growlTopRight:nth-last-of-type(66){top:1650px;transform:scale(.96);z-index:9933;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(67),:host.growlTopRight:nth-last-of-type(67){top:1675px;transform:scale(.96);z-index:9932;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(68),:host.growlTopRight:nth-last-of-type(68){top:1700px;transform:scale(.96);z-index:9931;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(69),:host.growlTopRight:nth-last-of-type(69){top:1725px;transform:scale(.96);z-index:9930;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(70),:host.growlTopRight:nth-last-of-type(70){top:1750px;transform:scale(.96);z-index:9929;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(71),:host.growlTopRight:nth-last-of-type(71){top:1775px;transform:scale(.96);z-index:9928;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(72),:host.growlTopRight:nth-last-of-type(72){top:1800px;transform:scale(.96);z-index:9927;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(73),:host.growlTopRight:nth-last-of-type(73){top:1825px;transform:scale(.96);z-index:9926;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(74),:host.growlTopRight:nth-last-of-type(74){top:1850px;transform:scale(.96);z-index:9925;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(75),:host.growlTopRight:nth-last-of-type(75){top:1875px;transform:scale(.96);z-index:9924;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(76),:host.growlTopRight:nth-last-of-type(76){top:1900px;transform:scale(.96);z-index:9923;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(77),:host.growlTopRight:nth-last-of-type(77){top:1925px;transform:scale(.96);z-index:9922;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(78),:host.growlTopRight:nth-last-of-type(78){top:1950px;transform:scale(.96);z-index:9921;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(79),:host.growlTopRight:nth-last-of-type(79){top:1975px;transform:scale(.96);z-index:9920;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(80),:host.growlTopRight:nth-last-of-type(80){top:2000px;transform:scale(.96);z-index:9919;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(81),:host.growlTopRight:nth-last-of-type(81){top:2025px;transform:scale(.96);z-index:9918;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(82),:host.growlTopRight:nth-last-of-type(82){top:2050px;transform:scale(.96);z-index:9917;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(83),:host.growlTopRight:nth-last-of-type(83){top:2075px;transform:scale(.96);z-index:9916;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(84),:host.growlTopRight:nth-last-of-type(84){top:2100px;transform:scale(.96);z-index:9915;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(85),:host.growlTopRight:nth-last-of-type(85){top:2125px;transform:scale(.96);z-index:9914;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(86),:host.growlTopRight:nth-last-of-type(86){top:2150px;transform:scale(.96);z-index:9913;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(87),:host.growlTopRight:nth-last-of-type(87){top:2175px;transform:scale(.96);z-index:9912;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(88),:host.growlTopRight:nth-last-of-type(88){top:2200px;transform:scale(.96);z-index:9911;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(89),:host.growlTopRight:nth-last-of-type(89){top:2225px;transform:scale(.96);z-index:9910;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(90),:host.growlTopRight:nth-last-of-type(90){top:2250px;transform:scale(.96);z-index:9909;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(91),:host.growlTopRight:nth-last-of-type(91){top:2275px;transform:scale(.96);z-index:9908;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(92),:host.growlTopRight:nth-last-of-type(92){top:2300px;transform:scale(.96);z-index:9907;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(93),:host.growlTopRight:nth-last-of-type(93){top:2325px;transform:scale(.96);z-index:9906;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(94),:host.growlTopRight:nth-last-of-type(94){top:2350px;transform:scale(.96);z-index:9905;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(95),:host.growlTopRight:nth-last-of-type(95){top:2375px;transform:scale(.96);z-index:9904;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(96),:host.growlTopRight:nth-last-of-type(96){top:2400px;transform:scale(.96);z-index:9903;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(97),:host.growlTopRight:nth-last-of-type(97){top:2425px;transform:scale(.96);z-index:9902;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(98),:host.growlTopRight:nth-last-of-type(98){top:2450px;transform:scale(.96);z-index:9901;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(99),:host.growlTopRight:nth-last-of-type(99){top:2475px;transform:scale(.96);z-index:9900;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(100),:host.growlTopRight:nth-last-of-type(100){top:2500px;transform:scale(.96);z-index:9899;filter:brightness(.8571428571)}:host.growlBottomLeft,:host.growlBottomRight{bottom:1rem}:host.growlBottomLeft:nth-last-of-type(2),:host.growlBottomRight:nth-last-of-type(2){bottom:50px;transform:scale(.96);z-index:9997;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(3),:host.growlBottomRight:nth-last-of-type(3){bottom:75px;transform:scale(.96);z-index:9996;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(4),:host.growlBottomRight:nth-last-of-type(4){bottom:100px;transform:scale(.96);z-index:9995;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(5),:host.growlBottomRight:nth-last-of-type(5){bottom:125px;transform:scale(.96);z-index:9994;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(6),:host.growlBottomRight:nth-last-of-type(6){bottom:150px;transform:scale(.96);z-index:9993;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(7),:host.growlBottomRight:nth-last-of-type(7){bottom:175px;transform:scale(.96);z-index:9992;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(8),:host.growlBottomRight:nth-last-of-type(8){bottom:200px;transform:scale(.96);z-index:9991;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(9),:host.growlBottomRight:nth-last-of-type(9){bottom:225px;transform:scale(.96);z-index:9990;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(10),:host.growlBottomRight:nth-last-of-type(10){bottom:250px;transform:scale(.96);z-index:9989;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(11),:host.growlBottomRight:nth-last-of-type(11){bottom:275px;transform:scale(.96);z-index:9988;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(12),:host.growlBottomRight:nth-last-of-type(12){bottom:300px;transform:scale(.96);z-index:9987;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(13),:host.growlBottomRight:nth-last-of-type(13){bottom:325px;transform:scale(.96);z-index:9986;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(14),:host.growlBottomRight:nth-last-of-type(14){bottom:350px;transform:scale(.96);z-index:9985;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(15),:host.growlBottomRight:nth-last-of-type(15){bottom:375px;transform:scale(.96);z-index:9984;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(16),:host.growlBottomRight:nth-last-of-type(16){bottom:400px;transform:scale(.96);z-index:9983;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(17),:host.growlBottomRight:nth-last-of-type(17){bottom:425px;transform:scale(.96);z-index:9982;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(18),:host.growlBottomRight:nth-last-of-type(18){bottom:450px;transform:scale(.96);z-index:9981;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(19),:host.growlBottomRight:nth-last-of-type(19){bottom:475px;transform:scale(.96);z-index:9980;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(20),:host.growlBottomRight:nth-last-of-type(20){bottom:500px;transform:scale(.96);z-index:9979;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(21),:host.growlBottomRight:nth-last-of-type(21){bottom:525px;transform:scale(.96);z-index:9978;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(22),:host.growlBottomRight:nth-last-of-type(22){bottom:550px;transform:scale(.96);z-index:9977;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(23),:host.growlBottomRight:nth-last-of-type(23){bottom:575px;transform:scale(.96);z-index:9976;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(24),:host.growlBottomRight:nth-last-of-type(24){bottom:600px;transform:scale(.96);z-index:9975;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(25),:host.growlBottomRight:nth-last-of-type(25){bottom:625px;transform:scale(.96);z-index:9974;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(26),:host.growlBottomRight:nth-last-of-type(26){bottom:650px;transform:scale(.96);z-index:9973;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(27),:host.growlBottomRight:nth-last-of-type(27){bottom:675px;transform:scale(.96);z-index:9972;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(28),:host.growlBottomRight:nth-last-of-type(28){bottom:700px;transform:scale(.96);z-index:9971;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(29),:host.growlBottomRight:nth-last-of-type(29){bottom:725px;transform:scale(.96);z-index:9970;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(30),:host.growlBottomRight:nth-last-of-type(30){bottom:750px;transform:scale(.96);z-index:9969;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(31),:host.growlBottomRight:nth-last-of-type(31){bottom:775px;transform:scale(.96);z-index:9968;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(32),:host.growlBottomRight:nth-last-of-type(32){bottom:800px;transform:scale(.96);z-index:9967;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(33),:host.growlBottomRight:nth-last-of-type(33){bottom:825px;transform:scale(.96);z-index:9966;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(34),:host.growlBottomRight:nth-last-of-type(34){bottom:850px;transform:scale(.96);z-index:9965;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(35),:host.growlBottomRight:nth-last-of-type(35){bottom:875px;transform:scale(.96);z-index:9964;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(36),:host.growlBottomRight:nth-last-of-type(36){bottom:900px;transform:scale(.96);z-index:9963;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(37),:host.growlBottomRight:nth-last-of-type(37){bottom:925px;transform:scale(.96);z-index:9962;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(38),:host.growlBottomRight:nth-last-of-type(38){bottom:950px;transform:scale(.96);z-index:9961;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(39),:host.growlBottomRight:nth-last-of-type(39){bottom:975px;transform:scale(.96);z-index:9960;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(40),:host.growlBottomRight:nth-last-of-type(40){bottom:1000px;transform:scale(.96);z-index:9959;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(41),:host.growlBottomRight:nth-last-of-type(41){bottom:1025px;transform:scale(.96);z-index:9958;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(42),:host.growlBottomRight:nth-last-of-type(42){bottom:1050px;transform:scale(.96);z-index:9957;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(43),:host.growlBottomRight:nth-last-of-type(43){bottom:1075px;transform:scale(.96);z-index:9956;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(44),:host.growlBottomRight:nth-last-of-type(44){bottom:1100px;transform:scale(.96);z-index:9955;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(45),:host.growlBottomRight:nth-last-of-type(45){bottom:1125px;transform:scale(.96);z-index:9954;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(46),:host.growlBottomRight:nth-last-of-type(46){bottom:1150px;transform:scale(.96);z-index:9953;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(47),:host.growlBottomRight:nth-last-of-type(47){bottom:1175px;transform:scale(.96);z-index:9952;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(48),:host.growlBottomRight:nth-last-of-type(48){bottom:1200px;transform:scale(.96);z-index:9951;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(49),:host.growlBottomRight:nth-last-of-type(49){bottom:1225px;transform:scale(.96);z-index:9950;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(50),:host.growlBottomRight:nth-last-of-type(50){bottom:1250px;transform:scale(.96);z-index:9949;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(51),:host.growlBottomRight:nth-last-of-type(51){bottom:1275px;transform:scale(.96);z-index:9948;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(52),:host.growlBottomRight:nth-last-of-type(52){bottom:1300px;transform:scale(.96);z-index:9947;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(53),:host.growlBottomRight:nth-last-of-type(53){bottom:1325px;transform:scale(.96);z-index:9946;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(54),:host.growlBottomRight:nth-last-of-type(54){bottom:1350px;transform:scale(.96);z-index:9945;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(55),:host.growlBottomRight:nth-last-of-type(55){bottom:1375px;transform:scale(.96);z-index:9944;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(56),:host.growlBottomRight:nth-last-of-type(56){bottom:1400px;transform:scale(.96);z-index:9943;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(57),:host.growlBottomRight:nth-last-of-type(57){bottom:1425px;transform:scale(.96);z-index:9942;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(58),:host.growlBottomRight:nth-last-of-type(58){bottom:1450px;transform:scale(.96);z-index:9941;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(59),:host.growlBottomRight:nth-last-of-type(59){bottom:1475px;transform:scale(.96);z-index:9940;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(60),:host.growlBottomRight:nth-last-of-type(60){bottom:1500px;transform:scale(.96);z-index:9939;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(61),:host.growlBottomRight:nth-last-of-type(61){bottom:1525px;transform:scale(.96);z-index:9938;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(62),:host.growlBottomRight:nth-last-of-type(62){bottom:1550px;transform:scale(.96);z-index:9937;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(63),:host.growlBottomRight:nth-last-of-type(63){bottom:1575px;transform:scale(.96);z-index:9936;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(64),:host.growlBottomRight:nth-last-of-type(64){bottom:1600px;transform:scale(.96);z-index:9935;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(65),:host.growlBottomRight:nth-last-of-type(65){bottom:1625px;transform:scale(.96);z-index:9934;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(66),:host.growlBottomRight:nth-last-of-type(66){bottom:1650px;transform:scale(.96);z-index:9933;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(67),:host.growlBottomRight:nth-last-of-type(67){bottom:1675px;transform:scale(.96);z-index:9932;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(68),:host.growlBottomRight:nth-last-of-type(68){bottom:1700px;transform:scale(.96);z-index:9931;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(69),:host.growlBottomRight:nth-last-of-type(69){bottom:1725px;transform:scale(.96);z-index:9930;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(70),:host.growlBottomRight:nth-last-of-type(70){bottom:1750px;transform:scale(.96);z-index:9929;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(71),:host.growlBottomRight:nth-last-of-type(71){bottom:1775px;transform:scale(.96);z-index:9928;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(72),:host.growlBottomRight:nth-last-of-type(72){bottom:1800px;transform:scale(.96);z-index:9927;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(73),:host.growlBottomRight:nth-last-of-type(73){bottom:1825px;transform:scale(.96);z-index:9926;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(74),:host.growlBottomRight:nth-last-of-type(74){bottom:1850px;transform:scale(.96);z-index:9925;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(75),:host.growlBottomRight:nth-last-of-type(75){bottom:1875px;transform:scale(.96);z-index:9924;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(76),:host.growlBottomRight:nth-last-of-type(76){bottom:1900px;transform:scale(.96);z-index:9923;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(77),:host.growlBottomRight:nth-last-of-type(77){bottom:1925px;transform:scale(.96);z-index:9922;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(78),:host.growlBottomRight:nth-last-of-type(78){bottom:1950px;transform:scale(.96);z-index:9921;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(79),:host.growlBottomRight:nth-last-of-type(79){bottom:1975px;transform:scale(.96);z-index:9920;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(80),:host.growlBottomRight:nth-last-of-type(80){bottom:2000px;transform:scale(.96);z-index:9919;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(81),:host.growlBottomRight:nth-last-of-type(81){bottom:2025px;transform:scale(.96);z-index:9918;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(82),:host.growlBottomRight:nth-last-of-type(82){bottom:2050px;transform:scale(.96);z-index:9917;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(83),:host.growlBottomRight:nth-last-of-type(83){bottom:2075px;transform:scale(.96);z-index:9916;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(84),:host.growlBottomRight:nth-last-of-type(84){bottom:2100px;transform:scale(.96);z-index:9915;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(85),:host.growlBottomRight:nth-last-of-type(85){bottom:2125px;transform:scale(.96);z-index:9914;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(86),:host.growlBottomRight:nth-last-of-type(86){bottom:2150px;transform:scale(.96);z-index:9913;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(87),:host.growlBottomRight:nth-last-of-type(87){bottom:2175px;transform:scale(.96);z-index:9912;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(88),:host.growlBottomRight:nth-last-of-type(88){bottom:2200px;transform:scale(.96);z-index:9911;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(89),:host.growlBottomRight:nth-last-of-type(89){bottom:2225px;transform:scale(.96);z-index:9910;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(90),:host.growlBottomRight:nth-last-of-type(90){bottom:2250px;transform:scale(.96);z-index:9909;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(91),:host.growlBottomRight:nth-last-of-type(91){bottom:2275px;transform:scale(.96);z-index:9908;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(92),:host.growlBottomRight:nth-last-of-type(92){bottom:2300px;transform:scale(.96);z-index:9907;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(93),:host.growlBottomRight:nth-last-of-type(93){bottom:2325px;transform:scale(.96);z-index:9906;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(94),:host.growlBottomRight:nth-last-of-type(94){bottom:2350px;transform:scale(.96);z-index:9905;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(95),:host.growlBottomRight:nth-last-of-type(95){bottom:2375px;transform:scale(.96);z-index:9904;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(96),:host.growlBottomRight:nth-last-of-type(96){bottom:2400px;transform:scale(.96);z-index:9903;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(97),:host.growlBottomRight:nth-last-of-type(97){bottom:2425px;transform:scale(.96);z-index:9902;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(98),:host.growlBottomRight:nth-last-of-type(98){bottom:2450px;transform:scale(.96);z-index:9901;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(99),:host.growlBottomRight:nth-last-of-type(99){bottom:2475px;transform:scale(.96);z-index:9900;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(100),:host.growlBottomRight:nth-last-of-type(100){bottom:2500px;transform:scale(.96);z-index:9899;filter:brightness(.8571428571)}:host.growlBottomLeft:last-of-type,:host.growlBottomRight:last-of-type,:host.growlTopLeft:last-of-type,:host.growlTopRight:last-of-type{box-shadow:0 1px 3px #00000080}:host.growlBottomRight,:host.growlTopRight{right:-100%;left:auto;width:calc(100% - 30px);transition:all .5s cubic-bezier(.35,0,.25,1)}:host.growlBottomRight.animate,:host.growlTopRight.animate{right:1rem}:host:not(.launched){-webkit-animation:embedded-slide-in .2s ease-in-out;animation:embedded-slide-in .2s ease-in-out}:host.dialogue .toast-content{display:flex;flex-direction:row!important;align-items:center}:host.dialogue p.message-only{flex:3 0 0}:host.dialogue .dialogue{display:inherit}:host.black{color:#fff;background:#000000}:host.novo-accent-black{border:1px solid #000000;background:#e6e6e6;color:#3d464d}:host.white{color:#3d464d;background:#ffffff}:host.novo-accent-white{border:1px solid #ffffff;background:#e6e6e6;color:#3d464d}:host.gray{color:#3d464d;background:#9e9e9e}:host.novo-accent-gray{border:1px solid #9e9e9e;background:#e6e6e6;color:#3d464d}:host.grey{color:#3d464d;background:#9e9e9e}:host.novo-accent-grey{border:1px solid #9e9e9e;background:#e6e6e6;color:#3d464d}:host.offWhite{color:#3d464d;background:#f7f7f7}:host.novo-accent-offWhite{border:1px solid #f7f7f7;background:#e6e6e6;color:#3d464d}:host.bright{color:#3d464d;background:#f7f7f7}:host.novo-accent-bright{border:1px solid #f7f7f7;background:#e6e6e6;color:#3d464d}:host.light{color:#3d464d;background:#dbdbdb}:host.novo-accent-light{border:1px solid #dbdbdb;background:#e6e6e6;color:#3d464d}:host.neutral{color:#fff;background:#4f5361}:host.novo-accent-neutral{border:1px solid #4f5361;background:#e3e4e8;color:#3d464d}:host.dark{color:#fff;background:#3d464d}:host.novo-accent-dark{border:1px solid #3d464d;background:#e3e6e8;color:#3d464d}:host.orange{color:#3d464d;background:#ff6900}:host.novo-accent-orange{border:1px solid #ff6900;background:#ffe1cc;color:#3d464d}:host.navigation{color:#fff;background:#202945}:host.novo-accent-navigation{border:1px solid #202945;background:#dce1ef;color:#3d464d}:host.skyBlue{color:#fff;background:#009bdf}:host.novo-accent-skyBlue{border:1px solid #009bdf;background:#ccefff;color:#3d464d}:host.steel{color:#fff;background:#5b6770}:host.novo-accent-steel{border:1px solid #5b6770;background:#e3e6e8;color:#3d464d}:host.metal{color:#fff;background:#637893}:host.novo-accent-metal{border:1px solid #637893;background:#e1e5ea;color:#3d464d}:host.sand{color:#3d464d;background:#f4f4f4}:host.novo-accent-sand{border:1px solid #f4f4f4;background:#e6e6e6;color:#3d464d}:host.silver{color:#3d464d;background:#e2e2e2}:host.novo-accent-silver{border:1px solid #e2e2e2;background:#e6e6e6;color:#3d464d}:host.stone{color:#3d464d;background:#bebebe}:host.novo-accent-stone{border:1px solid #bebebe;background:#e6e6e6;color:#3d464d}:host.ash{color:#3d464d;background:#a0a0a0}:host.novo-accent-ash{border:1px solid #a0a0a0;background:#e6e6e6;color:#3d464d}:host.slate{color:#fff;background:#707070}:host.novo-accent-slate{border:1px solid #707070;background:#e6e6e6;color:#3d464d}:host.onyx{color:#fff;background:#526980}:host.novo-accent-onyx{border:1px solid #526980;background:#e0e6eb;color:#3d464d}:host.charcoal{color:#fff;background:#282828}:host.novo-accent-charcoal{border:1px solid #282828;background:#e6e6e6;color:#3d464d}:host.moonlight{color:#fff;background:#1a242f}:host.novo-accent-moonlight{border:1px solid #1a242f;background:#dee5ed;color:#3d464d}:host.midnight{color:#fff;background:#202945}:host.novo-accent-midnight{border:1px solid #202945;background:#dce1ef;color:#3d464d}:host.darkness{color:#fff;background:#161f27}:host.novo-accent-darkness{border:1px solid #161f27;background:#dee6ed;color:#3d464d}:host.navy{color:#fff;background:#0d2d42}:host.novo-accent-navy{border:1px solid #0d2d42;background:#d4e9f7;color:#3d464d}:host.aqua{color:#3d464d;background:#3bafda}:host.novo-accent-aqua{border:1px solid #3bafda;background:#d4edf7;color:#3d464d}:host.ocean{color:#fff;background:#4a89dc}:host.novo-accent-ocean{border:1px solid #4a89dc;background:#d4e3f7;color:#3d464d}:host.mint{color:#3d464d;background:#37bc9b}:host.novo-accent-mint{border:1px solid #37bc9b;background:#d8f3ed;color:#3d464d}:host.grass{color:#fff;background:#8cc152}:host.novo-accent-grass{border:1px solid #8cc152;background:#e6f2d9;color:#3d464d}:host.sunflower{color:#fff;background:#f6b042}:host.novo-accent-sunflower{border:1px solid #f6b042;background:#fdebce;color:#3d464d}:host.bittersweet{color:#fff;background:#eb6845}:host.novo-accent-bittersweet{border:1px solid #eb6845;background:#fadad1;color:#3d464d}:host.grapefruit{color:#fff;background:#da4453}:host.novo-accent-grapefruit{border:1px solid #da4453;background:#f7d4d8;color:#3d464d}:host.carnation{color:#fff;background:#d770ad}:host.novo-accent-carnation{border:1px solid #d770ad;background:#f4d7e8;color:#3d464d}:host.lavender{color:#fff;background:#967adc}:host.novo-accent-lavender{border:1px solid #967adc;background:#dfd7f4;color:#3d464d}:host.mountain{color:#fff;background:#9678b6}:host.novo-accent-mountain{border:1px solid #9678b6;background:#e5deed;color:#3d464d}:host.info{color:#fff;background:#4a89dc}:host.novo-accent-info{border:1px solid #4a89dc;background:#d4e3f7;color:#3d464d}:host.positive{color:#fff;background:#4a89dc}:host.novo-accent-positive{border:1px solid #4a89dc;background:#d4e3f7;color:#3d464d}:host.success{color:#fff;background:#8cc152}:host.novo-accent-success{border:1px solid #8cc152;background:#e6f2d9;color:#3d464d}:host.negative{color:#fff;background:#da4453}:host.novo-accent-negative{border:1px solid #da4453;background:#f7d4d8;color:#3d464d}:host.danger{color:#fff;background:#da4453}:host.novo-accent-danger{border:1px solid #da4453;background:#f7d4d8;color:#3d464d}:host.error{color:#fff;background:#da4453}:host.novo-accent-error{border:1px solid #da4453;background:#f7d4d8;color:#3d464d}:host.warning{color:#fff;background:#f6b042}:host.novo-accent-warning{border:1px solid #f6b042;background:#fdebce;color:#3d464d}:host.empty{color:#3d464d;background:#cccdcc}:host.novo-accent-empty{border:1px solid #cccdcc;background:#e5e6e5;color:#3d464d}:host.disabled{color:#3d464d;background:#bebebe}:host.novo-accent-disabled{border:1px solid #bebebe;background:#e6e6e6;color:#3d464d}:host.background{color:#3d464d;background:#f7f7f7}:host.novo-accent-background{border:1px solid #f7f7f7;background:#e6e6e6;color:#3d464d}:host.backgroundDark{color:#3d464d;background:#e2e2e2}:host.novo-accent-backgroundDark{border:1px solid #e2e2e2;background:#e6e6e6;color:#3d464d}:host.presentation{color:#fff;background:#5b6770}:host.novo-accent-presentation{border:1px solid #5b6770;background:#e3e6e8;color:#3d464d}:host.bullhorn{color:#3d464d;background:#ff6900}:host.novo-accent-bullhorn{border:1px solid #ff6900;background:#ffe1cc;color:#3d464d}:host.pulse{color:#3d464d;background:#3bafda}:host.novo-accent-pulse{border:1px solid #3bafda;background:#d4edf7;color:#3d464d}:host.company{color:#fff;background:#3399dd}:host.novo-accent-company{border:1px solid #3399dd;background:#d3e9f8;color:#3d464d}:host.candidate{color:#fff;background:#44bb77}:host.novo-accent-candidate{border:1px solid #44bb77;background:#daf1e4;color:#3d464d}:host.lead{color:#fff;background:#aa6699}:host.novo-accent-lead{border:1px solid #aa6699;background:#eddee9;color:#3d464d}:host.contact{color:#fff;background:#ffaa44}:host.novo-accent-contact{border:1px solid #ffaa44;background:#ffe8cc;color:#3d464d}:host.clientcontact{color:#fff;background:#ffaa44}:host.novo-accent-clientcontact{border:1px solid #ffaa44;background:#ffe8cc;color:#3d464d}:host.opportunity{color:#fff;background:#662255}:host.novo-accent-opportunity{border:1px solid #662255;background:#f2d9ec;color:#3d464d}:host.job{color:#fff;background:#bb5566}:host.novo-accent-job{border:1px solid #bb5566;background:#f0dbde;color:#3d464d}:host.joborder{color:#fff;background:#bb5566}:host.novo-accent-joborder{border:1px solid #bb5566;background:#f0dbde;color:#3d464d}:host.submission{color:#3d464d;background:#a9adbb}:host.novo-accent-submission{border:1px solid #a9adbb;background:#e3e4e8;color:#3d464d}:host.sendout{color:#fff;background:#747884}:host.novo-accent-sendout{border:1px solid #747884;background:#e4e5e7;color:#3d464d}:host.placement{color:#fff;background:#0b344f}:host.novo-accent-placement{border:1px solid #0b344f;background:#d2e9f9;color:#3d464d}:host.note{color:#fff;background:#747884}:host.novo-accent-note{border:1px solid #747884;background:#e4e5e7;color:#3d464d}:host.contract{color:#fff;background:#454ea0}:host.novo-accent-contract{border:1px solid #454ea0;background:#dbddf0;color:#3d464d}:host.jobCode{color:#fff;background:#696d79}:host.novo-accent-jobCode{border:1px solid #696d79;background:#e4e5e7;color:#3d464d}:host.earnCode{color:#fff;background:#696d79}:host.novo-accent-earnCode{border:1px solid #696d79;background:#e4e5e7;color:#3d464d}:host.invoiceStatement{color:#fff;background:#696d79}:host.novo-accent-invoiceStatement{border:1px solid #696d79;background:#e4e5e7;color:#3d464d}:host.billableCharge{color:#fff;background:#696d79}:host.novo-accent-billableCharge{border:1px solid #696d79;background:#e4e5e7;color:#3d464d}:host.payableCharge{color:#fff;background:#696d79}:host.novo-accent-payableCharge{border:1px solid #696d79;background:#e4e5e7;color:#3d464d}:host.user{color:#fff;background:#696d79}:host.novo-accent-user{border:1px solid #696d79;background:#e4e5e7;color:#3d464d}:host.corporateUser{color:#fff;background:#696d79}:host.novo-accent-corporateUser{border:1px solid #696d79;background:#e4e5e7;color:#3d464d}:host.distributionList{color:#fff;background:#696d79}:host.novo-accent-distributionList{border:1px solid #696d79;background:#e4e5e7;color:#3d464d}:host.credential{color:#fff;background:#696d79}:host.novo-accent-credential{border:1px solid #696d79;background:#e4e5e7;color:#3d464d}:host.person{color:#fff;background:#696d79}:host.novo-accent-person{border:1px solid #696d79;background:#e4e5e7;color:#3d464d}@-webkit-keyframes embedded-slide-in{0%{transform:translateY(-100%);opacity:0}to{transform:translateY(0);opacity:1}}@keyframes embedded-slide-in{0%{transform:translateY(-100%);opacity:0}to{transform:translateY(0);opacity:1}}@media screen and (min-width: 350px){:host[class*=growl]{min-width:350px}:host.growlBottomLeft,:host.growlTopLeft{left:-100%;right:auto;transition:all .5s cubic-bezier(.35,0,.25,1)}:host.growlBottomLeft.animate,:host.growlTopLeft.animate{left:1rem}:host.growlBottomRight,:host.growlTopRight{right:-100%;left:auto;transition:all .5s cubic-bezier(.35,0,.25,1)}:host.growlBottomRight.animate,:host.growlTopRight.animate{right:1rem}}\n"], components: [{ type: i2.NovoButtonElement, selector: "novo-button,button[theme]", inputs: ["color", "side", "size", "theme", "loading", "icon", "disabled"] }], directives: [{ type: i3.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { type: i3.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
106
106
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoToastElement, decorators: [{
107
107
  type: Component,
108
- args: [{
109
- selector: 'novo-toast',
110
- host: {
108
+ args: [{ selector: 'novo-toast', host: {
111
109
  '[class]': 'alertTheme',
112
110
  '[class.growl]': 'appearance == "growl"',
113
111
  '[class.banner]': 'appearance == "banner"',
@@ -116,8 +114,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
116
114
  '[class.embedded]': 'embedded',
117
115
  '[attr.theme]': 'theme',
118
116
  '(click)': '!isCloseable && clickHandler($event)',
119
- },
120
- template: `
117
+ }, template: `
121
118
  <div class="toast-icon">
122
119
  <i [ngClass]="iconClass"></i>
123
120
  </div>
@@ -137,8 +134,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
137
134
  <div class="close-icon" *ngIf="isCloseable" (click)="close($event)">
138
135
  <i class="bhi-times"></i>
139
136
  </div>
140
- `,
141
- }]
137
+ `, styles: [":host{display:grid;grid-template-columns:5rem 1fr;justify-content:flex-start;align-content:center;align-items:center;position:relative;background:#0d2d42;color:#fff;padding:1rem;box-shadow:0 1px 3px #00000026}:host.show{display:grid!important}:host.launched{display:none;position:fixed;z-index:9999}:host .toast-icon{display:flex;justify-content:center;align-content:center;align-items:center;width:32px;height:32px;background:rgba(0,0,0,.15);border-radius:3px}:host .close-icon{display:flex;justify-content:center;align-content:center;align-items:center;align-self:flex-start;cursor:pointer;position:absolute;top:8px;right:8px}:host .toast-icon i,:host .close-icon i{display:flex;position:relative;font-size:1.2rem;line-height:1.2}:host.toast-container .toast-content .link-generated{width:100%;position:relative}:host.toast-container .toast-content .link-generated input{background:transparent!important;border:none;border-bottom:1px solid #afb9c0;border-radius:0;outline:none;height:2rem;width:95%;margin:0;padding:0;box-shadow:none;box-sizing:content-box;transition:all .3s;color:#fff;text-overflow:ellipsis}:host.toast-container .toast-content .link-generated input:focus{background-color:#4a89dc}:host.toast-container .toast-content .link-generated input:hover{border-bottom:1px solid #5f6d78}:host p{white-space:pre-line}:host h5{display:block;font-size:1.4rem;color:inherit}:host .toast-content>p{margin:0;max-width:inherit;font-size:1.3rem}:host .toast-content>p.message-only{padding:0;font-size:1.4rem}:host.text{background:#3d464d}:host.neutral{background:#4f5361}:host.background{background:#f7f7f7}:host.background .toast-content>h5{color:#3d464d!important}:host.background i,:host.background p{color:#3d464d}:host.fixedBottom,:host.fixedTop{left:0;right:0}:host.fixedBottom{bottom:-100%;padding-bottom:20px;transition:all .5s cubic-bezier(.35,0,.25,1)}:host.fixedBottom.animate{padding-bottom:20px;bottom:-6px}:host.fixedBottom:nth-last-of-type(2){bottom:25px;z-index:9997;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(3){bottom:50px;z-index:9996;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(4){bottom:75px;z-index:9995;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(5){bottom:100px;z-index:9994;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(6){bottom:125px;z-index:9993;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(7){bottom:150px;z-index:9992;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(8){bottom:175px;z-index:9991;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(9){bottom:200px;z-index:9990;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(10){bottom:225px;z-index:9989;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(11){bottom:250px;z-index:9988;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(12){bottom:275px;z-index:9987;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(13){bottom:300px;z-index:9986;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(14){bottom:325px;z-index:9985;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(15){bottom:350px;z-index:9984;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(16){bottom:375px;z-index:9983;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(17){bottom:400px;z-index:9982;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(18){bottom:425px;z-index:9981;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(19){bottom:450px;z-index:9980;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(20){bottom:475px;z-index:9979;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(21){bottom:500px;z-index:9978;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(22){bottom:525px;z-index:9977;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(23){bottom:550px;z-index:9976;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(24){bottom:575px;z-index:9975;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(25){bottom:600px;z-index:9974;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(26){bottom:625px;z-index:9973;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(27){bottom:650px;z-index:9972;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(28){bottom:675px;z-index:9971;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(29){bottom:700px;z-index:9970;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(30){bottom:725px;z-index:9969;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(31){bottom:750px;z-index:9968;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(32){bottom:775px;z-index:9967;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(33){bottom:800px;z-index:9966;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(34){bottom:825px;z-index:9965;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(35){bottom:850px;z-index:9964;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(36){bottom:875px;z-index:9963;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(37){bottom:900px;z-index:9962;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(38){bottom:925px;z-index:9961;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(39){bottom:950px;z-index:9960;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(40){bottom:975px;z-index:9959;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(41){bottom:1000px;z-index:9958;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(42){bottom:1025px;z-index:9957;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(43){bottom:1050px;z-index:9956;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(44){bottom:1075px;z-index:9955;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(45){bottom:1100px;z-index:9954;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(46){bottom:1125px;z-index:9953;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(47){bottom:1150px;z-index:9952;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(48){bottom:1175px;z-index:9951;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(49){bottom:1200px;z-index:9950;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(50){bottom:1225px;z-index:9949;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(51){bottom:1250px;z-index:9948;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(52){bottom:1275px;z-index:9947;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(53){bottom:1300px;z-index:9946;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(54){bottom:1325px;z-index:9945;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(55){bottom:1350px;z-index:9944;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(56){bottom:1375px;z-index:9943;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(57){bottom:1400px;z-index:9942;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(58){bottom:1425px;z-index:9941;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(59){bottom:1450px;z-index:9940;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(60){bottom:1475px;z-index:9939;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(61){bottom:1500px;z-index:9938;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(62){bottom:1525px;z-index:9937;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(63){bottom:1550px;z-index:9936;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(64){bottom:1575px;z-index:9935;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(65){bottom:1600px;z-index:9934;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(66){bottom:1625px;z-index:9933;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(67){bottom:1650px;z-index:9932;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(68){bottom:1675px;z-index:9931;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(69){bottom:1700px;z-index:9930;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(70){bottom:1725px;z-index:9929;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(71){bottom:1750px;z-index:9928;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(72){bottom:1775px;z-index:9927;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(73){bottom:1800px;z-index:9926;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(74){bottom:1825px;z-index:9925;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(75){bottom:1850px;z-index:9924;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(76){bottom:1875px;z-index:9923;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(77){bottom:1900px;z-index:9922;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(78){bottom:1925px;z-index:9921;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(79){bottom:1950px;z-index:9920;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(80){bottom:1975px;z-index:9919;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(81){bottom:2000px;z-index:9918;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(82){bottom:2025px;z-index:9917;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(83){bottom:2050px;z-index:9916;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(84){bottom:2075px;z-index:9915;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(85){bottom:2100px;z-index:9914;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(86){bottom:2125px;z-index:9913;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(87){bottom:2150px;z-index:9912;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(88){bottom:2175px;z-index:9911;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(89){bottom:2200px;z-index:9910;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(90){bottom:2225px;z-index:9909;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(91){bottom:2250px;z-index:9908;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(92){bottom:2275px;z-index:9907;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(93){bottom:2300px;z-index:9906;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(94){bottom:2325px;z-index:9905;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(95){bottom:2350px;z-index:9904;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(96){bottom:2375px;z-index:9903;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(97){bottom:2400px;z-index:9902;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(98){bottom:2425px;z-index:9901;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(99){bottom:2450px;z-index:9900;filter:brightness(.8571428571)}:host.fixedBottom:nth-last-of-type(100){bottom:2475px;z-index:9899;filter:brightness(.8571428571)}:host.fixedTop{top:-100%;padding-top:20px;transition:all .5s cubic-bezier(.35,0,.25,1)}:host.fixedTop.animate{padding-top:20px;top:-6px}:host.fixedTop:nth-last-of-type(2){top:25px;z-index:9997;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(3){top:50px;z-index:9996;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(4){top:75px;z-index:9995;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(5){top:100px;z-index:9994;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(6){top:125px;z-index:9993;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(7){top:150px;z-index:9992;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(8){top:175px;z-index:9991;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(9){top:200px;z-index:9990;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(10){top:225px;z-index:9989;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(11){top:250px;z-index:9988;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(12){top:275px;z-index:9987;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(13){top:300px;z-index:9986;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(14){top:325px;z-index:9985;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(15){top:350px;z-index:9984;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(16){top:375px;z-index:9983;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(17){top:400px;z-index:9982;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(18){top:425px;z-index:9981;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(19){top:450px;z-index:9980;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(20){top:475px;z-index:9979;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(21){top:500px;z-index:9978;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(22){top:525px;z-index:9977;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(23){top:550px;z-index:9976;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(24){top:575px;z-index:9975;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(25){top:600px;z-index:9974;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(26){top:625px;z-index:9973;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(27){top:650px;z-index:9972;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(28){top:675px;z-index:9971;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(29){top:700px;z-index:9970;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(30){top:725px;z-index:9969;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(31){top:750px;z-index:9968;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(32){top:775px;z-index:9967;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(33){top:800px;z-index:9966;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(34){top:825px;z-index:9965;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(35){top:850px;z-index:9964;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(36){top:875px;z-index:9963;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(37){top:900px;z-index:9962;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(38){top:925px;z-index:9961;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(39){top:950px;z-index:9960;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(40){top:975px;z-index:9959;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(41){top:1000px;z-index:9958;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(42){top:1025px;z-index:9957;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(43){top:1050px;z-index:9956;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(44){top:1075px;z-index:9955;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(45){top:1100px;z-index:9954;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(46){top:1125px;z-index:9953;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(47){top:1150px;z-index:9952;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(48){top:1175px;z-index:9951;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(49){top:1200px;z-index:9950;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(50){top:1225px;z-index:9949;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(51){top:1250px;z-index:9948;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(52){top:1275px;z-index:9947;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(53){top:1300px;z-index:9946;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(54){top:1325px;z-index:9945;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(55){top:1350px;z-index:9944;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(56){top:1375px;z-index:9943;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(57){top:1400px;z-index:9942;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(58){top:1425px;z-index:9941;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(59){top:1450px;z-index:9940;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(60){top:1475px;z-index:9939;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(61){top:1500px;z-index:9938;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(62){top:1525px;z-index:9937;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(63){top:1550px;z-index:9936;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(64){top:1575px;z-index:9935;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(65){top:1600px;z-index:9934;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(66){top:1625px;z-index:9933;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(67){top:1650px;z-index:9932;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(68){top:1675px;z-index:9931;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(69){top:1700px;z-index:9930;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(70){top:1725px;z-index:9929;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(71){top:1750px;z-index:9928;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(72){top:1775px;z-index:9927;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(73){top:1800px;z-index:9926;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(74){top:1825px;z-index:9925;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(75){top:1850px;z-index:9924;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(76){top:1875px;z-index:9923;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(77){top:1900px;z-index:9922;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(78){top:1925px;z-index:9921;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(79){top:1950px;z-index:9920;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(80){top:1975px;z-index:9919;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(81){top:2000px;z-index:9918;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(82){top:2025px;z-index:9917;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(83){top:2050px;z-index:9916;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(84){top:2075px;z-index:9915;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(85){top:2100px;z-index:9914;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(86){top:2125px;z-index:9913;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(87){top:2150px;z-index:9912;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(88){top:2175px;z-index:9911;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(89){top:2200px;z-index:9910;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(90){top:2225px;z-index:9909;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(91){top:2250px;z-index:9908;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(92){top:2275px;z-index:9907;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(93){top:2300px;z-index:9906;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(94){top:2325px;z-index:9905;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(95){top:2350px;z-index:9904;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(96){top:2375px;z-index:9903;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(97){top:2400px;z-index:9902;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(98){top:2425px;z-index:9901;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(99){top:2450px;z-index:9900;filter:brightness(.8571428571)}:host.fixedTop:nth-last-of-type(100){top:2475px;z-index:9899;filter:brightness(.8571428571)}:host.embedded.fixedBottom,:host.embedded.fixedTop{top:auto;left:auto;right:auto;width:inherit;margin:-1rem -3rem}:host.embedded.fixedBottom.animate,:host.embedded.fixedTop.animate{top:auto}:host[class*=growl]{border-radius:3px;max-width:350px}:host.growlBottomLeft,:host.growlTopLeft{left:-100%;right:auto;width:calc(100% - 30px);transition:all .5s cubic-bezier(.35,0,.25,1)}:host.growlBottomLeft.animate,:host.growlTopLeft.animate{left:15px}:host.growlTopLeft,:host.growlTopRight{top:1rem}:host.growlTopLeft:nth-last-of-type(2),:host.growlTopRight:nth-last-of-type(2){top:50px;transform:scale(.96);z-index:9997;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(3),:host.growlTopRight:nth-last-of-type(3){top:75px;transform:scale(.96);z-index:9996;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(4),:host.growlTopRight:nth-last-of-type(4){top:100px;transform:scale(.96);z-index:9995;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(5),:host.growlTopRight:nth-last-of-type(5){top:125px;transform:scale(.96);z-index:9994;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(6),:host.growlTopRight:nth-last-of-type(6){top:150px;transform:scale(.96);z-index:9993;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(7),:host.growlTopRight:nth-last-of-type(7){top:175px;transform:scale(.96);z-index:9992;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(8),:host.growlTopRight:nth-last-of-type(8){top:200px;transform:scale(.96);z-index:9991;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(9),:host.growlTopRight:nth-last-of-type(9){top:225px;transform:scale(.96);z-index:9990;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(10),:host.growlTopRight:nth-last-of-type(10){top:250px;transform:scale(.96);z-index:9989;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(11),:host.growlTopRight:nth-last-of-type(11){top:275px;transform:scale(.96);z-index:9988;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(12),:host.growlTopRight:nth-last-of-type(12){top:300px;transform:scale(.96);z-index:9987;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(13),:host.growlTopRight:nth-last-of-type(13){top:325px;transform:scale(.96);z-index:9986;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(14),:host.growlTopRight:nth-last-of-type(14){top:350px;transform:scale(.96);z-index:9985;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(15),:host.growlTopRight:nth-last-of-type(15){top:375px;transform:scale(.96);z-index:9984;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(16),:host.growlTopRight:nth-last-of-type(16){top:400px;transform:scale(.96);z-index:9983;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(17),:host.growlTopRight:nth-last-of-type(17){top:425px;transform:scale(.96);z-index:9982;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(18),:host.growlTopRight:nth-last-of-type(18){top:450px;transform:scale(.96);z-index:9981;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(19),:host.growlTopRight:nth-last-of-type(19){top:475px;transform:scale(.96);z-index:9980;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(20),:host.growlTopRight:nth-last-of-type(20){top:500px;transform:scale(.96);z-index:9979;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(21),:host.growlTopRight:nth-last-of-type(21){top:525px;transform:scale(.96);z-index:9978;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(22),:host.growlTopRight:nth-last-of-type(22){top:550px;transform:scale(.96);z-index:9977;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(23),:host.growlTopRight:nth-last-of-type(23){top:575px;transform:scale(.96);z-index:9976;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(24),:host.growlTopRight:nth-last-of-type(24){top:600px;transform:scale(.96);z-index:9975;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(25),:host.growlTopRight:nth-last-of-type(25){top:625px;transform:scale(.96);z-index:9974;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(26),:host.growlTopRight:nth-last-of-type(26){top:650px;transform:scale(.96);z-index:9973;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(27),:host.growlTopRight:nth-last-of-type(27){top:675px;transform:scale(.96);z-index:9972;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(28),:host.growlTopRight:nth-last-of-type(28){top:700px;transform:scale(.96);z-index:9971;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(29),:host.growlTopRight:nth-last-of-type(29){top:725px;transform:scale(.96);z-index:9970;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(30),:host.growlTopRight:nth-last-of-type(30){top:750px;transform:scale(.96);z-index:9969;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(31),:host.growlTopRight:nth-last-of-type(31){top:775px;transform:scale(.96);z-index:9968;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(32),:host.growlTopRight:nth-last-of-type(32){top:800px;transform:scale(.96);z-index:9967;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(33),:host.growlTopRight:nth-last-of-type(33){top:825px;transform:scale(.96);z-index:9966;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(34),:host.growlTopRight:nth-last-of-type(34){top:850px;transform:scale(.96);z-index:9965;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(35),:host.growlTopRight:nth-last-of-type(35){top:875px;transform:scale(.96);z-index:9964;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(36),:host.growlTopRight:nth-last-of-type(36){top:900px;transform:scale(.96);z-index:9963;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(37),:host.growlTopRight:nth-last-of-type(37){top:925px;transform:scale(.96);z-index:9962;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(38),:host.growlTopRight:nth-last-of-type(38){top:950px;transform:scale(.96);z-index:9961;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(39),:host.growlTopRight:nth-last-of-type(39){top:975px;transform:scale(.96);z-index:9960;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(40),:host.growlTopRight:nth-last-of-type(40){top:1000px;transform:scale(.96);z-index:9959;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(41),:host.growlTopRight:nth-last-of-type(41){top:1025px;transform:scale(.96);z-index:9958;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(42),:host.growlTopRight:nth-last-of-type(42){top:1050px;transform:scale(.96);z-index:9957;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(43),:host.growlTopRight:nth-last-of-type(43){top:1075px;transform:scale(.96);z-index:9956;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(44),:host.growlTopRight:nth-last-of-type(44){top:1100px;transform:scale(.96);z-index:9955;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(45),:host.growlTopRight:nth-last-of-type(45){top:1125px;transform:scale(.96);z-index:9954;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(46),:host.growlTopRight:nth-last-of-type(46){top:1150px;transform:scale(.96);z-index:9953;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(47),:host.growlTopRight:nth-last-of-type(47){top:1175px;transform:scale(.96);z-index:9952;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(48),:host.growlTopRight:nth-last-of-type(48){top:1200px;transform:scale(.96);z-index:9951;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(49),:host.growlTopRight:nth-last-of-type(49){top:1225px;transform:scale(.96);z-index:9950;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(50),:host.growlTopRight:nth-last-of-type(50){top:1250px;transform:scale(.96);z-index:9949;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(51),:host.growlTopRight:nth-last-of-type(51){top:1275px;transform:scale(.96);z-index:9948;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(52),:host.growlTopRight:nth-last-of-type(52){top:1300px;transform:scale(.96);z-index:9947;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(53),:host.growlTopRight:nth-last-of-type(53){top:1325px;transform:scale(.96);z-index:9946;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(54),:host.growlTopRight:nth-last-of-type(54){top:1350px;transform:scale(.96);z-index:9945;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(55),:host.growlTopRight:nth-last-of-type(55){top:1375px;transform:scale(.96);z-index:9944;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(56),:host.growlTopRight:nth-last-of-type(56){top:1400px;transform:scale(.96);z-index:9943;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(57),:host.growlTopRight:nth-last-of-type(57){top:1425px;transform:scale(.96);z-index:9942;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(58),:host.growlTopRight:nth-last-of-type(58){top:1450px;transform:scale(.96);z-index:9941;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(59),:host.growlTopRight:nth-last-of-type(59){top:1475px;transform:scale(.96);z-index:9940;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(60),:host.growlTopRight:nth-last-of-type(60){top:1500px;transform:scale(.96);z-index:9939;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(61),:host.growlTopRight:nth-last-of-type(61){top:1525px;transform:scale(.96);z-index:9938;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(62),:host.growlTopRight:nth-last-of-type(62){top:1550px;transform:scale(.96);z-index:9937;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(63),:host.growlTopRight:nth-last-of-type(63){top:1575px;transform:scale(.96);z-index:9936;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(64),:host.growlTopRight:nth-last-of-type(64){top:1600px;transform:scale(.96);z-index:9935;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(65),:host.growlTopRight:nth-last-of-type(65){top:1625px;transform:scale(.96);z-index:9934;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(66),:host.growlTopRight:nth-last-of-type(66){top:1650px;transform:scale(.96);z-index:9933;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(67),:host.growlTopRight:nth-last-of-type(67){top:1675px;transform:scale(.96);z-index:9932;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(68),:host.growlTopRight:nth-last-of-type(68){top:1700px;transform:scale(.96);z-index:9931;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(69),:host.growlTopRight:nth-last-of-type(69){top:1725px;transform:scale(.96);z-index:9930;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(70),:host.growlTopRight:nth-last-of-type(70){top:1750px;transform:scale(.96);z-index:9929;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(71),:host.growlTopRight:nth-last-of-type(71){top:1775px;transform:scale(.96);z-index:9928;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(72),:host.growlTopRight:nth-last-of-type(72){top:1800px;transform:scale(.96);z-index:9927;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(73),:host.growlTopRight:nth-last-of-type(73){top:1825px;transform:scale(.96);z-index:9926;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(74),:host.growlTopRight:nth-last-of-type(74){top:1850px;transform:scale(.96);z-index:9925;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(75),:host.growlTopRight:nth-last-of-type(75){top:1875px;transform:scale(.96);z-index:9924;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(76),:host.growlTopRight:nth-last-of-type(76){top:1900px;transform:scale(.96);z-index:9923;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(77),:host.growlTopRight:nth-last-of-type(77){top:1925px;transform:scale(.96);z-index:9922;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(78),:host.growlTopRight:nth-last-of-type(78){top:1950px;transform:scale(.96);z-index:9921;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(79),:host.growlTopRight:nth-last-of-type(79){top:1975px;transform:scale(.96);z-index:9920;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(80),:host.growlTopRight:nth-last-of-type(80){top:2000px;transform:scale(.96);z-index:9919;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(81),:host.growlTopRight:nth-last-of-type(81){top:2025px;transform:scale(.96);z-index:9918;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(82),:host.growlTopRight:nth-last-of-type(82){top:2050px;transform:scale(.96);z-index:9917;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(83),:host.growlTopRight:nth-last-of-type(83){top:2075px;transform:scale(.96);z-index:9916;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(84),:host.growlTopRight:nth-last-of-type(84){top:2100px;transform:scale(.96);z-index:9915;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(85),:host.growlTopRight:nth-last-of-type(85){top:2125px;transform:scale(.96);z-index:9914;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(86),:host.growlTopRight:nth-last-of-type(86){top:2150px;transform:scale(.96);z-index:9913;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(87),:host.growlTopRight:nth-last-of-type(87){top:2175px;transform:scale(.96);z-index:9912;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(88),:host.growlTopRight:nth-last-of-type(88){top:2200px;transform:scale(.96);z-index:9911;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(89),:host.growlTopRight:nth-last-of-type(89){top:2225px;transform:scale(.96);z-index:9910;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(90),:host.growlTopRight:nth-last-of-type(90){top:2250px;transform:scale(.96);z-index:9909;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(91),:host.growlTopRight:nth-last-of-type(91){top:2275px;transform:scale(.96);z-index:9908;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(92),:host.growlTopRight:nth-last-of-type(92){top:2300px;transform:scale(.96);z-index:9907;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(93),:host.growlTopRight:nth-last-of-type(93){top:2325px;transform:scale(.96);z-index:9906;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(94),:host.growlTopRight:nth-last-of-type(94){top:2350px;transform:scale(.96);z-index:9905;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(95),:host.growlTopRight:nth-last-of-type(95){top:2375px;transform:scale(.96);z-index:9904;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(96),:host.growlTopRight:nth-last-of-type(96){top:2400px;transform:scale(.96);z-index:9903;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(97),:host.growlTopRight:nth-last-of-type(97){top:2425px;transform:scale(.96);z-index:9902;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(98),:host.growlTopRight:nth-last-of-type(98){top:2450px;transform:scale(.96);z-index:9901;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(99),:host.growlTopRight:nth-last-of-type(99){top:2475px;transform:scale(.96);z-index:9900;filter:brightness(.8571428571)}:host.growlTopLeft:nth-last-of-type(100),:host.growlTopRight:nth-last-of-type(100){top:2500px;transform:scale(.96);z-index:9899;filter:brightness(.8571428571)}:host.growlBottomLeft,:host.growlBottomRight{bottom:1rem}:host.growlBottomLeft:nth-last-of-type(2),:host.growlBottomRight:nth-last-of-type(2){bottom:50px;transform:scale(.96);z-index:9997;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(3),:host.growlBottomRight:nth-last-of-type(3){bottom:75px;transform:scale(.96);z-index:9996;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(4),:host.growlBottomRight:nth-last-of-type(4){bottom:100px;transform:scale(.96);z-index:9995;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(5),:host.growlBottomRight:nth-last-of-type(5){bottom:125px;transform:scale(.96);z-index:9994;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(6),:host.growlBottomRight:nth-last-of-type(6){bottom:150px;transform:scale(.96);z-index:9993;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(7),:host.growlBottomRight:nth-last-of-type(7){bottom:175px;transform:scale(.96);z-index:9992;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(8),:host.growlBottomRight:nth-last-of-type(8){bottom:200px;transform:scale(.96);z-index:9991;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(9),:host.growlBottomRight:nth-last-of-type(9){bottom:225px;transform:scale(.96);z-index:9990;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(10),:host.growlBottomRight:nth-last-of-type(10){bottom:250px;transform:scale(.96);z-index:9989;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(11),:host.growlBottomRight:nth-last-of-type(11){bottom:275px;transform:scale(.96);z-index:9988;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(12),:host.growlBottomRight:nth-last-of-type(12){bottom:300px;transform:scale(.96);z-index:9987;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(13),:host.growlBottomRight:nth-last-of-type(13){bottom:325px;transform:scale(.96);z-index:9986;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(14),:host.growlBottomRight:nth-last-of-type(14){bottom:350px;transform:scale(.96);z-index:9985;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(15),:host.growlBottomRight:nth-last-of-type(15){bottom:375px;transform:scale(.96);z-index:9984;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(16),:host.growlBottomRight:nth-last-of-type(16){bottom:400px;transform:scale(.96);z-index:9983;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(17),:host.growlBottomRight:nth-last-of-type(17){bottom:425px;transform:scale(.96);z-index:9982;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(18),:host.growlBottomRight:nth-last-of-type(18){bottom:450px;transform:scale(.96);z-index:9981;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(19),:host.growlBottomRight:nth-last-of-type(19){bottom:475px;transform:scale(.96);z-index:9980;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(20),:host.growlBottomRight:nth-last-of-type(20){bottom:500px;transform:scale(.96);z-index:9979;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(21),:host.growlBottomRight:nth-last-of-type(21){bottom:525px;transform:scale(.96);z-index:9978;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(22),:host.growlBottomRight:nth-last-of-type(22){bottom:550px;transform:scale(.96);z-index:9977;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(23),:host.growlBottomRight:nth-last-of-type(23){bottom:575px;transform:scale(.96);z-index:9976;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(24),:host.growlBottomRight:nth-last-of-type(24){bottom:600px;transform:scale(.96);z-index:9975;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(25),:host.growlBottomRight:nth-last-of-type(25){bottom:625px;transform:scale(.96);z-index:9974;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(26),:host.growlBottomRight:nth-last-of-type(26){bottom:650px;transform:scale(.96);z-index:9973;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(27),:host.growlBottomRight:nth-last-of-type(27){bottom:675px;transform:scale(.96);z-index:9972;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(28),:host.growlBottomRight:nth-last-of-type(28){bottom:700px;transform:scale(.96);z-index:9971;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(29),:host.growlBottomRight:nth-last-of-type(29){bottom:725px;transform:scale(.96);z-index:9970;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(30),:host.growlBottomRight:nth-last-of-type(30){bottom:750px;transform:scale(.96);z-index:9969;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(31),:host.growlBottomRight:nth-last-of-type(31){bottom:775px;transform:scale(.96);z-index:9968;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(32),:host.growlBottomRight:nth-last-of-type(32){bottom:800px;transform:scale(.96);z-index:9967;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(33),:host.growlBottomRight:nth-last-of-type(33){bottom:825px;transform:scale(.96);z-index:9966;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(34),:host.growlBottomRight:nth-last-of-type(34){bottom:850px;transform:scale(.96);z-index:9965;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(35),:host.growlBottomRight:nth-last-of-type(35){bottom:875px;transform:scale(.96);z-index:9964;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(36),:host.growlBottomRight:nth-last-of-type(36){bottom:900px;transform:scale(.96);z-index:9963;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(37),:host.growlBottomRight:nth-last-of-type(37){bottom:925px;transform:scale(.96);z-index:9962;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(38),:host.growlBottomRight:nth-last-of-type(38){bottom:950px;transform:scale(.96);z-index:9961;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(39),:host.growlBottomRight:nth-last-of-type(39){bottom:975px;transform:scale(.96);z-index:9960;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(40),:host.growlBottomRight:nth-last-of-type(40){bottom:1000px;transform:scale(.96);z-index:9959;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(41),:host.growlBottomRight:nth-last-of-type(41){bottom:1025px;transform:scale(.96);z-index:9958;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(42),:host.growlBottomRight:nth-last-of-type(42){bottom:1050px;transform:scale(.96);z-index:9957;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(43),:host.growlBottomRight:nth-last-of-type(43){bottom:1075px;transform:scale(.96);z-index:9956;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(44),:host.growlBottomRight:nth-last-of-type(44){bottom:1100px;transform:scale(.96);z-index:9955;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(45),:host.growlBottomRight:nth-last-of-type(45){bottom:1125px;transform:scale(.96);z-index:9954;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(46),:host.growlBottomRight:nth-last-of-type(46){bottom:1150px;transform:scale(.96);z-index:9953;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(47),:host.growlBottomRight:nth-last-of-type(47){bottom:1175px;transform:scale(.96);z-index:9952;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(48),:host.growlBottomRight:nth-last-of-type(48){bottom:1200px;transform:scale(.96);z-index:9951;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(49),:host.growlBottomRight:nth-last-of-type(49){bottom:1225px;transform:scale(.96);z-index:9950;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(50),:host.growlBottomRight:nth-last-of-type(50){bottom:1250px;transform:scale(.96);z-index:9949;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(51),:host.growlBottomRight:nth-last-of-type(51){bottom:1275px;transform:scale(.96);z-index:9948;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(52),:host.growlBottomRight:nth-last-of-type(52){bottom:1300px;transform:scale(.96);z-index:9947;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(53),:host.growlBottomRight:nth-last-of-type(53){bottom:1325px;transform:scale(.96);z-index:9946;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(54),:host.growlBottomRight:nth-last-of-type(54){bottom:1350px;transform:scale(.96);z-index:9945;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(55),:host.growlBottomRight:nth-last-of-type(55){bottom:1375px;transform:scale(.96);z-index:9944;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(56),:host.growlBottomRight:nth-last-of-type(56){bottom:1400px;transform:scale(.96);z-index:9943;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(57),:host.growlBottomRight:nth-last-of-type(57){bottom:1425px;transform:scale(.96);z-index:9942;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(58),:host.growlBottomRight:nth-last-of-type(58){bottom:1450px;transform:scale(.96);z-index:9941;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(59),:host.growlBottomRight:nth-last-of-type(59){bottom:1475px;transform:scale(.96);z-index:9940;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(60),:host.growlBottomRight:nth-last-of-type(60){bottom:1500px;transform:scale(.96);z-index:9939;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(61),:host.growlBottomRight:nth-last-of-type(61){bottom:1525px;transform:scale(.96);z-index:9938;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(62),:host.growlBottomRight:nth-last-of-type(62){bottom:1550px;transform:scale(.96);z-index:9937;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(63),:host.growlBottomRight:nth-last-of-type(63){bottom:1575px;transform:scale(.96);z-index:9936;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(64),:host.growlBottomRight:nth-last-of-type(64){bottom:1600px;transform:scale(.96);z-index:9935;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(65),:host.growlBottomRight:nth-last-of-type(65){bottom:1625px;transform:scale(.96);z-index:9934;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(66),:host.growlBottomRight:nth-last-of-type(66){bottom:1650px;transform:scale(.96);z-index:9933;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(67),:host.growlBottomRight:nth-last-of-type(67){bottom:1675px;transform:scale(.96);z-index:9932;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(68),:host.growlBottomRight:nth-last-of-type(68){bottom:1700px;transform:scale(.96);z-index:9931;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(69),:host.growlBottomRight:nth-last-of-type(69){bottom:1725px;transform:scale(.96);z-index:9930;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(70),:host.growlBottomRight:nth-last-of-type(70){bottom:1750px;transform:scale(.96);z-index:9929;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(71),:host.growlBottomRight:nth-last-of-type(71){bottom:1775px;transform:scale(.96);z-index:9928;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(72),:host.growlBottomRight:nth-last-of-type(72){bottom:1800px;transform:scale(.96);z-index:9927;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(73),:host.growlBottomRight:nth-last-of-type(73){bottom:1825px;transform:scale(.96);z-index:9926;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(74),:host.growlBottomRight:nth-last-of-type(74){bottom:1850px;transform:scale(.96);z-index:9925;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(75),:host.growlBottomRight:nth-last-of-type(75){bottom:1875px;transform:scale(.96);z-index:9924;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(76),:host.growlBottomRight:nth-last-of-type(76){bottom:1900px;transform:scale(.96);z-index:9923;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(77),:host.growlBottomRight:nth-last-of-type(77){bottom:1925px;transform:scale(.96);z-index:9922;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(78),:host.growlBottomRight:nth-last-of-type(78){bottom:1950px;transform:scale(.96);z-index:9921;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(79),:host.growlBottomRight:nth-last-of-type(79){bottom:1975px;transform:scale(.96);z-index:9920;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(80),:host.growlBottomRight:nth-last-of-type(80){bottom:2000px;transform:scale(.96);z-index:9919;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(81),:host.growlBottomRight:nth-last-of-type(81){bottom:2025px;transform:scale(.96);z-index:9918;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(82),:host.growlBottomRight:nth-last-of-type(82){bottom:2050px;transform:scale(.96);z-index:9917;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(83),:host.growlBottomRight:nth-last-of-type(83){bottom:2075px;transform:scale(.96);z-index:9916;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(84),:host.growlBottomRight:nth-last-of-type(84){bottom:2100px;transform:scale(.96);z-index:9915;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(85),:host.growlBottomRight:nth-last-of-type(85){bottom:2125px;transform:scale(.96);z-index:9914;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(86),:host.growlBottomRight:nth-last-of-type(86){bottom:2150px;transform:scale(.96);z-index:9913;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(87),:host.growlBottomRight:nth-last-of-type(87){bottom:2175px;transform:scale(.96);z-index:9912;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(88),:host.growlBottomRight:nth-last-of-type(88){bottom:2200px;transform:scale(.96);z-index:9911;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(89),:host.growlBottomRight:nth-last-of-type(89){bottom:2225px;transform:scale(.96);z-index:9910;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(90),:host.growlBottomRight:nth-last-of-type(90){bottom:2250px;transform:scale(.96);z-index:9909;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(91),:host.growlBottomRight:nth-last-of-type(91){bottom:2275px;transform:scale(.96);z-index:9908;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(92),:host.growlBottomRight:nth-last-of-type(92){bottom:2300px;transform:scale(.96);z-index:9907;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(93),:host.growlBottomRight:nth-last-of-type(93){bottom:2325px;transform:scale(.96);z-index:9906;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(94),:host.growlBottomRight:nth-last-of-type(94){bottom:2350px;transform:scale(.96);z-index:9905;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(95),:host.growlBottomRight:nth-last-of-type(95){bottom:2375px;transform:scale(.96);z-index:9904;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(96),:host.growlBottomRight:nth-last-of-type(96){bottom:2400px;transform:scale(.96);z-index:9903;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(97),:host.growlBottomRight:nth-last-of-type(97){bottom:2425px;transform:scale(.96);z-index:9902;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(98),:host.growlBottomRight:nth-last-of-type(98){bottom:2450px;transform:scale(.96);z-index:9901;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(99),:host.growlBottomRight:nth-last-of-type(99){bottom:2475px;transform:scale(.96);z-index:9900;filter:brightness(.8571428571)}:host.growlBottomLeft:nth-last-of-type(100),:host.growlBottomRight:nth-last-of-type(100){bottom:2500px;transform:scale(.96);z-index:9899;filter:brightness(.8571428571)}:host.growlBottomLeft:last-of-type,:host.growlBottomRight:last-of-type,:host.growlTopLeft:last-of-type,:host.growlTopRight:last-of-type{box-shadow:0 1px 3px #00000080}:host.growlBottomRight,:host.growlTopRight{right:-100%;left:auto;width:calc(100% - 30px);transition:all .5s cubic-bezier(.35,0,.25,1)}:host.growlBottomRight.animate,:host.growlTopRight.animate{right:1rem}:host:not(.launched){-webkit-animation:embedded-slide-in .2s ease-in-out;animation:embedded-slide-in .2s ease-in-out}:host.dialogue .toast-content{display:flex;flex-direction:row!important;align-items:center}:host.dialogue p.message-only{flex:3 0 0}:host.dialogue .dialogue{display:inherit}:host.black{color:#fff;background:#000000}:host.novo-accent-black{border:1px solid #000000;background:#e6e6e6;color:#3d464d}:host.white{color:#3d464d;background:#ffffff}:host.novo-accent-white{border:1px solid #ffffff;background:#e6e6e6;color:#3d464d}:host.gray{color:#3d464d;background:#9e9e9e}:host.novo-accent-gray{border:1px solid #9e9e9e;background:#e6e6e6;color:#3d464d}:host.grey{color:#3d464d;background:#9e9e9e}:host.novo-accent-grey{border:1px solid #9e9e9e;background:#e6e6e6;color:#3d464d}:host.offWhite{color:#3d464d;background:#f7f7f7}:host.novo-accent-offWhite{border:1px solid #f7f7f7;background:#e6e6e6;color:#3d464d}:host.bright{color:#3d464d;background:#f7f7f7}:host.novo-accent-bright{border:1px solid #f7f7f7;background:#e6e6e6;color:#3d464d}:host.light{color:#3d464d;background:#dbdbdb}:host.novo-accent-light{border:1px solid #dbdbdb;background:#e6e6e6;color:#3d464d}:host.neutral{color:#fff;background:#4f5361}:host.novo-accent-neutral{border:1px solid #4f5361;background:#e3e4e8;color:#3d464d}:host.dark{color:#fff;background:#3d464d}:host.novo-accent-dark{border:1px solid #3d464d;background:#e3e6e8;color:#3d464d}:host.orange{color:#3d464d;background:#ff6900}:host.novo-accent-orange{border:1px solid #ff6900;background:#ffe1cc;color:#3d464d}:host.navigation{color:#fff;background:#202945}:host.novo-accent-navigation{border:1px solid #202945;background:#dce1ef;color:#3d464d}:host.skyBlue{color:#fff;background:#009bdf}:host.novo-accent-skyBlue{border:1px solid #009bdf;background:#ccefff;color:#3d464d}:host.steel{color:#fff;background:#5b6770}:host.novo-accent-steel{border:1px solid #5b6770;background:#e3e6e8;color:#3d464d}:host.metal{color:#fff;background:#637893}:host.novo-accent-metal{border:1px solid #637893;background:#e1e5ea;color:#3d464d}:host.sand{color:#3d464d;background:#f4f4f4}:host.novo-accent-sand{border:1px solid #f4f4f4;background:#e6e6e6;color:#3d464d}:host.silver{color:#3d464d;background:#e2e2e2}:host.novo-accent-silver{border:1px solid #e2e2e2;background:#e6e6e6;color:#3d464d}:host.stone{color:#3d464d;background:#bebebe}:host.novo-accent-stone{border:1px solid #bebebe;background:#e6e6e6;color:#3d464d}:host.ash{color:#3d464d;background:#a0a0a0}:host.novo-accent-ash{border:1px solid #a0a0a0;background:#e6e6e6;color:#3d464d}:host.slate{color:#fff;background:#707070}:host.novo-accent-slate{border:1px solid #707070;background:#e6e6e6;color:#3d464d}:host.onyx{color:#fff;background:#526980}:host.novo-accent-onyx{border:1px solid #526980;background:#e0e6eb;color:#3d464d}:host.charcoal{color:#fff;background:#282828}:host.novo-accent-charcoal{border:1px solid #282828;background:#e6e6e6;color:#3d464d}:host.moonlight{color:#fff;background:#1a242f}:host.novo-accent-moonlight{border:1px solid #1a242f;background:#dee5ed;color:#3d464d}:host.midnight{color:#fff;background:#202945}:host.novo-accent-midnight{border:1px solid #202945;background:#dce1ef;color:#3d464d}:host.darkness{color:#fff;background:#161f27}:host.novo-accent-darkness{border:1px solid #161f27;background:#dee6ed;color:#3d464d}:host.navy{color:#fff;background:#0d2d42}:host.novo-accent-navy{border:1px solid #0d2d42;background:#d4e9f7;color:#3d464d}:host.aqua{color:#3d464d;background:#3bafda}:host.novo-accent-aqua{border:1px solid #3bafda;background:#d4edf7;color:#3d464d}:host.ocean{color:#fff;background:#4a89dc}:host.novo-accent-ocean{border:1px solid #4a89dc;background:#d4e3f7;color:#3d464d}:host.mint{color:#3d464d;background:#37bc9b}:host.novo-accent-mint{border:1px solid #37bc9b;background:#d8f3ed;color:#3d464d}:host.grass{color:#fff;background:#8cc152}:host.novo-accent-grass{border:1px solid #8cc152;background:#e6f2d9;color:#3d464d}:host.sunflower{color:#fff;background:#f6b042}:host.novo-accent-sunflower{border:1px solid #f6b042;background:#fdebce;color:#3d464d}:host.bittersweet{color:#fff;background:#eb6845}:host.novo-accent-bittersweet{border:1px solid #eb6845;background:#fadad1;color:#3d464d}:host.grapefruit{color:#fff;background:#da4453}:host.novo-accent-grapefruit{border:1px solid #da4453;background:#f7d4d8;color:#3d464d}:host.carnation{color:#fff;background:#d770ad}:host.novo-accent-carnation{border:1px solid #d770ad;background:#f4d7e8;color:#3d464d}:host.lavender{color:#fff;background:#967adc}:host.novo-accent-lavender{border:1px solid #967adc;background:#dfd7f4;color:#3d464d}:host.mountain{color:#fff;background:#9678b6}:host.novo-accent-mountain{border:1px solid #9678b6;background:#e5deed;color:#3d464d}:host.info{color:#fff;background:#4a89dc}:host.novo-accent-info{border:1px solid #4a89dc;background:#d4e3f7;color:#3d464d}:host.positive{color:#fff;background:#4a89dc}:host.novo-accent-positive{border:1px solid #4a89dc;background:#d4e3f7;color:#3d464d}:host.success{color:#fff;background:#8cc152}:host.novo-accent-success{border:1px solid #8cc152;background:#e6f2d9;color:#3d464d}:host.negative{color:#fff;background:#da4453}:host.novo-accent-negative{border:1px solid #da4453;background:#f7d4d8;color:#3d464d}:host.danger{color:#fff;background:#da4453}:host.novo-accent-danger{border:1px solid #da4453;background:#f7d4d8;color:#3d464d}:host.error{color:#fff;background:#da4453}:host.novo-accent-error{border:1px solid #da4453;background:#f7d4d8;color:#3d464d}:host.warning{color:#fff;background:#f6b042}:host.novo-accent-warning{border:1px solid #f6b042;background:#fdebce;color:#3d464d}:host.empty{color:#3d464d;background:#cccdcc}:host.novo-accent-empty{border:1px solid #cccdcc;background:#e5e6e5;color:#3d464d}:host.disabled{color:#3d464d;background:#bebebe}:host.novo-accent-disabled{border:1px solid #bebebe;background:#e6e6e6;color:#3d464d}:host.background{color:#3d464d;background:#f7f7f7}:host.novo-accent-background{border:1px solid #f7f7f7;background:#e6e6e6;color:#3d464d}:host.backgroundDark{color:#3d464d;background:#e2e2e2}:host.novo-accent-backgroundDark{border:1px solid #e2e2e2;background:#e6e6e6;color:#3d464d}:host.presentation{color:#fff;background:#5b6770}:host.novo-accent-presentation{border:1px solid #5b6770;background:#e3e6e8;color:#3d464d}:host.bullhorn{color:#3d464d;background:#ff6900}:host.novo-accent-bullhorn{border:1px solid #ff6900;background:#ffe1cc;color:#3d464d}:host.pulse{color:#3d464d;background:#3bafda}:host.novo-accent-pulse{border:1px solid #3bafda;background:#d4edf7;color:#3d464d}:host.company{color:#fff;background:#3399dd}:host.novo-accent-company{border:1px solid #3399dd;background:#d3e9f8;color:#3d464d}:host.candidate{color:#fff;background:#44bb77}:host.novo-accent-candidate{border:1px solid #44bb77;background:#daf1e4;color:#3d464d}:host.lead{color:#fff;background:#aa6699}:host.novo-accent-lead{border:1px solid #aa6699;background:#eddee9;color:#3d464d}:host.contact{color:#fff;background:#ffaa44}:host.novo-accent-contact{border:1px solid #ffaa44;background:#ffe8cc;color:#3d464d}:host.clientcontact{color:#fff;background:#ffaa44}:host.novo-accent-clientcontact{border:1px solid #ffaa44;background:#ffe8cc;color:#3d464d}:host.opportunity{color:#fff;background:#662255}:host.novo-accent-opportunity{border:1px solid #662255;background:#f2d9ec;color:#3d464d}:host.job{color:#fff;background:#bb5566}:host.novo-accent-job{border:1px solid #bb5566;background:#f0dbde;color:#3d464d}:host.joborder{color:#fff;background:#bb5566}:host.novo-accent-joborder{border:1px solid #bb5566;background:#f0dbde;color:#3d464d}:host.submission{color:#3d464d;background:#a9adbb}:host.novo-accent-submission{border:1px solid #a9adbb;background:#e3e4e8;color:#3d464d}:host.sendout{color:#fff;background:#747884}:host.novo-accent-sendout{border:1px solid #747884;background:#e4e5e7;color:#3d464d}:host.placement{color:#fff;background:#0b344f}:host.novo-accent-placement{border:1px solid #0b344f;background:#d2e9f9;color:#3d464d}:host.note{color:#fff;background:#747884}:host.novo-accent-note{border:1px solid #747884;background:#e4e5e7;color:#3d464d}:host.contract{color:#fff;background:#454ea0}:host.novo-accent-contract{border:1px solid #454ea0;background:#dbddf0;color:#3d464d}:host.jobCode{color:#fff;background:#696d79}:host.novo-accent-jobCode{border:1px solid #696d79;background:#e4e5e7;color:#3d464d}:host.earnCode{color:#fff;background:#696d79}:host.novo-accent-earnCode{border:1px solid #696d79;background:#e4e5e7;color:#3d464d}:host.invoiceStatement{color:#fff;background:#696d79}:host.novo-accent-invoiceStatement{border:1px solid #696d79;background:#e4e5e7;color:#3d464d}:host.billableCharge{color:#fff;background:#696d79}:host.novo-accent-billableCharge{border:1px solid #696d79;background:#e4e5e7;color:#3d464d}:host.payableCharge{color:#fff;background:#696d79}:host.novo-accent-payableCharge{border:1px solid #696d79;background:#e4e5e7;color:#3d464d}:host.user{color:#fff;background:#696d79}:host.novo-accent-user{border:1px solid #696d79;background:#e4e5e7;color:#3d464d}:host.corporateUser{color:#fff;background:#696d79}:host.novo-accent-corporateUser{border:1px solid #696d79;background:#e4e5e7;color:#3d464d}:host.distributionList{color:#fff;background:#696d79}:host.novo-accent-distributionList{border:1px solid #696d79;background:#e4e5e7;color:#3d464d}:host.credential{color:#fff;background:#696d79}:host.novo-accent-credential{border:1px solid #696d79;background:#e4e5e7;color:#3d464d}:host.person{color:#fff;background:#696d79}:host.novo-accent-person{border:1px solid #696d79;background:#e4e5e7;color:#3d464d}@-webkit-keyframes embedded-slide-in{0%{transform:translateY(-100%);opacity:0}to{transform:translateY(0);opacity:1}}@keyframes embedded-slide-in{0%{transform:translateY(-100%);opacity:0}to{transform:translateY(0);opacity:1}}@media screen and (min-width: 350px){:host[class*=growl]{min-width:350px}:host.growlBottomLeft,:host.growlTopLeft{left:-100%;right:auto;transition:all .5s cubic-bezier(.35,0,.25,1)}:host.growlBottomLeft.animate,:host.growlTopLeft.animate{left:1rem}:host.growlBottomRight,:host.growlTopRight{right:-100%;left:auto;transition:all .5s cubic-bezier(.35,0,.25,1)}:host.growlBottomRight.animate,:host.growlTopRight.animate{right:1rem}}\n"] }]
142
138
  }], ctorParameters: function () { return [{ type: i1.DomSanitizer }]; }, propDecorators: { appearance: [{
143
139
  type: Input
144
140
  }], theme: [{
@@ -1 +1 @@
1
- {"version":3,"file":"novo-elements-elements-toast.mjs","sources":["../../../projects/novo-elements/src/elements/toast/Toast.ts","../../../projects/novo-elements/src/elements/toast/Toast.module.ts","../../../projects/novo-elements/src/elements/toast/ToastService.ts","../../../projects/novo-elements/src/elements/toast/novo-elements-elements-toast.ts"],"sourcesContent":["// NG2\nimport { Component, EventEmitter, Input, OnChanges, OnInit, Output, SimpleChanges } from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\nimport { Deferred, DeferredPromise } from 'novo-elements/utils';\n\n@Component({\n selector: 'novo-toast',\n host: {\n '[class]': 'alertTheme',\n '[class.growl]': 'appearance == \"growl\"',\n '[class.banner]': 'appearance == \"banner\"',\n '[class.show]': 'show',\n '[class.animate]': 'animate',\n '[class.embedded]': 'embedded',\n '[attr.theme]': 'theme',\n '(click)': '!isCloseable && clickHandler($event)',\n },\n template: `\n <div class=\"toast-icon\">\n <i [ngClass]=\"iconClass\"></i>\n </div>\n <div class=\"toast-content\">\n <h5 *ngIf=\"title\">{{ title }}</h5>\n <p *ngIf=\"_message\" [class.message-only]=\"!title\" [innerHtml]=\"_message\"></p>\n <div *ngIf=\"link\" class=\"link-generated\">\n <input type=\"text\" [value]=\"link\" onfocus=\"this.select();\" />\n </div>\n <div class=\"dialogue\">\n <ng-content></ng-content>\n </div>\n <div *ngIf=\"action\" class=\"action\">\n <button theme=\"dialogue\" color=\"white\" (click)=\"actionHandler($event)\">{{ action }}</button>\n </div>\n </div>\n <div class=\"close-icon\" *ngIf=\"isCloseable\" (click)=\"close($event)\">\n <i class=\"bhi-times\"></i>\n </div>\n `,\n})\nexport class NovoToastElement implements OnInit, OnChanges {\n @Input()\n appearance: 'growl' | 'banner' = 'banner';\n @Input()\n theme: string = 'danger';\n @Input()\n icon: string = 'caution';\n @Input()\n title: string;\n @Input()\n action: string;\n @Input()\n hasDialogue: boolean = false;\n @Input()\n link: string;\n @Input()\n isCloseable: boolean = false;\n @Input()\n set message(m: string) {\n this._message = this.sanitizer.bypassSecurityTrustHtml(m);\n }\n @Output()\n closed: EventEmitter<any> = new EventEmitter();\n\n _message: SafeHtml;\n show: boolean = false;\n animate: boolean = false;\n parent: any = null;\n launched: boolean = false;\n position: any;\n time: any;\n iconClass: string;\n alertTheme: string;\n embedded: any;\n onActionPromise: DeferredPromise = Deferred();\n\n constructor(private sanitizer: DomSanitizer) {}\n\n ngOnInit() {\n if (!this.launched) {\n // clear position and time\n this.position = null;\n this.time = null;\n\n // set icon and styling\n this.iconClass = `bhi-${this.icon}`;\n this.alertTheme = `${this.theme} toast-container embedded`;\n if (this.hasDialogue) {\n this.alertTheme += ' dialogue';\n }\n }\n }\n\n ngOnChanges(changes?: SimpleChanges) {\n // set icon and styling\n this.iconClass = `bhi-${this.icon}`;\n this.alertTheme = `${this.theme} toast-container embedded`;\n if (this.hasDialogue) {\n this.alertTheme += ' dialogue';\n }\n }\n\n clickHandler(event) {\n if (!this.isCloseable) {\n if (event) {\n event.stopPropagation();\n event.preventDefault();\n }\n if (this.parent) {\n this.parent.hide(this);\n } else {\n this.closed.emit({ closed: true });\n }\n }\n }\n\n close(event) {\n if (event) {\n event.stopPropagation();\n event.preventDefault();\n }\n if (this.parent) {\n this.parent.hide(this);\n } else {\n this.closed.emit({ closed: true });\n }\n }\n\n actionHandler(event) {\n this.onActionPromise.resolve(event);\n }\n\n onAction(fn: () => void) {\n return this.onActionPromise.then(fn);\n }\n}\n","// NG2\nimport { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { NovoButtonModule } from 'novo-elements/elements/button';\n// APP\nimport { NovoToastElement } from './Toast';\n\n@NgModule({\n imports: [CommonModule, NovoButtonModule],\n declarations: [NovoToastElement],\n exports: [NovoToastElement],\n})\nexport class NovoToastModule {}\n","// NG2\nimport { Injectable } from '@angular/core';\nimport { ComponentUtils } from 'novo-elements/services';\n// APP\nimport { NovoToastElement } from './Toast';\n\nexport type ToastThemes = 'default' | 'success' | 'info' | 'warning' | 'danger' | 'positive' | string;\nexport type ToastIcons = 'bell' | 'check' | 'info' | 'warning' | 'remove' | 'caution' | 'times' | 'coffee' | 'danger' | string;\nexport type ToastPositions = 'fixedTop' | 'fixedBottom' | 'growlTopRight' | 'growlTopLeft' | 'growlBottomRight' | 'growlBottomLeft';\n\nexport interface ToastOptions {\n title?: string;\n message?: string;\n action?: string;\n icon?: ToastIcons;\n theme?: ToastThemes;\n accent?: ToastThemes;\n hideDelay?: number;\n position?: ToastPositions;\n isCloseable?: boolean;\n customClass?: string;\n}\n\n@Injectable()\nexport class NovoToastService {\n _parentViewContainer: any;\n references: Array<any> = [];\n icons = { default: 'bell', success: 'check', info: 'info', warning: 'warning', danger: 'remove' };\n defaults = { hideDelay: 3500, position: 'growlTopRight', theme: 'default' };\n\n constructor(private componentUtils: ComponentUtils) {}\n\n set parentViewContainer(view) {\n this._parentViewContainer = view;\n }\n\n alert(options: ToastOptions, toastElement: any = NovoToastElement): Promise<any> {\n return new Promise((resolve) => {\n if (!this._parentViewContainer) {\n console.error(\n 'No parent view container specified for the ToastService. Set it inside your main application. \\nthis.toastService.parentViewContainer = view (ViewContainerRef)',\n );\n return;\n }\n const toast = this.componentUtils.append(toastElement, this._parentViewContainer);\n this.references.push(toast);\n this.handleAlert(toast.instance, options);\n resolve(toast.instance);\n });\n }\n\n isVisible(toast) {\n return toast.show;\n }\n\n hide(toast) {\n toast.animate = false;\n setTimeout(() => {\n toast.show = false;\n const REF = this.references.filter((x) => x.instance === toast)[0];\n if (REF) {\n this.references.splice(this.references.indexOf(REF), 1);\n REF.destroy();\n }\n }, 300);\n }\n\n handleAlert(toast, options) {\n this.setToastOnSession(toast, options);\n setTimeout(() => {\n this.show(toast);\n }, 20);\n if (!toast.isCloseable) {\n this.toastTimer(toast);\n }\n }\n\n setToastOnSession(toast, opts) {\n const OPTIONS = typeof opts === 'object' ? opts : {};\n\n toast.parent = this;\n toast.title = OPTIONS.title || '';\n toast.message = OPTIONS.message || '';\n toast.action = OPTIONS.action || null;\n toast.hideDelay = OPTIONS.hideDelay || this.defaults.hideDelay;\n toast.link = OPTIONS.link || '';\n toast.isCloseable = OPTIONS.isCloseable || false;\n\n const CUSTOM_CLASS = OPTIONS.customClass || '';\n const ALERT_STYLE = OPTIONS.accent ? `novo-accent-${OPTIONS.accent}` : OPTIONS.theme || this.defaults.theme;\n const ALERT_POSITION = OPTIONS.position || this.defaults.position;\n const ALERT_ICON = OPTIONS.icon || this.icons.default;\n\n toast.iconClass = `bhi-${ALERT_ICON}`;\n toast.launched = true;\n toast.alertTheme = `${ALERT_STYLE} ${ALERT_POSITION} ${CUSTOM_CLASS} toast-container launched`;\n }\n\n show(toast) {\n toast.show = true;\n setTimeout(addClass, 25);\n /**\n * Adds animate class to be called after a timeout\n **/\n function addClass() {\n toast.animate = true;\n }\n }\n\n toastTimer(toast) {\n if (toast.hideDelay < 0) {\n return;\n }\n setTimeout(() => {\n this.hide(toast);\n }, toast.hideDelay);\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1"],"mappings":"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"}
1
+ {"version":3,"file":"novo-elements-elements-toast.mjs","sources":["../../../projects/novo-elements/src/elements/toast/Toast.ts","../../../projects/novo-elements/src/elements/toast/Toast.module.ts","../../../projects/novo-elements/src/elements/toast/ToastService.ts","../../../projects/novo-elements/src/elements/toast/novo-elements-elements-toast.ts"],"sourcesContent":["// NG2\nimport { Component, EventEmitter, Input, OnChanges, OnInit, Output, SimpleChanges } from '@angular/core';\nimport { DomSanitizer, SafeHtml } from '@angular/platform-browser';\nimport { Deferred, DeferredPromise } from 'novo-elements/utils';\n\n@Component({\n selector: 'novo-toast',\n host: {\n '[class]': 'alertTheme',\n '[class.growl]': 'appearance == \"growl\"',\n '[class.banner]': 'appearance == \"banner\"',\n '[class.show]': 'show',\n '[class.animate]': 'animate',\n '[class.embedded]': 'embedded',\n '[attr.theme]': 'theme',\n '(click)': '!isCloseable && clickHandler($event)',\n },\n template: `\n <div class=\"toast-icon\">\n <i [ngClass]=\"iconClass\"></i>\n </div>\n <div class=\"toast-content\">\n <h5 *ngIf=\"title\">{{ title }}</h5>\n <p *ngIf=\"_message\" [class.message-only]=\"!title\" [innerHtml]=\"_message\"></p>\n <div *ngIf=\"link\" class=\"link-generated\">\n <input type=\"text\" [value]=\"link\" onfocus=\"this.select();\" />\n </div>\n <div class=\"dialogue\">\n <ng-content></ng-content>\n </div>\n <div *ngIf=\"action\" class=\"action\">\n <button theme=\"dialogue\" color=\"white\" (click)=\"actionHandler($event)\">{{ action }}</button>\n </div>\n </div>\n <div class=\"close-icon\" *ngIf=\"isCloseable\" (click)=\"close($event)\">\n <i class=\"bhi-times\"></i>\n </div>\n `,\n styleUrls: ['./Toast.scss'],\n})\nexport class NovoToastElement implements OnInit, OnChanges {\n @Input()\n appearance: 'growl' | 'banner' = 'banner';\n @Input()\n theme: string = 'danger';\n @Input()\n icon: string = 'caution';\n @Input()\n title: string;\n @Input()\n action: string;\n @Input()\n hasDialogue: boolean = false;\n @Input()\n link: string;\n @Input()\n isCloseable: boolean = false;\n @Input()\n set message(m: string) {\n this._message = this.sanitizer.bypassSecurityTrustHtml(m);\n }\n @Output()\n closed: EventEmitter<any> = new EventEmitter();\n\n _message: SafeHtml;\n show: boolean = false;\n animate: boolean = false;\n parent: any = null;\n launched: boolean = false;\n position: any;\n time: any;\n iconClass: string;\n alertTheme: string;\n embedded: any;\n onActionPromise: DeferredPromise = Deferred();\n\n constructor(private sanitizer: DomSanitizer) {}\n\n ngOnInit() {\n if (!this.launched) {\n // clear position and time\n this.position = null;\n this.time = null;\n\n // set icon and styling\n this.iconClass = `bhi-${this.icon}`;\n this.alertTheme = `${this.theme} toast-container embedded`;\n if (this.hasDialogue) {\n this.alertTheme += ' dialogue';\n }\n }\n }\n\n ngOnChanges(changes?: SimpleChanges) {\n // set icon and styling\n this.iconClass = `bhi-${this.icon}`;\n this.alertTheme = `${this.theme} toast-container embedded`;\n if (this.hasDialogue) {\n this.alertTheme += ' dialogue';\n }\n }\n\n clickHandler(event) {\n if (!this.isCloseable) {\n if (event) {\n event.stopPropagation();\n event.preventDefault();\n }\n if (this.parent) {\n this.parent.hide(this);\n } else {\n this.closed.emit({ closed: true });\n }\n }\n }\n\n close(event) {\n if (event) {\n event.stopPropagation();\n event.preventDefault();\n }\n if (this.parent) {\n this.parent.hide(this);\n } else {\n this.closed.emit({ closed: true });\n }\n }\n\n actionHandler(event) {\n this.onActionPromise.resolve(event);\n }\n\n onAction(fn: () => void) {\n return this.onActionPromise.then(fn);\n }\n}\n","// NG2\nimport { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { NovoButtonModule } from 'novo-elements/elements/button';\n// APP\nimport { NovoToastElement } from './Toast';\n\n@NgModule({\n imports: [CommonModule, NovoButtonModule],\n declarations: [NovoToastElement],\n exports: [NovoToastElement],\n})\nexport class NovoToastModule {}\n","// NG2\nimport { Injectable } from '@angular/core';\nimport { ComponentUtils } from 'novo-elements/services';\n// APP\nimport { NovoToastElement } from './Toast';\n\nexport type ToastThemes = 'default' | 'success' | 'info' | 'warning' | 'danger' | 'positive' | string;\nexport type ToastIcons = 'bell' | 'check' | 'info' | 'warning' | 'remove' | 'caution' | 'times' | 'coffee' | 'danger' | string;\nexport type ToastPositions = 'fixedTop' | 'fixedBottom' | 'growlTopRight' | 'growlTopLeft' | 'growlBottomRight' | 'growlBottomLeft';\n\nexport interface ToastOptions {\n title?: string;\n message?: string;\n action?: string;\n icon?: ToastIcons;\n theme?: ToastThemes;\n accent?: ToastThemes;\n hideDelay?: number;\n position?: ToastPositions;\n isCloseable?: boolean;\n customClass?: string;\n}\n\n@Injectable()\nexport class NovoToastService {\n _parentViewContainer: any;\n references: Array<any> = [];\n icons = { default: 'bell', success: 'check', info: 'info', warning: 'warning', danger: 'remove' };\n defaults = { hideDelay: 3500, position: 'growlTopRight', theme: 'default' };\n\n constructor(private componentUtils: ComponentUtils) {}\n\n set parentViewContainer(view) {\n this._parentViewContainer = view;\n }\n\n alert(options: ToastOptions, toastElement: any = NovoToastElement): Promise<any> {\n return new Promise((resolve) => {\n if (!this._parentViewContainer) {\n console.error(\n 'No parent view container specified for the ToastService. Set it inside your main application. \\nthis.toastService.parentViewContainer = view (ViewContainerRef)',\n );\n return;\n }\n const toast = this.componentUtils.append(toastElement, this._parentViewContainer);\n this.references.push(toast);\n this.handleAlert(toast.instance, options);\n resolve(toast.instance);\n });\n }\n\n isVisible(toast) {\n return toast.show;\n }\n\n hide(toast) {\n toast.animate = false;\n setTimeout(() => {\n toast.show = false;\n const REF = this.references.filter((x) => x.instance === toast)[0];\n if (REF) {\n this.references.splice(this.references.indexOf(REF), 1);\n REF.destroy();\n }\n }, 300);\n }\n\n handleAlert(toast, options) {\n this.setToastOnSession(toast, options);\n setTimeout(() => {\n this.show(toast);\n }, 20);\n if (!toast.isCloseable) {\n this.toastTimer(toast);\n }\n }\n\n setToastOnSession(toast, opts) {\n const OPTIONS = typeof opts === 'object' ? opts : {};\n\n toast.parent = this;\n toast.title = OPTIONS.title || '';\n toast.message = OPTIONS.message || '';\n toast.action = OPTIONS.action || null;\n toast.hideDelay = OPTIONS.hideDelay || this.defaults.hideDelay;\n toast.link = OPTIONS.link || '';\n toast.isCloseable = OPTIONS.isCloseable || false;\n\n const CUSTOM_CLASS = OPTIONS.customClass || '';\n const ALERT_STYLE = OPTIONS.accent ? `novo-accent-${OPTIONS.accent}` : OPTIONS.theme || this.defaults.theme;\n const ALERT_POSITION = OPTIONS.position || this.defaults.position;\n const ALERT_ICON = OPTIONS.icon || this.icons.default;\n\n toast.iconClass = `bhi-${ALERT_ICON}`;\n toast.launched = true;\n toast.alertTheme = `${ALERT_STYLE} ${ALERT_POSITION} ${CUSTOM_CLASS} toast-container launched`;\n }\n\n show(toast) {\n toast.show = true;\n setTimeout(addClass, 25);\n /**\n * Adds animate class to be called after a timeout\n **/\n function addClass() {\n toast.animate = true;\n }\n }\n\n toastTimer(toast) {\n if (toast.hideDelay < 0) {\n return;\n }\n setTimeout(() => {\n this.hide(toast);\n }, toast.hideDelay);\n }\n}\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":["i1"],"mappings":"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"}
@@ -11,7 +11,7 @@ import { ComponentPortal } from '@angular/cdk/portal';
11
11
  class NovoTooltip {
12
12
  }
13
13
  NovoTooltip.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: NovoTooltip, deps: [], target: i0.ɵɵFactoryTarget.Component });
14
- NovoTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: NovoTooltip, selector: "novo-tooltip", ngImport: i0, template: "<div *ngIf=\"this.isHTML\" [@state]=\"noAnimate ? 'no-animation' : 'visible'\"\n [ngClass]=\"[tooltipType, rounded ? 'rounded' : '', size ? size : '', preline? 'preline' : '', bounce ? 'bounce' : '', position]\"\n [innerHTML]=\"message\"></div>\n<div *ngIf=\"!this.isHTML\" [@state]=\"noAnimate ? 'no-animation' : 'visible'\"\n [ngClass]=\"[tooltipType, rounded ? 'rounded' : '', size ? size : '', preline? 'preline' : '', bounce ? 'bounce' : '', position]\">{{message}}</div>", styles: ["novo-tooltip div{background:#383838;background:var(--tooltip-background-color, #383838);color:#fff;color:var(--color-white, #fff);border-radius:4px;border-radius:var(--tooltip-border-radius, 4px);padding:8px 10px;font-size:12px;line-height:12px;white-space:nowrap;box-shadow:var(--shadow-2)}novo-tooltip div.error{background-color:#b34e4d;background-color:var(--color-shade-error, #b34e4d)}novo-tooltip div.error.top-right:before,novo-tooltip div.error.top-left:before,novo-tooltip div.error.top:before{border-top-color:#b34e4d;border-top-color:var(--color-shade-error, #b34e4d)}novo-tooltip div.error.bottom-left:before,novo-tooltip div.error.bottom-right:before,novo-tooltip div.error.bottom:before{border-bottom-color:#b34e4d;border-bottom-color:var(--color-shade-error, #b34e4d)}novo-tooltip div.error.left:before{border-left-color:#b34e4d;border-left-color:var(--color-shade-error, #b34e4d)}novo-tooltip div.error.right:before{border-right-color:#b34e4d;border-right-color:var(--color-shade-error, #b34e4d)}novo-tooltip div.info{background-color:#3986ac;background-color:var(--color-shade-info, #3986ac)}novo-tooltip div.info.top-right:before,novo-tooltip div.info.top-left:before,novo-tooltip div.info.top:before{border-top-color:#3986ac;border-top-color:var(--color-shade-info, #3986ac)}novo-tooltip div.info.bottom-left:before,novo-tooltip div.info.bottom-right:before,novo-tooltip div.info.bottom:before{border-bottom-color:#3986ac;border-bottom-color:var(--color-shade-info, #3986ac)}novo-tooltip div.info.left:before{border-left-color:#3986ac;border-left-color:var(--color-shade-info, #3986ac)}novo-tooltip div.info.right:before{border-right-color:#3986ac;border-right-color:var(--color-shade-info, #3986ac)}novo-tooltip div.warning{background-color:#c09854;background-color:var(--color-shade-warning, #c09854)}novo-tooltip div.warning.top-right:before,novo-tooltip div.warning.top-left:before,novo-tooltip div.warning.top:before{border-top-color:#c09854;border-top-color:var(--color-shade-warning, #c09854)}novo-tooltip div.warning.bottom-left:before,novo-tooltip div.warning.bottom-right:before,novo-tooltip div.warning.bottom:before{border-bottom-color:#c09854;border-bottom-color:var(--color-shade-warning, #c09854)}novo-tooltip div.warning.left:before{border-left-color:#c09854;border-left-color:var(--color-shade-warning, #c09854)}novo-tooltip div.warning.right:before{border-right-color:#c09854;border-right-color:var(--color-shade-warning, #c09854)}novo-tooltip div.success{background-color:#458746;background-color:var(--color-shade-success, #458746)}novo-tooltip div.success.top-right:before,novo-tooltip div.success.top-left:before,novo-tooltip div.success.top:before{border-top-color:#458746;border-top-color:var(--color-shade-success, #458746)}novo-tooltip div.success.bottom-left:before,novo-tooltip div.success.bottom-right:before,novo-tooltip div.success.bottom:before{border-bottom-color:#458746;border-bottom-color:var(--color-shade-success, #458746)}novo-tooltip div.success.left:before{border-left-color:#458746;border-left-color:var(--color-shade-success, #458746)}novo-tooltip div.success.right:before{border-right-color:#458746;border-right-color:var(--color-shade-success, #458746)}novo-tooltip div.top-right:before,novo-tooltip div.top-left:before,novo-tooltip div.top:before{border-top-color:#383838;border-top-color:var(--tooltip-background-color, #383838)}novo-tooltip div.bottom-left:before,novo-tooltip div.bottom-right:before,novo-tooltip div.bottom:before{border-bottom-color:#383838;border-bottom-color:var(--tooltip-background-color, #383838)}novo-tooltip div.left:before{border-left-color:#383838;border-left-color:var(--tooltip-background-color, #383838)}novo-tooltip div.right:before{border-right-color:#383838;border-right-color:var(--tooltip-background-color, #383838)}novo-tooltip div.top:before{margin-bottom:-11px;left:calc(50% - 6px);bottom:0}novo-tooltip div.top-left:before{margin-right:0;margin-bottom:-11px;right:1px;bottom:0}novo-tooltip div.top-right:before{margin-left:0;margin-bottom:-11px;left:1px;bottom:0}novo-tooltip div.bottom:before{margin-top:-11px;left:calc(50% - 6px);top:0}novo-tooltip div.bottom-left:before{margin-right:0;margin-top:-11px;right:1px;top:0}novo-tooltip div.bottom-right:before{margin-left:0;margin-top:-11px;left:1px;top:0}novo-tooltip div.left:before{margin-right:-11px;margin-bottom:-6px;right:0;bottom:50%}novo-tooltip div.right:before{left:0;bottom:50%;margin-left:-11px;margin-bottom:-6px}novo-tooltip div:before{content:\"\";position:absolute;background:0 0;border:6px solid transparent;box-sizing:border-box}novo-tooltip div.extra-large,novo-tooltip div.large,novo-tooltip div.small,novo-tooltip div.medium{white-space:normal;line-height:1.4em;word-wrap:break-word}novo-tooltip div.extra-large{width:400px;font-size:1.2vh}novo-tooltip div.large{width:300px}novo-tooltip div.medium{width:150px}novo-tooltip div.small{width:80px}novo-tooltip div.preline{white-space:pre-line}novo-tooltip div.bounce{-webkit-animation:bounce .75s ease-in-out infinite;animation:bounce .75s ease-in-out infinite}@-webkit-keyframes bounce{0%{transform:translateY(0)}50%{transform:translateY(-10px)}to{transform:translateY(0)}}@keyframes bounce{0%{transform:translateY(0)}50%{transform:translateY(-10px)}to{transform:translateY(0)}}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], animations: [
14
+ NovoTooltip.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: NovoTooltip, selector: "novo-tooltip", ngImport: i0, template: "<div *ngIf=\"this.isHTML\" [@state]=\"noAnimate ? 'no-animation' : 'visible'\"\n [ngClass]=\"[tooltipType, rounded ? 'rounded' : '', size ? size : '', preline? 'preline' : '', bounce ? 'bounce' : '', position]\"\n [innerHTML]=\"message\"></div>\n<div *ngIf=\"!this.isHTML\" [@state]=\"noAnimate ? 'no-animation' : 'visible'\"\n [ngClass]=\"[tooltipType, rounded ? 'rounded' : '', size ? size : '', preline? 'preline' : '', bounce ? 'bounce' : '', position]\">{{message}}</div>", styles: [":host div{background:#383838;background:var(--tooltip-background-color, #383838);color:#fff;color:var(--color-white, #fff);border-radius:4px;border-radius:var(--tooltip-border-radius, 4px);padding:8px 10px;font-size:12px;line-height:12px;white-space:nowrap;box-shadow:var(--shadow-2)}:host div.error{background-color:#b34e4d;background-color:var(--color-shade-error, #b34e4d)}:host div.error.top-right:before,:host div.error.top-left:before,:host div.error.top:before{border-top-color:#b34e4d;border-top-color:var(--color-shade-error, #b34e4d)}:host div.error.bottom-left:before,:host div.error.bottom-right:before,:host div.error.bottom:before{border-bottom-color:#b34e4d;border-bottom-color:var(--color-shade-error, #b34e4d)}:host div.error.left:before{border-left-color:#b34e4d;border-left-color:var(--color-shade-error, #b34e4d)}:host div.error.right:before{border-right-color:#b34e4d;border-right-color:var(--color-shade-error, #b34e4d)}:host div.info{background-color:#3986ac;background-color:var(--color-shade-info, #3986ac)}:host div.info.top-right:before,:host div.info.top-left:before,:host div.info.top:before{border-top-color:#3986ac;border-top-color:var(--color-shade-info, #3986ac)}:host div.info.bottom-left:before,:host div.info.bottom-right:before,:host div.info.bottom:before{border-bottom-color:#3986ac;border-bottom-color:var(--color-shade-info, #3986ac)}:host div.info.left:before{border-left-color:#3986ac;border-left-color:var(--color-shade-info, #3986ac)}:host div.info.right:before{border-right-color:#3986ac;border-right-color:var(--color-shade-info, #3986ac)}:host div.warning{background-color:#c09854;background-color:var(--color-shade-warning, #c09854)}:host div.warning.top-right:before,:host div.warning.top-left:before,:host div.warning.top:before{border-top-color:#c09854;border-top-color:var(--color-shade-warning, #c09854)}:host div.warning.bottom-left:before,:host div.warning.bottom-right:before,:host div.warning.bottom:before{border-bottom-color:#c09854;border-bottom-color:var(--color-shade-warning, #c09854)}:host div.warning.left:before{border-left-color:#c09854;border-left-color:var(--color-shade-warning, #c09854)}:host div.warning.right:before{border-right-color:#c09854;border-right-color:var(--color-shade-warning, #c09854)}:host div.success{background-color:#458746;background-color:var(--color-shade-success, #458746)}:host div.success.top-right:before,:host div.success.top-left:before,:host div.success.top:before{border-top-color:#458746;border-top-color:var(--color-shade-success, #458746)}:host div.success.bottom-left:before,:host div.success.bottom-right:before,:host div.success.bottom:before{border-bottom-color:#458746;border-bottom-color:var(--color-shade-success, #458746)}:host div.success.left:before{border-left-color:#458746;border-left-color:var(--color-shade-success, #458746)}:host div.success.right:before{border-right-color:#458746;border-right-color:var(--color-shade-success, #458746)}:host div.top-right:before,:host div.top-left:before,:host div.top:before{border-top-color:#383838;border-top-color:var(--tooltip-background-color, #383838)}:host div.bottom-left:before,:host div.bottom-right:before,:host div.bottom:before{border-bottom-color:#383838;border-bottom-color:var(--tooltip-background-color, #383838)}:host div.left:before{border-left-color:#383838;border-left-color:var(--tooltip-background-color, #383838)}:host div.right:before{border-right-color:#383838;border-right-color:var(--tooltip-background-color, #383838)}:host div.top:before{margin-bottom:-11px;left:calc(50% - 6px);bottom:0}:host div.top-left:before{margin-right:0;margin-bottom:-11px;right:1px;bottom:0}:host div.top-right:before{margin-left:0;margin-bottom:-11px;left:1px;bottom:0}:host div.bottom:before{margin-top:-11px;left:calc(50% - 6px);top:0}:host div.bottom-left:before{margin-right:0;margin-top:-11px;right:1px;top:0}:host div.bottom-right:before{margin-left:0;margin-top:-11px;left:1px;top:0}:host div.left:before{margin-right:-11px;margin-bottom:-6px;right:0;bottom:50%}:host div.right:before{left:0;bottom:50%;margin-left:-11px;margin-bottom:-6px}:host div:before{content:\"\";position:absolute;background:0 0;border:6px solid transparent;box-sizing:border-box}:host div.extra-large,:host div.large,:host div.small,:host div.medium{white-space:normal;line-height:1.4em;word-wrap:break-word}:host div.extra-large{width:400px;font-size:1.2vh}:host div.large{width:300px}:host div.medium{width:150px}:host div.small{width:80px}:host div.preline{white-space:pre-line}:host div.bounce{-webkit-animation:bounce .75s ease-in-out infinite;animation:bounce .75s ease-in-out infinite}@-webkit-keyframes bounce{0%{transform:translateY(0)}50%{transform:translateY(-10px)}to{transform:translateY(0)}}@keyframes bounce{0%{transform:translateY(0)}50%{transform:translateY(-10px)}to{transform:translateY(0)}}\n"], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }], animations: [
15
15
  trigger('state', [
16
16
  state('initial, void, hidden', style({ opacity: '0' })),
17
17
  state('visible', style({ opacity: '1' })),
@@ -48,7 +48,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
48
48
  animate('0.3s 0.1s ease-in'),
49
49
  ]),
50
50
  ]),
51
- ], template: "<div *ngIf=\"this.isHTML\" [@state]=\"noAnimate ? 'no-animation' : 'visible'\"\n [ngClass]=\"[tooltipType, rounded ? 'rounded' : '', size ? size : '', preline? 'preline' : '', bounce ? 'bounce' : '', position]\"\n [innerHTML]=\"message\"></div>\n<div *ngIf=\"!this.isHTML\" [@state]=\"noAnimate ? 'no-animation' : 'visible'\"\n [ngClass]=\"[tooltipType, rounded ? 'rounded' : '', size ? size : '', preline? 'preline' : '', bounce ? 'bounce' : '', position]\">{{message}}</div>", styles: ["novo-tooltip div{background:#383838;background:var(--tooltip-background-color, #383838);color:#fff;color:var(--color-white, #fff);border-radius:4px;border-radius:var(--tooltip-border-radius, 4px);padding:8px 10px;font-size:12px;line-height:12px;white-space:nowrap;box-shadow:var(--shadow-2)}novo-tooltip div.error{background-color:#b34e4d;background-color:var(--color-shade-error, #b34e4d)}novo-tooltip div.error.top-right:before,novo-tooltip div.error.top-left:before,novo-tooltip div.error.top:before{border-top-color:#b34e4d;border-top-color:var(--color-shade-error, #b34e4d)}novo-tooltip div.error.bottom-left:before,novo-tooltip div.error.bottom-right:before,novo-tooltip div.error.bottom:before{border-bottom-color:#b34e4d;border-bottom-color:var(--color-shade-error, #b34e4d)}novo-tooltip div.error.left:before{border-left-color:#b34e4d;border-left-color:var(--color-shade-error, #b34e4d)}novo-tooltip div.error.right:before{border-right-color:#b34e4d;border-right-color:var(--color-shade-error, #b34e4d)}novo-tooltip div.info{background-color:#3986ac;background-color:var(--color-shade-info, #3986ac)}novo-tooltip div.info.top-right:before,novo-tooltip div.info.top-left:before,novo-tooltip div.info.top:before{border-top-color:#3986ac;border-top-color:var(--color-shade-info, #3986ac)}novo-tooltip div.info.bottom-left:before,novo-tooltip div.info.bottom-right:before,novo-tooltip div.info.bottom:before{border-bottom-color:#3986ac;border-bottom-color:var(--color-shade-info, #3986ac)}novo-tooltip div.info.left:before{border-left-color:#3986ac;border-left-color:var(--color-shade-info, #3986ac)}novo-tooltip div.info.right:before{border-right-color:#3986ac;border-right-color:var(--color-shade-info, #3986ac)}novo-tooltip div.warning{background-color:#c09854;background-color:var(--color-shade-warning, #c09854)}novo-tooltip div.warning.top-right:before,novo-tooltip div.warning.top-left:before,novo-tooltip div.warning.top:before{border-top-color:#c09854;border-top-color:var(--color-shade-warning, #c09854)}novo-tooltip div.warning.bottom-left:before,novo-tooltip div.warning.bottom-right:before,novo-tooltip div.warning.bottom:before{border-bottom-color:#c09854;border-bottom-color:var(--color-shade-warning, #c09854)}novo-tooltip div.warning.left:before{border-left-color:#c09854;border-left-color:var(--color-shade-warning, #c09854)}novo-tooltip div.warning.right:before{border-right-color:#c09854;border-right-color:var(--color-shade-warning, #c09854)}novo-tooltip div.success{background-color:#458746;background-color:var(--color-shade-success, #458746)}novo-tooltip div.success.top-right:before,novo-tooltip div.success.top-left:before,novo-tooltip div.success.top:before{border-top-color:#458746;border-top-color:var(--color-shade-success, #458746)}novo-tooltip div.success.bottom-left:before,novo-tooltip div.success.bottom-right:before,novo-tooltip div.success.bottom:before{border-bottom-color:#458746;border-bottom-color:var(--color-shade-success, #458746)}novo-tooltip div.success.left:before{border-left-color:#458746;border-left-color:var(--color-shade-success, #458746)}novo-tooltip div.success.right:before{border-right-color:#458746;border-right-color:var(--color-shade-success, #458746)}novo-tooltip div.top-right:before,novo-tooltip div.top-left:before,novo-tooltip div.top:before{border-top-color:#383838;border-top-color:var(--tooltip-background-color, #383838)}novo-tooltip div.bottom-left:before,novo-tooltip div.bottom-right:before,novo-tooltip div.bottom:before{border-bottom-color:#383838;border-bottom-color:var(--tooltip-background-color, #383838)}novo-tooltip div.left:before{border-left-color:#383838;border-left-color:var(--tooltip-background-color, #383838)}novo-tooltip div.right:before{border-right-color:#383838;border-right-color:var(--tooltip-background-color, #383838)}novo-tooltip div.top:before{margin-bottom:-11px;left:calc(50% - 6px);bottom:0}novo-tooltip div.top-left:before{margin-right:0;margin-bottom:-11px;right:1px;bottom:0}novo-tooltip div.top-right:before{margin-left:0;margin-bottom:-11px;left:1px;bottom:0}novo-tooltip div.bottom:before{margin-top:-11px;left:calc(50% - 6px);top:0}novo-tooltip div.bottom-left:before{margin-right:0;margin-top:-11px;right:1px;top:0}novo-tooltip div.bottom-right:before{margin-left:0;margin-top:-11px;left:1px;top:0}novo-tooltip div.left:before{margin-right:-11px;margin-bottom:-6px;right:0;bottom:50%}novo-tooltip div.right:before{left:0;bottom:50%;margin-left:-11px;margin-bottom:-6px}novo-tooltip div:before{content:\"\";position:absolute;background:0 0;border:6px solid transparent;box-sizing:border-box}novo-tooltip div.extra-large,novo-tooltip div.large,novo-tooltip div.small,novo-tooltip div.medium{white-space:normal;line-height:1.4em;word-wrap:break-word}novo-tooltip div.extra-large{width:400px;font-size:1.2vh}novo-tooltip div.large{width:300px}novo-tooltip div.medium{width:150px}novo-tooltip div.small{width:80px}novo-tooltip div.preline{white-space:pre-line}novo-tooltip div.bounce{-webkit-animation:bounce .75s ease-in-out infinite;animation:bounce .75s ease-in-out infinite}@-webkit-keyframes bounce{0%{transform:translateY(0)}50%{transform:translateY(-10px)}to{transform:translateY(0)}}@keyframes bounce{0%{transform:translateY(0)}50%{transform:translateY(-10px)}to{transform:translateY(0)}}\n"] }]
51
+ ], template: "<div *ngIf=\"this.isHTML\" [@state]=\"noAnimate ? 'no-animation' : 'visible'\"\n [ngClass]=\"[tooltipType, rounded ? 'rounded' : '', size ? size : '', preline? 'preline' : '', bounce ? 'bounce' : '', position]\"\n [innerHTML]=\"message\"></div>\n<div *ngIf=\"!this.isHTML\" [@state]=\"noAnimate ? 'no-animation' : 'visible'\"\n [ngClass]=\"[tooltipType, rounded ? 'rounded' : '', size ? size : '', preline? 'preline' : '', bounce ? 'bounce' : '', position]\">{{message}}</div>", styles: [":host div{background:#383838;background:var(--tooltip-background-color, #383838);color:#fff;color:var(--color-white, #fff);border-radius:4px;border-radius:var(--tooltip-border-radius, 4px);padding:8px 10px;font-size:12px;line-height:12px;white-space:nowrap;box-shadow:var(--shadow-2)}:host div.error{background-color:#b34e4d;background-color:var(--color-shade-error, #b34e4d)}:host div.error.top-right:before,:host div.error.top-left:before,:host div.error.top:before{border-top-color:#b34e4d;border-top-color:var(--color-shade-error, #b34e4d)}:host div.error.bottom-left:before,:host div.error.bottom-right:before,:host div.error.bottom:before{border-bottom-color:#b34e4d;border-bottom-color:var(--color-shade-error, #b34e4d)}:host div.error.left:before{border-left-color:#b34e4d;border-left-color:var(--color-shade-error, #b34e4d)}:host div.error.right:before{border-right-color:#b34e4d;border-right-color:var(--color-shade-error, #b34e4d)}:host div.info{background-color:#3986ac;background-color:var(--color-shade-info, #3986ac)}:host div.info.top-right:before,:host div.info.top-left:before,:host div.info.top:before{border-top-color:#3986ac;border-top-color:var(--color-shade-info, #3986ac)}:host div.info.bottom-left:before,:host div.info.bottom-right:before,:host div.info.bottom:before{border-bottom-color:#3986ac;border-bottom-color:var(--color-shade-info, #3986ac)}:host div.info.left:before{border-left-color:#3986ac;border-left-color:var(--color-shade-info, #3986ac)}:host div.info.right:before{border-right-color:#3986ac;border-right-color:var(--color-shade-info, #3986ac)}:host div.warning{background-color:#c09854;background-color:var(--color-shade-warning, #c09854)}:host div.warning.top-right:before,:host div.warning.top-left:before,:host div.warning.top:before{border-top-color:#c09854;border-top-color:var(--color-shade-warning, #c09854)}:host div.warning.bottom-left:before,:host div.warning.bottom-right:before,:host div.warning.bottom:before{border-bottom-color:#c09854;border-bottom-color:var(--color-shade-warning, #c09854)}:host div.warning.left:before{border-left-color:#c09854;border-left-color:var(--color-shade-warning, #c09854)}:host div.warning.right:before{border-right-color:#c09854;border-right-color:var(--color-shade-warning, #c09854)}:host div.success{background-color:#458746;background-color:var(--color-shade-success, #458746)}:host div.success.top-right:before,:host div.success.top-left:before,:host div.success.top:before{border-top-color:#458746;border-top-color:var(--color-shade-success, #458746)}:host div.success.bottom-left:before,:host div.success.bottom-right:before,:host div.success.bottom:before{border-bottom-color:#458746;border-bottom-color:var(--color-shade-success, #458746)}:host div.success.left:before{border-left-color:#458746;border-left-color:var(--color-shade-success, #458746)}:host div.success.right:before{border-right-color:#458746;border-right-color:var(--color-shade-success, #458746)}:host div.top-right:before,:host div.top-left:before,:host div.top:before{border-top-color:#383838;border-top-color:var(--tooltip-background-color, #383838)}:host div.bottom-left:before,:host div.bottom-right:before,:host div.bottom:before{border-bottom-color:#383838;border-bottom-color:var(--tooltip-background-color, #383838)}:host div.left:before{border-left-color:#383838;border-left-color:var(--tooltip-background-color, #383838)}:host div.right:before{border-right-color:#383838;border-right-color:var(--tooltip-background-color, #383838)}:host div.top:before{margin-bottom:-11px;left:calc(50% - 6px);bottom:0}:host div.top-left:before{margin-right:0;margin-bottom:-11px;right:1px;bottom:0}:host div.top-right:before{margin-left:0;margin-bottom:-11px;left:1px;bottom:0}:host div.bottom:before{margin-top:-11px;left:calc(50% - 6px);top:0}:host div.bottom-left:before{margin-right:0;margin-top:-11px;right:1px;top:0}:host div.bottom-right:before{margin-left:0;margin-top:-11px;left:1px;top:0}:host div.left:before{margin-right:-11px;margin-bottom:-6px;right:0;bottom:50%}:host div.right:before{left:0;bottom:50%;margin-left:-11px;margin-bottom:-6px}:host div:before{content:\"\";position:absolute;background:0 0;border:6px solid transparent;box-sizing:border-box}:host div.extra-large,:host div.large,:host div.small,:host div.medium{white-space:normal;line-height:1.4em;word-wrap:break-word}:host div.extra-large{width:400px;font-size:1.2vh}:host div.large{width:300px}:host div.medium{width:150px}:host div.small{width:80px}:host div.preline{white-space:pre-line}:host div.bounce{-webkit-animation:bounce .75s ease-in-out infinite;animation:bounce .75s ease-in-out infinite}@-webkit-keyframes bounce{0%{transform:translateY(0)}50%{transform:translateY(-10px)}to{transform:translateY(0)}}@keyframes bounce{0%{transform:translateY(0)}50%{transform:translateY(-10px)}to{transform:translateY(0)}}\n"] }]
52
52
  }] });
53
53
 
54
54
  // NG