novo-elements 6.0.0-next.3 → 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 (141) hide show
  1. package/bundles/novo-elements.umd.js +123 -11
  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/toolbar/toolbar.component.scss +26 -23
  9. package/esm2015/src/elements/common/common.module.js +7 -1
  10. package/esm2015/src/elements/common/directives/accent.directive.js +23 -0
  11. package/esm2015/src/elements/common/directives/fill.directive.js +23 -0
  12. package/esm2015/src/elements/common/index.js +3 -1
  13. package/esm2015/src/elements/common/option/option.component.js +7 -3
  14. package/esm2015/src/elements/common/typography/caption/caption.component.js +4 -1
  15. package/esm2015/src/elements/common/typography/label/label.component.js +4 -1
  16. package/esm2015/src/elements/common/typography/link/link.component.js +4 -1
  17. package/esm2015/src/elements/common/typography/text/text.component.js +7 -3
  18. package/esm2015/src/elements/common/typography/title/title.component.js +4 -1
  19. package/esm2015/src/elements/header/Header.js +5 -2
  20. package/esm2015/src/elements/layout/container/layout-container.component.js +5 -3
  21. package/esm2015/src/elements/layout/content/layout-content.component.js +1 -3
  22. package/esm2015/src/elements/layout/index.js +2 -1
  23. package/esm2015/src/elements/layout/layout.module.js +4 -3
  24. package/esm2015/src/elements/layout/rail/rail.component.js +29 -0
  25. package/esm2015/src/elements/toolbar/toolbar.component.js +1 -1
  26. package/fesm2015/novo-elements.js +109 -12
  27. package/fesm2015/novo-elements.js.map +1 -1
  28. package/novo-elements.scss +5 -0
  29. package/package.json +1 -1
  30. package/schematics/ng-add/fonts/novo-fonts.d.ts +4 -0
  31. package/schematics/ng-add/fonts/novo-fonts.js +39 -0
  32. package/schematics/ng-add/fonts/novo-fonts.js.map +1 -0
  33. package/schematics/ng-add/index.d.ts +10 -0
  34. package/schematics/ng-add/index.js +48 -0
  35. package/schematics/ng-add/index.js.map +1 -0
  36. package/schematics/ng-add/package-config.d.ts +5 -0
  37. package/schematics/ng-add/package-config.js +45 -0
  38. package/schematics/ng-add/package-config.js.map +1 -0
  39. package/schematics/ng-add/schema.d.ts +10 -0
  40. package/schematics/ng-add/schema.js +3 -0
  41. package/schematics/ng-add/schema.js.map +1 -0
  42. package/schematics/ng-add/setup-project.d.ts +9 -0
  43. package/schematics/ng-add/setup-project.js +93 -0
  44. package/schematics/ng-add/setup-project.js.map +1 -0
  45. package/schematics/ng-generate/record/index.d.ts +14 -0
  46. package/schematics/ng-generate/record/index.js +45 -0
  47. package/schematics/ng-generate/record/index.js.map +1 -0
  48. package/schematics/ng-generate/record/schema.d.ts +10 -0
  49. package/schematics/ng-generate/record/schema.js +10 -0
  50. package/schematics/ng-generate/record/schema.js.map +1 -0
  51. package/schematics/ng-update/data/attribute-selectors.d.ts +2 -0
  52. package/schematics/ng-update/data/attribute-selectors.js +5 -0
  53. package/schematics/ng-update/data/attribute-selectors.js.map +1 -0
  54. package/schematics/ng-update/data/class-names.d.ts +2 -0
  55. package/schematics/ng-update/data/class-names.js +13 -0
  56. package/schematics/ng-update/data/class-names.js.map +1 -0
  57. package/schematics/ng-update/data/constructor-checks.d.ts +7 -0
  58. package/schematics/ng-update/data/constructor-checks.js +34 -0
  59. package/schematics/ng-update/data/constructor-checks.js.map +1 -0
  60. package/schematics/ng-update/data/css-selectors.d.ts +20 -0
  61. package/schematics/ng-update/data/css-selectors.js +13 -0
  62. package/schematics/ng-update/data/css-selectors.js.map +1 -0
  63. package/schematics/ng-update/data/element-selectors.d.ts +2 -0
  64. package/schematics/ng-update/data/element-selectors.js +22 -0
  65. package/schematics/ng-update/data/element-selectors.js.map +1 -0
  66. package/schematics/ng-update/data/index.d.ts +10 -0
  67. package/schematics/ng-update/data/index.js +24 -0
  68. package/schematics/ng-update/data/index.js.map +1 -0
  69. package/schematics/ng-update/data/input-names.d.ts +2 -0
  70. package/schematics/ng-update/data/input-names.js +75 -0
  71. package/schematics/ng-update/data/input-names.js.map +1 -0
  72. package/schematics/ng-update/data/method-call-checks.d.ts +9 -0
  73. package/schematics/ng-update/data/method-call-checks.js +26 -0
  74. package/schematics/ng-update/data/method-call-checks.js.map +1 -0
  75. package/schematics/ng-update/data/output-names.d.ts +2 -0
  76. package/schematics/ng-update/data/output-names.js +21 -0
  77. package/schematics/ng-update/data/output-names.js.map +1 -0
  78. package/schematics/ng-update/data/property-names.d.ts +2 -0
  79. package/schematics/ng-update/data/property-names.js +19 -0
  80. package/schematics/ng-update/data/property-names.js.map +1 -0
  81. package/schematics/ng-update/data/scss-variables.d.ts +20 -0
  82. package/schematics/ng-update/data/scss-variables.js +29 -0
  83. package/schematics/ng-update/data/scss-variables.js.map +1 -0
  84. package/schematics/ng-update/data/symbol-removal.d.ts +0 -0
  85. package/schematics/ng-update/data/symbol-removal.js +21 -0
  86. package/schematics/ng-update/data/symbol-removal.js.map +1 -0
  87. package/schematics/ng-update/index.d.ts +3 -0
  88. package/schematics/ng-update/index.js +29 -0
  89. package/schematics/ng-update/index.js.map +1 -0
  90. package/schematics/ng-update/migrations/all/scss-variables.d.ts +9 -0
  91. package/schematics/ng-update/migrations/all/scss-variables.js +32 -0
  92. package/schematics/ng-update/migrations/all/scss-variables.js.map +1 -0
  93. package/schematics/ng-update/migrations/misc-checks/misc-class-inheritance.d.ts +11 -0
  94. package/schematics/ng-update/migrations/misc-checks/misc-class-inheritance.js +61 -0
  95. package/schematics/ng-update/migrations/misc-checks/misc-class-inheritance.js.map +1 -0
  96. package/schematics/ng-update/migrations/misc-checks/misc-class-names.d.ts +11 -0
  97. package/schematics/ng-update/migrations/misc-checks/misc-class-names.js +55 -0
  98. package/schematics/ng-update/migrations/misc-checks/misc-class-names.js.map +1 -0
  99. package/schematics/ng-update/migrations/misc-checks/misc-imports.d.ts +16 -0
  100. package/schematics/ng-update/migrations/misc-checks/misc-imports.js +67 -0
  101. package/schematics/ng-update/migrations/misc-checks/misc-imports.js.map +1 -0
  102. package/schematics/ng-update/migrations/misc-checks/misc-property-names.d.ts +11 -0
  103. package/schematics/ng-update/migrations/misc-checks/misc-property-names.js +59 -0
  104. package/schematics/ng-update/migrations/misc-checks/misc-property-names.js.map +1 -0
  105. package/schematics/ng-update/migrations/misc-checks/misc-template.d.ts +9 -0
  106. package/schematics/ng-update/migrations/misc-checks/misc-template.js +46 -0
  107. package/schematics/ng-update/migrations/misc-checks/misc-template.js.map +1 -0
  108. package/schematics/ng-update/migrations/v6/import-variable-file.d.ts +6 -0
  109. package/schematics/ng-update/migrations/v6/import-variable-file.js +24 -0
  110. package/schematics/ng-update/migrations/v6/import-variable-file.js.map +1 -0
  111. package/schematics/ng-update/migrations/v6/rewrite-dropdown-template.d.ts +13 -0
  112. package/schematics/ng-update/migrations/v6/rewrite-dropdown-template.js +84 -0
  113. package/schematics/ng-update/migrations/v6/rewrite-dropdown-template.js.map +1 -0
  114. package/schematics/ng-update/typescript/module-specifiers.d.ts +7 -0
  115. package/schematics/ng-update/typescript/module-specifiers.js +25 -0
  116. package/schematics/ng-update/typescript/module-specifiers.js.map +1 -0
  117. package/schematics/ng-update/upgrade-data.d.ts +7 -0
  118. package/schematics/ng-update/upgrade-data.js +18 -0
  119. package/schematics/ng-update/upgrade-data.js.map +1 -0
  120. package/schematics/paths.d.ts +4 -0
  121. package/schematics/paths.js +9 -0
  122. package/schematics/paths.js.map +1 -0
  123. package/schematics/testing/index.d.ts +3 -0
  124. package/schematics/testing/index.js +16 -0
  125. package/schematics/testing/index.js.map +1 -0
  126. package/schematics/testing/test-app.d.ts +4 -0
  127. package/schematics/testing/test-app.js +21 -0
  128. package/schematics/testing/test-app.js.map +1 -0
  129. package/schematics/testing/test-case-setup.d.ts +40 -0
  130. package/schematics/testing/test-case-setup.js +179 -0
  131. package/schematics/testing/test-case-setup.js.map +1 -0
  132. package/schematics/testing/test-project.d.ts +4 -0
  133. package/schematics/testing/test-project.js +27 -0
  134. package/schematics/testing/test-project.js.map +1 -0
  135. package/src/elements/common/directives/accent.directive.d.ts +7 -0
  136. package/src/elements/common/directives/fill.directive.d.ts +7 -0
  137. package/src/elements/common/index.d.ts +2 -0
  138. package/src/elements/common/option/option.component.d.ts +2 -0
  139. package/src/elements/layout/container/layout-container.component.d.ts +2 -0
  140. package/src/elements/layout/index.d.ts +1 -0
  141. package/src/elements/layout/rail/rail.component.d.ts +6 -0
@@ -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
@@ -25297,6 +25351,14 @@
25297
25351
  this._stateChanges = new rxjs.Subject();
25298
25352
  this._element.nativeElement.addEventListener('click', this._handleDisabledClick, false);
