novo-elements 6.0.0-next.0 → 6.0.0-next.4

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 (153) hide show
  1. package/bundles/novo-elements.umd.js +250 -34
  2. package/bundles/novo-elements.umd.js.map +1 -1
  3. package/bundles/novo-elements.umd.min.js +2 -2
  4. package/bundles/novo-elements.umd.min.js.map +1 -1
  5. package/elements/common/option/option.component.scss +19 -2
  6. package/elements/common/typography/text/text.scss +1 -1
  7. package/elements/layout/container/layout-container.component.scss +26 -0
  8. package/elements/tabs/Tabs.scss +0 -1
  9. package/elements/toolbar/toolbar.component.scss +60 -0
  10. package/esm2015/src/elements/common/common.module.js +10 -2
  11. package/esm2015/src/elements/common/directives/accent.directive.js +23 -0
  12. package/esm2015/src/elements/common/directives/fill.directive.js +23 -0
  13. package/esm2015/src/elements/common/directives/space.directive.js +40 -16
  14. package/esm2015/src/elements/common/index.js +3 -1
  15. package/esm2015/src/elements/common/mixins/color.mixin.js +3 -3
  16. package/esm2015/src/elements/common/option/option.component.js +7 -3
  17. package/esm2015/src/elements/common/typography/caption/caption.component.js +4 -1
  18. package/esm2015/src/elements/common/typography/label/label.component.js +4 -1
  19. package/esm2015/src/elements/common/typography/link/link.component.js +4 -1
  20. package/esm2015/src/elements/common/typography/text/text.component.js +7 -3
  21. package/esm2015/src/elements/common/typography/title/title.component.js +4 -1
  22. package/esm2015/src/elements/header/Header.js +5 -2
  23. package/esm2015/src/elements/index.js +2 -1
  24. package/esm2015/src/elements/layout/container/layout-container.component.js +5 -3
  25. package/esm2015/src/elements/layout/content/layout-content.component.js +1 -3
  26. package/esm2015/src/elements/layout/index.js +2 -1
  27. package/esm2015/src/elements/layout/layout.module.js +4 -3
  28. package/esm2015/src/elements/layout/rail/rail.component.js +29 -0
  29. package/esm2015/src/elements/toolbar/index.js +3 -0
  30. package/esm2015/src/elements/toolbar/toolbar.component.js +51 -0
  31. package/esm2015/src/elements/toolbar/toolbar.module.js +14 -0
  32. package/esm2015/src/novo-elements.module.js +3 -1
  33. package/fesm2015/novo-elements.js +213 -30
  34. package/fesm2015/novo-elements.js.map +1 -1
  35. package/novo-elements.scss +5 -0
  36. package/package.json +1 -1
  37. package/schematics/ng-add/fonts/novo-fonts.d.ts +4 -0
  38. package/schematics/ng-add/fonts/novo-fonts.js +39 -0
  39. package/schematics/ng-add/fonts/novo-fonts.js.map +1 -0
  40. package/schematics/ng-add/index.d.ts +10 -0
  41. package/schematics/ng-add/index.js +48 -0
  42. package/schematics/ng-add/index.js.map +1 -0
  43. package/schematics/ng-add/package-config.d.ts +5 -0
  44. package/schematics/ng-add/package-config.js +45 -0
  45. package/schematics/ng-add/package-config.js.map +1 -0
  46. package/schematics/ng-add/schema.d.ts +10 -0
  47. package/schematics/ng-add/schema.js +3 -0
  48. package/schematics/ng-add/schema.js.map +1 -0
  49. package/schematics/ng-add/setup-project.d.ts +9 -0
  50. package/schematics/ng-add/setup-project.js +93 -0
  51. package/schematics/ng-add/setup-project.js.map +1 -0
  52. package/schematics/ng-generate/record/index.d.ts +14 -0
  53. package/schematics/ng-generate/record/index.js +45 -0
  54. package/schematics/ng-generate/record/index.js.map +1 -0
  55. package/schematics/ng-generate/record/schema.d.ts +10 -0
  56. package/schematics/ng-generate/record/schema.js +10 -0
  57. package/schematics/ng-generate/record/schema.js.map +1 -0
  58. package/schematics/ng-update/data/attribute-selectors.d.ts +2 -0
  59. package/schematics/ng-update/data/attribute-selectors.js +5 -0
  60. package/schematics/ng-update/data/attribute-selectors.js.map +1 -0
  61. package/schematics/ng-update/data/class-names.d.ts +2 -0
  62. package/schematics/ng-update/data/class-names.js +13 -0
  63. package/schematics/ng-update/data/class-names.js.map +1 -0
  64. package/schematics/ng-update/data/constructor-checks.d.ts +7 -0
  65. package/schematics/ng-update/data/constructor-checks.js +34 -0
  66. package/schematics/ng-update/data/constructor-checks.js.map +1 -0
  67. package/schematics/ng-update/data/css-selectors.d.ts +20 -0
  68. package/schematics/ng-update/data/css-selectors.js +13 -0
  69. package/schematics/ng-update/data/css-selectors.js.map +1 -0
  70. package/schematics/ng-update/data/element-selectors.d.ts +2 -0
  71. package/schematics/ng-update/data/element-selectors.js +22 -0
  72. package/schematics/ng-update/data/element-selectors.js.map +1 -0
  73. package/schematics/ng-update/data/index.d.ts +10 -0
  74. package/schematics/ng-update/data/index.js +24 -0
  75. package/schematics/ng-update/data/index.js.map +1 -0
  76. package/schematics/ng-update/data/input-names.d.ts +2 -0
  77. package/schematics/ng-update/data/input-names.js +75 -0
  78. package/schematics/ng-update/data/input-names.js.map +1 -0
  79. package/schematics/ng-update/data/method-call-checks.d.ts +9 -0
  80. package/schematics/ng-update/data/method-call-checks.js +26 -0
  81. package/schematics/ng-update/data/method-call-checks.js.map +1 -0
  82. package/schematics/ng-update/data/output-names.d.ts +2 -0
  83. package/schematics/ng-update/data/output-names.js +21 -0
  84. package/schematics/ng-update/data/output-names.js.map +1 -0
  85. package/schematics/ng-update/data/property-names.d.ts +2 -0
  86. package/schematics/ng-update/data/property-names.js +19 -0
  87. package/schematics/ng-update/data/property-names.js.map +1 -0
  88. package/schematics/ng-update/data/scss-variables.d.ts +20 -0
  89. package/schematics/ng-update/data/scss-variables.js +29 -0
  90. package/schematics/ng-update/data/scss-variables.js.map +1 -0
  91. package/schematics/ng-update/data/symbol-removal.d.ts +0 -0
  92. package/schematics/ng-update/data/symbol-removal.js +21 -0
  93. package/schematics/ng-update/data/symbol-removal.js.map +1 -0
  94. package/schematics/ng-update/index.d.ts +3 -0
  95. package/schematics/ng-update/index.js +29 -0
  96. package/schematics/ng-update/index.js.map +1 -0
  97. package/schematics/ng-update/migrations/all/scss-variables.d.ts +9 -0
  98. package/schematics/ng-update/migrations/all/scss-variables.js +32 -0
  99. package/schematics/ng-update/migrations/all/scss-variables.js.map +1 -0
  100. package/schematics/ng-update/migrations/misc-checks/misc-class-inheritance.d.ts +11 -0
  101. package/schematics/ng-update/migrations/misc-checks/misc-class-inheritance.js +61 -0
  102. package/schematics/ng-update/migrations/misc-checks/misc-class-inheritance.js.map +1 -0
  103. package/schematics/ng-update/migrations/misc-checks/misc-class-names.d.ts +11 -0
  104. package/schematics/ng-update/migrations/misc-checks/misc-class-names.js +55 -0
  105. package/schematics/ng-update/migrations/misc-checks/misc-class-names.js.map +1 -0
  106. package/schematics/ng-update/migrations/misc-checks/misc-imports.d.ts +16 -0
  107. package/schematics/ng-update/migrations/misc-checks/misc-imports.js +67 -0
  108. package/schematics/ng-update/migrations/misc-checks/misc-imports.js.map +1 -0
  109. package/schematics/ng-update/migrations/misc-checks/misc-property-names.d.ts +11 -0
  110. package/schematics/ng-update/migrations/misc-checks/misc-property-names.js +59 -0
  111. package/schematics/ng-update/migrations/misc-checks/misc-property-names.js.map +1 -0
  112. package/schematics/ng-update/migrations/misc-checks/misc-template.d.ts +9 -0
  113. package/schematics/ng-update/migrations/misc-checks/misc-template.js +46 -0
  114. package/schematics/ng-update/migrations/misc-checks/misc-template.js.map +1 -0
  115. package/schematics/ng-update/migrations/v6/import-variable-file.d.ts +6 -0
  116. package/schematics/ng-update/migrations/v6/import-variable-file.js +24 -0
  117. package/schematics/ng-update/migrations/v6/import-variable-file.js.map +1 -0
  118. package/schematics/ng-update/migrations/v6/rewrite-dropdown-template.d.ts +13 -0
  119. package/schematics/ng-update/migrations/v6/rewrite-dropdown-template.js +84 -0
  120. package/schematics/ng-update/migrations/v6/rewrite-dropdown-template.js.map +1 -0
  121. package/schematics/ng-update/typescript/module-specifiers.d.ts +7 -0
  122. package/schematics/ng-update/typescript/module-specifiers.js +25 -0
  123. package/schematics/ng-update/typescript/module-specifiers.js.map +1 -0
  124. package/schematics/ng-update/upgrade-data.d.ts +7 -0
  125. package/schematics/ng-update/upgrade-data.js +18 -0
  126. package/schematics/ng-update/upgrade-data.js.map +1 -0
  127. package/schematics/paths.d.ts +4 -0
  128. package/schematics/paths.js +9 -0
  129. package/schematics/paths.js.map +1 -0
  130. package/schematics/testing/index.d.ts +3 -0
  131. package/schematics/testing/index.js +16 -0
  132. package/schematics/testing/index.js.map +1 -0
  133. package/schematics/testing/test-app.d.ts +4 -0
  134. package/schematics/testing/test-app.js +21 -0
  135. package/schematics/testing/test-app.js.map +1 -0
  136. package/schematics/testing/test-case-setup.d.ts +40 -0
  137. package/schematics/testing/test-case-setup.js +179 -0
  138. package/schematics/testing/test-case-setup.js.map +1 -0
  139. package/schematics/testing/test-project.d.ts +4 -0
  140. package/schematics/testing/test-project.js +27 -0
  141. package/schematics/testing/test-project.js.map +1 -0
  142. package/src/elements/common/directives/accent.directive.d.ts +7 -0
  143. package/src/elements/common/directives/fill.directive.d.ts +7 -0
  144. package/src/elements/common/directives/space.directive.d.ts +14 -10
  145. package/src/elements/common/index.d.ts +2 -0
  146. package/src/elements/common/option/option.component.d.ts +2 -0
  147. package/src/elements/index.d.ts +1 -0
  148. package/src/elements/layout/container/layout-container.component.d.ts +2 -0
  149. package/src/elements/layout/index.d.ts +1 -0
  150. package/src/elements/layout/rail/rail.component.d.ts +6 -0
  151. package/src/elements/toolbar/index.d.ts +2 -0
  152. package/src/elements/toolbar/toolbar.component.d.ts +17 -0
  153. package/src/elements/toolbar/toolbar.module.d.ts +2 -0