25299
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
+ });
25300
25362
  Object.defineProperty(NovoOptionBase.prototype, "multiple", {
25301
25363
  /** Whether the wrapping component is in multiple selection mode. */
25302
25364
  get: function () {
@@ -25519,10 +25581,10 @@
25519
25581
  '(keydown)': '_handleKeydown($event)',
25520
25582
  class: 'novo-option novo-focus-indicator',
25521
25583
  },
25522
- 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>",
25523
25585
  encapsulation: i0.ViewEncapsulation.None,
25524
25586
  changeDetection: i0.ChangeDetectionStrategy.OnPush,
25525
- 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}"]
25526
25588
  },] }
25527
25589
  ];
25528
25590
  NovoOption.ctorParameters = function () { return [
@@ -25726,6 +25788,9 @@
25726
25788
  { type: i0.Component, args: [{
25727
25789
  selector: 'novo-caption,[novo-caption]',
25728
25790
  template: " <ng-content></ng-content> ",
25791
+ host: {
25792
+ class: 'novo-caption',
25793
+ },
25729
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}"]
25730
25795
  },] }
25731
25796
  ];
@@ -25751,6 +25816,9 @@
25751
25816
  { type: i0.Component, args: [{
25752
25817
  selector: 'novo-label,[novo-label]',
25753
25818
  template: " <ng-content></ng-content> ",
25819
+ host: {
25820
+ class: 'novo-label',
25821
+ },
25754
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}"]
25755
25823
  },] }
25756
25824
  ];
@@ -25777,6 +25845,9 @@
25777
25845
  selector: 'novo-link',
25778
25846
  template: "<a [attr.href]=\"href\"><ng-content></ng-content></a>",
25779
25847
  encapsulation: i0.ViewEncapsulation.None,
25848
+ host: {
25849
+ class: 'novo-link',
25850
+ },
25780
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}"]
25781
25852
  },] }
25782
25853
  ];
@@ -25805,7 +25876,11 @@
25805
25876
  { type: i0.Component, args: [{
25806
25877
  selector: 'novo-text,[novo-text]',
25807
25878
  template: " <ng-content></ng-content> ",
25808
- 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}"]
25809
25884
  },] }
25810
25885
  ];
25811
25886
  NovoText.propDecorators = {
@@ -25837,6 +25912,9 @@
25837
25912
  { type: i0.Component, args: [{
25838
25913
  selector: 'novo-title,[novo-title]',
25839
25914
  template: " <ng-content></ng-content> ",
25915
+ host: {
25916
+ class: 'novo-title',
25917
+ },
25840
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}"]
25841
25919
  },] }
25842
25920
  ];
@@ -25862,6 +25940,8 @@
25862
25940
  TextColorDirective,
25863
25941
  BorderDirective,
25864
25942
  GapDirective,
25943
+ AccentColorDirective,
25944
+ FillColorDirective,
25865
25945
  ],
25866
25946
  declarations: [
25867
25947
  NovoTemplate,
@@ -25876,6 +25956,8 @@
25876
25956
  TextColorDirective,
25877
25957
  BorderDirective,
25878
25958
  GapDirective,
25959
+ AccentColorDirective,
25960
+ FillColorDirective,
25879
25961
  ],
25880
25962
  },] }
25881
25963
  ];
@@ -43650,7 +43732,10 @@
43650
43732
  NovoUtilActionComponent.decorators = [
43651
43733
  { type: i0.Component, args: [{
43652
43734
  selector: 'util-action, novo-action',
43653
- 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
+ }
43654
43739
  },] }
43655
43740
  ];
43656
43741
  NovoUtilActionComponent.propDecorators = {
@@ -45130,8 +45215,6 @@
45130
45215
  template: '<ng-content></ng-content>',
45131
45216
  host: {
45132
45217
  class: 'novo-layout-content',
45133
- '[style.margin-left.px]': '_container._contentMargins.left',
45134
- '[style.margin-right.px]': '_container._contentMargins.right',
45135
45218
  },
45136
45219
  changeDetection: i0.ChangeDetectionStrategy.OnPush,
45137
45220
  encapsulation: i0.ViewEncapsulation.None
@@ -45145,6 +45228,31 @@
45145
45228
  { type: i0.NgZone }
45146
45229
  ]; };