@@ -1,8 +1,8 @@
1
1
  (function (global, factory) {
2
- typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@angular/forms'), require('brace/index'), require('brace/mode/javascript'), require('brace/theme/chrome'), require('brace/ext/language_tools.js'), require('@angular/common'), require('date-fns'), require('@angular/cdk/coercion'), require('timezone-support'), require('timezone-support/dist/parse-format'), require('rxjs'), require('@angular/animations'), require('@angular/cdk/overlay'), require('@angular/cdk/portal'), require('rxjs/operators'), require('@angular/platform-browser'), require('@angular/router'), require('@angular/platform-browser/animations'), require('@angular/cdk/keycodes'), require('@angular/cdk/scrolling'), require('@angular/cdk/a11y'), require('@angular/cdk/observers'), require('angular2-text-mask'), require('@angular/cdk/platform'), require('@angular/cdk/bidi'), require('@angular/cdk/collections'), require('angular-imask'), require('imask'), require('@angular/cdk/text-field'), require('@angular/cdk/table'), require('text-mask-addons/dist/createAutoCorrectedDatePipe'), require('@bullhorn/dragula'), require('@angular/cdk/accordion'), require('@angular/common/http'), require('@angular/cdk/stepper')) :
3
- typeof define === 'function' && define.amd ? define('novo-elements', ['exports', '@angular/core', '@angular/forms', 'brace/index', 'brace/mode/javascript', 'brace/theme/chrome', 'brace/ext/language_tools.js', '@angular/common', 'date-fns', '@angular/cdk/coercion', 'timezone-support', 'timezone-support/dist/parse-format', 'rxjs', '@angular/animations', '@angular/cdk/overlay', '@angular/cdk/portal', 'rxjs/operators', '@angular/platform-browser', '@angular/router', '@angular/platform-browser/animations', '@angular/cdk/keycodes', '@angular/cdk/scrolling', '@angular/cdk/a11y', '@angular/cdk/observers', 'angular2-text-mask', '@angular/cdk/platform', '@angular/cdk/bidi', '@angular/cdk/collections', 'angular-imask', 'imask', '@angular/cdk/text-field', '@angular/cdk/table', 'text-mask-addons/dist/createAutoCorrectedDatePipe', '@bullhorn/dragula', '@angular/cdk/accordion', '@angular/common/http', '@angular/cdk/stepper'], factory) :
4
- (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global['novo-elements'] = {}, global.ng.core, global.ng.forms, null, null, null, null, global.ng.common, global.dateFns, global.ng.cdk.coercion, global.timezoneSupport, global.parseFormat, global.rxjs, global.ng.animations, global.ng.cdk.overlay, global.ng.cdk.portal, global.rxjs.operators, global.ng.platformBrowser, global.ng.router, global.ng.platformBrowser.animations, global.ng.cdk.keycodes, global.ng.cdk.scrolling, global.ng.cdk.a11y, global.ng.cdk.observers, global.angular2TextMask, global.ng.cdk.platform, global.ng.cdk.bidi, global.ng.cdk.collections, global.angularImask, global.IMask, global.ng.cdk.textField, global.ng.cdk.table, global.createAutoCorrectedDatePipe, global.dragulaImported, global.ng.cdk.accordion, global.ng.common.http, global.ng.cdk.stepper));
5
- }(this, (function (exports, i0, forms, index, javascript, chrome, language_tools_js, common, dateFns, coercion, timezoneSupport, parseFormat, rxjs, animations, i1, portal, operators, platformBrowser, router, animations$1, keycodes, scrolling, a11y, observers, angular2TextMask, platform, bidi, collections, angularImask, IMask, textField, table, createAutoCorrectedDatePipe, dragulaImported, accordion, http, stepper) { 'use strict';
2
+ typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@angular/core'), require('@angular/forms'), require('brace/index'), require('brace/mode/javascript'), require('brace/theme/chrome'), require('brace/ext/language_tools.js'), require('@angular/common'), require('date-fns'), require('@angular/cdk/coercion'), require('timezone-support'), require('timezone-support/dist/parse-format'), require('rxjs'), require('@angular/animations'), require('@angular/cdk/overlay'), require('@angular/cdk/portal'), require('rxjs/operators'), require('@angular/platform-browser'), require('@angular/router'), require('novo-design-tokens'), require('@angular/platform-browser/animations'), require('@angular/cdk/keycodes'), require('@angular/cdk/scrolling'), require('@angular/cdk/a11y'), require('@angular/cdk/observers'), require('angular2-text-mask'), require('@angular/cdk/platform'), require('@angular/cdk/bidi'), require('@angular/cdk/collections'), require('angular-imask'), require('imask'), require('@angular/cdk/text-field'), require('@angular/cdk/table'), require('text-mask-addons/dist/createAutoCorrectedDatePipe'), require('@bullhorn/dragula'), require('@angular/cdk/accordion'), require('@angular/common/http'), require('@angular/cdk/stepper')) :
3
+ typeof define === 'function' && define.amd ? define('novo-elements', ['exports', '@angular/core', '@angular/forms', 'brace/index', 'brace/mode/javascript', 'brace/theme/chrome', 'brace/ext/language_tools.js', '@angular/common', 'date-fns', '@angular/cdk/coercion', 'timezone-support', 'timezone-support/dist/parse-format', 'rxjs', '@angular/animations', '@angular/cdk/overlay', '@angular/cdk/portal', 'rxjs/operators', '@angular/platform-browser', '@angular/router', 'novo-design-tokens', '@angular/platform-browser/animations', '@angular/cdk/keycodes', '@angular/cdk/scrolling', '@angular/cdk/a11y', '@angular/cdk/observers', 'angular2-text-mask', '@angular/cdk/platform', '@angular/cdk/bidi', '@angular/cdk/collections', 'angular-imask', 'imask', '@angular/cdk/text-field', '@angular/cdk/table', 'text-mask-addons/dist/createAutoCorrectedDatePipe', '@bullhorn/dragula', '@angular/cdk/accordion', '@angular/common/http', '@angular/cdk/stepper'], factory) :
4
+ (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global['novo-elements'] = {}, global.ng.core, global.ng.forms, null, null, null, null, global.ng.common, global.dateFns, global.ng.cdk.coercion, global.timezoneSupport, global.parseFormat, global.rxjs, global.ng.animations, global.ng.cdk.overlay, global.ng.cdk.portal, global.rxjs.operators, global.ng.platformBrowser, global.ng.router, global.tokens, global.ng.platformBrowser.animations, global.ng.cdk.keycodes, global.ng.cdk.scrolling, global.ng.cdk.a11y, global.ng.cdk.observers, global.angular2TextMask, global.ng.cdk.platform, global.ng.cdk.bidi, global.ng.cdk.collections, global.angularImask, global.IMask, global.ng.cdk.textField, global.ng.cdk.table, global.createAutoCorrectedDatePipe, global.dragulaImported, global.ng.cdk.accordion, global.ng.common.http, global.ng.cdk.stepper));
5
+ }(this, (function (exports, i0, forms, index, javascript, chrome, language_tools_js, common, dateFns, coercion, timezoneSupport, parseFormat, rxjs, animations, i1, portal, operators, platformBrowser, router, tokens, animations$1, keycodes, scrolling, a11y, observers, angular2TextMask, platform, bidi, collections, angularImask, IMask, textField, table, createAutoCorrectedDatePipe, dragulaImported, accordion, http, stepper) { 'use strict';
6
6
 
7
7
  function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
8
8
 
@@ -24721,6 +24721,33 @@
24721
24721
  toggleEvent: [{ type: i0.Output }]
24722
24722
  };
24723
24723
 
24724
+ // tslint:disable: directive-selector
24725
+ var AccentColorDirective = /** @class */ (function () {
24726
+ function AccentColorDirective(el) {
24727
+ this.el = el;
24728
+ }
24729
+ Object.defineProperty(AccentColorDirective.prototype, "hb_textColor", {
24730
+ get: function () {
24731
+ return "novo-accent-" + this.accent;
24732
+ },
24733
+ enumerable: false,
24734
+ configurable: true
24735
+ });
24736
+ return AccentColorDirective;
24737
+ }());
24738
+ AccentColorDirective.decorators = [
24739
+ { type: i0.Directive, args: [{
24740
+ selector: '[accent]',
24741
+ },] }
24742
+ ];
24743
+ AccentColorDirective.ctorParameters = function () { return [
24744
+ { type: i0.ElementRef }
24745
+ ]; };
24746
+ AccentColorDirective.propDecorators = {
24747
+ accent: [{ type: i0.Input }],
24748
+ hb_textColor: [{ type: i0.HostBinding, args: ['class',] }]
24749
+ };
24750
+
24724
24751
  // tslint:disable: directive-selector
24725
24752
  var BackgroundColorDirective = /** @class */ (function () {
24726
24753
  function BackgroundColorDirective() {
@@ -24857,6 +24884,33 @@
24857
24884
  hb_textColor: [{ type: i0.HostBinding, args: ['class',] }]
24858
24885
  };
24859
24886
 
24887
+ // tslint:disable: directive-selector
24888
+ var FillColorDirective = /** @class */ (function () {
24889
+ function FillColorDirective(el) {
24890
+ this.el = el;
24891
+ }
24892
+ Object.defineProperty(FillColorDirective.prototype, "hb_textColor", {
24893
+ get: function () {
24894
+ return "novo-fill-" + this.fill;
24895
+ },
24896
+ enumerable: false,
24897
+ configurable: true
24898
+ });
24899
+ return FillColorDirective;
24900
+ }());
24901
+ FillColorDirective.decorators = [
24902
+ { type: i0.Directive, args: [{
24903
+ selector: '[fill]',
24904
+ },] }
24905
+ ];
24906
+ FillColorDirective.ctorParameters = function () { return [
24907
+ { type: i0.ElementRef }
24908
+ ]; };
24909
+ FillColorDirective.propDecorators = {
24910
+ fill: [{ type: i0.Input }],
24911
+ hb_textColor: [{ type: i0.HostBinding, args: ['class',] }]
24912
+ };
24913
+
24860
24914
  // tslint:disable: directive-selector
24861
24915
  /*
24862
24916
  Prop CSS Property Theme Field
@@ -24894,40 +24948,48 @@
24894
24948
 
24895
24949
  const selectors = [...marginAttrs, ...paddingAttrs];
24896
24950
  */
24951
+ var getSpacingToken = function (value) {
24952
+ if (Object.keys(tokens.spacing).includes(value)) {
24953
+ return tokens.spacing[value];
24954
+ }
24955
+ // TODO: Maybe Validate Value ie.(rem, px)
24956
+ return value;
24957
+ };
24958
+ var ɵ0 = getSpacingToken;
24897
24959
  var MarginDirective = /** @class */ (function () {
24898
24960
  function MarginDirective() {
24899
24961
  }
24900
24962
  Object.defineProperty(MarginDirective.prototype, "hb_margin", {
24901
24963
  get: function () {
24902
- return "margin-" + (this.margin || this.m);
24964
+ return getSpacingToken(this.margin || this.m);
24903
24965
  },
24904
24966
  enumerable: false,
24905
24967
  configurable: true
24906
24968
  });
24907
24969
  Object.defineProperty(MarginDirective.prototype, "hb_margin_left", {
24908
24970
  get: function () {
24909
- return this.marginLeft || this.ml || this.mx || this.marginX;
24971
+ return getSpacingToken(this.marginLeft || this.ml || this.mx || this.marginX);
24910
24972
  },
24911
24973
  enumerable: false,
24912
24974
  configurable: true
24913
24975
  });
24914
24976
  Object.defineProperty(MarginDirective.prototype, "hb_margin_right", {
24915
24977
  get: function () {
24916
- return this.marginRight || this.mr || this.mx || this.marginX;
24978
+ return getSpacingToken(this.marginRight || this.mr || this.mx || this.marginX);
24917
24979
  },
24918
24980
  enumerable: false,
24919
24981
  configurable: true
24920
24982
  });
24921
24983
  Object.defineProperty(MarginDirective.prototype, "hb_margin_top", {
24922
24984
  get: function () {
24923
- return this.marginTop || this.mt || this.my || this.marginY;
24985
+ return getSpacingToken(this.marginTop || this.mt || this.my || this.marginY);
24924
24986
  },
24925
24987
  enumerable: false,
24926
24988
  configurable: true
24927
24989
  });
24928
24990
  Object.defineProperty(MarginDirective.prototype, "hb_margin_bottom", {
24929
24991
  get: function () {
24930
- return this.marginBottom || this.mb || this.my || this.marginY;
24992
+ return getSpacingToken(this.marginBottom || this.mb || this.my || this.marginY);
24931
24993
  },
24932
24994
  enumerable: false,
24933
24995
  configurable: true
@@ -24955,7 +25017,7 @@
24955
25017
  mx: [{ type: i0.Input }],
24956
25018
  marginY: [{ type: i0.Input }],
24957
25019
  my: [{ type: i0.Input }],
24958
- hb_margin: [{ type: i0.HostBinding, args: ['class',] }],
25020
+ hb_margin: [{ type: i0.HostBinding, args: ['style.margin',] }],
24959
25021
  hb_margin_left: [{ type: i0.HostBinding, args: ['style.margin-left',] }],
24960
25022
  hb_margin_right: [{ type: i0.HostBinding, args: ['style.margin-right',] }],
24961
25023
  hb_margin_top: [{ type: i0.HostBinding, args: ['style.margin-top',] }],
@@ -24965,39 +25027,39 @@
24965
25027
  function PaddingDirective() {
24966
25028
  }
24967
25029
  Object.defineProperty(PaddingDirective.prototype, "hb_padding", {
24968
- // @HostBinding('style.padding') get hb_padding() {
24969
- // return this.padding || this.p;
24970
- // }
24971
25030
  get: function () {
24972
- return "padding-" + (this.padding || this.p);
25031
+ return getSpacingToken(this.padding || this.p);
24973
25032
  },
24974
25033
  enumerable: false,
24975
25034
  configurable: true
24976
25035
  });
24977
25036
  Object.defineProperty(PaddingDirective.prototype, "hb_padding_left", {
25037
+ // @HostBinding('class') get hb_padding() {
25038
+ // return `padding-${this.padding || this.p}`;
25039
+ // }
24978
25040
  get: function () {
24979
- return this.paddingLeft || this.pl || this.px || this.paddingX;
25041
+ return getSpacingToken(this.paddingLeft || this.pl || this.px || this.paddingX);
24980
25042
  },
24981
25043
  enumerable: false,
24982
25044
  configurable: true
24983
25045
  });
24984
25046
  Object.defineProperty(PaddingDirective.prototype, "hb_padding_right", {
24985
25047
  get: function () {
24986
- return this.paddingRight || this.pr || this.px || this.paddingX;
25048
+ return getSpacingToken(this.paddingRight || this.pr || this.px || this.paddingX);
24987
25049
  },
24988
25050
  enumerable: false,
24989
25051
  configurable: true
24990
25052
  });
24991
25053
  Object.defineProperty(PaddingDirective.prototype, "hb_padding_top", {
24992
25054
  get: function () {
24993
- return this.paddingTop || this.pt || this.py || this.paddingY;
25055
+ return getSpacingToken(this.paddingTop || this.pt || this.py || this.paddingY);
24994
25056
  },
24995
25057
  enumerable: false,
24996
25058
  configurable: true
24997
25059
  });
24998
25060
  Object.defineProperty(PaddingDirective.prototype, "hb_padding_bottom", {
24999
25061
  get: function () {
25000
- return this.paddingBottom || this.pb || this.py || this.paddingY;
25062
+ return getSpacingToken(this.paddingBottom || this.pb || this.py || this.paddingY);
25001
25063
  },
25002
25064
  enumerable: false,
25003
25065
  configurable: true
@@ -25025,12 +25087,33 @@
25025
25087
  px: [{ type: i0.Input }],
25026
25088
  paddingY: [{ type: i0.Input }],
25027
25089
  py: [{ type: i0.Input }],
25028
- hb_padding: [{ type: i0.HostBinding, args: ['class',] }],
25090
+ hb_padding: [{ type: i0.HostBinding, args: ['style.padding',] }],
25029
25091
  hb_padding_left: [{ type: i0.HostBinding, args: ['style.padding-left',] }],
25030
25092
  hb_padding_right: [{ type: i0.HostBinding, args: ['style.padding-right',] }],
25031
25093
  hb_padding_top: [{ type: i0.HostBinding, args: ['style.padding-top',] }],
25032
25094
  hb_padding_bottom: [{ type: i0.HostBinding, args: ['style.padding-bottom',] }]
25033
25095
  };
25096
+ var GapDirective = /** @class */ (function () {
25097
+ function GapDirective() {
25098
+ }
25099
+ Object.defineProperty(GapDirective.prototype, "hb_gap", {
25100
+ get: function () {
25101
+ return getSpacingToken(this.gap);
25102
+ },
25103
+ enumerable: false,
25104
+ configurable: true
25105
+ });
25106
+ return GapDirective;
25107
+ }());
25108
+ GapDirective.decorators = [
25109
+ { type: i0.Directive, args: [{
25110
+ selector: '[gap]',
25111
+ },] }
25112
+ ];
25113
+ GapDirective.propDecorators = {
25114
+ gap: [{ type: i0.Input }],
25115
+ hb_gap: [{ type: i0.HostBinding, args: ['style.gap',] }]
25116
+ };
25034
25117
 
25035
25118
  var NovoTemplate = /** @class */ (function () {
25036
25119
  function NovoTemplate(template) {
@@ -25268,6 +25351,14 @@
25268
25351
  this._stateChanges = new rxjs.Subject();
25269
25352
  this._element.nativeElement.addEventListener('click', this._handleDisabledClick, false);
25270
25353
  }
25354
+ Object.defineProperty(NovoOptionBase.prototype, "selectable", {
25355
+ /** If there is no parent then nothing is managing the selection. */
25356
+ get: function () {
25357
+ return this._parent;
25358
+ },
25359
+ enumerable: false,
25360
+ configurable: true
25361
+ });
25271
25362
  Object.defineProperty(NovoOptionBase.prototype, "multiple", {
25272
25363
  /** Whether the wrapping component is in multiple selection mode. */
25273
25364
  get: function () {
@@ -25490,10 +25581,10 @@
25490
25581
  '(keydown)': '_handleKeydown($event)',
25491
25582
  class: 'novo-option novo-focus-indicator',
25492
25583
  },
25493
- template: "<novo-pseudo-checkbox *ngIf=\"multiple\" class=\"novo-option-pseudo-checkbox\"\n [state]=\"selected ? 'checked' : 'unchecked'\" [disabled]=\"disabled\"></novo-pseudo-checkbox>\n\n<span class=\"novo-option-text\">\n <ng-content></ng-content>\n</span>\n\n<novo-pseudo-checkbox *ngIf=\"!multiple && selected\" class=\"novo-option-pseudo-checkbox\" state=\"checked\" shape=\"line\"\n [disabled]=\"disabled\"></novo-pseudo-checkbox>\n\n<!-- See a11y notes inside optgroup.ts for context behind this element. -->\n<span class=\"cdk-visually-hidden\" *ngIf=\"group && group._inert\">({{ group.label }})</span>",
25584
+ template: "<novo-pseudo-checkbox *ngIf=\"selectable && multiple\" class=\"novo-option-pseudo-checkbox\"\n [state]=\"selected ? 'checked' : 'unchecked'\" [disabled]=\"disabled\"></novo-pseudo-checkbox>\n\n<span class=\"novo-option-text\">\n <ng-content></ng-content>\n</span>\n\n<novo-pseudo-checkbox *ngIf=\"selectable && !multiple && selected\" class=\"novo-option-pseudo-checkbox\" state=\"checked\"\n shape=\"line\"\n [disabled]=\"disabled\"></novo-pseudo-checkbox>\n\n<!-- See a11y notes inside optgroup.ts for context behind this element. -->\n<span class=\"cdk-visually-hidden\" *ngIf=\"group && group._inert\">({{ group.label }})</span>",
25494
25585
  encapsulation: i0.ViewEncapsulation.None,
25495
25586
  changeDetection: i0.ChangeDetectionStrategy.OnPush,
25496
- styles: ["@-webkit-keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@-webkit-keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@-webkit-keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@-webkit-keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}@keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}.novo-option{-webkit-tap-highlight-color:transparent;align-items:center;box-sizing:border-box;color:inherit;cursor:pointer;display:inline;display:flex;flex:1;flex-direction:row;font-size:1.2rem;font-weight:400;gap:1rem;margin:0;max-width:100%;outline:none;padding:1rem 1rem 1rem 1.6rem;position:relative}.novo-option:hover{background:var(--background-main,rgba(74,137,220,.1));color:var(--text-bright,#3d464d)}.novo-option.novo-active,.novo-option:active{background:rgba(74,137,220,.3)}.novo-option.novo-selected{color:#4a89dc}.novo-option.disabled,.novo-option[aria-disabled=true]{color:#bebebe;cursor:not-allowed}.novo-option.disabled:hover,.novo-option[aria-disabled=true]:hover{background:rgba(218,68,83,.1)}.novo-optgroup .novo-option:not(.novo-option-multiple){padding-left:1rem}[dir=rtl] .novo-optgroup .novo-option:not(.novo-option-multiple){padding-left:.5rem;padding-right:1rem}.novo-option-text{align-items:center;display:inline-block;display:inline-flex;flex-direction:row;flex-grow:1;gap:1rem;overflow:hidden;text-overflow:ellipsis}.novo-option-pseudo-checkbox{margin-right:.25rem}[dir=rtl] .novo-option-pseudo-checkbox{margin-left:.25rem;margin-right:0}"]
25587
+ styles: ["@-webkit-keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@-webkit-keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@-webkit-keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@-webkit-keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}@keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}.novo-option{-webkit-tap-highlight-color:transparent;align-items:center;box-sizing:border-box;color:inherit;cursor:pointer;display:inline;display:flex;flex:1;flex-direction:row;font-size:1.2rem;font-weight:400;gap:1rem;margin:0;max-width:100%;outline:none;padding:1rem 1rem 1rem 1.6rem;position:relative}.novo-option:hover{background:var(--background-main,rgba(74,137,220,.1));color:var(--text-bright,#3d464d)}.novo-option.novo-active,.novo-option:active{background:rgba(74,137,220,.3)}.novo-option.novo-selected{color:#4a89dc}.novo-option.disabled,.novo-option[aria-disabled=true]{color:#bebebe;cursor:not-allowed}.novo-option.disabled:hover,.novo-option[aria-disabled=true]:hover{background:rgba(218,68,83,.1)}.novo-optgroup .novo-option:not(.novo-option-multiple){padding-left:1rem}[dir=rtl] .novo-optgroup .novo-option:not(.novo-option-multiple){padding-left:.5rem;padding-right:1rem}.novo-option.novo-accent-black{border-left:4px solid #000}.novo-option.novo-fill-black{background:#000;color:#fff}.novo-option.novo-fill-black:focus,.novo-option.novo-fill-black:hover{background:#333}.novo-option.novo-fill-black:active{background:#000}.novo-option.novo-accent-white{border-left:4px solid #fff}.novo-option.novo-fill-white{background:#fff;color:#000}.novo-option.novo-fill-white:focus,.novo-option.novo-fill-white:hover{background:#fff}.novo-option.novo-fill-white:active{background:#ccc}.novo-option.novo-accent-gray{border-left:4px solid #9e9e9e}.novo-option.novo-fill-gray{background:#9e9e9e;color:#000}.novo-option.novo-fill-gray:focus,.novo-option.novo-fill-gray:hover{background:#d1d1d1}.novo-option.novo-fill-gray:active{background:#6b6b6b}.novo-option.novo-accent-grey{border-left:4px solid #9e9e9e}.novo-option.novo-fill-grey{background:#9e9e9e;color:#000}.novo-option.novo-fill-grey:focus,.novo-option.novo-fill-grey:hover{background:#d1d1d1}.novo-option.novo-fill-grey:active{background:#6b6b6b}.novo-option.novo-accent-offWhite{border-left:4px solid #f7f7f7}.novo-option.novo-fill-offWhite{background:#f7f7f7;color:#000}.novo-option.novo-fill-offWhite:focus,.novo-option.novo-fill-offWhite:hover{background:#fff}.novo-option.novo-fill-offWhite:active{background:#c4c4c4}.novo-option.novo-accent-bright{border-left:4px solid #f7f7f7}.novo-option.novo-fill-bright{background:#f7f7f7;color:#000}.novo-option.novo-fill-bright:focus,.novo-option.novo-fill-bright:hover{background:#fff}.novo-option.novo-fill-bright:active{background:#c4c4c4}.novo-option.novo-accent-light{border-left:4px solid #dbdbdb}.novo-option.novo-fill-light{background:#dbdbdb;color:#000}.novo-option.novo-fill-light:focus,.novo-option.novo-fill-light:hover{background:#fff}.novo-option.novo-fill-light:active{background:#a8a8a8}.novo-option.novo-accent-neutral{border-left:4px solid #4f5361}.novo-option.novo-fill-neutral{background:#4f5361;color:#fff}.novo-option.novo-fill-neutral:focus,.novo-option.novo-fill-neutral:hover{background:#7f8497}.novo-option.novo-fill-neutral:active{background:#212329}.novo-option.novo-accent-dark{border-left:4px solid #3d464d}.novo-option.novo-fill-dark{background:#3d464d;color:#fff}.novo-option.novo-fill-dark:focus,.novo-option.novo-fill-dark:hover{background:#6a7a86}.novo-option.novo-fill-dark:active{background:#101214}.novo-option.novo-accent-orange{border-left:4px solid #ff6900}.novo-option.novo-fill-orange{background:#ff6900;color:#000}.novo-option.novo-fill-orange:focus,.novo-option.novo-fill-orange:hover{background:#ffa566}.novo-option.novo-fill-orange:active{background:#993f00}.novo-option.novo-accent-navigation{border-left:4px solid #202b38}.novo-option.novo-fill-navigation{background:#202b38;color:#fff}.novo-option.novo-fill-navigation:focus,.novo-option.novo-fill-navigation:hover{background:#455d79}.novo-option.novo-fill-navigation:active{background:#000}.novo-option.novo-accent-skyBlue{border-left:4px solid #009bdf}.novo-option.novo-fill-skyBlue{background:#009bdf;color:#fff}.novo-option.novo-fill-skyBlue:focus,.novo-option.novo-fill-skyBlue:hover{background:#46c7ff}.novo-option.novo-fill-skyBlue:active{background:#005479}.novo-option.novo-accent-steel{border-left:4px solid #5b6770}.novo-option.novo-fill-steel{background:#5b6770;color:#fff}.novo-option.novo-fill-steel:focus,.novo-option.novo-fill-steel:hover{background:#8e9aa3}.novo-option.novo-fill-steel:active{background:#2d3338}.novo-option.novo-accent-metal{border-left:4px solid #637893}.novo-option.novo-fill-metal{background:#637893;color:#fff}.novo-option.novo-fill-metal:focus,.novo-option.novo-fill-metal:hover{background:#9eacbe}.novo-option.novo-fill-metal:active{background:#3a4656}.novo-option.novo-accent-sand{border-left:4px solid #f4f4f4}.novo-option.novo-fill-sand{background:#f4f4f4;color:#000}.novo-option.novo-fill-sand:focus,.novo-option.novo-fill-sand:hover{background:#fff}.novo-option.novo-fill-sand:active{background:#c1c1c1}.novo-option.novo-accent-silver{border-left:4px solid #e2e2e2}.novo-option.novo-fill-silver{background:#e2e2e2;color:#000}.novo-option.novo-fill-silver:focus,.novo-option.novo-fill-silver:hover{background:#fff}.novo-option.novo-fill-silver:active{background:#afafaf}.novo-option.novo-accent-stone{border-left:4px solid #bebebe}.novo-option.novo-fill-stone{background:#bebebe;color:#000}.novo-option.novo-fill-stone:focus,.novo-option.novo-fill-stone:hover{background:#f1f1f1}.novo-option.novo-fill-stone:active{background:#8b8b8b}.novo-option.novo-accent-ash{border-left:4px solid #a0a0a0}.novo-option.novo-fill-ash{background:#a0a0a0;color:#000}.novo-option.novo-fill-ash:focus,.novo-option.novo-fill-ash:hover{background:#d3d3d3}.novo-option.novo-fill-ash:active{background:#6d6d6d}.novo-option.novo-accent-slate{border-left:4px solid #707070}.novo-option.novo-fill-slate{background:#707070;color:#fff}.novo-option.novo-fill-slate:focus,.novo-option.novo-fill-slate:hover{background:#a3a3a3}.novo-option.novo-fill-slate:active{background:#3d3d3d}.novo-option.novo-accent-onyx{border-left:4px solid #526980}.novo-option.novo-fill-onyx{background:#526980;color:#fff}.novo-option.novo-fill-onyx:focus,.novo-option.novo-fill-onyx:hover{background:#869cb2}.novo-option.novo-fill-onyx:active{background:#2a3642}.novo-option.novo-accent-charcoal{border-left:4px solid #282828}.novo-option.novo-fill-charcoal{background:#282828;color:#fff}.novo-option.novo-fill-charcoal:focus,.novo-option.novo-fill-charcoal:hover{background:#5b5b5b}.novo-option.novo-fill-charcoal:active{background:#000}.novo-option.novo-accent-moonlight{border-left:4px solid #1a242f}.novo-option.novo-fill-moonlight{background:#1a242f;color:#fff}.novo-option.novo-fill-moonlight:focus,.novo-option.novo-fill-moonlight:hover{background:#3e5671}.novo-option.novo-fill-moonlight:active{background:#000}.novo-option.novo-accent-midnight{border-left:4px solid #202b38}.novo-option.novo-fill-midnight{background:#202b38;color:#fff}.novo-option.novo-fill-midnight:focus,.novo-option.novo-fill-midnight:hover{background:#455d79}.novo-option.novo-fill-midnight:active{background:#000}.novo-option.novo-accent-darkness{border-left:4px solid #161f27}.novo-option.novo-fill-darkness{background:#161f27;color:#fff}.novo-option.novo-fill-darkness:focus,.novo-option.novo-fill-darkness:hover{background:#3b5368}.novo-option.novo-fill-darkness:active{background:#000}.novo-option.novo-accent-navy{border-left:4px solid #0d2d42}.novo-option.novo-fill-navy{background:#0d2d42;color:#fff}.novo-option.novo-fill-navy:focus,.novo-option.novo-fill-navy:hover{background:#1e6797}.novo-option.novo-fill-navy:active{background:#000}.novo-option.novo-accent-aqua{border-left:4px solid #3bafda}.novo-option.novo-fill-aqua{background:#3bafda;color:#000}.novo-option.novo-fill-aqua:focus,.novo-option.novo-fill-aqua:hover{background:#91d2ea}.novo-option.novo-fill-aqua:active{background:#1c7393}.novo-option.novo-accent-ocean{border-left:4px solid #4a89dc}.novo-option.novo-fill-ocean{background:#4a89dc;color:#fff}.novo-option.novo-fill-ocean:focus,.novo-option.novo-fill-ocean:hover{background:#9fc1ed}.novo-option.novo-fill-ocean:active{background:#1f57a1}.novo-option.novo-accent-mint{border-left:4px solid #37bc9b}.novo-option.novo-fill-mint{background:#37bc9b;color:#000}.novo-option.novo-fill-mint:focus,.novo-option.novo-fill-mint:hover{background:#7fdac3}.novo-option.novo-fill-mint:active{background:#206d5a}.novo-option.novo-accent-grass{border-left:4px solid #8cc152}.novo-option.novo-fill-grass{background:#8cc152;color:#000}.novo-option.novo-fill-grass:focus,.novo-option.novo-fill-grass:hover{background:#bedc9d}.novo-option.novo-fill-grass:active{background:#587f2e}.novo-option.novo-accent-sunflower{border-left:4px solid #f6b042}.novo-option.novo-fill-sunflower{background:#f6b042;color:#000}.novo-option.novo-fill-sunflower:focus,.novo-option.novo-fill-sunflower:hover{background:#fbd9a3}.novo-option.novo-fill-sunflower:active{background:#c87e0a}.novo-option.novo-accent-bittersweet{border-left:4px solid #eb6845}.novo-option.novo-fill-bittersweet{background:#eb6845;color:#fff}.novo-option.novo-fill-bittersweet:focus,.novo-option.novo-fill-bittersweet:hover{background:#f5b3a1}.novo-option.novo-fill-bittersweet:active{background:#b63614}.novo-option.novo-accent-grapefruit{border-left:4px solid #da4453}.novo-option.novo-fill-grapefruit{background:#da4453;color:#fff}.novo-option.novo-fill-grapefruit:focus,.novo-option.novo-fill-grapefruit:hover{background:#eb99a1}.novo-option.novo-fill-grapefruit:active{background:#9a1e2b}.novo-option.novo-accent-carnation{border-left:4px solid #d770ad}.novo-option.novo-fill-carnation{background:#d770ad;color:#fff}.novo-option.novo-fill-carnation:focus,.novo-option.novo-fill-carnation:hover{background:#edc0db}.novo-option.novo-fill-carnation:active{background:#b0317c}.novo-option.novo-accent-lavender{border-left:4px solid #967adc}.novo-option.novo-fill-lavender{background:#967adc;color:#fff}.novo-option.novo-fill-lavender:focus,.novo-option.novo-fill-lavender:hover{background:#d6cbf1}.novo-option.novo-fill-lavender:active{background:#5a32be}.novo-option.novo-accent-mountain{border-left:4px solid #9678b6}.novo-option.novo-fill-mountain{background:#9678b6;color:#fff}.novo-option.novo-fill-mountain:focus,.novo-option.novo-fill-mountain:hover{background:#c9bada}.novo-option.novo-fill-mountain:active{background:#634682}.novo-option.novo-accent-positive{border-left:4px solid #4a89dc}.novo-option.novo-fill-positive{background:#4a89dc;color:#fff}.novo-option.novo-fill-positive:focus,.novo-option.novo-fill-positive:hover{background:#9fc1ed}.novo-option.novo-fill-positive:active{background:#1f57a1}.novo-option.novo-accent-success{border-left:4px solid #8cc152}.novo-option.novo-fill-success{background:#8cc152;color:#000}.novo-option.novo-fill-success:focus,.novo-option.novo-fill-success:hover{background:#bedc9d}.novo-option.novo-fill-success:active{background:#587f2e}.novo-option.novo-accent-negative{border-left:4px solid #da4453}.novo-option.novo-fill-negative{background:#da4453;color:#fff}.novo-option.novo-fill-negative:focus,.novo-option.novo-fill-negative:hover{background:#eb99a1}.novo-option.novo-fill-negative:active{background:#9a1e2b}.novo-option.novo-accent-warning{border-left:4px solid #f6b042}.novo-option.novo-fill-warning{background:#f6b042;color:#000}.novo-option.novo-fill-warning:focus,.novo-option.novo-fill-warning:hover{background:#fbd9a3}.novo-option.novo-fill-warning:active{background:#c87e0a}.novo-option.novo-accent-empty{border-left:4px solid #cccdcc}.novo-option.novo-fill-empty{background:#cccdcc;color:#000}.novo-option.novo-fill-empty:focus,.novo-option.novo-fill-empty:hover{background:#fff}.novo-option.novo-fill-empty:active{background:#989b98}.novo-option.novo-accent-disabled{border-left:4px solid #bebebe}.novo-option.novo-fill-disabled{background:#bebebe;color:#000}.novo-option.novo-fill-disabled:focus,.novo-option.novo-fill-disabled:hover{background:#f1f1f1}.novo-option.novo-fill-disabled:active{background:#8b8b8b}.novo-option.novo-accent-background{border-left:4px solid #f7f7f7}.novo-option.novo-fill-background{background:#f7f7f7;color:#000}.novo-option.novo-fill-background:focus,.novo-option.novo-fill-background:hover{background:#fff}.novo-option.novo-fill-background:active{background:#c4c4c4}.novo-option.novo-accent-backgroundDark{border-left:4px solid #e2e2e2}.novo-option.novo-fill-backgroundDark{background:#e2e2e2;color:#000}.novo-option.novo-fill-backgroundDark:focus,.novo-option.novo-fill-backgroundDark:hover{background:#fff}.novo-option.novo-fill-backgroundDark:active{background:#afafaf}.novo-option.novo-accent-presentation{border-left:4px solid #5b6770}.novo-option.novo-fill-presentation{background:#5b6770;color:#fff}.novo-option.novo-fill-presentation:focus,.novo-option.novo-fill-presentation:hover{background:#8e9aa3}.novo-option.novo-fill-presentation:active{background:#2d3338}.novo-option.novo-accent-bullhorn{border-left:4px solid #ff6900}.novo-option.novo-fill-bullhorn{background:#ff6900;color:#000}.novo-option.novo-fill-bullhorn:focus,.novo-option.novo-fill-bullhorn:hover{background:#ffa566}.novo-option.novo-fill-bullhorn:active{background:#993f00}.novo-option.novo-accent-pulse{border-left:4px solid #3bafda}.novo-option.novo-fill-pulse{background:#3bafda;color:#000}.novo-option.novo-fill-pulse:focus,.novo-option.novo-fill-pulse:hover{background:#91d2ea}.novo-option.novo-fill-pulse:active{background:#1c7393}.novo-option.novo-accent-company{border-left:4px solid #39d}.novo-option.novo-fill-company{background:#39d;color:#fff}.novo-option.novo-fill-company:focus,.novo-option.novo-fill-company:hover{background:#8ac5ec}.novo-option.novo-fill-company:active{background:#186192}.novo-option.novo-accent-candidate{border-left:4px solid #4b7}.novo-option.novo-fill-candidate{background:#4b7;color:#000}.novo-option.novo-fill-candidate:focus,.novo-option.novo-fill-candidate:hover{background:#8fd6ad}.novo-option.novo-fill-candidate:active{background:#297047}.novo-option.novo-accent-lead{border-left:4px solid #a69}.novo-option.novo-fill-lead{background:#a69;color:#fff}.novo-option.novo-fill-lead:focus,.novo-option.novo-fill-lead:hover{background:#cea8c5}.novo-option.novo-fill-lead:active{background:#6d3d61}.novo-option.novo-accent-contact{border-left:4px solid #fa4}.novo-option.novo-fill-contact{background:#fa4;color:#000}.novo-option.novo-fill-contact:focus,.novo-option.novo-fill-contact:hover{background:#ffd8aa}.novo-option.novo-fill-contact:active{background:#dd7900}.novo-option.novo-accent-opportunity{border-left:4px solid #625}.novo-option.novo-fill-opportunity{background:#625;color:#fff}.novo-option.novo-fill-opportunity:focus,.novo-option.novo-fill-opportunity:hover{background:#b33b95}.novo-option.novo-fill-opportunity:active{background:#190815}.novo-option.novo-accent-job{border-left:4px solid #b56}.novo-option.novo-fill-job{background:#b56;color:#fff}.novo-option.novo-fill-job:focus,.novo-option.novo-fill-job:hover{background:#d89ea8}.novo-option.novo-fill-job:active{background:#79313d}.novo-option.novo-accent-submission{border-left:4px solid #a9adbb}.novo-option.novo-fill-submission{background:#a9adbb;color:#000}.novo-option.novo-fill-submission:focus,.novo-option.novo-fill-submission:hover{background:#e2e3e8}.novo-option.novo-fill-submission:active{background:#70778e}.novo-option.novo-accent-sendout{border-left:4px solid #747884}.novo-option.novo-fill-sendout{background:#747884;color:#fff}.novo-option.novo-fill-sendout:focus,.novo-option.novo-fill-sendout:hover{background:#aaacb4}.novo-option.novo-fill-sendout:active{background:#44474e}.novo-option.novo-accent-placement{border-left:4px solid #0b344f}.novo-option.novo-fill-placement{background:#0b344f;color:#fff}.novo-option.novo-fill-placement:focus,.novo-option.novo-fill-placement:hover{background:#176fa9}.novo-option.novo-fill-placement:active{background:#000}.novo-option.novo-accent-note{border-left:4px solid #747884}.novo-option.novo-fill-note{background:#747884;color:#fff}.novo-option.novo-fill-note:focus,.novo-option.novo-fill-note:hover{background:#aaacb4}.novo-option.novo-fill-note:active{background:#44474e}.novo-option.novo-accent-contract{border-left:4px solid #454ea0}.novo-option.novo-fill-contract{background:#454ea0;color:#fff}.novo-option.novo-fill-contract:focus,.novo-option.novo-fill-contract:hover{background:#8289c9}.novo-option.novo-fill-contract:active{background:#262b59}.novo-option.novo-accent-jobCode{border-left:4px solid #696d79}.novo-option.novo-fill-jobCode{background:#696d79;color:#fff}.novo-option.novo-fill-jobCode:focus,.novo-option.novo-fill-jobCode:hover{background:#9ea1aa}.novo-option.novo-fill-jobCode:active{background:#3a3c42}.novo-option.novo-accent-earnCode{border-left:4px solid #696d79}.novo-option.novo-fill-earnCode{background:#696d79;color:#fff}.novo-option.novo-fill-earnCode:focus,.novo-option.novo-fill-earnCode:hover{background:#9ea1aa}.novo-option.novo-fill-earnCode:active{background:#3a3c42}.novo-option.novo-accent-invoiceStatement{border-left:4px solid #696d79}.novo-option.novo-fill-invoiceStatement{background:#696d79;color:#fff}.novo-option.novo-fill-invoiceStatement:focus,.novo-option.novo-fill-invoiceStatement:hover{background:#9ea1aa}.novo-option.novo-fill-invoiceStatement:active{background:#3a3c42}.novo-option.novo-accent-billableCharge{border-left:4px solid #696d79}.novo-option.novo-fill-billableCharge{background:#696d79;color:#fff}.novo-option.novo-fill-billableCharge:focus,.novo-option.novo-fill-billableCharge:hover{background:#9ea1aa}.novo-option.novo-fill-billableCharge:active{background:#3a3c42}.novo-option.novo-accent-payableCharge{border-left:4px solid #696d79}.novo-option.novo-fill-payableCharge{background:#696d79;color:#fff}.novo-option.novo-fill-payableCharge:focus,.novo-option.novo-fill-payableCharge:hover{background:#9ea1aa}.novo-option.novo-fill-payableCharge:active{background:#3a3c42}.novo-option.novo-accent-user{border-left:4px solid #696d79}.novo-option.novo-fill-user{background:#696d79;color:#fff}.novo-option.novo-fill-user:focus,.novo-option.novo-fill-user:hover{background:#9ea1aa}.novo-option.novo-fill-user:active{background:#3a3c42}.novo-option.novo-accent-corporateUser{border-left:4px solid #696d79}.novo-option.novo-fill-corporateUser{background:#696d79;color:#fff}.novo-option.novo-fill-corporateUser:focus,.novo-option.novo-fill-corporateUser:hover{background:#9ea1aa}.novo-option.novo-fill-corporateUser:active{background:#3a3c42}.novo-option.novo-accent-distributionList{border-left:4px solid #696d79}.novo-option.novo-fill-distributionList{background:#696d79;color:#fff}.novo-option.novo-fill-distributionList:focus,.novo-option.novo-fill-distributionList:hover{background:#9ea1aa}.novo-option.novo-fill-distributionList:active{background:#3a3c42}.novo-option.novo-accent-credential{border-left:4px solid #696d79}.novo-option.novo-fill-credential{background:#696d79;color:#fff}.novo-option.novo-fill-credential:focus,.novo-option.novo-fill-credential:hover{background:#9ea1aa}.novo-option.novo-fill-credential:active{background:#3a3c42}.novo-option.novo-accent-person{border-left:4px solid #696d79}.novo-option.novo-fill-person{background:#696d79;color:#fff}.novo-option.novo-fill-person:focus,.novo-option.novo-fill-person:hover{background:#9ea1aa}.novo-option.novo-fill-person:active{background:#3a3c42}.novo-option-text{align-items:center;display:inline-block;display:inline-flex;flex-direction:row;flex-grow:1;gap:1rem;overflow:hidden;text-overflow:ellipsis}.novo-option-pseudo-checkbox{margin-right:.25rem}[dir=rtl] .novo-option-pseudo-checkbox{margin-left:.25rem;margin-right:0}"]
25497
25588
  },] }
25498
25589
  ];
25499
25590
  NovoOption.ctorParameters = function () { return [
@@ -25697,6 +25788,9 @@
25697
25788
  { type: i0.Component, args: [{
25698
25789
  selector: 'novo-caption,[novo-caption]',
25699
25790
  template: " <ng-content></ng-content> ",
25791
+ host: {
25792
+ class: 'novo-caption',
25793
+ },
25700
25794
  styles: ["@-webkit-keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@-webkit-keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@-webkit-keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@-webkit-keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}@keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}:host{color:#4f5361;display:inline;font-family:Roboto,sans-serif;font-size:.9rem;font-weight:400;line-height:1.2rem}:host.text-nowrap{white-space:nowrap}:host.text-size-default{font-size:.9rem}:host.text-size-small{font-size:.8rem}:host.text-size-large{font-size:1rem}:host.text-color-black{color:#000}:host.text-color-white{color:#fff}:host.text-color-gray,:host.text-color-grey{color:#9e9e9e}:host.text-color-bright,:host.text-color-offWhite{color:#f7f7f7}:host.text-color-light{color:#dbdbdb}:host.text-color-neutral{color:#4f5361}:host.text-color-dark{color:#3d464d}:host.text-color-orange{color:#ff6900}:host.text-color-navigation{color:#202b38}:host.text-color-skyBlue{color:#009bdf}:host.text-color-steel{color:#5b6770}:host.text-color-metal{color:#637893}:host.text-color-sand{color:#f4f4f4}:host.text-color-silver{color:#e2e2e2}:host.text-color-stone{color:#bebebe}:host.text-color-ash{color:#a0a0a0}:host.text-color-slate{color:#707070}:host.text-color-onyx{color:#526980}:host.text-color-charcoal{color:#282828}:host.text-color-moonlight{color:#1a242f}:host.text-color-midnight{color:#202b38}:host.text-color-darkness{color:#161f27}:host.text-color-navy{color:#0d2d42}:host.text-color-aqua{color:#3bafda}:host.text-color-ocean{color:#4a89dc}:host.text-color-mint{color:#37bc9b}:host.text-color-grass{color:#8cc152}:host.text-color-sunflower{color:#f6b042}:host.text-color-bittersweet{color:#eb6845}:host.text-color-grapefruit{color:#da4453}:host.text-color-carnation{color:#d770ad}:host.text-color-lavender{color:#967adc}:host.text-color-mountain{color:#9678b6}:host.text-color-positive{color:#4a89dc}:host.text-color-success{color:#8cc152}:host.text-color-negative{color:#da4453}:host.text-color-warning{color:#f6b042}:host.text-color-empty{color:#cccdcc}:host.text-color-disabled{color:#bebebe}:host.text-color-background{color:#f7f7f7}:host.text-color-backgroundDark{color:#e2e2e2}:host.text-color-presentation{color:#5b6770}:host.text-color-bullhorn{color:#ff6900}:host.text-color-pulse{color:#3bafda}:host.text-color-company{color:#39d}:host.text-color-candidate{color:#4b7}:host.text-color-lead{color:#a69}:host.text-color-contact{color:#fa4}:host.text-color-opportunity{color:#625}:host.text-color-job{color:#b56}:host.text-color-submission{color:#a9adbb}:host.text-color-sendout{color:#747884}:host.text-color-placement{color:#0b344f}:host.text-color-note{color:#747884}:host.text-color-contract{color:#454ea0}:host.text-color-billableCharge,:host.text-color-corporateUser,:host.text-color-credential,:host.text-color-distributionList,:host.text-color-earnCode,:host.text-color-invoiceStatement,:host.text-color-jobCode,:host.text-color-payableCharge,:host.text-color-person,:host.text-color-user{color:#696d79}:host.text-weight-thin{font-weight:200}:host.text-weight-default{font-weight:400}:host.text-weight-medium{font-weight:500}:host.text-weight-bold{font-weight:700}:host.margin-before{margin-top:.4rem}:host.margin-after{margin-bottom:.8rem}:host.text-length-small{max-width:40ch}:host.text-length-medium{max-width:55ch}:host.text-length-large{max-width:70ch}:host novo-icon{font-size:1em;vertical-align:top}"]
25701
25795
  },] }
25702
25796
  ];
@@ -25722,6 +25816,9 @@
25722
25816
  { type: i0.Component, args: [{
25723
25817
  selector: 'novo-label,[novo-label]',
25724
25818
  template: " <ng-content></ng-content> ",
25819
+ host: {
25820
+ class: 'novo-label',
25821
+ },
25725
25822
  styles: ["@-webkit-keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@-webkit-keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@-webkit-keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@-webkit-keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}@keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}:host{color:inherit;display:inline-block;font-family:Roboto,sans-serif;font-size:1.1rem;font-weight:500;line-height:1.2rem;overflow-wrap:break-word;text-transform:uppercase;transition:.2s ease-out;word-break:word-break}:host::ng-deep novo-icon{font-size:1em;vertical-align:top}:host.text-nowrap{white-space:nowrap}:host.text-size-default{font-size:1.1rem}:host.text-size-small{font-size:1rem}:host.text-size-large{font-size:1.2rem}:host.text-color-black{color:#000}:host.text-color-white{color:#fff}:host.text-color-gray,:host.text-color-grey{color:#9e9e9e}:host.text-color-bright,:host.text-color-offWhite{color:#f7f7f7}:host.text-color-light{color:#dbdbdb}:host.text-color-neutral{color:#4f5361}:host.text-color-dark{color:#3d464d}:host.text-color-orange{color:#ff6900}:host.text-color-navigation{color:#202b38}:host.text-color-skyBlue{color:#009bdf}:host.text-color-steel{color:#5b6770}:host.text-color-metal{color:#637893}:host.text-color-sand{color:#f4f4f4}:host.text-color-silver{color:#e2e2e2}:host.text-color-stone{color:#bebebe}:host.text-color-ash{color:#a0a0a0}:host.text-color-slate{color:#707070}:host.text-color-onyx{color:#526980}:host.text-color-charcoal{color:#282828}:host.text-color-moonlight{color:#1a242f}:host.text-color-midnight{color:#202b38}:host.text-color-darkness{color:#161f27}:host.text-color-navy{color:#0d2d42}:host.text-color-aqua{color:#3bafda}:host.text-color-ocean{color:#4a89dc}:host.text-color-mint{color:#37bc9b}:host.text-color-grass{color:#8cc152}:host.text-color-sunflower{color:#f6b042}:host.text-color-bittersweet{color:#eb6845}:host.text-color-grapefruit{color:#da4453}:host.text-color-carnation{color:#d770ad}:host.text-color-lavender{color:#967adc}:host.text-color-mountain{color:#9678b6}:host.text-color-positive{color:#4a89dc}:host.text-color-success{color:#8cc152}:host.text-color-negative{color:#da4453}:host.text-color-warning{color:#f6b042}:host.text-color-empty{color:#cccdcc}:host.text-color-disabled{color:#bebebe}:host.text-color-background{color:#f7f7f7}:host.text-color-backgroundDark{color:#e2e2e2}:host.text-color-presentation{color:#5b6770}:host.text-color-bullhorn{color:#ff6900}:host.text-color-pulse{color:#3bafda}:host.text-color-company{color:#39d}:host.text-color-candidate{color:#4b7}:host.text-color-lead{color:#a69}:host.text-color-contact{color:#fa4}:host.text-color-opportunity{color:#625}:host.text-color-job{color:#b56}:host.text-color-submission{color:#a9adbb}:host.text-color-sendout{color:#747884}:host.text-color-placement{color:#0b344f}:host.text-color-note{color:#747884}:host.text-color-contract{color:#454ea0}:host.text-color-billableCharge,:host.text-color-corporateUser,:host.text-color-credential,:host.text-color-distributionList,:host.text-color-earnCode,:host.text-color-invoiceStatement,:host.text-color-jobCode,:host.text-color-payableCharge,:host.text-color-person,:host.text-color-user{color:#696d79}:host.margin-before{margin-top:.4rem}:host.margin-after{margin-bottom:.8rem}"]
25726
25823
  },] }
25727
25824
  ];
@@ -25748,6 +25845,9 @@
25748
25845
  selector: 'novo-link',
25749
25846
  template: "<a [attr.href]=\"href\"><ng-content></ng-content></a>",
25750
25847
  encapsulation: i0.ViewEncapsulation.None,
25848
+ host: {
25849
+ class: 'novo-link',
25850
+ },
25751
25851
  styles: ["@-webkit-keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@-webkit-keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@-webkit-keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@-webkit-keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}@keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}:host{display:inline;font-family:Roboto,sans-serif;font-size:1em;font-weight:400;line-height:inherit}:host::ng-deep novo-icon{font-size:1em;vertical-align:top}:host.text-nowrap{white-space:nowrap}:host.text-size-default{font-size:1em}:host.text-size-small{font-size:.8em}:host.text-size-large{font-size:1.2em}:host.text-color-black{color:#000}:host.text-color-white{color:#fff}:host.text-color-gray,:host.text-color-grey{color:#9e9e9e}:host.text-color-bright,:host.text-color-offWhite{color:#f7f7f7}:host.text-color-light{color:#dbdbdb}:host.text-color-neutral{color:#4f5361}:host.text-color-dark{color:#3d464d}:host.text-color-orange{color:#ff6900}:host.text-color-navigation{color:#202b38}:host.text-color-skyBlue{color:#009bdf}:host.text-color-steel{color:#5b6770}:host.text-color-metal{color:#637893}:host.text-color-sand{color:#f4f4f4}:host.text-color-silver{color:#e2e2e2}:host.text-color-stone{color:#bebebe}:host.text-color-ash{color:#a0a0a0}:host.text-color-slate{color:#707070}:host.text-color-onyx{color:#526980}:host.text-color-charcoal{color:#282828}:host.text-color-moonlight{color:#1a242f}:host.text-color-midnight{color:#202b38}:host.text-color-darkness{color:#161f27}:host.text-color-navy{color:#0d2d42}:host.text-color-aqua{color:#3bafda}:host.text-color-ocean{color:#4a89dc}:host.text-color-mint{color:#37bc9b}:host.text-color-grass{color:#8cc152}:host.text-color-sunflower{color:#f6b042}:host.text-color-bittersweet{color:#eb6845}:host.text-color-grapefruit{color:#da4453}:host.text-color-carnation{color:#d770ad}:host.text-color-lavender{color:#967adc}:host.text-color-mountain{color:#9678b6}:host.text-color-positive{color:#4a89dc}:host.text-color-success{color:#8cc152}:host.text-color-negative{color:#da4453}:host.text-color-warning{color:#f6b042}:host.text-color-empty{color:#cccdcc}:host.text-color-disabled{color:#bebebe}:host.text-color-background{color:#f7f7f7}:host.text-color-backgroundDark{color:#e2e2e2}:host.text-color-presentation{color:#5b6770}:host.text-color-bullhorn{color:#ff6900}:host.text-color-pulse{color:#3bafda}:host.text-color-company{color:#39d}:host.text-color-candidate{color:#4b7}:host.text-color-lead{color:#a69}:host.text-color-contact{color:#fa4}:host.text-color-opportunity{color:#625}:host.text-color-job{color:#b56}:host.text-color-submission{color:#a9adbb}:host.text-color-sendout{color:#747884}:host.text-color-placement{color:#0b344f}:host.text-color-note{color:#747884}:host.text-color-contract{color:#454ea0}:host.text-color-billableCharge,:host.text-color-corporateUser,:host.text-color-credential,:host.text-color-distributionList,:host.text-color-earnCode,:host.text-color-invoiceStatement,:host.text-color-jobCode,:host.text-color-payableCharge,:host.text-color-person,:host.text-color-user{color:#696d79}:host.text-weight-thin{font-weight:200}:host.text-weight-default{font-weight:400}:host.text-weight-medium{font-weight:500}:host.text-weight-bold{font-weight:700}:host.margin-before{margin-top:.4rem}:host.margin-after{margin-bottom:.8rem}"]
25752
25852
  },] }
25753
25853
  ];
@@ -25776,7 +25876,11 @@
25776
25876
  { type: i0.Component, args: [{
25777
25877
  selector: 'novo-text,[novo-text]',
25778
25878
  template: " <ng-content></ng-content> ",
25779
- styles: ["@-webkit-keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@-webkit-keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@-webkit-keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@-webkit-keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}@keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}:host{color:inherit;display:inline;font-family:Roboto,sans-serif;font-size:1.2rem;font-weight:400;line-height:1.5rem}:host.text-block{display:block;line-height:1.5rem;max-width:75ch;min-width:55ch}:host::ng-deep novo-icon{font-size:1.2em;vertical-align:top}:host.text-nowrap{white-space:nowrap}:host.text-size-default{font-size:1.2rem}:host.text-size-small{font-size:1rem}:host.text-size-large{font-size:1.4rem}:host.text-color-black{color:#000}:host.text-color-white{color:#fff}:host.text-color-gray,:host.text-color-grey{color:#9e9e9e}:host.text-color-bright,:host.text-color-offWhite{color:#f7f7f7}:host.text-color-light{color:#dbdbdb}:host.text-color-neutral{color:#4f5361}:host.text-color-dark{color:#3d464d}:host.text-color-orange{color:#ff6900}:host.text-color-navigation{color:#202b38}:host.text-color-skyBlue{color:#009bdf}:host.text-color-steel{color:#5b6770}:host.text-color-metal{color:#637893}:host.text-color-sand{color:#f4f4f4}:host.text-color-silver{color:#e2e2e2}:host.text-color-stone{color:#bebebe}:host.text-color-ash{color:#a0a0a0}:host.text-color-slate{color:#707070}:host.text-color-onyx{color:#526980}:host.text-color-charcoal{color:#282828}:host.text-color-moonlight{color:#1a242f}:host.text-color-midnight{color:#202b38}:host.text-color-darkness{color:#161f27}:host.text-color-navy{color:#0d2d42}:host.text-color-aqua{color:#3bafda}:host.text-color-ocean{color:#4a89dc}:host.text-color-mint{color:#37bc9b}:host.text-color-grass{color:#8cc152}:host.text-color-sunflower{color:#f6b042}:host.text-color-bittersweet{color:#eb6845}:host.text-color-grapefruit{color:#da4453}:host.text-color-carnation{color:#d770ad}:host.text-color-lavender{color:#967adc}:host.text-color-mountain{color:#9678b6}:host.text-color-positive{color:#4a89dc}:host.text-color-success{color:#8cc152}:host.text-color-negative{color:#da4453}:host.text-color-warning{color:#f6b042}:host.text-color-empty{color:#cccdcc}:host.text-color-disabled{color:#bebebe}:host.text-color-background{color:#f7f7f7}:host.text-color-backgroundDark{color:#e2e2e2}:host.text-color-presentation{color:#5b6770}:host.text-color-bullhorn{color:#ff6900}:host.text-color-pulse{color:#3bafda}:host.text-color-company{color:#39d}:host.text-color-candidate{color:#4b7}:host.text-color-lead{color:#a69}:host.text-color-contact{color:#fa4}:host.text-color-opportunity{color:#625}:host.text-color-job{color:#b56}:host.text-color-submission{color:#a9adbb}:host.text-color-sendout{color:#747884}:host.text-color-placement{color:#0b344f}:host.text-color-note{color:#747884}:host.text-color-contract{color:#454ea0}:host.text-color-billableCharge,:host.text-color-corporateUser,:host.text-color-credential,:host.text-color-distributionList,:host.text-color-earnCode,:host.text-color-invoiceStatement,:host.text-color-jobCode,:host.text-color-payableCharge,:host.text-color-person,:host.text-color-user{color:#696d79}:host.text-weight-thin{font-weight:200}:host.text-weight-default{font-weight:400}:host.text-weight-medium{font-weight:500}:host.text-weight-bold{font-weight:700}:host.margin-before{margin-top:.4rem}:host.margin-after{margin-bottom:.8rem}:host.text-length-small{max-width:40ch}:host.text-length-medium{max-width:55ch}:host.text-length-large{max-width:70ch}"]
25879
+ encapsulation: i0.ViewEncapsulation.None,
25880
+ host: {
25881
+ class: 'novo-text',
25882
+ },
25883
+ styles: ["@-webkit-keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@-webkit-keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@-webkit-keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@-webkit-keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}@keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}.novo-text{color:inherit;display:inline;font-family:Roboto,sans-serif;font-size:1.2rem;font-weight:400;line-height:1.5rem}.novo-text.text-block{display:block;line-height:1.5rem;max-width:75ch;min-width:55ch}.novo-text::ng-deep novo-icon{font-size:1.2em;vertical-align:top}.novo-text.text-nowrap{white-space:nowrap}.novo-text.text-size-default{font-size:1.2rem}.novo-text.text-size-small{font-size:1rem}.novo-text.text-size-large{font-size:1.4rem}.novo-text.text-color-black{color:#000}.novo-text.text-color-white{color:#fff}.novo-text.text-color-gray,.novo-text.text-color-grey{color:#9e9e9e}.novo-text.text-color-bright,.novo-text.text-color-offWhite{color:#f7f7f7}.novo-text.text-color-light{color:#dbdbdb}.novo-text.text-color-neutral{color:#4f5361}.novo-text.text-color-dark{color:#3d464d}.novo-text.text-color-orange{color:#ff6900}.novo-text.text-color-navigation{color:#202b38}.novo-text.text-color-skyBlue{color:#009bdf}.novo-text.text-color-steel{color:#5b6770}.novo-text.text-color-metal{color:#637893}.novo-text.text-color-sand{color:#f4f4f4}.novo-text.text-color-silver{color:#e2e2e2}.novo-text.text-color-stone{color:#bebebe}.novo-text.text-color-ash{color:#a0a0a0}.novo-text.text-color-slate{color:#707070}.novo-text.text-color-onyx{color:#526980}.novo-text.text-color-charcoal{color:#282828}.novo-text.text-color-moonlight{color:#1a242f}.novo-text.text-color-midnight{color:#202b38}.novo-text.text-color-darkness{color:#161f27}.novo-text.text-color-navy{color:#0d2d42}.novo-text.text-color-aqua{color:#3bafda}.novo-text.text-color-ocean{color:#4a89dc}.novo-text.text-color-mint{color:#37bc9b}.novo-text.text-color-grass{color:#8cc152}.novo-text.text-color-sunflower{color:#f6b042}.novo-text.text-color-bittersweet{color:#eb6845}.novo-text.text-color-grapefruit{color:#da4453}.novo-text.text-color-carnation{color:#d770ad}.novo-text.text-color-lavender{color:#967adc}.novo-text.text-color-mountain{color:#9678b6}.novo-text.text-color-positive{color:#4a89dc}.novo-text.text-color-success{color:#8cc152}.novo-text.text-color-negative{color:#da4453}.novo-text.text-color-warning{color:#f6b042}.novo-text.text-color-empty{color:#cccdcc}.novo-text.text-color-disabled{color:#bebebe}.novo-text.text-color-background{color:#f7f7f7}.novo-text.text-color-backgroundDark{color:#e2e2e2}.novo-text.text-color-presentation{color:#5b6770}.novo-text.text-color-bullhorn{color:#ff6900}.novo-text.text-color-pulse{color:#3bafda}.novo-text.text-color-company{color:#39d}.novo-text.text-color-candidate{color:#4b7}.novo-text.text-color-lead{color:#a69}.novo-text.text-color-contact{color:#fa4}.novo-text.text-color-opportunity{color:#625}.novo-text.text-color-job{color:#b56}.novo-text.text-color-submission{color:#a9adbb}.novo-text.text-color-sendout{color:#747884}.novo-text.text-color-placement{color:#0b344f}.novo-text.text-color-note{color:#747884}.novo-text.text-color-contract{color:#454ea0}.novo-text.text-color-billableCharge,.novo-text.text-color-corporateUser,.novo-text.text-color-credential,.novo-text.text-color-distributionList,.novo-text.text-color-earnCode,.novo-text.text-color-invoiceStatement,.novo-text.text-color-jobCode,.novo-text.text-color-payableCharge,.novo-text.text-color-person,.novo-text.text-color-user{color:#696d79}.novo-text.text-weight-thin{font-weight:200}.novo-text.text-weight-default{font-weight:400}.novo-text.text-weight-medium{font-weight:500}.novo-text.text-weight-bold{font-weight:700}.novo-text.margin-before{margin-top:.4rem}.novo-text.margin-after{margin-bottom:.8rem}.novo-text.text-length-small{max-width:40ch}.novo-text.text-length-medium{max-width:55ch}.novo-text.text-length-large{max-width:70ch}"]
25780
25884
  },] }
25781
25885
  ];
25782
25886
  NovoText.propDecorators = {
@@ -25808,6 +25912,9 @@
25808
25912
  { type: i0.Component, args: [{
25809
25913
  selector: 'novo-title,[novo-title]',
25810
25914
  template: " <ng-content></ng-content> ",
25915
+ host: {
25916
+ class: 'novo-title',
25917
+ },
25811
25918
  styles: ["@-webkit-keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@-webkit-keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@-webkit-keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@-webkit-keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}@keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}:host{color:inherit;display:block;font-family:Roboto,sans-serif;font-size:1.8rem;font-weight:500;line-height:1.2rem;text-overflow:ellipsis}:host,:host.text-nowrap{white-space:nowrap}:host.text-size-default{font-size:1.8rem}:host.text-size-small{font-size:1.5rem}:host.text-size-large{font-size:2.1rem}:host.text-color-black{color:#000}:host.text-color-white{color:#fff}:host.text-color-gray,:host.text-color-grey{color:#9e9e9e}:host.text-color-bright,:host.text-color-offWhite{color:#f7f7f7}:host.text-color-light{color:#dbdbdb}:host.text-color-neutral{color:#4f5361}:host.text-color-dark{color:#3d464d}:host.text-color-orange{color:#ff6900}:host.text-color-navigation{color:#202b38}:host.text-color-skyBlue{color:#009bdf}:host.text-color-steel{color:#5b6770}:host.text-color-metal{color:#637893}:host.text-color-sand{color:#f4f4f4}:host.text-color-silver{color:#e2e2e2}:host.text-color-stone{color:#bebebe}:host.text-color-ash{color:#a0a0a0}:host.text-color-slate{color:#707070}:host.text-color-onyx{color:#526980}:host.text-color-charcoal{color:#282828}:host.text-color-moonlight{color:#1a242f}:host.text-color-midnight{color:#202b38}:host.text-color-darkness{color:#161f27}:host.text-color-navy{color:#0d2d42}:host.text-color-aqua{color:#3bafda}:host.text-color-ocean{color:#4a89dc}:host.text-color-mint{color:#37bc9b}:host.text-color-grass{color:#8cc152}:host.text-color-sunflower{color:#f6b042}:host.text-color-bittersweet{color:#eb6845}:host.text-color-grapefruit{color:#da4453}:host.text-color-carnation{color:#d770ad}:host.text-color-lavender{color:#967adc}:host.text-color-mountain{color:#9678b6}:host.text-color-positive{color:#4a89dc}:host.text-color-success{color:#8cc152}:host.text-color-negative{color:#da4453}:host.text-color-warning{color:#f6b042}:host.text-color-empty{color:#cccdcc}:host.text-color-disabled{color:#bebebe}:host.text-color-background{color:#f7f7f7}:host.text-color-backgroundDark{color:#e2e2e2}:host.text-color-presentation{color:#5b6770}:host.text-color-bullhorn{color:#ff6900}:host.text-color-pulse{color:#3bafda}:host.text-color-company{color:#39d}:host.text-color-candidate{color:#4b7}:host.text-color-lead{color:#a69}:host.text-color-contact{color:#fa4}:host.text-color-opportunity{color:#625}:host.text-color-job{color:#b56}:host.text-color-submission{color:#a9adbb}:host.text-color-sendout{color:#747884}:host.text-color-placement{color:#0b344f}:host.text-color-note{color:#747884}:host.text-color-contract{color:#454ea0}:host.text-color-billableCharge,:host.text-color-corporateUser,:host.text-color-credential,:host.text-color-distributionList,:host.text-color-earnCode,:host.text-color-invoiceStatement,:host.text-color-jobCode,:host.text-color-payableCharge,:host.text-color-person,:host.text-color-user{color:#696d79}:host.margin-before{margin-top:.4rem}:host.margin-after{margin-bottom:.8rem}:host::ng-deep novo-icon{font-size:1em;vertical-align:top}"]
25812
25919
  },] }
25813
25920
  ];
@@ -25832,6 +25939,9 @@
25832
25939
  BackgroundColorDirective,
25833
25940
  TextColorDirective,
25834
25941
  BorderDirective,
25942
+ GapDirective,
25943
+ AccentColorDirective,
25944
+ FillColorDirective,
25835
25945
  ],
25836
25946
  declarations: [
25837
25947
  NovoTemplate,
@@ -25845,6 +25955,9 @@
25845
25955
  BackgroundColorDirective,
25846
25956
  TextColorDirective,
25847
25957
  BorderDirective,
25958
+ GapDirective,
25959
+ AccentColorDirective,
25960
+ FillColorDirective,
25848
25961
  ],
25849
25962
  },] }
25850
25963
  ];
@@ -25898,10 +26011,10 @@
25898
26011
  var colorPalette = value || this.defaultColor;
25899
26012
  if (colorPalette !== this._color) {
25900
26013
  if (this._color) {
25901
- this._elementRef.nativeElement.classList.remove("novo-" + this._color);
26014
+ this._elementRef.nativeElement.classList.remove("novo-color-" + this._color);
25902
26015
  }
25903
26016
  if (colorPalette) {
25904
- this._elementRef.nativeElement.classList.add("novo-" + colorPalette);
26017
+ this._elementRef.nativeElement.classList.add("novo-color-" + colorPalette);
25905
26018
  }
25906
26019
  this._color = colorPalette;
25907
26020
  }
@@ -33119,7 +33232,7 @@
33119
33232
  };
33120
33233
 
33121
33234
  // NG2
33122
- var ɵ0 = {
33235
+ var ɵ0$1 = {
33123
33236
  separatorKeyCodes: ["Enter" /* Enter */],
33124
33237
  };
33125
33238
  var NovoChipsModule = /** @class */ (function () {
@@ -33154,7 +33267,7 @@
33154
33267
  ErrorStateMatcher,
33155
33268
  {
33156
33269
  provide: NOVO_CHIPS_DEFAULT_OPTIONS,
33157
- useValue: ɵ0,
33270
+ useValue: ɵ0$1,
33158
33271
  },
33159
33272
  ],
33160
33273
  },] }