45147
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
+
45148
45256
  /**
45149
45257
  * Animations used by the Material drawers.
45150
45258
  * @docs-private
@@ -45893,7 +46001,7 @@
45893
46001
  { type: i0.Component, args: [{
45894
46002
  selector: 'novo-layout-container',
45895
46003
  exportAs: 'novoLayoutContainer',
45896
- 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>",
45897
46005
  host: {
45898
46006
  class: 'novo-layout-container',
45899
46007
  '[class.novo-layout-container-explicit-backdrop]': '_backdropOverride',
@@ -45906,7 +46014,7 @@
45906
46014
  useExisting: NovoLayoutContainer$1,
45907
46015
  },
45908
46016
  ],
45909
- 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}"]
45910
46018
  },] }
45911
46019
  ];
45912
46020
  NovoLayoutContainer$1.ctorParameters = function () { return [
@@ -45924,6 +46032,7 @@
45924
46032
  // indirect descendants if it's left as false.
45925
46033
  descendants: true,
45926
46034
  },] }],
46035
+ _rail: [{ type: i0.ContentChild, args: [NovoRailComponent,] }],
45927
46036
  _content: [{ type: i0.ContentChild, args: [NovoLayoutContent,] }],
45928
46037
  _userContent: [{ type: i0.ViewChild, args: [NovoLayoutContent,] }],
45929
46038
  autosize: [{ type: i0.Input }],
@@ -45940,8 +46049,8 @@
45940
46049
  NovoLayoutModule.decorators = [
45941
46050
  { type: i0.NgModule, args: [{
45942
46051
  imports: [common.CommonModule],
45943
- declarations: [NovoLayoutContainer$1, NovoLayoutContent, NovoSidenavComponent],
45944
- exports: [NovoLayoutContainer$1, NovoLayoutContent, NovoSidenavComponent],
46052
+ declarations: [NovoLayoutContainer$1, NovoLayoutContent, NovoSidenavComponent, NovoRailComponent],
46053
+ exports: [NovoLayoutContainer$1, NovoLayoutContent, NovoSidenavComponent, NovoRailComponent],
45945
46054
  },] }
45946
46055
  ];
45947
46056
 
@@ -52631,7 +52740,7 @@
52631
52740
  },
52632
52741
  changeDetection: i0.ChangeDetectionStrategy.OnPush,
52633
52742
  encapsulation: i0.ViewEncapsulation.None,
52634
- 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-multiple-rows{box-sizing:border-box;display:flex;flex-direction:column;width:100%}.novo-toolbar.novo-color-black,.novo-toolbar .novo-color-black{background:#000;color:#fff}.novo-toolbar.novo-color-black>novo-action button,.novo-toolbar .novo-color-black>novo-action button,.novo-toolbar.novo-color-black>novo-action novo-button,.novo-toolbar .novo-color-black>novo-action novo-button,.novo-toolbar.novo-color-black>novo-icon,.novo-toolbar .novo-color-black>novo-icon,.novo-toolbar.novo-color-black>novo-label,.novo-toolbar .novo-color-black>novo-label,.novo-toolbar.novo-color-black>novo-text,.novo-toolbar .novo-color-black>novo-text,.novo-toolbar.novo-color-black>novo-title,.novo-toolbar .novo-color-black>novo-title{color:inherit}.novo-toolbar.novo-color-black .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-black .novo-divider.novo-divider-vertical{border-right-color:#333}.novo-toolbar.novo-color-white,.novo-toolbar .novo-color-white{background:#fff;color:#000}.novo-toolbar.novo-color-white>novo-action button,.novo-toolbar .novo-color-white>novo-action button,.novo-toolbar.novo-color-white>novo-action novo-button,.novo-toolbar .novo-color-white>novo-action novo-button,.novo-toolbar.novo-color-white>novo-icon,.novo-toolbar .novo-color-white>novo-icon,.novo-toolbar.novo-color-white>novo-label,.novo-toolbar .novo-color-white>novo-label,.novo-toolbar.novo-color-white>novo-text,.novo-toolbar .novo-color-white>novo-text,.novo-toolbar.novo-color-white>novo-title,.novo-toolbar .novo-color-white>novo-title{color:inherit}.novo-toolbar.novo-color-white .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-white .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar.novo-color-gray,.novo-toolbar .novo-color-gray{background:#9e9e9e;color:#000}.novo-toolbar.novo-color-gray>novo-action button,.novo-toolbar .novo-color-gray>novo-action button,.novo-toolbar.novo-color-gray>novo-action novo-button,.novo-toolbar .novo-color-gray>novo-action novo-button,.novo-toolbar.novo-color-gray>novo-icon,.novo-toolbar .novo-color-gray>novo-icon,.novo-toolbar.novo-color-gray>novo-label,.novo-toolbar .novo-color-gray>novo-label,.novo-toolbar.novo-color-gray>novo-text,.novo-toolbar .novo-color-gray>novo-text,.novo-toolbar.novo-color-gray>novo-title,.novo-toolbar .novo-color-gray>novo-title{color:inherit}.novo-toolbar.novo-color-gray .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-gray .novo-divider.novo-divider-vertical{border-right-color:#d1d1d1}.novo-toolbar.novo-color-grey,.novo-toolbar .novo-color-grey{background:#9e9e9e;color:#000}.novo-toolbar.novo-color-grey>novo-action button,.novo-toolbar .novo-color-grey>novo-action button,.novo-toolbar.novo-color-grey>novo-action novo-button,.novo-toolbar .novo-color-grey>novo-action novo-button,.novo-toolbar.novo-color-grey>novo-icon,.novo-toolbar .novo-color-grey>novo-icon,.novo-toolbar.novo-color-grey>novo-label,.novo-toolbar .novo-color-grey>novo-label,.novo-toolbar.novo-color-grey>novo-text,.novo-toolbar .novo-color-grey>novo-text,.novo-toolbar.novo-color-grey>novo-title,.novo-toolbar .novo-color-grey>novo-title{color:inherit}.novo-toolbar.novo-color-grey .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-grey .novo-divider.novo-divider-vertical{border-right-color:#d1d1d1}.novo-toolbar.novo-color-offWhite,.novo-toolbar .novo-color-offWhite{background:#f7f7f7;color:#000}.novo-toolbar.novo-color-offWhite>novo-action button,.novo-toolbar .novo-color-offWhite>novo-action button,.novo-toolbar.novo-color-offWhite>novo-action novo-button,.novo-toolbar .novo-color-offWhite>novo-action novo-button,.novo-toolbar.novo-color-offWhite>novo-icon,.novo-toolbar .novo-color-offWhite>novo-icon,.novo-toolbar.novo-color-offWhite>novo-label,.novo-toolbar .novo-color-offWhite>novo-label,.novo-toolbar.novo-color-offWhite>novo-text,.novo-toolbar .novo-color-offWhite>novo-text,.novo-toolbar.novo-color-offWhite>novo-title,.novo-toolbar .novo-color-offWhite>novo-title{color:inherit}.novo-toolbar.novo-color-offWhite .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-offWhite .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar.novo-color-bright,.novo-toolbar .novo-color-bright{background:#f7f7f7;color:#000}.novo-toolbar.novo-color-bright>novo-action button,.novo-toolbar .novo-color-bright>novo-action button,.novo-toolbar.novo-color-bright>novo-action novo-button,.novo-toolbar .novo-color-bright>novo-action novo-button,.novo-toolbar.novo-color-bright>novo-icon,.novo-toolbar .novo-color-bright>novo-icon,.novo-toolbar.novo-color-bright>novo-label,.novo-toolbar .novo-color-bright>novo-label,.novo-toolbar.novo-color-bright>novo-text,.novo-toolbar .novo-color-bright>novo-text,.novo-toolbar.novo-color-bright>novo-title,.novo-toolbar .novo-color-bright>novo-title{color:inherit}.novo-toolbar.novo-color-bright .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-bright .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar.novo-color-light,.novo-toolbar .novo-color-light{background:#dbdbdb;color:#000}.novo-toolbar.novo-color-light>novo-action button,.novo-toolbar .novo-color-light>novo-action button,.novo-toolbar.novo-color-light>novo-action novo-button,.novo-toolbar .novo-color-light>novo-action novo-button,.novo-toolbar.novo-color-light>novo-icon,.novo-toolbar .novo-color-light>novo-icon,.novo-toolbar.novo-color-light>novo-label,.novo-toolbar .novo-color-light>novo-label,.novo-toolbar.novo-color-light>novo-text,.novo-toolbar .novo-color-light>novo-text,.novo-toolbar.novo-color-light>novo-title,.novo-toolbar .novo-color-light>novo-title{color:inherit}.novo-toolbar.novo-color-light .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-light .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar.novo-color-neutral,.novo-toolbar .novo-color-neutral{background:#4f5361;color:#fff}.novo-toolbar.novo-color-neutral>novo-action button,.novo-toolbar .novo-color-neutral>novo-action button,.novo-toolbar.novo-color-neutral>novo-action novo-button,.novo-toolbar .novo-color-neutral>novo-action novo-button,.novo-toolbar.novo-color-neutral>novo-icon,.novo-toolbar .novo-color-neutral>novo-icon,.novo-toolbar.novo-color-neutral>novo-label,.novo-toolbar .novo-color-neutral>novo-label,.novo-toolbar.novo-color-neutral>novo-text,.novo-toolbar .novo-color-neutral>novo-text,.novo-toolbar.novo-color-neutral>novo-title,.novo-toolbar .novo-color-neutral>novo-title{color:inherit}.novo-toolbar.novo-color-neutral .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-neutral .novo-divider.novo-divider-vertical{border-right-color:#7f8497}.novo-toolbar.novo-color-dark,.novo-toolbar .novo-color-dark{background:#3d464d;color:#fff}.novo-toolbar.novo-color-dark>novo-action button,.novo-toolbar .novo-color-dark>novo-action button,.novo-toolbar.novo-color-dark>novo-action novo-button,.novo-toolbar .novo-color-dark>novo-action novo-button,.novo-toolbar.novo-color-dark>novo-icon,.novo-toolbar .novo-color-dark>novo-icon,.novo-toolbar.novo-color-dark>novo-label,.novo-toolbar .novo-color-dark>novo-label,.novo-toolbar.novo-color-dark>novo-text,.novo-toolbar .novo-color-dark>novo-text,.novo-toolbar.novo-color-dark>novo-title,.novo-toolbar .novo-color-dark>novo-title{color:inherit}.novo-toolbar.novo-color-dark .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-dark .novo-divider.novo-divider-vertical{border-right-color:#6a7a86}.novo-toolbar.novo-color-orange,.novo-toolbar .novo-color-orange{background:#ff6900;color:#000}.novo-toolbar.novo-color-orange>novo-action button,.novo-toolbar .novo-color-orange>novo-action button,.novo-toolbar.novo-color-orange>novo-action novo-button,.novo-toolbar .novo-color-orange>novo-action novo-button,.novo-toolbar.novo-color-orange>novo-icon,.novo-toolbar .novo-color-orange>novo-icon,.novo-toolbar.novo-color-orange>novo-label,.novo-toolbar .novo-color-orange>novo-label,.novo-toolbar.novo-color-orange>novo-text,.novo-toolbar .novo-color-orange>novo-text,.novo-toolbar.novo-color-orange>novo-title,.novo-toolbar .novo-color-orange>novo-title{color:inherit}.novo-toolbar.novo-color-orange .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-orange .novo-divider.novo-divider-vertical{border-right-color:#ffa566}.novo-toolbar.novo-color-navigation,.novo-toolbar .novo-color-navigation{background:#202b38;color:#fff}.novo-toolbar.novo-color-navigation>novo-action button,.novo-toolbar .novo-color-navigation>novo-action button,.novo-toolbar.novo-color-navigation>novo-action novo-button,.novo-toolbar .novo-color-navigation>novo-action novo-button,.novo-toolbar.novo-color-navigation>novo-icon,.novo-toolbar .novo-color-navigation>novo-icon,.novo-toolbar.novo-color-navigation>novo-label,.novo-toolbar .novo-color-navigation>novo-label,.novo-toolbar.novo-color-navigation>novo-text,.novo-toolbar .novo-color-navigation>novo-text,.novo-toolbar.novo-color-navigation>novo-title,.novo-toolbar .novo-color-navigation>novo-title{color:inherit}.novo-toolbar.novo-color-navigation .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-navigation .novo-divider.novo-divider-vertical{border-right-color:#455d79}.novo-toolbar.novo-color-skyBlue,.novo-toolbar .novo-color-skyBlue{background:#009bdf;color:#fff}.novo-toolbar.novo-color-skyBlue>novo-action button,.novo-toolbar .novo-color-skyBlue>novo-action button,.novo-toolbar.novo-color-skyBlue>novo-action novo-button,.novo-toolbar .novo-color-skyBlue>novo-action novo-button,.novo-toolbar.novo-color-skyBlue>novo-icon,.novo-toolbar .novo-color-skyBlue>novo-icon,.novo-toolbar.novo-color-skyBlue>novo-label,.novo-toolbar .novo-color-skyBlue>novo-label,.novo-toolbar.novo-color-skyBlue>novo-text,.novo-toolbar .novo-color-skyBlue>novo-text,.novo-toolbar.novo-color-skyBlue>novo-title,.novo-toolbar .novo-color-skyBlue>novo-title{color:inherit}.novo-toolbar.novo-color-skyBlue .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-skyBlue .novo-divider.novo-divider-vertical{border-right-color:#46c7ff}.novo-toolbar.novo-color-steel,.novo-toolbar .novo-color-steel{background:#5b6770;color:#fff}.novo-toolbar.novo-color-steel>novo-action button,.novo-toolbar .novo-color-steel>novo-action button,.novo-toolbar.novo-color-steel>novo-action novo-button,.novo-toolbar .novo-color-steel>novo-action novo-button,.novo-toolbar.novo-color-steel>novo-icon,.novo-toolbar .novo-color-steel>novo-icon,.novo-toolbar.novo-color-steel>novo-label,.novo-toolbar .novo-color-steel>novo-label,.novo-toolbar.novo-color-steel>novo-text,.novo-toolbar .novo-color-steel>novo-text,.novo-toolbar.novo-color-steel>novo-title,.novo-toolbar .novo-color-steel>novo-title{color:inherit}.novo-toolbar.novo-color-steel .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-steel .novo-divider.novo-divider-vertical{border-right-color:#8e9aa3}.novo-toolbar.novo-color-metal,.novo-toolbar .novo-color-metal{background:#637893;color:#fff}.novo-toolbar.novo-color-metal>novo-action button,.novo-toolbar .novo-color-metal>novo-action button,.novo-toolbar.novo-color-metal>novo-action novo-button,.novo-toolbar .novo-color-metal>novo-action novo-button,.novo-toolbar.novo-color-metal>novo-icon,.novo-toolbar .novo-color-metal>novo-icon,.novo-toolbar.novo-color-metal>novo-label,.novo-toolbar .novo-color-metal>novo-label,.novo-toolbar.novo-color-metal>novo-text,.novo-toolbar .novo-color-metal>novo-text,.novo-toolbar.novo-color-metal>novo-title,.novo-toolbar .novo-color-metal>novo-title{color:inherit}.novo-toolbar.novo-color-metal .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-metal .novo-divider.novo-divider-vertical{border-right-color:#9eacbe}.novo-toolbar.novo-color-sand,.novo-toolbar .novo-color-sand{background:#f4f4f4;color:#000}.novo-toolbar.novo-color-sand>novo-action button,.novo-toolbar .novo-color-sand>novo-action button,.novo-toolbar.novo-color-sand>novo-action novo-button,.novo-toolbar .novo-color-sand>novo-action novo-button,.novo-toolbar.novo-color-sand>novo-icon,.novo-toolbar .novo-color-sand>novo-icon,.novo-toolbar.novo-color-sand>novo-label,.novo-toolbar .novo-color-sand>novo-label,.novo-toolbar.novo-color-sand>novo-text,.novo-toolbar .novo-color-sand>novo-text,.novo-toolbar.novo-color-sand>novo-title,.novo-toolbar .novo-color-sand>novo-title{color:inherit}.novo-toolbar.novo-color-sand .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-sand .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar.novo-color-silver,.novo-toolbar .novo-color-silver{background:#e2e2e2;color:#000}.novo-toolbar.novo-color-silver>novo-action button,.novo-toolbar .novo-color-silver>novo-action button,.novo-toolbar.novo-color-silver>novo-action novo-button,.novo-toolbar .novo-color-silver>novo-action novo-button,.novo-toolbar.novo-color-silver>novo-icon,.novo-toolbar .novo-color-silver>novo-icon,.novo-toolbar.novo-color-silver>novo-label,.novo-toolbar .novo-color-silver>novo-label,.novo-toolbar.novo-color-silver>novo-text,.novo-toolbar .novo-color-silver>novo-text,.novo-toolbar.novo-color-silver>novo-title,.novo-toolbar .novo-color-silver>novo-title{color:inherit}.novo-toolbar.novo-color-silver .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-silver .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar.novo-color-stone,.novo-toolbar .novo-color-stone{background:#bebebe;color:#000}.novo-toolbar.novo-color-stone>novo-action button,.novo-toolbar .novo-color-stone>novo-action button,.novo-toolbar.novo-color-stone>novo-action novo-button,.novo-toolbar .novo-color-stone>novo-action novo-button,.novo-toolbar.novo-color-stone>novo-icon,.novo-toolbar .novo-color-stone>novo-icon,.novo-toolbar.novo-color-stone>novo-label,.novo-toolbar .novo-color-stone>novo-label,.novo-toolbar.novo-color-stone>novo-text,.novo-toolbar .novo-color-stone>novo-text,.novo-toolbar.novo-color-stone>novo-title,.novo-toolbar .novo-color-stone>novo-title{color:inherit}.novo-toolbar.novo-color-stone .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-stone .novo-divider.novo-divider-vertical{border-right-color:#f1f1f1}.novo-toolbar.novo-color-ash,.novo-toolbar .novo-color-ash{background:#a0a0a0;color:#000}.novo-toolbar.novo-color-ash>novo-action button,.novo-toolbar .novo-color-ash>novo-action button,.novo-toolbar.novo-color-ash>novo-action novo-button,.novo-toolbar .novo-color-ash>novo-action novo-button,.novo-toolbar.novo-color-ash>novo-icon,.novo-toolbar .novo-color-ash>novo-icon,.novo-toolbar.novo-color-ash>novo-label,.novo-toolbar .novo-color-ash>novo-label,.novo-toolbar.novo-color-ash>novo-text,.novo-toolbar .novo-color-ash>novo-text,.novo-toolbar.novo-color-ash>novo-title,.novo-toolbar .novo-color-ash>novo-title{color:inherit}.novo-toolbar.novo-color-ash .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-ash .novo-divider.novo-divider-vertical{border-right-color:#d3d3d3}.novo-toolbar.novo-color-slate,.novo-toolbar .novo-color-slate{background:#707070;color:#fff}.novo-toolbar.novo-color-slate>novo-action button,.novo-toolbar .novo-color-slate>novo-action button,.novo-toolbar.novo-color-slate>novo-action novo-button,.novo-toolbar .novo-color-slate>novo-action novo-button,.novo-toolbar.novo-color-slate>novo-icon,.novo-toolbar .novo-color-slate>novo-icon,.novo-toolbar.novo-color-slate>novo-label,.novo-toolbar .novo-color-slate>novo-label,.novo-toolbar.novo-color-slate>novo-text,.novo-toolbar .novo-color-slate>novo-text,.novo-toolbar.novo-color-slate>novo-title,.novo-toolbar .novo-color-slate>novo-title{color:inherit}.novo-toolbar.novo-color-slate .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-slate .novo-divider.novo-divider-vertical{border-right-color:#a3a3a3}.novo-toolbar.novo-color-onyx,.novo-toolbar .novo-color-onyx{background:#526980;color:#fff}.novo-toolbar.novo-color-onyx>novo-action button,.novo-toolbar .novo-color-onyx>novo-action button,.novo-toolbar.novo-color-onyx>novo-action novo-button,.novo-toolbar .novo-color-onyx>novo-action novo-button,.novo-toolbar.novo-color-onyx>novo-icon,.novo-toolbar .novo-color-onyx>novo-icon,.novo-toolbar.novo-color-onyx>novo-label,.novo-toolbar .novo-color-onyx>novo-label,.novo-toolbar.novo-color-onyx>novo-text,.novo-toolbar .novo-color-onyx>novo-text,.novo-toolbar.novo-color-onyx>novo-title,.novo-toolbar .novo-color-onyx>novo-title{color:inherit}.novo-toolbar.novo-color-onyx .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-onyx .novo-divider.novo-divider-vertical{border-right-color:#869cb2}.novo-toolbar.novo-color-charcoal,.novo-toolbar .novo-color-charcoal{background:#282828;color:#fff}.novo-toolbar.novo-color-charcoal>novo-action button,.novo-toolbar .novo-color-charcoal>novo-action button,.novo-toolbar.novo-color-charcoal>novo-action novo-button,.novo-toolbar .novo-color-charcoal>novo-action novo-button,.novo-toolbar.novo-color-charcoal>novo-icon,.novo-toolbar .novo-color-charcoal>novo-icon,.novo-toolbar.novo-color-charcoal>novo-label,.novo-toolbar .novo-color-charcoal>novo-label,.novo-toolbar.novo-color-charcoal>novo-text,.novo-toolbar .novo-color-charcoal>novo-text,.novo-toolbar.novo-color-charcoal>novo-title,.novo-toolbar .novo-color-charcoal>novo-title{color:inherit}.novo-toolbar.novo-color-charcoal .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-charcoal .novo-divider.novo-divider-vertical{border-right-color:#5b5b5b}.novo-toolbar.novo-color-moonlight,.novo-toolbar .novo-color-moonlight{background:#1a242f;color:#fff}.novo-toolbar.novo-color-moonlight>novo-action button,.novo-toolbar .novo-color-moonlight>novo-action button,.novo-toolbar.novo-color-moonlight>novo-action novo-button,.novo-toolbar .novo-color-moonlight>novo-action novo-button,.novo-toolbar.novo-color-moonlight>novo-icon,.novo-toolbar .novo-color-moonlight>novo-icon,.novo-toolbar.novo-color-moonlight>novo-label,.novo-toolbar .novo-color-moonlight>novo-label,.novo-toolbar.novo-color-moonlight>novo-text,.novo-toolbar .novo-color-moonlight>novo-text,.novo-toolbar.novo-color-moonlight>novo-title,.novo-toolbar .novo-color-moonlight>novo-title{color:inherit}.novo-toolbar.novo-color-moonlight .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-moonlight .novo-divider.novo-divider-vertical{border-right-color:#3e5671}.novo-toolbar.novo-color-midnight,.novo-toolbar .novo-color-midnight{background:#202b38;color:#fff}.novo-toolbar.novo-color-midnight>novo-action button,.novo-toolbar .novo-color-midnight>novo-action button,.novo-toolbar.novo-color-midnight>novo-action novo-button,.novo-toolbar .novo-color-midnight>novo-action novo-button,.novo-toolbar.novo-color-midnight>novo-icon,.novo-toolbar .novo-color-midnight>novo-icon,.novo-toolbar.novo-color-midnight>novo-label,.novo-toolbar .novo-color-midnight>novo-label,.novo-toolbar.novo-color-midnight>novo-text,.novo-toolbar .novo-color-midnight>novo-text,.novo-toolbar.novo-color-midnight>novo-title,.novo-toolbar .novo-color-midnight>novo-title{color:inherit}.novo-toolbar.novo-color-midnight .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-midnight .novo-divider.novo-divider-vertical{border-right-color:#455d79}.novo-toolbar.novo-color-darkness,.novo-toolbar .novo-color-darkness{background:#161f27;color:#fff}.novo-toolbar.novo-color-darkness>novo-action button,.novo-toolbar .novo-color-darkness>novo-action button,.novo-toolbar.novo-color-darkness>novo-action novo-button,.novo-toolbar .novo-color-darkness>novo-action novo-button,.novo-toolbar.novo-color-darkness>novo-icon,.novo-toolbar .novo-color-darkness>novo-icon,.novo-toolbar.novo-color-darkness>novo-label,.novo-toolbar .novo-color-darkness>novo-label,.novo-toolbar.novo-color-darkness>novo-text,.novo-toolbar .novo-color-darkness>novo-text,.novo-toolbar.novo-color-darkness>novo-title,.novo-toolbar .novo-color-darkness>novo-title{color:inherit}.novo-toolbar.novo-color-darkness .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-darkness .novo-divider.novo-divider-vertical{border-right-color:#3b5368}.novo-toolbar.novo-color-navy,.novo-toolbar .novo-color-navy{background:#0d2d42;color:#fff}.novo-toolbar.novo-color-navy>novo-action button,.novo-toolbar .novo-color-navy>novo-action button,.novo-toolbar.novo-color-navy>novo-action novo-button,.novo-toolbar .novo-color-navy>novo-action novo-button,.novo-toolbar.novo-color-navy>novo-icon,.novo-toolbar .novo-color-navy>novo-icon,.novo-toolbar.novo-color-navy>novo-label,.novo-toolbar .novo-color-navy>novo-label,.novo-toolbar.novo-color-navy>novo-text,.novo-toolbar .novo-color-navy>novo-text,.novo-toolbar.novo-color-navy>novo-title,.novo-toolbar .novo-color-navy>novo-title{color:inherit}.novo-toolbar.novo-color-navy .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-navy .novo-divider.novo-divider-vertical{border-right-color:#1e6797}.novo-toolbar.novo-color-aqua,.novo-toolbar .novo-color-aqua{background:#3bafda;color:#000}.novo-toolbar.novo-color-aqua>novo-action button,.novo-toolbar .novo-color-aqua>novo-action button,.novo-toolbar.novo-color-aqua>novo-action novo-button,.novo-toolbar .novo-color-aqua>novo-action novo-button,.novo-toolbar.novo-color-aqua>novo-icon,.novo-toolbar .novo-color-aqua>novo-icon,.novo-toolbar.novo-color-aqua>novo-label,.novo-toolbar .novo-color-aqua>novo-label,.novo-toolbar.novo-color-aqua>novo-text,.novo-toolbar .novo-color-aqua>novo-text,.novo-toolbar.novo-color-aqua>novo-title,.novo-toolbar .novo-color-aqua>novo-title{color:inherit}.novo-toolbar.novo-color-aqua .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-aqua .novo-divider.novo-divider-vertical{border-right-color:#91d2ea}.novo-toolbar.novo-color-ocean,.novo-toolbar .novo-color-ocean{background:#4a89dc;color:#fff}.novo-toolbar.novo-color-ocean>novo-action button,.novo-toolbar .novo-color-ocean>novo-action button,.novo-toolbar.novo-color-ocean>novo-action novo-button,.novo-toolbar .novo-color-ocean>novo-action novo-button,.novo-toolbar.novo-color-ocean>novo-icon,.novo-toolbar .novo-color-ocean>novo-icon,.novo-toolbar.novo-color-ocean>novo-label,.novo-toolbar .novo-color-ocean>novo-label,.novo-toolbar.novo-color-ocean>novo-text,.novo-toolbar .novo-color-ocean>novo-text,.novo-toolbar.novo-color-ocean>novo-title,.novo-toolbar .novo-color-ocean>novo-title{color:inherit}.novo-toolbar.novo-color-ocean .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-ocean .novo-divider.novo-divider-vertical{border-right-color:#9fc1ed}.novo-toolbar.novo-color-mint,.novo-toolbar .novo-color-mint{background:#37bc9b;color:#000}.novo-toolbar.novo-color-mint>novo-action button,.novo-toolbar .novo-color-mint>novo-action button,.novo-toolbar.novo-color-mint>novo-action novo-button,.novo-toolbar .novo-color-mint>novo-action novo-button,.novo-toolbar.novo-color-mint>novo-icon,.novo-toolbar .novo-color-mint>novo-icon,.novo-toolbar.novo-color-mint>novo-label,.novo-toolbar .novo-color-mint>novo-label,.novo-toolbar.novo-color-mint>novo-text,.novo-toolbar .novo-color-mint>novo-text,.novo-toolbar.novo-color-mint>novo-title,.novo-toolbar .novo-color-mint>novo-title{color:inherit}.novo-toolbar.novo-color-mint .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-mint .novo-divider.novo-divider-vertical{border-right-color:#7fdac3}.novo-toolbar.novo-color-grass,.novo-toolbar .novo-color-grass{background:#8cc152;color:#000}.novo-toolbar.novo-color-grass>novo-action button,.novo-toolbar .novo-color-grass>novo-action button,.novo-toolbar.novo-color-grass>novo-action novo-button,.novo-toolbar .novo-color-grass>novo-action novo-button,.novo-toolbar.novo-color-grass>novo-icon,.novo-toolbar .novo-color-grass>novo-icon,.novo-toolbar.novo-color-grass>novo-label,.novo-toolbar .novo-color-grass>novo-label,.novo-toolbar.novo-color-grass>novo-text,.novo-toolbar .novo-color-grass>novo-text,.novo-toolbar.novo-color-grass>novo-title,.novo-toolbar .novo-color-grass>novo-title{color:inherit}.novo-toolbar.novo-color-grass .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-grass .novo-divider.novo-divider-vertical{border-right-color:#bedc9d}.novo-toolbar.novo-color-sunflower,.novo-toolbar .novo-color-sunflower{background:#f6b042;color:#000}.novo-toolbar.novo-color-sunflower>novo-action button,.novo-toolbar .novo-color-sunflower>novo-action button,.novo-toolbar.novo-color-sunflower>novo-action novo-button,.novo-toolbar .novo-color-sunflower>novo-action novo-button,.novo-toolbar.novo-color-sunflower>novo-icon,.novo-toolbar .novo-color-sunflower>novo-icon,.novo-toolbar.novo-color-sunflower>novo-label,.novo-toolbar .novo-color-sunflower>novo-label,.novo-toolbar.novo-color-sunflower>novo-text,.novo-toolbar .novo-color-sunflower>novo-text,.novo-toolbar.novo-color-sunflower>novo-title,.novo-toolbar .novo-color-sunflower>novo-title{color:inherit}.novo-toolbar.novo-color-sunflower .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-sunflower .novo-divider.novo-divider-vertical{border-right-color:#fbd9a3}.novo-toolbar.novo-color-bittersweet,.novo-toolbar .novo-color-bittersweet{background:#eb6845;color:#fff}.novo-toolbar.novo-color-bittersweet>novo-action button,.novo-toolbar .novo-color-bittersweet>novo-action button,.novo-toolbar.novo-color-bittersweet>novo-action novo-button,.novo-toolbar .novo-color-bittersweet>novo-action novo-button,.novo-toolbar.novo-color-bittersweet>novo-icon,.novo-toolbar .novo-color-bittersweet>novo-icon,.novo-toolbar.novo-color-bittersweet>novo-label,.novo-toolbar .novo-color-bittersweet>novo-label,.novo-toolbar.novo-color-bittersweet>novo-text,.novo-toolbar .novo-color-bittersweet>novo-text,.novo-toolbar.novo-color-bittersweet>novo-title,.novo-toolbar .novo-color-bittersweet>novo-title{color:inherit}.novo-toolbar.novo-color-bittersweet .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-bittersweet .novo-divider.novo-divider-vertical{border-right-color:#f5b3a1}.novo-toolbar.novo-color-grapefruit,.novo-toolbar .novo-color-grapefruit{background:#da4453;color:#fff}.novo-toolbar.novo-color-grapefruit>novo-action button,.novo-toolbar .novo-color-grapefruit>novo-action button,.novo-toolbar.novo-color-grapefruit>novo-action novo-button,.novo-toolbar .novo-color-grapefruit>novo-action novo-button,.novo-toolbar.novo-color-grapefruit>novo-icon,.novo-toolbar .novo-color-grapefruit>novo-icon,.novo-toolbar.novo-color-grapefruit>novo-label,.novo-toolbar .novo-color-grapefruit>novo-label,.novo-toolbar.novo-color-grapefruit>novo-text,.novo-toolbar .novo-color-grapefruit>novo-text,.novo-toolbar.novo-color-grapefruit>novo-title,.novo-toolbar .novo-color-grapefruit>novo-title{color:inherit}.novo-toolbar.novo-color-grapefruit .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-grapefruit .novo-divider.novo-divider-vertical{border-right-color:#eb99a1}.novo-toolbar.novo-color-carnation,.novo-toolbar .novo-color-carnation{background:#d770ad;color:#fff}.novo-toolbar.novo-color-carnation>novo-action button,.novo-toolbar .novo-color-carnation>novo-action button,.novo-toolbar.novo-color-carnation>novo-action novo-button,.novo-toolbar .novo-color-carnation>novo-action novo-button,.novo-toolbar.novo-color-carnation>novo-icon,.novo-toolbar .novo-color-carnation>novo-icon,.novo-toolbar.novo-color-carnation>novo-label,.novo-toolbar .novo-color-carnation>novo-label,.novo-toolbar.novo-color-carnation>novo-text,.novo-toolbar .novo-color-carnation>novo-text,.novo-toolbar.novo-color-carnation>novo-title,.novo-toolbar .novo-color-carnation>novo-title{color:inherit}.novo-toolbar.novo-color-carnation .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-carnation .novo-divider.novo-divider-vertical{border-right-color:#edc0db}.novo-toolbar.novo-color-lavender,.novo-toolbar .novo-color-lavender{background:#967adc;color:#fff}.novo-toolbar.novo-color-lavender>novo-action button,.novo-toolbar .novo-color-lavender>novo-action button,.novo-toolbar.novo-color-lavender>novo-action novo-button,.novo-toolbar .novo-color-lavender>novo-action novo-button,.novo-toolbar.novo-color-lavender>novo-icon,.novo-toolbar .novo-color-lavender>novo-icon,.novo-toolbar.novo-color-lavender>novo-label,.novo-toolbar .novo-color-lavender>novo-label,.novo-toolbar.novo-color-lavender>novo-text,.novo-toolbar .novo-color-lavender>novo-text,.novo-toolbar.novo-color-lavender>novo-title,.novo-toolbar .novo-color-lavender>novo-title{color:inherit}.novo-toolbar.novo-color-lavender .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-lavender .novo-divider.novo-divider-vertical{border-right-color:#d6cbf1}.novo-toolbar.novo-color-mountain,.novo-toolbar .novo-color-mountain{background:#9678b6;color:#fff}.novo-toolbar.novo-color-mountain>novo-action button,.novo-toolbar .novo-color-mountain>novo-action button,.novo-toolbar.novo-color-mountain>novo-action novo-button,.novo-toolbar .novo-color-mountain>novo-action novo-button,.novo-toolbar.novo-color-mountain>novo-icon,.novo-toolbar .novo-color-mountain>novo-icon,.novo-toolbar.novo-color-mountain>novo-label,.novo-toolbar .novo-color-mountain>novo-label,.novo-toolbar.novo-color-mountain>novo-text,.novo-toolbar .novo-color-mountain>novo-text,.novo-toolbar.novo-color-mountain>novo-title,.novo-toolbar .novo-color-mountain>novo-title{color:inherit}.novo-toolbar.novo-color-mountain .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-mountain .novo-divider.novo-divider-vertical{border-right-color:#c9bada}.novo-toolbar.novo-color-positive,.novo-toolbar .novo-color-positive{background:#4a89dc;color:#fff}.novo-toolbar.novo-color-positive>novo-action button,.novo-toolbar .novo-color-positive>novo-action button,.novo-toolbar.novo-color-positive>novo-action novo-button,.novo-toolbar .novo-color-positive>novo-action novo-button,.novo-toolbar.novo-color-positive>novo-icon,.novo-toolbar .novo-color-positive>novo-icon,.novo-toolbar.novo-color-positive>novo-label,.novo-toolbar .novo-color-positive>novo-label,.novo-toolbar.novo-color-positive>novo-text,.novo-toolbar .novo-color-positive>novo-text,.novo-toolbar.novo-color-positive>novo-title,.novo-toolbar .novo-color-positive>novo-title{color:inherit}.novo-toolbar.novo-color-positive .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-positive .novo-divider.novo-divider-vertical{border-right-color:#9fc1ed}.novo-toolbar.novo-color-success,.novo-toolbar .novo-color-success{background:#8cc152;color:#000}.novo-toolbar.novo-color-success>novo-action button,.novo-toolbar .novo-color-success>novo-action button,.novo-toolbar.novo-color-success>novo-action novo-button,.novo-toolbar .novo-color-success>novo-action novo-button,.novo-toolbar.novo-color-success>novo-icon,.novo-toolbar .novo-color-success>novo-icon,.novo-toolbar.novo-color-success>novo-label,.novo-toolbar .novo-color-success>novo-label,.novo-toolbar.novo-color-success>novo-text,.novo-toolbar .novo-color-success>novo-text,.novo-toolbar.novo-color-success>novo-title,.novo-toolbar .novo-color-success>novo-title{color:inherit}.novo-toolbar.novo-color-success .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-success .novo-divider.novo-divider-vertical{border-right-color:#bedc9d}.novo-toolbar.novo-color-negative,.novo-toolbar .novo-color-negative{background:#da4453;color:#fff}.novo-toolbar.novo-color-negative>novo-action button,.novo-toolbar .novo-color-negative>novo-action button,.novo-toolbar.novo-color-negative>novo-action novo-button,.novo-toolbar .novo-color-negative>novo-action novo-button,.novo-toolbar.novo-color-negative>novo-icon,.novo-toolbar .novo-color-negative>novo-icon,.novo-toolbar.novo-color-negative>novo-label,.novo-toolbar .novo-color-negative>novo-label,.novo-toolbar.novo-color-negative>novo-text,.novo-toolbar .novo-color-negative>novo-text,.novo-toolbar.novo-color-negative>novo-title,.novo-toolbar .novo-color-negative>novo-title{color:inherit}.novo-toolbar.novo-color-negative .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-negative .novo-divider.novo-divider-vertical{border-right-color:#eb99a1}.novo-toolbar.novo-color-warning,.novo-toolbar .novo-color-warning{background:#f6b042;color:#000}.novo-toolbar.novo-color-warning>novo-action button,.novo-toolbar .novo-color-warning>novo-action button,.novo-toolbar.novo-color-warning>novo-action novo-button,.novo-toolbar .novo-color-warning>novo-action novo-button,.novo-toolbar.novo-color-warning>novo-icon,.novo-toolbar .novo-color-warning>novo-icon,.novo-toolbar.novo-color-warning>novo-label,.novo-toolbar .novo-color-warning>novo-label,.novo-toolbar.novo-color-warning>novo-text,.novo-toolbar .novo-color-warning>novo-text,.novo-toolbar.novo-color-warning>novo-title,.novo-toolbar .novo-color-warning>novo-title{color:inherit}.novo-toolbar.novo-color-warning .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-warning .novo-divider.novo-divider-vertical{border-right-color:#fbd9a3}.novo-toolbar.novo-color-empty,.novo-toolbar .novo-color-empty{background:#cccdcc;color:#000}.novo-toolbar.novo-color-empty>novo-action button,.novo-toolbar .novo-color-empty>novo-action button,.novo-toolbar.novo-color-empty>novo-action novo-button,.novo-toolbar .novo-color-empty>novo-action novo-button,.novo-toolbar.novo-color-empty>novo-icon,.novo-toolbar .novo-color-empty>novo-icon,.novo-toolbar.novo-color-empty>novo-label,.novo-toolbar .novo-color-empty>novo-label,.novo-toolbar.novo-color-empty>novo-text,.novo-toolbar .novo-color-empty>novo-text,.novo-toolbar.novo-color-empty>novo-title,.novo-toolbar .novo-color-empty>novo-title{color:inherit}.novo-toolbar.novo-color-empty .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-empty .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar.novo-color-disabled,.novo-toolbar .novo-color-disabled{background:#bebebe;color:#000}.novo-toolbar.novo-color-disabled>novo-action button,.novo-toolbar .novo-color-disabled>novo-action button,.novo-toolbar.novo-color-disabled>novo-action novo-button,.novo-toolbar .novo-color-disabled>novo-action novo-button,.novo-toolbar.novo-color-disabled>novo-icon,.novo-toolbar .novo-color-disabled>novo-icon,.novo-toolbar.novo-color-disabled>novo-label,.novo-toolbar .novo-color-disabled>novo-label,.novo-toolbar.novo-color-disabled>novo-text,.novo-toolbar .novo-color-disabled>novo-text,.novo-toolbar.novo-color-disabled>novo-title,.novo-toolbar .novo-color-disabled>novo-title{color:inherit}.novo-toolbar.novo-color-disabled .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-disabled .novo-divider.novo-divider-vertical{border-right-color:#f1f1f1}.novo-toolbar.novo-color-background,.novo-toolbar .novo-color-background{background:#f7f7f7;color:#000}.novo-toolbar.novo-color-background>novo-action button,.novo-toolbar .novo-color-background>novo-action button,.novo-toolbar.novo-color-background>novo-action novo-button,.novo-toolbar .novo-color-background>novo-action novo-button,.novo-toolbar.novo-color-background>novo-icon,.novo-toolbar .novo-color-background>novo-icon,.novo-toolbar.novo-color-background>novo-label,.novo-toolbar .novo-color-background>novo-label,.novo-toolbar.novo-color-background>novo-text,.novo-toolbar .novo-color-background>novo-text,.novo-toolbar.novo-color-background>novo-title,.novo-toolbar .novo-color-background>novo-title{color:inherit}.novo-toolbar.novo-color-background .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-background .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar.novo-color-backgroundDark,.novo-toolbar .novo-color-backgroundDark{background:#e2e2e2;color:#000}.novo-toolbar.novo-color-backgroundDark>novo-action button,.novo-toolbar .novo-color-backgroundDark>novo-action button,.novo-toolbar.novo-color-backgroundDark>novo-action novo-button,.novo-toolbar .novo-color-backgroundDark>novo-action novo-button,.novo-toolbar.novo-color-backgroundDark>novo-icon,.novo-toolbar .novo-color-backgroundDark>novo-icon,.novo-toolbar.novo-color-backgroundDark>novo-label,.novo-toolbar .novo-color-backgroundDark>novo-label,.novo-toolbar.novo-color-backgroundDark>novo-text,.novo-toolbar .novo-color-backgroundDark>novo-text,.novo-toolbar.novo-color-backgroundDark>novo-title,.novo-toolbar .novo-color-backgroundDark>novo-title{color:inherit}.novo-toolbar.novo-color-backgroundDark .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-backgroundDark .novo-divider.novo-divider-vertical{border-right-color:#fff}.novo-toolbar.novo-color-presentation,.novo-toolbar .novo-color-presentation{background:#5b6770;color:#fff}.novo-toolbar.novo-color-presentation>novo-action button,.novo-toolbar .novo-color-presentation>novo-action button,.novo-toolbar.novo-color-presentation>novo-action novo-button,.novo-toolbar .novo-color-presentation>novo-action novo-button,.novo-toolbar.novo-color-presentation>novo-icon,.novo-toolbar .novo-color-presentation>novo-icon,.novo-toolbar.novo-color-presentation>novo-label,.novo-toolbar .novo-color-presentation>novo-label,.novo-toolbar.novo-color-presentation>novo-text,.novo-toolbar .novo-color-presentation>novo-text,.novo-toolbar.novo-color-presentation>novo-title,.novo-toolbar .novo-color-presentation>novo-title{color:inherit}.novo-toolbar.novo-color-presentation .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-presentation .novo-divider.novo-divider-vertical{border-right-color:#8e9aa3}.novo-toolbar.novo-color-bullhorn,.novo-toolbar .novo-color-bullhorn{background:#ff6900;color:#000}.novo-toolbar.novo-color-bullhorn>novo-action button,.novo-toolbar .novo-color-bullhorn>novo-action button,.novo-toolbar.novo-color-bullhorn>novo-action novo-button,.novo-toolbar .novo-color-bullhorn>novo-action novo-button,.novo-toolbar.novo-color-bullhorn>novo-icon,.novo-toolbar .novo-color-bullhorn>novo-icon,.novo-toolbar.novo-color-bullhorn>novo-label,.novo-toolbar .novo-color-bullhorn>novo-label,.novo-toolbar.novo-color-bullhorn>novo-text,.novo-toolbar .novo-color-bullhorn>novo-text,.novo-toolbar.novo-color-bullhorn>novo-title,.novo-toolbar .novo-color-bullhorn>novo-title{color:inherit}.novo-toolbar.novo-color-bullhorn .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-bullhorn .novo-divider.novo-divider-vertical{border-right-color:#ffa566}.novo-toolbar.novo-color-pulse,.novo-toolbar .novo-color-pulse{background:#3bafda;color:#000}.novo-toolbar.novo-color-pulse>novo-action button,.novo-toolbar .novo-color-pulse>novo-action button,.novo-toolbar.novo-color-pulse>novo-action novo-button,.novo-toolbar .novo-color-pulse>novo-action novo-button,.novo-toolbar.novo-color-pulse>novo-icon,.novo-toolbar .novo-color-pulse>novo-icon,.novo-toolbar.novo-color-pulse>novo-label,.novo-toolbar .novo-color-pulse>novo-label,.novo-toolbar.novo-color-pulse>novo-text,.novo-toolbar .novo-color-pulse>novo-text,.novo-toolbar.novo-color-pulse>novo-title,.novo-toolbar .novo-color-pulse>novo-title{color:inherit}.novo-toolbar.novo-color-pulse .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-pulse .novo-divider.novo-divider-vertical{border-right-color:#91d2ea}.novo-toolbar.novo-color-company,.novo-toolbar .novo-color-company{background:#39d;color:#fff}.novo-toolbar.novo-color-company>novo-action button,.novo-toolbar .novo-color-company>novo-action button,.novo-toolbar.novo-color-company>novo-action novo-button,.novo-toolbar .novo-color-company>novo-action novo-button,.novo-toolbar.novo-color-company>novo-icon,.novo-toolbar .novo-color-company>novo-icon,.novo-toolbar.novo-color-company>novo-label,.novo-toolbar .novo-color-company>novo-label,.novo-toolbar.novo-color-company>novo-text,.novo-toolbar .novo-color-company>novo-text,.novo-toolbar.novo-color-company>novo-title,.novo-toolbar .novo-color-company>novo-title{color:inherit}.novo-toolbar.novo-color-company .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-company .novo-divider.novo-divider-vertical{border-right-color:#8ac5ec}.novo-toolbar.novo-color-candidate,.novo-toolbar .novo-color-candidate{background:#4b7;color:#000}.novo-toolbar.novo-color-candidate>novo-action button,.novo-toolbar .novo-color-candidate>novo-action button,.novo-toolbar.novo-color-candidate>novo-action novo-button,.novo-toolbar .novo-color-candidate>novo-action novo-button,.novo-toolbar.novo-color-candidate>novo-icon,.novo-toolbar .novo-color-candidate>novo-icon,.novo-toolbar.novo-color-candidate>novo-label,.novo-toolbar .novo-color-candidate>novo-label,.novo-toolbar.novo-color-candidate>novo-text,.novo-toolbar .novo-color-candidate>novo-text,.novo-toolbar.novo-color-candidate>novo-title,.novo-toolbar .novo-color-candidate>novo-title{color:inherit}.novo-toolbar.novo-color-candidate .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-candidate .novo-divider.novo-divider-vertical{border-right-color:#8fd6ad}.novo-toolbar.novo-color-lead,.novo-toolbar .novo-color-lead{background:#a69;color:#fff}.novo-toolbar.novo-color-lead>novo-action button,.novo-toolbar .novo-color-lead>novo-action button,.novo-toolbar.novo-color-lead>novo-action novo-button,.novo-toolbar .novo-color-lead>novo-action novo-button,.novo-toolbar.novo-color-lead>novo-icon,.novo-toolbar .novo-color-lead>novo-icon,.novo-toolbar.novo-color-lead>novo-label,.novo-toolbar .novo-color-lead>novo-label,.novo-toolbar.novo-color-lead>novo-text,.novo-toolbar .novo-color-lead>novo-text,.novo-toolbar.novo-color-lead>novo-title,.novo-toolbar .novo-color-lead>novo-title{color:inherit}.novo-toolbar.novo-color-lead .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-lead .novo-divider.novo-divider-vertical{border-right-color:#cea8c5}.novo-toolbar.novo-color-contact,.novo-toolbar .novo-color-contact{background:#fa4;color:#000}.novo-toolbar.novo-color-contact>novo-action button,.novo-toolbar .novo-color-contact>novo-action button,.novo-toolbar.novo-color-contact>novo-action novo-button,.novo-toolbar .novo-color-contact>novo-action novo-button,.novo-toolbar.novo-color-contact>novo-icon,.novo-toolbar .novo-color-contact>novo-icon,.novo-toolbar.novo-color-contact>novo-label,.novo-toolbar .novo-color-contact>novo-label,.novo-toolbar.novo-color-contact>novo-text,.novo-toolbar .novo-color-contact>novo-text,.novo-toolbar.novo-color-contact>novo-title,.novo-toolbar .novo-color-contact>novo-title{color:inherit}.novo-toolbar.novo-color-contact .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-contact .novo-divider.novo-divider-vertical{border-right-color:#ffd8aa}.novo-toolbar.novo-color-opportunity,.novo-toolbar .novo-color-opportunity{background:#625;color:#fff}.novo-toolbar.novo-color-opportunity>novo-action button,.novo-toolbar .novo-color-opportunity>novo-action button,.novo-toolbar.novo-color-opportunity>novo-action novo-button,.novo-toolbar .novo-color-opportunity>novo-action novo-button,.novo-toolbar.novo-color-opportunity>novo-icon,.novo-toolbar .novo-color-opportunity>novo-icon,.novo-toolbar.novo-color-opportunity>novo-label,.novo-toolbar .novo-color-opportunity>novo-label,.novo-toolbar.novo-color-opportunity>novo-text,.novo-toolbar .novo-color-opportunity>novo-text,.novo-toolbar.novo-color-opportunity>novo-title,.novo-toolbar .novo-color-opportunity>novo-title{color:inherit}.novo-toolbar.novo-color-opportunity .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-opportunity .novo-divider.novo-divider-vertical{border-right-color:#b33b95}.novo-toolbar.novo-color-job,.novo-toolbar .novo-color-job{background:#b56;color:#fff}.novo-toolbar.novo-color-job>novo-action button,.novo-toolbar .novo-color-job>novo-action button,.novo-toolbar.novo-color-job>novo-action novo-button,.novo-toolbar .novo-color-job>novo-action novo-button,.novo-toolbar.novo-color-job>novo-icon,.novo-toolbar .novo-color-job>novo-icon,.novo-toolbar.novo-color-job>novo-label,.novo-toolbar .novo-color-job>novo-label,.novo-toolbar.novo-color-job>novo-text,.novo-toolbar .novo-color-job>novo-text,.novo-toolbar.novo-color-job>novo-title,.novo-toolbar .novo-color-job>novo-title{color:inherit}.novo-toolbar.novo-color-job .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-job .novo-divider.novo-divider-vertical{border-right-color:#d89ea8}.novo-toolbar.novo-color-submission,.novo-toolbar .novo-color-submission{background:#a9adbb;color:#000}.novo-toolbar.novo-color-submission>novo-action button,.novo-toolbar .novo-color-submission>novo-action button,.novo-toolbar.novo-color-submission>novo-action novo-button,.novo-toolbar .novo-color-submission>novo-action novo-button,.novo-toolbar.novo-color-submission>novo-icon,.novo-toolbar .novo-color-submission>novo-icon,.novo-toolbar.novo-color-submission>novo-label,.novo-toolbar .novo-color-submission>novo-label,.novo-toolbar.novo-color-submission>novo-text,.novo-toolbar .novo-color-submission>novo-text,.novo-toolbar.novo-color-submission>novo-title,.novo-toolbar .novo-color-submission>novo-title{color:inherit}.novo-toolbar.novo-color-submission .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-submission .novo-divider.novo-divider-vertical{border-right-color:#e2e3e8}.novo-toolbar.novo-color-sendout,.novo-toolbar .novo-color-sendout{background:#747884;color:#fff}.novo-toolbar.novo-color-sendout>novo-action button,.novo-toolbar .novo-color-sendout>novo-action button,.novo-toolbar.novo-color-sendout>novo-action novo-button,.novo-toolbar .novo-color-sendout>novo-action novo-button,.novo-toolbar.novo-color-sendout>novo-icon,.novo-toolbar .novo-color-sendout>novo-icon,.novo-toolbar.novo-color-sendout>novo-label,.novo-toolbar .novo-color-sendout>novo-label,.novo-toolbar.novo-color-sendout>novo-text,.novo-toolbar .novo-color-sendout>novo-text,.novo-toolbar.novo-color-sendout>novo-title,.novo-toolbar .novo-color-sendout>novo-title{color:inherit}.novo-toolbar.novo-color-sendout .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-sendout .novo-divider.novo-divider-vertical{border-right-color:#aaacb4}.novo-toolbar.novo-color-placement,.novo-toolbar .novo-color-placement{background:#0b344f;color:#fff}.novo-toolbar.novo-color-placement>novo-action button,.novo-toolbar .novo-color-placement>novo-action button,.novo-toolbar.novo-color-placement>novo-action novo-button,.novo-toolbar .novo-color-placement>novo-action novo-button,.novo-toolbar.novo-color-placement>novo-icon,.novo-toolbar .novo-color-placement>novo-icon,.novo-toolbar.novo-color-placement>novo-label,.novo-toolbar .novo-color-placement>novo-label,.novo-toolbar.novo-color-placement>novo-text,.novo-toolbar .novo-color-placement>novo-text,.novo-toolbar.novo-color-placement>novo-title,.novo-toolbar .novo-color-placement>novo-title{color:inherit}.novo-toolbar.novo-color-placement .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-placement .novo-divider.novo-divider-vertical{border-right-color:#176fa9}.novo-toolbar.novo-color-note,.novo-toolbar .novo-color-note{background:#747884;color:#fff}.novo-toolbar.novo-color-note>novo-action button,.novo-toolbar .novo-color-note>novo-action button,.novo-toolbar.novo-color-note>novo-action novo-button,.novo-toolbar .novo-color-note>novo-action novo-button,.novo-toolbar.novo-color-note>novo-icon,.novo-toolbar .novo-color-note>novo-icon,.novo-toolbar.novo-color-note>novo-label,.novo-toolbar .novo-color-note>novo-label,.novo-toolbar.novo-color-note>novo-text,.novo-toolbar .novo-color-note>novo-text,.novo-toolbar.novo-color-note>novo-title,.novo-toolbar .novo-color-note>novo-title{color:inherit}.novo-toolbar.novo-color-note .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-note .novo-divider.novo-divider-vertical{border-right-color:#aaacb4}.novo-toolbar.novo-color-contract,.novo-toolbar .novo-color-contract{background:#454ea0;color:#fff}.novo-toolbar.novo-color-contract>novo-action button,.novo-toolbar .novo-color-contract>novo-action button,.novo-toolbar.novo-color-contract>novo-action novo-button,.novo-toolbar .novo-color-contract>novo-action novo-button,.novo-toolbar.novo-color-contract>novo-icon,.novo-toolbar .novo-color-contract>novo-icon,.novo-toolbar.novo-color-contract>novo-label,.novo-toolbar .novo-color-contract>novo-label,.novo-toolbar.novo-color-contract>novo-text,.novo-toolbar .novo-color-contract>novo-text,.novo-toolbar.novo-color-contract>novo-title,.novo-toolbar .novo-color-contract>novo-title{color:inherit}.novo-toolbar.novo-color-contract .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-contract .novo-divider.novo-divider-vertical{border-right-color:#8289c9}.novo-toolbar.novo-color-jobCode,.novo-toolbar .novo-color-jobCode{background:#696d79;color:#fff}.novo-toolbar.novo-color-jobCode>novo-action button,.novo-toolbar .novo-color-jobCode>novo-action button,.novo-toolbar.novo-color-jobCode>novo-action novo-button,.novo-toolbar .novo-color-jobCode>novo-action novo-button,.novo-toolbar.novo-color-jobCode>novo-icon,.novo-toolbar .novo-color-jobCode>novo-icon,.novo-toolbar.novo-color-jobCode>novo-label,.novo-toolbar .novo-color-jobCode>novo-label,.novo-toolbar.novo-color-jobCode>novo-text,.novo-toolbar .novo-color-jobCode>novo-text,.novo-toolbar.novo-color-jobCode>novo-title,.novo-toolbar .novo-color-jobCode>novo-title{color:inherit}.novo-toolbar.novo-color-jobCode .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-jobCode .novo-divider.novo-divider-vertical{border-right-color:#9ea1aa}.novo-toolbar.novo-color-earnCode,.novo-toolbar .novo-color-earnCode{background:#696d79;color:#fff}.novo-toolbar.novo-color-earnCode>novo-action button,.novo-toolbar .novo-color-earnCode>novo-action button,.novo-toolbar.novo-color-earnCode>novo-action novo-button,.novo-toolbar .novo-color-earnCode>novo-action novo-button,.novo-toolbar.novo-color-earnCode>novo-icon,.novo-toolbar .novo-color-earnCode>novo-icon,.novo-toolbar.novo-color-earnCode>novo-label,.novo-toolbar .novo-color-earnCode>novo-label,.novo-toolbar.novo-color-earnCode>novo-text,.novo-toolbar .novo-color-earnCode>novo-text,.novo-toolbar.novo-color-earnCode>novo-title,.novo-toolbar .novo-color-earnCode>novo-title{color:inherit}.novo-toolbar.novo-color-earnCode .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-earnCode .novo-divider.novo-divider-vertical{border-right-color:#9ea1aa}.novo-toolbar.novo-color-invoiceStatement,.novo-toolbar .novo-color-invoiceStatement{background:#696d79;color:#fff}.novo-toolbar.novo-color-invoiceStatement>novo-action button,.novo-toolbar .novo-color-invoiceStatement>novo-action button,.novo-toolbar.novo-color-invoiceStatement>novo-action novo-button,.novo-toolbar .novo-color-invoiceStatement>novo-action novo-button,.novo-toolbar.novo-color-invoiceStatement>novo-icon,.novo-toolbar .novo-color-invoiceStatement>novo-icon,.novo-toolbar.novo-color-invoiceStatement>novo-label,.novo-toolbar .novo-color-invoiceStatement>novo-label,.novo-toolbar.novo-color-invoiceStatement>novo-text,.novo-toolbar .novo-color-invoiceStatement>novo-text,.novo-toolbar.novo-color-invoiceStatement>novo-title,.novo-toolbar .novo-color-invoiceStatement>novo-title{color:inherit}.novo-toolbar.novo-color-invoiceStatement .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-invoiceStatement .novo-divider.novo-divider-vertical{border-right-color:#9ea1aa}.novo-toolbar.novo-color-billableCharge,.novo-toolbar .novo-color-billableCharge{background:#696d79;color:#fff}.novo-toolbar.novo-color-billableCharge>novo-action button,.novo-toolbar .novo-color-billableCharge>novo-action button,.novo-toolbar.novo-color-billableCharge>novo-action novo-button,.novo-toolbar .novo-color-billableCharge>novo-action novo-button,.novo-toolbar.novo-color-billableCharge>novo-icon,.novo-toolbar .novo-color-billableCharge>novo-icon,.novo-toolbar.novo-color-billableCharge>novo-label,.novo-toolbar .novo-color-billableCharge>novo-label,.novo-toolbar.novo-color-billableCharge>novo-text,.novo-toolbar .novo-color-billableCharge>novo-text,.novo-toolbar.novo-color-billableCharge>novo-title,.novo-toolbar .novo-color-billableCharge>novo-title{color:inherit}.novo-toolbar.novo-color-billableCharge .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-billableCharge .novo-divider.novo-divider-vertical{border-right-color:#9ea1aa}.novo-toolbar.novo-color-payableCharge,.novo-toolbar .novo-color-payableCharge{background:#696d79;color:#fff}.novo-toolbar.novo-color-payableCharge>novo-action button,.novo-toolbar .novo-color-payableCharge>novo-action button,.novo-toolbar.novo-color-payableCharge>novo-action novo-button,.novo-toolbar .novo-color-payableCharge>novo-action novo-button,.novo-toolbar.novo-color-payableCharge>novo-icon,.novo-toolbar .novo-color-payableCharge>novo-icon,.novo-toolbar.novo-color-payableCharge>novo-label,.novo-toolbar .novo-color-payableCharge>novo-label,.novo-toolbar.novo-color-payableCharge>novo-text,.novo-toolbar .novo-color-payableCharge>novo-text,.novo-toolbar.novo-color-payableCharge>novo-title,.novo-toolbar .novo-color-payableCharge>novo-title{color:inherit}.novo-toolbar.novo-color-payableCharge .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-payableCharge .novo-divider.novo-divider-vertical{border-right-color:#9ea1aa}.novo-toolbar.novo-color-user,.novo-toolbar .novo-color-user{background:#696d79;color:#fff}.novo-toolbar.novo-color-user>novo-action button,.novo-toolbar .novo-color-user>novo-action button,.novo-toolbar.novo-color-user>novo-action novo-button,.novo-toolbar .novo-color-user>novo-action novo-button,.novo-toolbar.novo-color-user>novo-icon,.novo-toolbar .novo-color-user>novo-icon,.novo-toolbar.novo-color-user>novo-label,.novo-toolbar .novo-color-user>novo-label,.novo-toolbar.novo-color-user>novo-text,.novo-toolbar .novo-color-user>novo-text,.novo-toolbar.novo-color-user>novo-title,.novo-toolbar .novo-color-user>novo-title{color:inherit}.novo-toolbar.novo-color-user .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-user .novo-divider.novo-divider-vertical{border-right-color:#9ea1aa}.novo-toolbar.novo-color-corporateUser,.novo-toolbar .novo-color-corporateUser{background:#696d79;color:#fff}.novo-toolbar.novo-color-corporateUser>novo-action button,.novo-toolbar .novo-color-corporateUser>novo-action button,.novo-toolbar.novo-color-corporateUser>novo-action novo-button,.novo-toolbar .novo-color-corporateUser>novo-action novo-button,.novo-toolbar.novo-color-corporateUser>novo-icon,.novo-toolbar .novo-color-corporateUser>novo-icon,.novo-toolbar.novo-color-corporateUser>novo-label,.novo-toolbar .novo-color-corporateUser>novo-label,.novo-toolbar.novo-color-corporateUser>novo-text,.novo-toolbar .novo-color-corporateUser>novo-text,.novo-toolbar.novo-color-corporateUser>novo-title,.novo-toolbar .novo-color-corporateUser>novo-title{color:inherit}.novo-toolbar.novo-color-corporateUser .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-corporateUser .novo-divider.novo-divider-vertical{border-right-color:#9ea1aa}.novo-toolbar.novo-color-distributionList,.novo-toolbar .novo-color-distributionList{background:#696d79;color:#fff}.novo-toolbar.novo-color-distributionList>novo-action button,.novo-toolbar .novo-color-distributionList>novo-action button,.novo-toolbar.novo-color-distributionList>novo-action novo-button,.novo-toolbar .novo-color-distributionList>novo-action novo-button,.novo-toolbar.novo-color-distributionList>novo-icon,.novo-toolbar .novo-color-distributionList>novo-icon,.novo-toolbar.novo-color-distributionList>novo-label,.novo-toolbar .novo-color-distributionList>novo-label,.novo-toolbar.novo-color-distributionList>novo-text,.novo-toolbar .novo-color-distributionList>novo-text,.novo-toolbar.novo-color-distributionList>novo-title,.novo-toolbar .novo-color-distributionList>novo-title{color:inherit}.novo-toolbar.novo-color-distributionList .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-distributionList .novo-divider.novo-divider-vertical{border-right-color:#9ea1aa}.novo-toolbar.novo-color-credential,.novo-toolbar .novo-color-credential{background:#696d79;color:#fff}.novo-toolbar.novo-color-credential>novo-action button,.novo-toolbar .novo-color-credential>novo-action button,.novo-toolbar.novo-color-credential>novo-action novo-button,.novo-toolbar .novo-color-credential>novo-action novo-button,.novo-toolbar.novo-color-credential>novo-icon,.novo-toolbar .novo-color-credential>novo-icon,.novo-toolbar.novo-color-credential>novo-label,.novo-toolbar .novo-color-credential>novo-label,.novo-toolbar.novo-color-credential>novo-text,.novo-toolbar .novo-color-credential>novo-text,.novo-toolbar.novo-color-credential>novo-title,.novo-toolbar .novo-color-credential>novo-title{color:inherit}.novo-toolbar.novo-color-credential .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-credential .novo-divider.novo-divider-vertical{border-right-color:#9ea1aa}.novo-toolbar.novo-color-person,.novo-toolbar .novo-color-person{background:#696d79;color:#fff}.novo-toolbar.novo-color-person>novo-action button,.novo-toolbar .novo-color-person>novo-action button,.novo-toolbar.novo-color-person>novo-action novo-button,.novo-toolbar .novo-color-person>novo-action novo-button,.novo-toolbar.novo-color-person>novo-icon,.novo-toolbar .novo-color-person>novo-icon,.novo-toolbar.novo-color-person>novo-label,.novo-toolbar .novo-color-person>novo-label,.novo-toolbar.novo-color-person>novo-text,.novo-toolbar .novo-color-person>novo-text,.novo-toolbar.novo-color-person>novo-title,.novo-toolbar .novo-color-person>novo-title{color:inherit}.novo-toolbar.novo-color-person .novo-divider.novo-divider-vertical,.novo-toolbar .novo-color-person .novo-divider.novo-divider-vertical{border-right-color:#9ea1aa}"]
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%}"]
52635
52744
  },] }
52636
52745
  ];
52637
52746
  NovoToolbar.ctorParameters = function () { return [
@@ -53587,6 +53696,7 @@
53587
53696
  * Generated bundle index. Do not edit.
53588
53697
  */