@@ -43619,7 +43732,10 @@
43619
43732
  NovoUtilActionComponent.decorators = [
43620
43733
  { type: i0.Component, args: [{
43621
43734
  selector: 'util-action, novo-action',
43622
- template: "\n <novo-button theme=\"icon\" [icon]=\"icon\" [attr.inverse]=\"inverse\" [disabled]=\"disabled\">\n <ng-content></ng-content>\n </novo-button>\n "
43735
+ template: "\n <novo-button theme=\"icon\" [icon]=\"icon\" [attr.inverse]=\"inverse\" [disabled]=\"disabled\">\n <ng-content></ng-content>\n </novo-button>\n ",
43736
+ host: {
43737
+ class: 'novo-action',
43738
+ }
43623
43739
  },] }
43624
43740
  ];
43625
43741
  NovoUtilActionComponent.propDecorators = {
@@ -45099,8 +45215,6 @@
45099
45215
  template: '<ng-content></ng-content>',
45100
45216
  host: {
45101
45217
  class: 'novo-layout-content',
45102
- '[style.margin-left.px]': '_container._contentMargins.left',
45103
- '[style.margin-right.px]': '_container._contentMargins.right',
45104
45218
  },
45105
45219
  changeDetection: i0.ChangeDetectionStrategy.OnPush,
45106
45220
  encapsulation: i0.ViewEncapsulation.None
@@ -45114,6 +45228,31 @@
45114
45228
  { type: i0.NgZone }
45115
45229
  ]; };
45116
45230
 
45231
+ var NovoRailComponent = /** @class */ (function (_super) {
45232
+ __extends(NovoRailComponent, _super);
45233
+ function NovoRailComponent(elementRef, scrollDispatcher, ngZone) {
45234
+ return _super.call(this, elementRef, scrollDispatcher, ngZone) || this;
45235
+ }
45236
+ NovoRailComponent.prototype.ngAfterContentInit = function () { };
45237
+ return NovoRailComponent;
45238
+ }(i1.CdkScrollable));
45239
+ NovoRailComponent.decorators = [
45240
+ { type: i0.Component, args: [{
45241
+ selector: 'novo-rail',
45242
+ template: "\n <div class=\"novo-rail-contents\">\n <ng-content></ng-content>\n </div>\n ",
45243
+ host: {
45244
+ class: 'novo-rail',
45245
+ },
45246
+ changeDetection: i0.ChangeDetectionStrategy.OnPush,
45247
+ encapsulation: i0.ViewEncapsulation.None
45248
+ },] }
45249
+ ];
45250
+ NovoRailComponent.ctorParameters = function () { return [
45251
+ { type: i0.ElementRef },
45252
+ { type: i1.ScrollDispatcher },
45253
+ { type: i0.NgZone }
45254
+ ]; };
45255
+
45117
45256
  /**
45118
45257
  * Animations used by the Material drawers.
45119
45258
  * @docs-private
@@ -45862,7 +46001,7 @@
45862
46001
  { type: i0.Component, args: [{
45863
46002
  selector: 'novo-layout-container',
45864
46003
  exportAs: 'novoLayoutContainer',
45865
- template: "<div class=\"novo-drawer-backdrop\" (click)=\"_onBackdropClicked()\" *ngIf=\"hasBackdrop\"\n [class.novo-drawer-shown]=\"_isShowingBackdrop()\"></div>\n\n<ng-content select=\"novo-sidenav\"></ng-content>\n\n<ng-content select=\"novo-layout-content\">\n</ng-content>\n\n<novo-layout-content *ngIf=\"!_content\" cdkScrollable>\n <ng-content></ng-content>\n</novo-layout-content>",
46004
+ template: "<div class=\"novo-drawer-backdrop\" (click)=\"_onBackdropClicked()\" *ngIf=\"hasBackdrop\"\n [class.novo-drawer-shown]=\"_isShowingBackdrop()\"></div>\n\n<ng-content select=\"novo-sidenav\"></ng-content>\n\n<div class=\"novo-layout-content-container\"\n [class.and-has-rail]=\"_rail\"\n [style.margin-left.px]=\"_contentMargins.left\"\n [style.margin-right.px]=\"_contentMargins.right\">\n <ng-content select=\"novo-rail\"></ng-content>\n\n <ng-content select=\"novo-layout-content\">\n </ng-content>\n\n <novo-layout-content *ngIf=\"!_content\" cdkScrollable>\n <ng-content></ng-content>\n </novo-layout-content>\n</div>",
45866
46005
  host: {
45867
46006
  class: 'novo-layout-container',
45868
46007
  '[class.novo-layout-container-explicit-backdrop]': '_backdropOverride',
@@ -45875,7 +46014,7 @@
45875
46014
  useExisting: NovoLayoutContainer$1,
45876
46015
  },
45877
46016
  ],
45878
- styles: ["@-webkit-keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@-webkit-keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@-webkit-keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@-webkit-keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}@keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}.novo-layout-container{-webkit-overflow-scrolling:touch;box-sizing:border-box;display:block;height:100%;overflow:hidden;position:relative;z-index:1}.novo-layout-container[fullscreen].novo-layout-container-has-open{overflow:hidden}.novo-layout-container.novo-layout-container-explicit-backdrop .novo-drawer-side{z-index:3}.ng-animate-disabled .novo-layout-container .novo-drawer-backdrop,.ng-animate-disabled .novo-layout-container .novo-layout-content,.novo-layout-container.ng-animate-disabled .novo-drawer-backdrop,.novo-layout-container.ng-animate-disabled .novo-layout-content{transition:none}.novo-drawer-backdrop{background:#000;bottom:0;display:block;left:0;opacity:.5;position:absolute;right:0;top:0;visibility:hidden;z-index:3}.novo-drawer-backdrop.novo-drawer-shown{visibility:visible}.novo-drawer-transition .novo-drawer-backdrop{transition-duration:.1s;transition-property:background-color,visibility;transition-timing-function:ease-out}.novo-layout-content{display:block;height:100%;overflow:auto;position:relative;z-index:1}.novo-drawer-transition .novo-layout-content{transition-duration:.1s;transition-property:transform,margin-left,margin-right;transition-timing-function:ease-out}"]
46017
+ styles: ["@-webkit-keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@-webkit-keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@-webkit-keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@-webkit-keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}@keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}.novo-layout-container{-webkit-overflow-scrolling:touch;box-sizing:border-box;display:block;height:100%;overflow:hidden;position:relative;z-index:1}.novo-layout-container[fullscreen].novo-layout-container-has-open{overflow:hidden}.novo-layout-container.novo-layout-container-explicit-backdrop .novo-drawer-side{z-index:3}.ng-animate-disabled .novo-layout-container .novo-drawer-backdrop,.ng-animate-disabled .novo-layout-container .novo-layout-content,.novo-layout-container.ng-animate-disabled .novo-drawer-backdrop,.novo-layout-container.ng-animate-disabled .novo-layout-content{transition:none}.novo-drawer-backdrop{background:#000;bottom:0;display:block;left:0;opacity:.5;position:absolute;right:0;top:0;visibility:hidden;z-index:3}.novo-drawer-backdrop.novo-drawer-shown{visibility:visible}.novo-drawer-transition .novo-drawer-backdrop{transition-duration:.1s;transition-property:background-color,visibility;transition-timing-function:ease-out}.novo-layout-content{display:block;height:100%;overflow:auto;position:relative;z-index:1}.novo-drawer-transition .novo-layout-content{transition-duration:.1s;transition-property:transform,margin-left,margin-right;transition-timing-function:ease-out}.novo-rail{align-items:flex-start;background:var(--background-bright);display:inline-flex;flex-direction:column;height:inherit;height:100%;justify-content:flex-start;min-width:5rem;width:-webkit-max-content;width:-moz-max-content;width:max-content}.novo-rail .novo-rail-contents{display:inline-flex;flex-direction:column;width:-webkit-fill-available}.novo-layout-content-container{display:grid;grid-template-columns:1fr;height:100%}.novo-layout-content-container.and-has-rail{grid-template-columns:auto 1fr}"]
45879
46018
  },] }
45880
46019
  ];
45881
46020
  NovoLayoutContainer$1.ctorParameters = function () { return [
@@ -45893,6 +46032,7 @@
45893
46032
  // indirect descendants if it's left as false.
45894
46033
  descendants: true,
45895
46034
  },] }],
46035
+ _rail: [{ type: i0.ContentChild, args: [NovoRailComponent,] }],
45896
46036
  _content: [{ type: i0.ContentChild, args: [NovoLayoutContent,] }],
45897
46037
  _userContent: [{ type: i0.ViewChild, args: [NovoLayoutContent,] }],
45898
46038
  autosize: [{ type: i0.Input }],
@@ -45909,8 +46049,8 @@
45909
46049
  NovoLayoutModule.decorators = [
45910
46050
  { type: i0.NgModule, args: [{
45911
46051
  imports: [common.CommonModule],
45912
- declarations: [NovoLayoutContainer$1, NovoLayoutContent, NovoSidenavComponent],
45913
- exports: [NovoLayoutContainer$1, NovoLayoutContent, NovoSidenavComponent],
46052
+ declarations: [NovoLayoutContainer$1, NovoLayoutContent, NovoSidenavComponent, NovoRailComponent],
46053
+ exports: [NovoLayoutContainer$1, NovoLayoutContent, NovoSidenavComponent, NovoRailComponent],
45914
46054
  },] }
45915
46055
  ];
45916
46056
 
@@ -52556,6 +52696,74 @@
52556
52696
  },] }
52557
52697
  ];
52558
52698
 
52699
+ // Boilerplate for applying mixins to NovoToolbar.
52700
+ /** @docs-private */
52701
+ var _NovoToolbarBase = mixinColor(/** @class */ (function () {
52702
+ function class_1(_elementRef) {
52703
+ this._elementRef = _elementRef;
52704
+ }
52705
+ return class_1;
52706
+ }()));
52707
+ var NovoToolbarRow = /** @class */ (function (_super) {
52708
+ __extends(NovoToolbarRow, _super);
52709
+ function NovoToolbarRow(elementRef) {
52710
+ return _super.call(this, elementRef) || this;
52711
+ }
52712
+ return NovoToolbarRow;
52713
+ }(_NovoToolbarBase));
52714
+ NovoToolbarRow.decorators = [
52715
+ { type: i0.Directive, args: [{
52716
+ selector: 'novo-toolbar-row',
52717
+ host: { class: 'novo-toolbar-row' },
52718
+ inputs: ['color', 'gap'],
52719
+ },] }
52720
+ ];
52721
+ NovoToolbarRow.ctorParameters = function () { return [
52722
+ { type: i0.ElementRef }
52723
+ ]; };
52724
+ var NovoToolbar = /** @class */ (function (_super) {
52725
+ __extends(NovoToolbar, _super);
52726
+ function NovoToolbar(elementRef) {
52727
+ return _super.call(this, elementRef) || this;
52728
+ }
52729
+ return NovoToolbar;
52730
+ }(_NovoToolbarBase));
52731
+ NovoToolbar.decorators = [
52732
+ { type: i0.Component, args: [{
52733
+ selector: 'novo-toolbar',
52734
+ template: "<ng-content></ng-content>\n<ng-content select=\"novo-toolbar-row\"></ng-content>",
52735
+ inputs: ['color', 'gap'],
52736
+ host: {
52737
+ class: 'novo-toolbar',
52738
+ '[class.novo-toolbar-multiple-rows]': '_toolbarRows.length > 0',
52739
+ '[class.novo-toolbar-single-row]': '_toolbarRows.length === 0',
52740
+ },
52741
+ changeDetection: i0.ChangeDetectionStrategy.OnPush,
52742
+ encapsulation: i0.ViewEncapsulation.None,
52743
+ styles: ["@-webkit-keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@keyframes rotate{0%{transform:rotate(0deg)}75%{transform:rotate(200deg)}to{transform:rotate(180deg)}}@-webkit-keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@keyframes half-rotate{0%{transform:rotate(45deg)}75%{transform:rotate(100deg)}to{transform:rotate(90deg)}}@-webkit-keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@keyframes rotateBack{0%{transform:rotate(90deg)}to{transform:rotate(0deg)}}@-webkit-keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}@keyframes show{0%{opacity:0;transform:translateX(-100%)}75%{transform:translateX(0)}to{opacity:1;transform:translateX(0)}}.novo-toolbar .novo-toolbar-row,.novo-toolbar.novo-toolbar-single-row{align-items:center;background-color:var(--background-bright);box-sizing:border-box;color:var(--text-main);display:flex;flex-direction:row;min-height:5rem;padding:0 1rem;white-space:nowrap;width:100%}.novo-toolbar .novo-toolbar-row .novo-divider.novo-divider-vertical,.novo-toolbar .novo-toolbar-row novo-nav,.novo-toolbar .novo-toolbar-row novo-tab,.novo-toolbar.novo-toolbar-single-row .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row novo-nav,.novo-toolbar.novo-toolbar-single-row novo-tab{height:inherit;min-height:inherit}.novo-toolbar .novo-toolbar-row.novo-color-black,.novo-toolbar.novo-toolbar-single-row.novo-color-black{background:#000;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-black>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-black>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-black>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-black>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-black>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-black>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-black>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-black>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-black>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-black>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-black>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-black>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-black .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-black .novo-divider.novo-divider-vertical{border-right-color:#333}.novo-toolbar .novo-toolbar-row.novo-accent-black,.novo-toolbar.novo-toolbar-single-row.novo-accent-black{border-bottom:2px solid #000}.novo-toolbar .novo-toolbar-row.novo-color-white,.novo-toolbar.novo-toolbar-single-row.novo-color-white{background:#fff;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-white>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-white>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-white>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-white>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-white>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-white>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-white>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-white>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-white>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-white>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-white>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-white>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-white .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-white .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-white,.novo-toolbar.novo-toolbar-single-row.novo-accent-white{border-bottom:2px solid #fff}.novo-toolbar .novo-toolbar-row.novo-color-gray,.novo-toolbar.novo-toolbar-single-row.novo-color-gray{background:#9e9e9e;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-gray>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-gray>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-gray>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-gray>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-gray>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-gray>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-gray>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-gray>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-gray>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-gray>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-gray>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-gray>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-gray .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-gray .novo-divider.novo-divider-vertical{border-right-color:#d1d1d1}.novo-toolbar .novo-toolbar-row.novo-accent-gray,.novo-toolbar.novo-toolbar-single-row.novo-accent-gray{border-bottom:2px solid #9e9e9e}.novo-toolbar .novo-toolbar-row.novo-color-grey,.novo-toolbar.novo-toolbar-single-row.novo-color-grey{background:#9e9e9e;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-grey>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-grey>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-grey>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-grey>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-grey>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-grey>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-grey>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-grey>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-grey>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-grey>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-grey>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-grey>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-grey .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-grey .novo-divider.novo-divider-vertical{border-right-color:#d1d1d1}.novo-toolbar .novo-toolbar-row.novo-accent-grey,.novo-toolbar.novo-toolbar-single-row.novo-accent-grey{border-bottom:2px solid #9e9e9e}.novo-toolbar .novo-toolbar-row.novo-color-offWhite,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite{background:#f7f7f7;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-offWhite>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-offWhite>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-offWhite>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-offWhite>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-offWhite>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-offWhite>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-offWhite .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-offWhite .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-offWhite,.novo-toolbar.novo-toolbar-single-row.novo-accent-offWhite{border-bottom:2px solid #f7f7f7}.novo-toolbar .novo-toolbar-row.novo-color-bright,.novo-toolbar.novo-toolbar-single-row.novo-color-bright{background:#f7f7f7;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-bright>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-bright>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-bright>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-bright>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-bright>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-bright>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-bright>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-bright>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-bright>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-bright>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-bright>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-bright>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-bright .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-bright .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-bright,.novo-toolbar.novo-toolbar-single-row.novo-accent-bright{border-bottom:2px solid #f7f7f7}.novo-toolbar .novo-toolbar-row.novo-color-light,.novo-toolbar.novo-toolbar-single-row.novo-color-light{background:#dbdbdb;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-light>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-light>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-light>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-light>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-light>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-light>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-light>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-light>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-light>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-light>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-light>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-light>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-light .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-light .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-light,.novo-toolbar.novo-toolbar-single-row.novo-accent-light{border-bottom:2px solid #dbdbdb}.novo-toolbar .novo-toolbar-row.novo-color-neutral,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral{background:#4f5361;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-neutral>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-neutral>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-neutral>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-neutral>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-neutral>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-neutral>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-neutral .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-neutral .novo-divider.novo-divider-vertical{border-right-color:#7f8497}.novo-toolbar .novo-toolbar-row.novo-accent-neutral,.novo-toolbar.novo-toolbar-single-row.novo-accent-neutral{border-bottom:2px solid #4f5361}.novo-toolbar .novo-toolbar-row.novo-color-dark,.novo-toolbar.novo-toolbar-single-row.novo-color-dark{background:#3d464d;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-dark>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-dark>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-dark>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-dark>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-dark>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-dark>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-dark>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-dark>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-dark>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-dark>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-dark>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-dark>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-dark .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-dark .novo-divider.novo-divider-vertical{border-right-color:#6a7a86}.novo-toolbar .novo-toolbar-row.novo-accent-dark,.novo-toolbar.novo-toolbar-single-row.novo-accent-dark{border-bottom:2px solid #3d464d}.novo-toolbar .novo-toolbar-row.novo-color-orange,.novo-toolbar.novo-toolbar-single-row.novo-color-orange{background:#ff6900;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-orange>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-orange>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-orange>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-orange>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-orange>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-orange>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-orange>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-orange>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-orange>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-orange>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-orange>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-orange>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-orange .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-orange .novo-divider.novo-divider-vertical{border-right-color:#ffa566}.novo-toolbar .novo-toolbar-row.novo-accent-orange,.novo-toolbar.novo-toolbar-single-row.novo-accent-orange{border-bottom:2px solid #ff6900}.novo-toolbar .novo-toolbar-row.novo-color-navigation,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation{background:#202b38;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-navigation>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-navigation>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-navigation>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-navigation>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-navigation>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-navigation>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-navigation .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-navigation .novo-divider.novo-divider-vertical{border-right-color:#455d79}.novo-toolbar .novo-toolbar-row.novo-accent-navigation,.novo-toolbar.novo-toolbar-single-row.novo-accent-navigation{border-bottom:2px solid #202b38}.novo-toolbar .novo-toolbar-row.novo-color-skyBlue,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue{background:#009bdf;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-skyBlue>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-skyBlue>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-skyBlue>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-skyBlue>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-skyBlue>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-skyBlue>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-skyBlue .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-skyBlue .novo-divider.novo-divider-vertical{border-right-color:#46c7ff}.novo-toolbar .novo-toolbar-row.novo-accent-skyBlue,.novo-toolbar.novo-toolbar-single-row.novo-accent-skyBlue{border-bottom:2px solid #009bdf}.novo-toolbar .novo-toolbar-row.novo-color-steel,.novo-toolbar.novo-toolbar-single-row.novo-color-steel{background:#5b6770;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-steel>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-steel>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-steel>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-steel>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-steel>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-steel>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-steel>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-steel>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-steel>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-steel>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-steel>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-steel>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-steel .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-steel .novo-divider.novo-divider-vertical{border-right-color:#8e9aa3}.novo-toolbar .novo-toolbar-row.novo-accent-steel,.novo-toolbar.novo-toolbar-single-row.novo-accent-steel{border-bottom:2px solid #5b6770}.novo-toolbar .novo-toolbar-row.novo-color-metal,.novo-toolbar.novo-toolbar-single-row.novo-color-metal{background:#637893;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-metal>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-metal>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-metal>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-metal>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-metal>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-metal>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-metal>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-metal>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-metal>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-metal>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-metal>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-metal>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-metal .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-metal .novo-divider.novo-divider-vertical{border-right-color:#9eacbe}.novo-toolbar .novo-toolbar-row.novo-accent-metal,.novo-toolbar.novo-toolbar-single-row.novo-accent-metal{border-bottom:2px solid #637893}.novo-toolbar .novo-toolbar-row.novo-color-sand,.novo-toolbar.novo-toolbar-single-row.novo-color-sand{background:#f4f4f4;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-sand>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-sand>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-sand>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-sand>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-sand>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-sand>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-sand>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-sand>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-sand>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-sand>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-sand>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-sand>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-sand .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-sand .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-sand,.novo-toolbar.novo-toolbar-single-row.novo-accent-sand{border-bottom:2px solid #f4f4f4}.novo-toolbar .novo-toolbar-row.novo-color-silver,.novo-toolbar.novo-toolbar-single-row.novo-color-silver{background:#e2e2e2;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-silver>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-silver>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-silver>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-silver>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-silver>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-silver>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-silver>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-silver>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-silver>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-silver>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-silver>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-silver>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-silver .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-silver .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-silver,.novo-toolbar.novo-toolbar-single-row.novo-accent-silver{border-bottom:2px solid #e2e2e2}.novo-toolbar .novo-toolbar-row.novo-color-stone,.novo-toolbar.novo-toolbar-single-row.novo-color-stone{background:#bebebe;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-stone>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-stone>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-stone>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-stone>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-stone>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-stone>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-stone>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-stone>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-stone>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-stone>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-stone>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-stone>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-stone .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-stone .novo-divider.novo-divider-vertical{border-right-color:#f1f1f1}.novo-toolbar .novo-toolbar-row.novo-accent-stone,.novo-toolbar.novo-toolbar-single-row.novo-accent-stone{border-bottom:2px solid #bebebe}.novo-toolbar .novo-toolbar-row.novo-color-ash,.novo-toolbar.novo-toolbar-single-row.novo-color-ash{background:#a0a0a0;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-ash>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-ash>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-ash>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-ash>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-ash>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-ash>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-ash>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-ash>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-ash>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-ash>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-ash>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-ash>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-ash .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-ash .novo-divider.novo-divider-vertical{border-right-color:#d3d3d3}.novo-toolbar .novo-toolbar-row.novo-accent-ash,.novo-toolbar.novo-toolbar-single-row.novo-accent-ash{border-bottom:2px solid #a0a0a0}.novo-toolbar .novo-toolbar-row.novo-color-slate,.novo-toolbar.novo-toolbar-single-row.novo-color-slate{background:#707070;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-slate>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-slate>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-slate>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-slate>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-slate>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-slate>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-slate>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-slate>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-slate>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-slate>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-slate>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-slate>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-slate .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-slate .novo-divider.novo-divider-vertical{border-right-color:#a3a3a3}.novo-toolbar .novo-toolbar-row.novo-accent-slate,.novo-toolbar.novo-toolbar-single-row.novo-accent-slate{border-bottom:2px solid #707070}.novo-toolbar .novo-toolbar-row.novo-color-onyx,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx{background:#526980;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-onyx>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-onyx>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-onyx>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-onyx>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-onyx>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-onyx>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-onyx .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-onyx .novo-divider.novo-divider-vertical{border-right-color:#869cb2}.novo-toolbar .novo-toolbar-row.novo-accent-onyx,.novo-toolbar.novo-toolbar-single-row.novo-accent-onyx{border-bottom:2px solid #526980}.novo-toolbar .novo-toolbar-row.novo-color-charcoal,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal{background:#282828;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-charcoal>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-charcoal>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-charcoal>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-charcoal>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-charcoal>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-charcoal>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-charcoal .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-charcoal .novo-divider.novo-divider-vertical{border-right-color:#5b5b5b}.novo-toolbar .novo-toolbar-row.novo-accent-charcoal,.novo-toolbar.novo-toolbar-single-row.novo-accent-charcoal{border-bottom:2px solid #282828}.novo-toolbar .novo-toolbar-row.novo-color-moonlight,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight{background:#1a242f;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-moonlight>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-moonlight>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-moonlight>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-moonlight>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-moonlight>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-moonlight>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-moonlight .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-moonlight .novo-divider.novo-divider-vertical{border-right-color:#3e5671}.novo-toolbar .novo-toolbar-row.novo-accent-moonlight,.novo-toolbar.novo-toolbar-single-row.novo-accent-moonlight{border-bottom:2px solid #1a242f}.novo-toolbar .novo-toolbar-row.novo-color-midnight,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight{background:#202b38;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-midnight>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-midnight>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-midnight>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-midnight>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-midnight>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-midnight>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-midnight .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-midnight .novo-divider.novo-divider-vertical{border-right-color:#455d79}.novo-toolbar .novo-toolbar-row.novo-accent-midnight,.novo-toolbar.novo-toolbar-single-row.novo-accent-midnight{border-bottom:2px solid #202b38}.novo-toolbar .novo-toolbar-row.novo-color-darkness,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness{background:#161f27;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-darkness>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-darkness>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-darkness>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-darkness>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-darkness>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-darkness>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-darkness .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-darkness .novo-divider.novo-divider-vertical{border-right-color:#3b5368}.novo-toolbar .novo-toolbar-row.novo-accent-darkness,.novo-toolbar.novo-toolbar-single-row.novo-accent-darkness{border-bottom:2px solid #161f27}.novo-toolbar .novo-toolbar-row.novo-color-navy,.novo-toolbar.novo-toolbar-single-row.novo-color-navy{background:#0d2d42;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-navy>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-navy>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-navy>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-navy>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-navy>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-navy>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-navy>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-navy>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-navy>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-navy>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-navy>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-navy>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-navy .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-navy .novo-divider.novo-divider-vertical{border-right-color:#1e6797}.novo-toolbar .novo-toolbar-row.novo-accent-navy,.novo-toolbar.novo-toolbar-single-row.novo-accent-navy{border-bottom:2px solid #0d2d42}.novo-toolbar .novo-toolbar-row.novo-color-aqua,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua{background:#3bafda;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-aqua>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-aqua>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-aqua>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-aqua>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-aqua>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-aqua>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-aqua .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-aqua .novo-divider.novo-divider-vertical{border-right-color:#91d2ea}.novo-toolbar .novo-toolbar-row.novo-accent-aqua,.novo-toolbar.novo-toolbar-single-row.novo-accent-aqua{border-bottom:2px solid #3bafda}.novo-toolbar .novo-toolbar-row.novo-color-ocean,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean{background:#4a89dc;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-ocean>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-ocean>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-ocean>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-ocean>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-ocean>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-ocean>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-ocean .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-ocean .novo-divider.novo-divider-vertical{border-right-color:#9fc1ed}.novo-toolbar .novo-toolbar-row.novo-accent-ocean,.novo-toolbar.novo-toolbar-single-row.novo-accent-ocean{border-bottom:2px solid #4a89dc}.novo-toolbar .novo-toolbar-row.novo-color-mint,.novo-toolbar.novo-toolbar-single-row.novo-color-mint{background:#37bc9b;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-mint>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-mint>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-mint>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-mint>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-mint>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-mint>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-mint>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-mint>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-mint>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-mint>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-mint>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-mint>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-mint .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-mint .novo-divider.novo-divider-vertical{border-right-color:#7fdac3}.novo-toolbar .novo-toolbar-row.novo-accent-mint,.novo-toolbar.novo-toolbar-single-row.novo-accent-mint{border-bottom:2px solid #37bc9b}.novo-toolbar .novo-toolbar-row.novo-color-grass,.novo-toolbar.novo-toolbar-single-row.novo-color-grass{background:#8cc152;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-grass>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-grass>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-grass>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-grass>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-grass>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-grass>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-grass>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-grass>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-grass>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-grass>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-grass>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-grass>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-grass .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-grass .novo-divider.novo-divider-vertical{border-right-color:#bedc9d}.novo-toolbar .novo-toolbar-row.novo-accent-grass,.novo-toolbar.novo-toolbar-single-row.novo-accent-grass{border-bottom:2px solid #8cc152}.novo-toolbar .novo-toolbar-row.novo-color-sunflower,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower{background:#f6b042;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-sunflower>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-sunflower>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-sunflower>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-sunflower>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-sunflower>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-sunflower>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-sunflower .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-sunflower .novo-divider.novo-divider-vertical{border-right-color:#fbd9a3}.novo-toolbar .novo-toolbar-row.novo-accent-sunflower,.novo-toolbar.novo-toolbar-single-row.novo-accent-sunflower{border-bottom:2px solid #f6b042}.novo-toolbar .novo-toolbar-row.novo-color-bittersweet,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet{background:#eb6845;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-bittersweet>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-bittersweet>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-bittersweet>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-bittersweet>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-bittersweet>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-bittersweet>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-bittersweet .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-bittersweet .novo-divider.novo-divider-vertical{border-right-color:#f5b3a1}.novo-toolbar .novo-toolbar-row.novo-accent-bittersweet,.novo-toolbar.novo-toolbar-single-row.novo-accent-bittersweet{border-bottom:2px solid #eb6845}.novo-toolbar .novo-toolbar-row.novo-color-grapefruit,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit{background:#da4453;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-grapefruit>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-grapefruit>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-grapefruit>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-grapefruit>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-grapefruit>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-grapefruit>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-grapefruit .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-grapefruit .novo-divider.novo-divider-vertical{border-right-color:#eb99a1}.novo-toolbar .novo-toolbar-row.novo-accent-grapefruit,.novo-toolbar.novo-toolbar-single-row.novo-accent-grapefruit{border-bottom:2px solid #da4453}.novo-toolbar .novo-toolbar-row.novo-color-carnation,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation{background:#d770ad;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-carnation>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-carnation>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-carnation>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-carnation>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-carnation>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-carnation>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-carnation .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-carnation .novo-divider.novo-divider-vertical{border-right-color:#edc0db}.novo-toolbar .novo-toolbar-row.novo-accent-carnation,.novo-toolbar.novo-toolbar-single-row.novo-accent-carnation{border-bottom:2px solid #d770ad}.novo-toolbar .novo-toolbar-row.novo-color-lavender,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender{background:#967adc;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-lavender>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-lavender>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-lavender>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-lavender>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-lavender>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-lavender>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-lavender .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-lavender .novo-divider.novo-divider-vertical{border-right-color:#d6cbf1}.novo-toolbar .novo-toolbar-row.novo-accent-lavender,.novo-toolbar.novo-toolbar-single-row.novo-accent-lavender{border-bottom:2px solid #967adc}.novo-toolbar .novo-toolbar-row.novo-color-mountain,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain{background:#9678b6;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-mountain>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-mountain>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-mountain>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-mountain>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-mountain>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-mountain>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-mountain .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-mountain .novo-divider.novo-divider-vertical{border-right-color:#c9bada}.novo-toolbar .novo-toolbar-row.novo-accent-mountain,.novo-toolbar.novo-toolbar-single-row.novo-accent-mountain{border-bottom:2px solid #9678b6}.novo-toolbar .novo-toolbar-row.novo-color-positive,.novo-toolbar.novo-toolbar-single-row.novo-color-positive{background:#4a89dc;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-positive>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-positive>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-positive>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-positive>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-positive>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-positive>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-positive>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-positive>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-positive>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-positive>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-positive>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-positive>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-positive .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-positive .novo-divider.novo-divider-vertical{border-right-color:#9fc1ed}.novo-toolbar .novo-toolbar-row.novo-accent-positive,.novo-toolbar.novo-toolbar-single-row.novo-accent-positive{border-bottom:2px solid #4a89dc}.novo-toolbar .novo-toolbar-row.novo-color-success,.novo-toolbar.novo-toolbar-single-row.novo-color-success{background:#8cc152;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-success>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-success>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-success>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-success>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-success>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-success>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-success>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-success>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-success>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-success>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-success>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-success>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-success .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-success .novo-divider.novo-divider-vertical{border-right-color:#bedc9d}.novo-toolbar .novo-toolbar-row.novo-accent-success,.novo-toolbar.novo-toolbar-single-row.novo-accent-success{border-bottom:2px solid #8cc152}.novo-toolbar .novo-toolbar-row.novo-color-negative,.novo-toolbar.novo-toolbar-single-row.novo-color-negative{background:#da4453;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-negative>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-negative>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-negative>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-negative>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-negative>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-negative>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-negative>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-negative>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-negative>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-negative>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-negative>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-negative>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-negative .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-negative .novo-divider.novo-divider-vertical{border-right-color:#eb99a1}.novo-toolbar .novo-toolbar-row.novo-accent-negative,.novo-toolbar.novo-toolbar-single-row.novo-accent-negative{border-bottom:2px solid #da4453}.novo-toolbar .novo-toolbar-row.novo-color-warning,.novo-toolbar.novo-toolbar-single-row.novo-color-warning{background:#f6b042;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-warning>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-warning>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-warning>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-warning>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-warning>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-warning>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-warning>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-warning>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-warning>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-warning>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-warning>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-warning>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-warning .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-warning .novo-divider.novo-divider-vertical{border-right-color:#fbd9a3}.novo-toolbar .novo-toolbar-row.novo-accent-warning,.novo-toolbar.novo-toolbar-single-row.novo-accent-warning{border-bottom:2px solid #f6b042}.novo-toolbar .novo-toolbar-row.novo-color-empty,.novo-toolbar.novo-toolbar-single-row.novo-color-empty{background:#cccdcc;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-empty>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-empty>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-empty>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-empty>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-empty>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-empty>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-empty>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-empty>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-empty>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-empty>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-empty>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-empty>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-empty .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-empty .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-empty,.novo-toolbar.novo-toolbar-single-row.novo-accent-empty{border-bottom:2px solid #cccdcc}.novo-toolbar .novo-toolbar-row.novo-color-disabled,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled{background:#bebebe;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-disabled>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-disabled>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-disabled>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-disabled>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-disabled>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-disabled>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-disabled .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-disabled .novo-divider.novo-divider-vertical{border-right-color:#f1f1f1}.novo-toolbar .novo-toolbar-row.novo-accent-disabled,.novo-toolbar.novo-toolbar-single-row.novo-accent-disabled{border-bottom:2px solid #bebebe}.novo-toolbar .novo-toolbar-row.novo-color-background,.novo-toolbar.novo-toolbar-single-row.novo-color-background{background:#f7f7f7;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-background>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-background>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-background>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-background>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-background>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-background>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-background>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-background>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-background>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-background>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-background>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-background>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-background .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-background .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-background,.novo-toolbar.novo-toolbar-single-row.novo-accent-background{border-bottom:2px solid #f7f7f7}.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark{background:#e2e2e2;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-backgroundDark .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-backgroundDark .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar .novo-toolbar-row.novo-accent-backgroundDark,.novo-toolbar.novo-toolbar-single-row.novo-accent-backgroundDark{border-bottom:2px solid #e2e2e2}.novo-toolbar .novo-toolbar-row.novo-color-presentation,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation{background:#5b6770;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-presentation>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-presentation>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-presentation>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-presentation>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-presentation>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-presentation>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-presentation .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-presentation .novo-divider.novo-divider-vertical{border-right-color:#8e9aa3}.novo-toolbar .novo-toolbar-row.novo-accent-presentation,.novo-toolbar.novo-toolbar-single-row.novo-accent-presentation{border-bottom:2px solid #5b6770}.novo-toolbar .novo-toolbar-row.novo-color-bullhorn,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn{background:#ff6900;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-bullhorn>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-bullhorn>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-bullhorn>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-bullhorn>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-bullhorn>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-bullhorn>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-bullhorn .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-bullhorn .novo-divider.novo-divider-vertical{border-right-color:#ffa566}.novo-toolbar .novo-toolbar-row.novo-accent-bullhorn,.novo-toolbar.novo-toolbar-single-row.novo-accent-bullhorn{border-bottom:2px solid #ff6900}.novo-toolbar .novo-toolbar-row.novo-color-pulse,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse{background:#3bafda;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-pulse>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-pulse>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-pulse>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-pulse>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-pulse>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-pulse>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-pulse .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-pulse .novo-divider.novo-divider-vertical{border-right-color:#91d2ea}.novo-toolbar .novo-toolbar-row.novo-accent-pulse,.novo-toolbar.novo-toolbar-single-row.novo-accent-pulse{border-bottom:2px solid #3bafda}.novo-toolbar .novo-toolbar-row.novo-color-company,.novo-toolbar.novo-toolbar-single-row.novo-color-company{background:#39d;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-company>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-company>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-company>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-company>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-company>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-company>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-company>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-company>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-company>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-company>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-company>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-company>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-company .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-company .novo-divider.novo-divider-vertical{border-right-color:#8ac5ec}.novo-toolbar .novo-toolbar-row.novo-accent-company,.novo-toolbar.novo-toolbar-single-row.novo-accent-company{border-bottom:2px solid #39d}.novo-toolbar .novo-toolbar-row.novo-color-candidate,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate{background:#4b7;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-candidate>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-candidate>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-candidate>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-candidate>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-candidate>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-candidate>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-candidate .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-candidate .novo-divider.novo-divider-vertical{border-right-color:#8fd6ad}.novo-toolbar .novo-toolbar-row.novo-accent-candidate,.novo-toolbar.novo-toolbar-single-row.novo-accent-candidate{border-bottom:2px solid #4b7}.novo-toolbar .novo-toolbar-row.novo-color-lead,.novo-toolbar.novo-toolbar-single-row.novo-color-lead{background:#a69;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-lead>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-lead>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-lead>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-lead>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-lead>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-lead>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-lead>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-lead>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-lead>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-lead>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-lead>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-lead>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-lead .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-lead .novo-divider.novo-divider-vertical{border-right-color:#cea8c5}.novo-toolbar .novo-toolbar-row.novo-accent-lead,.novo-toolbar.novo-toolbar-single-row.novo-accent-lead{border-bottom:2px solid #a69}.novo-toolbar .novo-toolbar-row.novo-color-contact,.novo-toolbar.novo-toolbar-single-row.novo-color-contact{background:#fa4;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-contact>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-contact>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-contact>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-contact>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-contact>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-contact>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-contact>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-contact>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-contact>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-contact>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-contact>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-contact>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-contact .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-contact .novo-divider.novo-divider-vertical{border-right-color:#ffd8aa}.novo-toolbar .novo-toolbar-row.novo-accent-contact,.novo-toolbar.novo-toolbar-single-row.novo-accent-contact{border-bottom:2px solid #fa4}.novo-toolbar .novo-toolbar-row.novo-color-opportunity,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity{background:#625;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-opportunity>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-opportunity>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-opportunity>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-opportunity>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-opportunity>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-opportunity>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-opportunity .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-opportunity .novo-divider.novo-divider-vertical{border-right-color:#b33b95}.novo-toolbar .novo-toolbar-row.novo-accent-opportunity,.novo-toolbar.novo-toolbar-single-row.novo-accent-opportunity{border-bottom:2px solid #625}.novo-toolbar .novo-toolbar-row.novo-color-job,.novo-toolbar.novo-toolbar-single-row.novo-color-job{background:#b56;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-job>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-job>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-job>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-job>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-job>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-job>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-job>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-job>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-job>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-job>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-job>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-job>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-job .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-job .novo-divider.novo-divider-vertical{border-right-color:#d89ea8}.novo-toolbar .novo-toolbar-row.novo-accent-job,.novo-toolbar.novo-toolbar-single-row.novo-accent-job{border-bottom:2px solid #b56}.novo-toolbar .novo-toolbar-row.novo-color-submission,.novo-toolbar.novo-toolbar-single-row.novo-color-submission{background:#a9adbb;color:#000}.novo-toolbar .novo-toolbar-row.novo-color-submission>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-submission>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-submission>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-submission>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-submission>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-submission>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-submission>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-submission>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-submission>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-submission>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-submission>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-submission>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-submission .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-submission .novo-divider.novo-divider-vertical{border-right-color:#e2e3e8}.novo-toolbar .novo-toolbar-row.novo-accent-submission,.novo-toolbar.novo-toolbar-single-row.novo-accent-submission{border-bottom:2px solid #a9adbb}.novo-toolbar .novo-toolbar-row.novo-color-sendout,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout{background:#747884;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-sendout>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-sendout>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-sendout>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-sendout>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-sendout>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-sendout>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-sendout .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-sendout .novo-divider.novo-divider-vertical{border-right-color:#aaacb4}.novo-toolbar .novo-toolbar-row.novo-accent-sendout,.novo-toolbar.novo-toolbar-single-row.novo-accent-sendout{border-bottom:2px solid #747884}.novo-toolbar .novo-toolbar-row.novo-color-placement,.novo-toolbar.novo-toolbar-single-row.novo-color-placement{background:#0b344f;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-placement>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-placement>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-placement>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-placement>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-placement>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-placement>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-placement>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-placement>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-placement>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-placement>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-placement>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-placement>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-placement .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-placement .novo-divider.novo-divider-vertical{border-right-color:#176fa9}.novo-toolbar .novo-toolbar-row.novo-accent-placement,.novo-toolbar.novo-toolbar-single-row.novo-accent-placement{border-bottom:2px solid #0b344f}.novo-toolbar .novo-toolbar-row.novo-color-note,.novo-toolbar.novo-toolbar-single-row.novo-color-note{background:#747884;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-note>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-note>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-note>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-note>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-note>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-note>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-note>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-note>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-note>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-note>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-note>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-note>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-note .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-note .novo-divider.novo-divider-vertical{border-right-color:#aaacb4}.novo-toolbar .novo-toolbar-row.novo-accent-note,.novo-toolbar.novo-toolbar-single-row.novo-accent-note{border-bottom:2px solid #747884}.novo-toolbar .novo-toolbar-row.novo-color-contract,.novo-toolbar.novo-toolbar-single-row.novo-color-contract{background:#454ea0;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-contract>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-contract>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-contract>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-contract>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-contract>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-contract>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-contract>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-contract>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-contract>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-contract>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-contract>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-contract>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-contract .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-contract .novo-divider.novo-divider-vertical{border-right-color:#8289c9}.novo-toolbar .novo-toolbar-row.novo-accent-contract,.novo-toolbar.novo-toolbar-single-row.novo-accent-contract{border-bottom:2px solid #454ea0}.novo-toolbar .novo-toolbar-row.novo-color-jobCode,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-jobCode>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-jobCode>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-jobCode>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-jobCode>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-jobCode>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-jobCode>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-jobCode .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-jobCode .novo-divider.novo-divider-vertical{border-right-color:#9ea1aa}.novo-toolbar .novo-toolbar-row.novo-accent-jobCode,.novo-toolbar.novo-toolbar-single-row.novo-accent-jobCode{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-earnCode,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-earnCode>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-earnCode>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-earnCode>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-earnCode>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-earnCode>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-earnCode>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-earnCode .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-earnCode .novo-divider.novo-divider-vertical{border-right-color:#9ea1aa}.novo-toolbar .novo-toolbar-row.novo-accent-earnCode,.novo-toolbar.novo-toolbar-single-row.novo-accent-earnCode{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-invoiceStatement .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-invoiceStatement .novo-divider.novo-divider-vertical{border-right-color:#9ea1aa}.novo-toolbar .novo-toolbar-row.novo-accent-invoiceStatement,.novo-toolbar.novo-toolbar-single-row.novo-accent-invoiceStatement{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-billableCharge,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-billableCharge>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-billableCharge>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-billableCharge>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-billableCharge>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-billableCharge>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-billableCharge>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-billableCharge .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-billableCharge .novo-divider.novo-divider-vertical{border-right-color:#9ea1aa}.novo-toolbar .novo-toolbar-row.novo-accent-billableCharge,.novo-toolbar.novo-toolbar-single-row.novo-accent-billableCharge{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-payableCharge,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-payableCharge>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-payableCharge>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-payableCharge>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-payableCharge>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-payableCharge>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-payableCharge>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-payableCharge .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-payableCharge .novo-divider.novo-divider-vertical{border-right-color:#9ea1aa}.novo-toolbar .novo-toolbar-row.novo-accent-payableCharge,.novo-toolbar.novo-toolbar-single-row.novo-accent-payableCharge{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-user,.novo-toolbar.novo-toolbar-single-row.novo-color-user{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-user>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-user>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-user>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-user>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-user>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-user>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-user>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-user>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-user>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-user>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-user>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-user>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-user .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-user .novo-divider.novo-divider-vertical{border-right-color:#9ea1aa}.novo-toolbar .novo-toolbar-row.novo-accent-user,.novo-toolbar.novo-toolbar-single-row.novo-accent-user{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-corporateUser,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-corporateUser>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-corporateUser>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-corporateUser>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-corporateUser>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-corporateUser>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-corporateUser>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-corporateUser .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-corporateUser .novo-divider.novo-divider-vertical{border-right-color:#9ea1aa}.novo-toolbar .novo-toolbar-row.novo-accent-corporateUser,.novo-toolbar.novo-toolbar-single-row.novo-accent-corporateUser{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-distributionList,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-distributionList>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-distributionList>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-distributionList>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-distributionList>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-distributionList>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-distributionList>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-distributionList .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-distributionList .novo-divider.novo-divider-vertical{border-right-color:#9ea1aa}.novo-toolbar .novo-toolbar-row.novo-accent-distributionList,.novo-toolbar.novo-toolbar-single-row.novo-accent-distributionList{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-credential,.novo-toolbar.novo-toolbar-single-row.novo-color-credential{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-credential>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-credential>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-credential>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-credential>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-credential>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-credential>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-credential>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-credential>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-credential>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-credential>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-credential>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-credential>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-credential .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-credential .novo-divider.novo-divider-vertical{border-right-color:#9ea1aa}.novo-toolbar .novo-toolbar-row.novo-accent-credential,.novo-toolbar.novo-toolbar-single-row.novo-accent-credential{border-bottom:2px solid #696d79}.novo-toolbar .novo-toolbar-row.novo-color-person,.novo-toolbar.novo-toolbar-single-row.novo-color-person{background:#696d79;color:#fff}.novo-toolbar .novo-toolbar-row.novo-color-person>novo-action button,.novo-toolbar .novo-toolbar-row.novo-color-person>novo-action novo-button,.novo-toolbar .novo-toolbar-row.novo-color-person>novo-icon,.novo-toolbar .novo-toolbar-row.novo-color-person>novo-label,.novo-toolbar .novo-toolbar-row.novo-color-person>novo-text,.novo-toolbar .novo-toolbar-row.novo-color-person>novo-title,.novo-toolbar.novo-toolbar-single-row.novo-color-person>novo-action button,.novo-toolbar.novo-toolbar-single-row.novo-color-person>novo-action novo-button,.novo-toolbar.novo-toolbar-single-row.novo-color-person>novo-icon,.novo-toolbar.novo-toolbar-single-row.novo-color-person>novo-label,.novo-toolbar.novo-toolbar-single-row.novo-color-person>novo-text,.novo-toolbar.novo-toolbar-single-row.novo-color-person>novo-title{color:inherit}.novo-toolbar .novo-toolbar-row.novo-color-person .novo-divider.novo-divider-vertical,.novo-toolbar.novo-toolbar-single-row.novo-color-person .novo-divider.novo-divider-vertical{border-right-color:#9ea1aa}.novo-toolbar .novo-toolbar-row.novo-accent-person,.novo-toolbar.novo-toolbar-single-row.novo-accent-person{border-bottom:2px solid #696d79}.novo-toolbar.novo-toolbar-multiple-rows{box-sizing:border-box;display:flex;flex-direction:column;width:100%}"]
52744
+ },] }
52745
+ ];
52746
+ NovoToolbar.ctorParameters = function () { return [
52747
+ { type: i0.ElementRef }
52748
+ ]; };
52749
+ NovoToolbar.propDecorators = {
52750
+ _toolbarRows: [{ type: i0.ContentChildren, args: [NovoToolbarRow, { descendants: true },] }]
52751
+ };
52752
+
52753
+ // NG2
52754
+ var NovoToolbarModule = /** @class */ (function () {
52755
+ function NovoToolbarModule() {
52756
+ }
52757
+ return NovoToolbarModule;
52758
+ }());
52759
+ NovoToolbarModule.decorators = [
52760
+ { type: i0.NgModule, args: [{
52761
+ imports: [common.CommonModule],
52762
+ declarations: [NovoToolbar, NovoToolbarRow],
52763
+ exports: [NovoToolbar, NovoToolbarRow],
52764
+ },] }
52765
+ ];
52766
+
52559
52767
  var Unless = /** @class */ (function () {
52560
52768
  function Unless(templateRef, viewContainer, security) {
52561
52769
  this.templateRef = templateRef;
@@ -53416,6 +53624,7 @@
53416
53624
  NovoCommonModule,
53417
53625
  NovoOptionModule,
53418
53626
  NovoStepperModule,
53627
+ NovoToolbarModule,
53419
53628
  scrolling.ScrollingModule,
53420
53629
  NovoTabbedGroupPickerModule,
53421
53630
  NovoNonIdealStateModule,
@@ -53487,6 +53696,7 @@
53487
53696
  * Generated bundle index. Do not edit.
53488
53697
  */
53489
53698
 
53699
+ exports.AccentColorDirective = AccentColorDirective;
53490
53700
  exports.AceEditorControl = AceEditorControl;
53491
53701
  exports.ActivityTableDataSource = ActivityTableDataSource;
53492
53702
  exports.ActivityTableRenderers = ActivityTableRenderers;
@@ -53552,8 +53762,10 @@
53552
53762
  exports.ErrorStateMatcher = ErrorStateMatcher;
53553
53763
  exports.FieldInteractionApi = FieldInteractionApi;
53554
53764
  exports.FileControl = FileControl;
53765
+ exports.FillColorDirective = FillColorDirective;
53555
53766
  exports.FormUtils = FormUtils;
53556
53767
  exports.FormValidators = FormValidators;
53768
+ exports.GapDirective = GapDirective;
53557
53769
  exports.GlobalRef = GlobalRef;
53558
53770
  exports.GooglePlacesModule = GooglePlacesModule;
53559
53771
  exports.GooglePlacesService = GooglePlacesService;
@@ -53798,6 +54010,7 @@
53798
54010
  exports.NovoRadioElement = NovoRadioElement;
53799
54011
  exports.NovoRadioGroup = NovoRadioGroup;
53800
54012
  exports.NovoRadioModule = NovoRadioModule;
54013
+ exports.NovoRailComponent = NovoRailComponent;
53801
54014
  exports.NovoRowChipElement = NovoRowChipElement;
53802
54015
  exports.NovoRowChipsElement = NovoRowChipsElement;
53803
54016
  exports.NovoSearchBoxElement = NovoSearchBoxElement;
@@ -53872,6 +54085,9 @@
53872
54085
  exports.NovoToastElement = NovoToastElement;
53873
54086
  exports.NovoToastModule = NovoToastModule;
53874
54087
  exports.NovoToastService = NovoToastService;
54088
+ exports.NovoToolbar = NovoToolbar;
54089
+ exports.NovoToolbarModule = NovoToolbarModule;
54090
+ exports.NovoToolbarRow = NovoToolbarRow;
53875
54091
  exports.NovoTooltip = NovoTooltip;
53876
54092
  exports.NovoTooltipModule = NovoTooltipModule;
53877
54093
  exports.NovoUtilActionComponent = NovoUtilActionComponent;
@@ -53968,7 +54184,7 @@
53968
54184
  exports.slideInOut = slideInOut;
53969
54185
  exports.throwNovoDuplicatedSidenavError = throwNovoDuplicatedSidenavError;
53970
54186
  exports.zoomInOut = zoomInOut;
53971
- exports.ɵ0 = ɵ0;
54187
+ exports.ɵ0 = ɵ0$1;
53972
54188
 
53973
54189
  Object.defineProperty(exports, '__esModule', { value: true });
53974
54190