53589
53698
 
53699
+ exports.AccentColorDirective = AccentColorDirective;
53590
53700
  exports.AceEditorControl = AceEditorControl;
53591
53701
  exports.ActivityTableDataSource = ActivityTableDataSource;
53592
53702
  exports.ActivityTableRenderers = ActivityTableRenderers;
@@ -53652,6 +53762,7 @@
53652
53762
  exports.ErrorStateMatcher = ErrorStateMatcher;
53653
53763
  exports.FieldInteractionApi = FieldInteractionApi;
53654
53764
  exports.FileControl = FileControl;
53765
+ exports.FillColorDirective = FillColorDirective;
53655
53766
  exports.FormUtils = FormUtils;
53656
53767
  exports.FormValidators = FormValidators;
53657
53768
  exports.GapDirective = GapDirective;
@@ -53899,6 +54010,7 @@
53899
54010
  exports.NovoRadioElement = NovoRadioElement;
53900
54011
  exports.NovoRadioGroup = NovoRadioGroup;
53901
54012
  exports.NovoRadioModule = NovoRadioModule;
54013
+ exports.NovoRailComponent = NovoRailComponent;
53902
54014
  exports.NovoRowChipElement = NovoRowChipElement;
53903
54015
  exports.NovoRowChipsElement = NovoRowChipsElement;
53904
54016
  exports.NovoSearchBoxElement = NovoSearchBoxElement;