/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
/**
 * This mixin adds the correct panel transform styles based
 * on the direction that the menu panel opens.
 */
/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v1.4.0
* Docs at http://davidtheclark.github.io/scut
*/
/*********************************************************
  Generate NX Responsive Grids
**********************************************************/
/************** Start Responsive Grid ***************/
/*** Grid CSS Variables ***/
:root {
  --nx-grid-margin-xs: 24px;
  --nx-grid-gutter-xs: 24px;
  --nx-grid-row-gutter-xs: 10px;
  --nx-grid-column-gutter-xs: 5px;
  --nx-grid-column-width-xs: 72px;
  --nx-grid-margin-sm: 24px;
  --nx-grid-gutter-sm: 24px;
  --nx-grid-row-gutter-sm: 10px;
  --nx-grid-column-gutter-sm: 10px;
  --nx-grid-column-width-sm: 72px;
  --nx-grid-margin-md: 24px;
  --nx-grid-gutter-md: 24px;
  --nx-grid-row-gutter-md: 24px;
  --nx-grid-column-gutter-md: 24px;
  --nx-grid-column-width-md: 72px;
  --nx-grid-margin-lg: 24px;
  --nx-grid-gutter-lg: 24px;
  --nx-grid-row-gutter-lg: 24px;
  --nx-grid-column-gutter-lg: 24px;
  --nx-grid-column-width-lg: 72px;
  --nx-grid-margin-xl: 24px;
  --nx-grid-gutter-xl: 24px;
  --nx-grid-row-gutter-xl: 24px;
  --nx-grid-column-gutter-xl: 24px;
  --nx-grid-column-width-xl: 72px;
}

/*** Grid Container ***/
.nx-grid-container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
}
@media (min-width: 0px) and (max-width: 479px) {
  .nx-grid-container {
    padding-bottom: 24px;
    padding-bottom: var(--nx-grid-margin-xs, 24px);
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .nx-grid-container {
    padding-bottom: 24px;
    padding-bottom: var(--nx-grid-margin-sm, 24px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .nx-grid-container {
    padding-bottom: 24px;
    padding-bottom: var(--nx-grid-margin-md, 24px);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .nx-grid-container {
    padding-bottom: 24px;
    padding-bottom: var(--nx-grid-margin-lg, 24px);
  }
}
@media (min-width: 1200px) {
  .nx-grid-container {
    padding-bottom: 24px;
    padding-bottom: var(--nx-grid-margin-xl, 24px);
  }
}

/*** Grid Container - END ***/
/*** The Grid (the direct parent of grid items) ***/
@media (min-width: 0px) {
  .nx-grid {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin: -12px;
    margin: calc(var(--nx-grid-gutter-xs, 24px) / 2 * -1);
  }
  @supports (display: grid) {
    .nx-grid {
      display: grid;
      margin: 0;
      grid-row-gap: 10px;
      grid-row-gap: var(--nx-grid-row-gutter-xs, 10px);
      grid-column-gap: 5px;
      grid-column-gap: var(--nx-grid-column-gutter-xs, 5px);
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
  }
}
@media (min-width: 480px) {
  .nx-grid {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin: -12px;
    margin: calc(var(--nx-grid-gutter-sm, 24px) / 2 * -1);
  }
  @supports (display: grid) {
    .nx-grid {
      display: grid;
      margin: 0;
      grid-row-gap: 10px;
      grid-row-gap: var(--nx-grid-row-gutter-sm, 10px);
      grid-column-gap: 10px;
      grid-column-gap: var(--nx-grid-column-gutter-sm, 10px);
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
  }
}
@media (min-width: 768px) {
  .nx-grid {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin: -12px;
    margin: calc(var(--nx-grid-gutter-md, 24px) / 2 * -1);
  }
  @supports (display: grid) {
    .nx-grid {
      display: grid;
      margin: 0;
      grid-row-gap: 24px;
      grid-row-gap: var(--nx-grid-row-gutter-md, 24px);
      grid-column-gap: 24px;
      grid-column-gap: var(--nx-grid-column-gutter-md, 24px);
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
  }
}
@media (min-width: 992px) {
  .nx-grid {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin: -12px;
    margin: calc(var(--nx-grid-gutter-lg, 24px) / 2 * -1);
  }
  @supports (display: grid) {
    .nx-grid {
      display: grid;
      margin: 0;
      grid-row-gap: 24px;
      grid-row-gap: var(--nx-grid-row-gutter-lg, 24px);
      grid-column-gap: 24px;
      grid-column-gap: var(--nx-grid-column-gutter-lg, 24px);
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
  }
}
@media (min-width: 1200px) {
  .nx-grid {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin: -12px;
    margin: calc(var(--nx-grid-gutter-xl, 24px) / 2 * -1);
  }
  @supports (display: grid) {
    .nx-grid {
      display: grid;
      margin: 0;
      grid-row-gap: 24px;
      grid-row-gap: var(--nx-grid-row-gutter-xl, 24px);
      grid-column-gap: 24px;
      grid-column-gap: var(--nx-grid-column-gutter-xl, 24px);
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
  }
}

/*** Grid - END ***/
/*** Grid Items (Columns) ***/
.nx-col-xl-12, .nx-col-xl-11, .nx-col-xl-10, .nx-col-xl-9, .nx-col-xl-8, .nx-col-xl-7, .nx-col-xl-6, .nx-col-xl-5, .nx-col-xl-4, .nx-col-xl-3, .nx-col-xl-2, .nx-col-xl-1, .nx-col-lg-12, .nx-col-lg-11, .nx-col-lg-10, .nx-col-lg-9, .nx-col-lg-8, .nx-col-lg-7, .nx-col-lg-6, .nx-col-lg-5, .nx-col-lg-4, .nx-col-lg-3, .nx-col-lg-2, .nx-col-lg-1, .nx-col-md-12, .nx-col-md-11, .nx-col-md-10, .nx-col-md-9, .nx-col-md-8, .nx-col-md-7, .nx-col-md-6, .nx-col-md-5, .nx-col-md-4, .nx-col-md-3, .nx-col-md-2, .nx-col-md-1, .nx-col-sm-12, .nx-col-sm-11, .nx-col-sm-10, .nx-col-sm-9, .nx-col-sm-8, .nx-col-sm-7, .nx-col-sm-6, .nx-col-sm-5, .nx-col-sm-4, .nx-col-sm-3, .nx-col-sm-2, .nx-col-sm-1, .nx-col-xs-12, .nx-col-xs-11, .nx-col-xs-10, .nx-col-xs-9, .nx-col-xs-8, .nx-col-xs-7, .nx-col-xs-6, .nx-col-xs-5, .nx-col-xs-4, .nx-col-xs-3, .nx-col-xs-2, .nx-col-xs-1 {
  width: calc(100% - 24px);
  width: calc(100% - var(--nx-grid-gutter-xs, 24px));
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: calc(24px / 2);
  margin: calc(var(--nx-grid-gutter-xs, 24px) / 2);
  position: relative;
  min-height: 1px;
}

@supports (display: grid) {
  .nx-col-xl-12, .nx-col-xl-11, .nx-col-xl-10, .nx-col-xl-9, .nx-col-xl-8, .nx-col-xl-7, .nx-col-xl-6, .nx-col-xl-5, .nx-col-xl-4, .nx-col-xl-3, .nx-col-xl-2, .nx-col-xl-1, .nx-col-lg-12, .nx-col-lg-11, .nx-col-lg-10, .nx-col-lg-9, .nx-col-lg-8, .nx-col-lg-7, .nx-col-lg-6, .nx-col-lg-5, .nx-col-lg-4, .nx-col-lg-3, .nx-col-lg-2, .nx-col-lg-1, .nx-col-md-12, .nx-col-md-11, .nx-col-md-10, .nx-col-md-9, .nx-col-md-8, .nx-col-md-7, .nx-col-md-6, .nx-col-md-5, .nx-col-md-4, .nx-col-md-3, .nx-col-md-2, .nx-col-md-1, .nx-col-sm-12, .nx-col-sm-11, .nx-col-sm-10, .nx-col-sm-9, .nx-col-sm-8, .nx-col-sm-7, .nx-col-sm-6, .nx-col-sm-5, .nx-col-sm-4, .nx-col-sm-3, .nx-col-sm-2, .nx-col-sm-1, .nx-col-xs-12, .nx-col-xs-11, .nx-col-xs-10, .nx-col-xs-9, .nx-col-xs-8, .nx-col-xs-7, .nx-col-xs-6, .nx-col-xs-5, .nx-col-xs-4, .nx-col-xs-3, .nx-col-xs-2, .nx-col-xs-1 {
    margin: 0;
    width: auto;
    grid-column-end: span 12;
  }
}
@media (min-width: 0px) {
  .nx-col-xs-1 {
    width: calc(8.3333333333% - 24px);
    width: calc(8.3333333333% - var(--nx-grid-gutter-xs, 24px));
  }
  @supports (display: grid) {
    .nx-col-xs-1 {
      width: auto;
      grid-column-end: span 1;
    }
  }
  .nx-col-xs-2 {
    width: calc(16.6666666667% - 24px);
    width: calc(16.6666666667% - var(--nx-grid-gutter-xs, 24px));
  }
  @supports (display: grid) {
    .nx-col-xs-2 {
      width: auto;
      grid-column-end: span 2;
    }
  }
  .nx-col-xs-3 {
    width: calc(25% - 24px);
    width: calc(25% - var(--nx-grid-gutter-xs, 24px));
  }
  @supports (display: grid) {
    .nx-col-xs-3 {
      width: auto;
      grid-column-end: span 3;
    }
  }
  .nx-col-xs-4 {
    width: calc(33.3333333333% - 24px);
    width: calc(33.3333333333% - var(--nx-grid-gutter-xs, 24px));
  }
  @supports (display: grid) {
    .nx-col-xs-4 {
      width: auto;
      grid-column-end: span 4;
    }
  }
  .nx-col-xs-5 {
    width: calc(41.6666666667% - 24px);
    width: calc(41.6666666667% - var(--nx-grid-gutter-xs, 24px));
  }
  @supports (display: grid) {
    .nx-col-xs-5 {
      width: auto;
      grid-column-end: span 5;
    }
  }
  .nx-col-xs-6 {
    width: calc(50% - 24px);
    width: calc(50% - var(--nx-grid-gutter-xs, 24px));
  }
  @supports (display: grid) {
    .nx-col-xs-6 {
      width: auto;
      grid-column-end: span 6;
    }
  }
  .nx-col-xs-7 {
    width: calc(58.3333333333% - 24px);
    width: calc(58.3333333333% - var(--nx-grid-gutter-xs, 24px));
  }
  @supports (display: grid) {
    .nx-col-xs-7 {
      width: auto;
      grid-column-end: span 7;
    }
  }
  .nx-col-xs-8 {
    width: calc(66.6666666667% - 24px);
    width: calc(66.6666666667% - var(--nx-grid-gutter-xs, 24px));
  }
  @supports (display: grid) {
    .nx-col-xs-8 {
      width: auto;
      grid-column-end: span 8;
    }
  }
  .nx-col-xs-9 {
    width: calc(75% - 24px);
    width: calc(75% - var(--nx-grid-gutter-xs, 24px));
  }
  @supports (display: grid) {
    .nx-col-xs-9 {
      width: auto;
      grid-column-end: span 9;
    }
  }
  .nx-col-xs-10 {
    width: calc(83.3333333333% - 24px);
    width: calc(83.3333333333% - var(--nx-grid-gutter-xs, 24px));
  }
  @supports (display: grid) {
    .nx-col-xs-10 {
      width: auto;
      grid-column-end: span 10;
    }
  }
  .nx-col-xs-11 {
    width: calc(91.6666666667% - 24px);
    width: calc(91.6666666667% - var(--nx-grid-gutter-xs, 24px));
  }
  @supports (display: grid) {
    .nx-col-xs-11 {
      width: auto;
      grid-column-end: span 11;
    }
  }
  .nx-col-xs-12 {
    width: calc(100% - 24px);
    width: calc(100% - var(--nx-grid-gutter-xs, 24px));
  }
  @supports (display: grid) {
    .nx-col-xs-12 {
      width: auto;
      grid-column-end: span 12;
    }
  }
}
@media (min-width: 480px) {
  .nx-col-sm-1 {
    width: calc(8.3333333333% - 24px);
    width: calc(8.3333333333% - var(--nx-grid-gutter-sm, 24px));
  }
  @supports (display: grid) {
    .nx-col-sm-1 {
      width: auto;
      grid-column-end: span 1;
    }
  }
  .nx-col-sm-2 {
    width: calc(16.6666666667% - 24px);
    width: calc(16.6666666667% - var(--nx-grid-gutter-sm, 24px));
  }
  @supports (display: grid) {
    .nx-col-sm-2 {
      width: auto;
      grid-column-end: span 2;
    }
  }
  .nx-col-sm-3 {
    width: calc(25% - 24px);
    width: calc(25% - var(--nx-grid-gutter-sm, 24px));
  }
  @supports (display: grid) {
    .nx-col-sm-3 {
      width: auto;
      grid-column-end: span 3;
    }
  }
  .nx-col-sm-4 {
    width: calc(33.3333333333% - 24px);
    width: calc(33.3333333333% - var(--nx-grid-gutter-sm, 24px));
  }
  @supports (display: grid) {
    .nx-col-sm-4 {
      width: auto;
      grid-column-end: span 4;
    }
  }
  .nx-col-sm-5 {
    width: calc(41.6666666667% - 24px);
    width: calc(41.6666666667% - var(--nx-grid-gutter-sm, 24px));
  }
  @supports (display: grid) {
    .nx-col-sm-5 {
      width: auto;
      grid-column-end: span 5;
    }
  }
  .nx-col-sm-6 {
    width: calc(50% - 24px);
    width: calc(50% - var(--nx-grid-gutter-sm, 24px));
  }
  @supports (display: grid) {
    .nx-col-sm-6 {
      width: auto;
      grid-column-end: span 6;
    }
  }
  .nx-col-sm-7 {
    width: calc(58.3333333333% - 24px);
    width: calc(58.3333333333% - var(--nx-grid-gutter-sm, 24px));
  }
  @supports (display: grid) {
    .nx-col-sm-7 {
      width: auto;
      grid-column-end: span 7;
    }
  }
  .nx-col-sm-8 {
    width: calc(66.6666666667% - 24px);
    width: calc(66.6666666667% - var(--nx-grid-gutter-sm, 24px));
  }
  @supports (display: grid) {
    .nx-col-sm-8 {
      width: auto;
      grid-column-end: span 8;
    }
  }
  .nx-col-sm-9 {
    width: calc(75% - 24px);
    width: calc(75% - var(--nx-grid-gutter-sm, 24px));
  }
  @supports (display: grid) {
    .nx-col-sm-9 {
      width: auto;
      grid-column-end: span 9;
    }
  }
  .nx-col-sm-10 {
    width: calc(83.3333333333% - 24px);
    width: calc(83.3333333333% - var(--nx-grid-gutter-sm, 24px));
  }
  @supports (display: grid) {
    .nx-col-sm-10 {
      width: auto;
      grid-column-end: span 10;
    }
  }
  .nx-col-sm-11 {
    width: calc(91.6666666667% - 24px);
    width: calc(91.6666666667% - var(--nx-grid-gutter-sm, 24px));
  }
  @supports (display: grid) {
    .nx-col-sm-11 {
      width: auto;
      grid-column-end: span 11;
    }
  }
  .nx-col-sm-12 {
    width: calc(100% - 24px);
    width: calc(100% - var(--nx-grid-gutter-sm, 24px));
  }
  @supports (display: grid) {
    .nx-col-sm-12 {
      width: auto;
      grid-column-end: span 12;
    }
  }
}
@media (min-width: 768px) {
  .nx-col-md-1 {
    width: calc(8.3333333333% - 24px);
    width: calc(8.3333333333% - var(--nx-grid-gutter-md, 24px));
  }
  @supports (display: grid) {
    .nx-col-md-1 {
      width: auto;
      grid-column-end: span 1;
    }
  }
  .nx-col-md-2 {
    width: calc(16.6666666667% - 24px);
    width: calc(16.6666666667% - var(--nx-grid-gutter-md, 24px));
  }
  @supports (display: grid) {
    .nx-col-md-2 {
      width: auto;
      grid-column-end: span 2;
    }
  }
  .nx-col-md-3 {
    width: calc(25% - 24px);
    width: calc(25% - var(--nx-grid-gutter-md, 24px));
  }
  @supports (display: grid) {
    .nx-col-md-3 {
      width: auto;
      grid-column-end: span 3;
    }
  }
  .nx-col-md-4 {
    width: calc(33.3333333333% - 24px);
    width: calc(33.3333333333% - var(--nx-grid-gutter-md, 24px));
  }
  @supports (display: grid) {
    .nx-col-md-4 {
      width: auto;
      grid-column-end: span 4;
    }
  }
  .nx-col-md-5 {
    width: calc(41.6666666667% - 24px);
    width: calc(41.6666666667% - var(--nx-grid-gutter-md, 24px));
  }
  @supports (display: grid) {
    .nx-col-md-5 {
      width: auto;
      grid-column-end: span 5;
    }
  }
  .nx-col-md-6 {
    width: calc(50% - 24px);
    width: calc(50% - var(--nx-grid-gutter-md, 24px));
  }
  @supports (display: grid) {
    .nx-col-md-6 {
      width: auto;
      grid-column-end: span 6;
    }
  }
  .nx-col-md-7 {
    width: calc(58.3333333333% - 24px);
    width: calc(58.3333333333% - var(--nx-grid-gutter-md, 24px));
  }
  @supports (display: grid) {
    .nx-col-md-7 {
      width: auto;
      grid-column-end: span 7;
    }
  }
  .nx-col-md-8 {
    width: calc(66.6666666667% - 24px);
    width: calc(66.6666666667% - var(--nx-grid-gutter-md, 24px));
  }
  @supports (display: grid) {
    .nx-col-md-8 {
      width: auto;
      grid-column-end: span 8;
    }
  }
  .nx-col-md-9 {
    width: calc(75% - 24px);
    width: calc(75% - var(--nx-grid-gutter-md, 24px));
  }
  @supports (display: grid) {
    .nx-col-md-9 {
      width: auto;
      grid-column-end: span 9;
    }
  }
  .nx-col-md-10 {
    width: calc(83.3333333333% - 24px);
    width: calc(83.3333333333% - var(--nx-grid-gutter-md, 24px));
  }
  @supports (display: grid) {
    .nx-col-md-10 {
      width: auto;
      grid-column-end: span 10;
    }
  }
  .nx-col-md-11 {
    width: calc(91.6666666667% - 24px);
    width: calc(91.6666666667% - var(--nx-grid-gutter-md, 24px));
  }
  @supports (display: grid) {
    .nx-col-md-11 {
      width: auto;
      grid-column-end: span 11;
    }
  }
  .nx-col-md-12 {
    width: calc(100% - 24px);
    width: calc(100% - var(--nx-grid-gutter-md, 24px));
  }
  @supports (display: grid) {
    .nx-col-md-12 {
      width: auto;
      grid-column-end: span 12;
    }
  }
}
@media (min-width: 992px) {
  .nx-col-lg-1 {
    width: calc(8.3333333333% - 24px);
    width: calc(8.3333333333% - var(--nx-grid-gutter-lg, 24px));
  }
  @supports (display: grid) {
    .nx-col-lg-1 {
      width: auto;
      grid-column-end: span 1;
    }
  }
  .nx-col-lg-2 {
    width: calc(16.6666666667% - 24px);
    width: calc(16.6666666667% - var(--nx-grid-gutter-lg, 24px));
  }
  @supports (display: grid) {
    .nx-col-lg-2 {
      width: auto;
      grid-column-end: span 2;
    }
  }
  .nx-col-lg-3 {
    width: calc(25% - 24px);
    width: calc(25% - var(--nx-grid-gutter-lg, 24px));
  }
  @supports (display: grid) {
    .nx-col-lg-3 {
      width: auto;
      grid-column-end: span 3;
    }
  }
  .nx-col-lg-4 {
    width: calc(33.3333333333% - 24px);
    width: calc(33.3333333333% - var(--nx-grid-gutter-lg, 24px));
  }
  @supports (display: grid) {
    .nx-col-lg-4 {
      width: auto;
      grid-column-end: span 4;
    }
  }
  .nx-col-lg-5 {
    width: calc(41.6666666667% - 24px);
    width: calc(41.6666666667% - var(--nx-grid-gutter-lg, 24px));
  }
  @supports (display: grid) {
    .nx-col-lg-5 {
      width: auto;
      grid-column-end: span 5;
    }
  }
  .nx-col-lg-6 {
    width: calc(50% - 24px);
    width: calc(50% - var(--nx-grid-gutter-lg, 24px));
  }
  @supports (display: grid) {
    .nx-col-lg-6 {
      width: auto;
      grid-column-end: span 6;
    }
  }
  .nx-col-lg-7 {
    width: calc(58.3333333333% - 24px);
    width: calc(58.3333333333% - var(--nx-grid-gutter-lg, 24px));
  }
  @supports (display: grid) {
    .nx-col-lg-7 {
      width: auto;
      grid-column-end: span 7;
    }
  }
  .nx-col-lg-8 {
    width: calc(66.6666666667% - 24px);
    width: calc(66.6666666667% - var(--nx-grid-gutter-lg, 24px));
  }
  @supports (display: grid) {
    .nx-col-lg-8 {
      width: auto;
      grid-column-end: span 8;
    }
  }
  .nx-col-lg-9 {
    width: calc(75% - 24px);
    width: calc(75% - var(--nx-grid-gutter-lg, 24px));
  }
  @supports (display: grid) {
    .nx-col-lg-9 {
      width: auto;
      grid-column-end: span 9;
    }
  }
  .nx-col-lg-10 {
    width: calc(83.3333333333% - 24px);
    width: calc(83.3333333333% - var(--nx-grid-gutter-lg, 24px));
  }
  @supports (display: grid) {
    .nx-col-lg-10 {
      width: auto;
      grid-column-end: span 10;
    }
  }
  .nx-col-lg-11 {
    width: calc(91.6666666667% - 24px);
    width: calc(91.6666666667% - var(--nx-grid-gutter-lg, 24px));
  }
  @supports (display: grid) {
    .nx-col-lg-11 {
      width: auto;
      grid-column-end: span 11;
    }
  }
  .nx-col-lg-12 {
    width: calc(100% - 24px);
    width: calc(100% - var(--nx-grid-gutter-lg, 24px));
  }
  @supports (display: grid) {
    .nx-col-lg-12 {
      width: auto;
      grid-column-end: span 12;
    }
  }
}
@media (min-width: 1200px) {
  .nx-col-xl-1 {
    width: calc(8.3333333333% - 24px);
    width: calc(8.3333333333% - var(--nx-grid-gutter-xl, 24px));
  }
  @supports (display: grid) {
    .nx-col-xl-1 {
      width: auto;
      grid-column-end: span 1;
    }
  }
  .nx-col-xl-2 {
    width: calc(16.6666666667% - 24px);
    width: calc(16.6666666667% - var(--nx-grid-gutter-xl, 24px));
  }
  @supports (display: grid) {
    .nx-col-xl-2 {
      width: auto;
      grid-column-end: span 2;
    }
  }
  .nx-col-xl-3 {
    width: calc(25% - 24px);
    width: calc(25% - var(--nx-grid-gutter-xl, 24px));
  }
  @supports (display: grid) {
    .nx-col-xl-3 {
      width: auto;
      grid-column-end: span 3;
    }
  }
  .nx-col-xl-4 {
    width: calc(33.3333333333% - 24px);
    width: calc(33.3333333333% - var(--nx-grid-gutter-xl, 24px));
  }
  @supports (display: grid) {
    .nx-col-xl-4 {
      width: auto;
      grid-column-end: span 4;
    }
  }
  .nx-col-xl-5 {
    width: calc(41.6666666667% - 24px);
    width: calc(41.6666666667% - var(--nx-grid-gutter-xl, 24px));
  }
  @supports (display: grid) {
    .nx-col-xl-5 {
      width: auto;
      grid-column-end: span 5;
    }
  }
  .nx-col-xl-6 {
    width: calc(50% - 24px);
    width: calc(50% - var(--nx-grid-gutter-xl, 24px));
  }
  @supports (display: grid) {
    .nx-col-xl-6 {
      width: auto;
      grid-column-end: span 6;
    }
  }
  .nx-col-xl-7 {
    width: calc(58.3333333333% - 24px);
    width: calc(58.3333333333% - var(--nx-grid-gutter-xl, 24px));
  }
  @supports (display: grid) {
    .nx-col-xl-7 {
      width: auto;
      grid-column-end: span 7;
    }
  }
  .nx-col-xl-8 {
    width: calc(66.6666666667% - 24px);
    width: calc(66.6666666667% - var(--nx-grid-gutter-xl, 24px));
  }
  @supports (display: grid) {
    .nx-col-xl-8 {
      width: auto;
      grid-column-end: span 8;
    }
  }
  .nx-col-xl-9 {
    width: calc(75% - 24px);
    width: calc(75% - var(--nx-grid-gutter-xl, 24px));
  }
  @supports (display: grid) {
    .nx-col-xl-9 {
      width: auto;
      grid-column-end: span 9;
    }
  }
  .nx-col-xl-10 {
    width: calc(83.3333333333% - 24px);
    width: calc(83.3333333333% - var(--nx-grid-gutter-xl, 24px));
  }
  @supports (display: grid) {
    .nx-col-xl-10 {
      width: auto;
      grid-column-end: span 10;
    }
  }
  .nx-col-xl-11 {
    width: calc(91.6666666667% - 24px);
    width: calc(91.6666666667% - var(--nx-grid-gutter-xl, 24px));
  }
  @supports (display: grid) {
    .nx-col-xl-11 {
      width: auto;
      grid-column-end: span 11;
    }
  }
  .nx-col-xl-12 {
    width: calc(100% - 24px);
    width: calc(100% - var(--nx-grid-gutter-xl, 24px));
  }
  @supports (display: grid) {
    .nx-col-xl-12 {
      width: auto;
      grid-column-end: span 12;
    }
  }
}
/*** Grid Items - END ***/
/*** Grid items (columns) order ***/
@media (min-width: 0px) {
  .nx-col-order-xs-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .nx-col-order-xs-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .nx-col-order-xs-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .nx-col-order-xs-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .nx-col-order-xs-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .nx-col-order-xs-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .nx-col-order-xs-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .nx-col-order-xs-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .nx-col-order-xs-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .nx-col-order-xs-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .nx-col-order-xs-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .nx-col-order-xs-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (min-width: 480px) {
  .nx-col-order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .nx-col-order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .nx-col-order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .nx-col-order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .nx-col-order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .nx-col-order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .nx-col-order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .nx-col-order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .nx-col-order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .nx-col-order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .nx-col-order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .nx-col-order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (min-width: 768px) {
  .nx-col-order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .nx-col-order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .nx-col-order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .nx-col-order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .nx-col-order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .nx-col-order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .nx-col-order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .nx-col-order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .nx-col-order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .nx-col-order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .nx-col-order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .nx-col-order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (min-width: 992px) {
  .nx-col-order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .nx-col-order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .nx-col-order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .nx-col-order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .nx-col-order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .nx-col-order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .nx-col-order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .nx-col-order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .nx-col-order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .nx-col-order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .nx-col-order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .nx-col-order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
@media (min-width: 1200px) {
  .nx-col-order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .nx-col-order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .nx-col-order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .nx-col-order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .nx-col-order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .nx-col-order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .nx-col-order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .nx-col-order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .nx-col-order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .nx-col-order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .nx-col-order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .nx-col-order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
}
/*** Grid items (columns) vertical alignment ***/
.nx-col-align-top {
  align-self: flex-start;
}
@supports (display: grid) {
  .nx-col-align-top {
    align-self: start;
  }
}

.nx-col-align-middle {
  align-self: center;
}

.nx-col-align-bottom {
  align-self: flex-end;
}
@supports (display: grid) {
  .nx-col-align-bottom {
    align-self: end;
  }
}

/*** Grid Alignment (left or right) ***/
.nx-grid-align-left {
  margin-right: auto;
  margin-left: 0;
}

.nx-grid-align-right {
  margin-right: 0;
  margin-left: auto;
}

/*** Fixed column width ***/
@media (min-width: 0px) and (max-width: 479px) {
  .nx-grid-fixed-column-width {
    width: 1176px;
    width: calc(var(--nx-grid-column-width-xs, 72px) * 12 + var(--nx-grid-gutter-xs, 24px) * 11 + var(--nx-grid-margin-xs, 24px) * 2);
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .nx-grid-fixed-column-width {
    width: 1176px;
    width: calc(var(--nx-grid-column-width-sm, 72px) * 12 + var(--nx-grid-gutter-sm, 24px) * 11 + var(--nx-grid-margin-sm, 24px) * 2);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .nx-grid-fixed-column-width {
    width: 1176px;
    width: calc(var(--nx-grid-column-width-md, 72px) * 12 + var(--nx-grid-gutter-md, 24px) * 11 + var(--nx-grid-margin-md, 24px) * 2);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .nx-grid-fixed-column-width {
    width: 1176px;
    width: calc(var(--nx-grid-column-width-lg, 72px) * 12 + var(--nx-grid-gutter-lg, 24px) * 11 + var(--nx-grid-margin-lg, 24px) * 2);
  }
}
@media (min-width: 1200px) {
  .nx-grid-fixed-column-width {
    width: 1176px;
    width: calc(var(--nx-grid-column-width-xl, 72px) * 12 + var(--nx-grid-gutter-xl, 24px) * 11 + var(--nx-grid-margin-xl, 24px) * 2);
  }
}

/************** Start Responsive Grid ***************/
/*** Grid CSS Variables ***/
:root {
  --nx-form-grid-margin-xs: 15px;
  --nx-form-grid-gutter-xs: 15px;
  --nx-form-grid-row-gutter-xs: 10px;
  --nx-form-grid-column-gutter-xs: 5px;
  --nx-form-grid-column-width-xs: 72px;
  --nx-form-grid-margin-sm: 15px;
  --nx-form-grid-gutter-sm: 15px;
  --nx-form-grid-row-gutter-sm: 10px;
  --nx-form-grid-column-gutter-sm: 10px;
  --nx-form-grid-column-width-sm: 72px;
  --nx-form-grid-margin-md: 15px;
  --nx-form-grid-gutter-md: 15px;
  --nx-form-grid-row-gutter-md: 15px;
  --nx-form-grid-column-gutter-md: 15px;
  --nx-form-grid-column-width-md: 72px;
  --nx-form-grid-margin-lg: 15px;
  --nx-form-grid-gutter-lg: 15px;
  --nx-form-grid-row-gutter-lg: 15px;
  --nx-form-grid-column-gutter-lg: 15px;
  --nx-form-grid-column-width-lg: 72px;
  --nx-form-grid-margin-xl: 15px;
  --nx-form-grid-gutter-xl: 15px;
  --nx-form-grid-row-gutter-xl: 15px;
  --nx-form-grid-column-gutter-xl: 15px;
  --nx-form-grid-column-width-xl: 72px;
}

/*** Grid Container ***/
.nx-form-grid-container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto;
}
@media (min-width: 0px) and (max-width: 479px) {
  .nx-form-grid-container {
    padding-bottom: 15px;
    padding-bottom: var(--nx-form-grid-margin-xs, 15px);
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .nx-form-grid-container {
    padding-bottom: 15px;
    padding-bottom: var(--nx-form-grid-margin-sm, 15px);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .nx-form-grid-container {
    padding-bottom: 15px;
    padding-bottom: var(--nx-form-grid-margin-md, 15px);
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .nx-form-grid-container {
    padding-bottom: 15px;
    padding-bottom: var(--nx-form-grid-margin-lg, 15px);
  }
}
@media (min-width: 1200px) {
  .nx-form-grid-container {
    padding-bottom: 15px;
    padding-bottom: var(--nx-form-grid-margin-xl, 15px);
  }
}

/*** Grid Container - END ***/
/*** The Grid (the direct parent of grid items) ***/
@media (min-width: 0px) {
  .nx-form-grid {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin: -7.5px;
    margin: calc(var(--nx-form-grid-gutter-xs, 15px) / 2 * -1);
  }
  @supports (display: grid) {
    .nx-form-grid {
      display: grid;
      margin: 0;
      grid-row-gap: 10px;
      grid-row-gap: var(--nx-form-grid-row-gutter-xs, 10px);
      grid-column-gap: 5px;
      grid-column-gap: var(--nx-form-grid-column-gutter-xs, 5px);
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
  }
}
@media (min-width: 480px) {
  .nx-form-grid {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin: -7.5px;
    margin: calc(var(--nx-form-grid-gutter-sm, 15px) / 2 * -1);
  }
  @supports (display: grid) {
    .nx-form-grid {
      display: grid;
      margin: 0;
      grid-row-gap: 10px;
      grid-row-gap: var(--nx-form-grid-row-gutter-sm, 10px);
      grid-column-gap: 10px;
      grid-column-gap: var(--nx-form-grid-column-gutter-sm, 10px);
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
  }
}
@media (min-width: 768px) {
  .nx-form-grid {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin: -7.5px;
    margin: calc(var(--nx-form-grid-gutter-md, 15px) / 2 * -1);
  }
  @supports (display: grid) {
    .nx-form-grid {
      display: grid;
      margin: 0;
      grid-row-gap: 15px;
      grid-row-gap: var(--nx-form-grid-row-gutter-md, 15px);
      grid-column-gap: 15px;
      grid-column-gap: var(--nx-form-grid-column-gutter-md, 15px);
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
  }
}
@media (min-width: 992px) {
  .nx-form-grid {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin: -7.5px;
    margin: calc(var(--nx-form-grid-gutter-lg, 15px) / 2 * -1);
  }
  @supports (display: grid) {
    .nx-form-grid {
      display: grid;
      margin: 0;
      grid-row-gap: 15px;
      grid-row-gap: var(--nx-form-grid-row-gutter-lg, 15px);
      grid-column-gap: 15px;
      grid-column-gap: var(--nx-form-grid-column-gutter-lg, 15px);
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
  }
}
@media (min-width: 1200px) {
  .nx-form-grid {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    margin: -7.5px;
    margin: calc(var(--nx-form-grid-gutter-xl, 15px) / 2 * -1);
  }
  @supports (display: grid) {
    .nx-form-grid {
      display: grid;
      margin: 0;
      grid-row-gap: 15px;
      grid-row-gap: var(--nx-form-grid-row-gutter-xl, 15px);
      grid-column-gap: 15px;
      grid-column-gap: var(--nx-form-grid-column-gutter-xl, 15px);
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
  }
}

/*** Grid - END ***/
/*** Grid Items (Columns) ***/
.nx-form-col-xl-12, .nx-form-col-xl-11, .nx-form-col-xl-10, .nx-form-col-xl-9, .nx-form-col-xl-8, .nx-form-col-xl-7, .nx-form-col-xl-6, .nx-form-col-xl-5, .nx-form-col-xl-4, .nx-form-col-xl-3, .nx-form-col-xl-2, .nx-form-col-xl-1, .nx-form-col-lg-12, .nx-form-col-lg-11, .nx-form-col-lg-10, .nx-form-col-lg-9, .nx-form-col-lg-8, .nx-form-col-lg-7, .nx-form-col-lg-6, .nx-form-col-lg-5, .nx-form-col-lg-4, .nx-form-col-lg-3, .nx-form-col-lg-2, .nx-form-col-lg-1, .nx-form-col-md-12, .nx-form-col-md-11, .nx-form-col-md-10, .nx-form-col-md-9, .nx-form-col-md-8, .nx-form-col-md-7, .nx-form-col-md-6, .nx-form-col-md-5, .nx-form-col-md-4, .nx-form-col-md-3, .nx-form-col-md-2, .nx-form-col-md-1, .nx-form-col-sm-12, .nx-form-col-sm-11, .nx-form-col-sm-10, .nx-form-col-sm-9, .nx-form-col-sm-8, .nx-form-col-sm-7, .nx-form-col-sm-6, .nx-form-col-sm-5, .nx-form-col-sm-4, .nx-form-col-sm-3, .nx-form-col-sm-2, .nx-form-col-sm-1, .nx-form-col-xs-12, .nx-form-col-xs-11, .nx-form-col-xs-10, .nx-form-col-xs-9, .nx-form-col-xs-8, .nx-form-col-xs-7, .nx-form-col-xs-6, .nx-form-col-xs-5, .nx-form-col-xs-4, .nx-form-col-xs-3, .nx-form-col-xs-2, .nx-form-col-xs-1 {
  width: calc(100% - 15px);
  width: calc(100% - var(--nx-form-grid-gutter-xs, 15px));
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: calc(15px / 2);
  margin: calc(var(--nx-form-grid-gutter-xs, 15px) / 2);
  position: relative;
  min-height: 1px;
}

@supports (display: grid) {
  .nx-form-col-xl-12, .nx-form-col-xl-11, .nx-form-col-xl-10, .nx-form-col-xl-9, .nx-form-col-xl-8, .nx-form-col-xl-7, .nx-form-col-xl-6, .nx-form-col-xl-5, .nx-form-col-xl-4, .nx-form-col-xl-3, .nx-form-col-xl-2, .nx-form-col-xl-1, .nx-form-col-lg-12, .nx-form-col-lg-11, .nx-form-col-lg-10, .nx-form-col-lg-9, .nx-form-col-lg-8, .nx-form-col-lg-7, .nx-form-col-lg-6, .nx-form-col-lg-5, .nx-form-col-lg-4, .nx-form-col-lg-3, .nx-form-col-lg-2, .nx-form-col-lg-1, .nx-form-col-md-12, .nx-form-col-md-11, .nx-form-col-md-10, .nx-form-col-md-9, .nx-form-col-md-8, .nx-form-col-md-7, .nx-form-col-md-6, .nx-form-col-md-5, .nx-form-col-md-4, .nx-form-col-md-3, .nx-form-col-md-2, .nx-form-col-md-1, .nx-form-col-sm-12, .nx-form-col-sm-11, .nx-form-col-sm-10, .nx-form-col-sm-9, .nx-form-col-sm-8, .nx-form-col-sm-7, .nx-form-col-sm-6, .nx-form-col-sm-5, .nx-form-col-sm-4, .nx-form-col-sm-3, .nx-form-col-sm-2, .nx-form-col-sm-1, .nx-form-col-xs-12, .nx-form-col-xs-11, .nx-form-col-xs-10, .nx-form-col-xs-9, .nx-form-col-xs-8, .nx-form-col-xs-7, .nx-form-col-xs-6, .nx-form-col-xs-5, .nx-form-col-xs-4, .nx-form-col-xs-3, .nx-form-col-xs-2, .nx-form-col-xs-1 {
    margin: 0;
    width: auto;
    grid-column-end: span 12;
  }
}
@media (min-width: 0px) {
  .nx-form-col-xs-1 {
    width: calc(8.3333333333% - 15px);
    width: calc(8.3333333333% - var(--nx-form-grid-gutter-xs, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xs-1 {
      width: auto;
      grid-column-end: span 1;
    }
  }
  .nx-form-col-xs-2 {
    width: calc(16.6666666667% - 15px);
    width: calc(16.6666666667% - var(--nx-form-grid-gutter-xs, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xs-2 {
      width: auto;
      grid-column-end: span 2;
    }
  }
  .nx-form-col-xs-3 {
    width: calc(25% - 15px);
    width: calc(25% - var(--nx-form-grid-gutter-xs, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xs-3 {
      width: auto;
      grid-column-end: span 3;
    }
  }
  .nx-form-col-xs-4 {
    width: calc(33.3333333333% - 15px);
    width: calc(33.3333333333% - var(--nx-form-grid-gutter-xs, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xs-4 {
      width: auto;
      grid-column-end: span 4;
    }
  }
  .nx-form-col-xs-5 {
    width: calc(41.6666666667% - 15px);
    width: calc(41.6666666667% - var(--nx-form-grid-gutter-xs, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xs-5 {
      width: auto;
      grid-column-end: span 5;
    }
  }
  .nx-form-col-xs-6 {
    width: calc(50% - 15px);
    width: calc(50% - var(--nx-form-grid-gutter-xs, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xs-6 {
      width: auto;
      grid-column-end: span 6;
    }
  }
  .nx-form-col-xs-7 {
    width: calc(58.3333333333% - 15px);
    width: calc(58.3333333333% - var(--nx-form-grid-gutter-xs, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xs-7 {
      width: auto;
      grid-column-end: span 7;
    }
  }
  .nx-form-col-xs-8 {
    width: calc(66.6666666667% - 15px);
    width: calc(66.6666666667% - var(--nx-form-grid-gutter-xs, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xs-8 {
      width: auto;
      grid-column-end: span 8;
    }
  }
  .nx-form-col-xs-9 {
    width: calc(75% - 15px);
    width: calc(75% - var(--nx-form-grid-gutter-xs, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xs-9 {
      width: auto;
      grid-column-end: span 9;
    }
  }
  .nx-form-col-xs-10 {
    width: calc(83.3333333333% - 15px);
    width: calc(83.3333333333% - var(--nx-form-grid-gutter-xs, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xs-10 {
      width: auto;
      grid-column-end: span 10;
    }
  }
  .nx-form-col-xs-11 {
    width: calc(91.6666666667% - 15px);
    width: calc(91.6666666667% - var(--nx-form-grid-gutter-xs, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xs-11 {
      width: auto;
      grid-column-end: span 11;
    }
  }
  .nx-form-col-xs-12 {
    width: calc(100% - 15px);
    width: calc(100% - var(--nx-form-grid-gutter-xs, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xs-12 {
      width: auto;
      grid-column-end: span 12;
    }
  }
}
@media (min-width: 480px) {
  .nx-form-col-sm-1 {
    width: calc(8.3333333333% - 15px);
    width: calc(8.3333333333% - var(--nx-form-grid-gutter-sm, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-sm-1 {
      width: auto;
      grid-column-end: span 1;
    }
  }
  .nx-form-col-sm-2 {
    width: calc(16.6666666667% - 15px);
    width: calc(16.6666666667% - var(--nx-form-grid-gutter-sm, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-sm-2 {
      width: auto;
      grid-column-end: span 2;
    }
  }
  .nx-form-col-sm-3 {
    width: calc(25% - 15px);
    width: calc(25% - var(--nx-form-grid-gutter-sm, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-sm-3 {
      width: auto;
      grid-column-end: span 3;
    }
  }
  .nx-form-col-sm-4 {
    width: calc(33.3333333333% - 15px);
    width: calc(33.3333333333% - var(--nx-form-grid-gutter-sm, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-sm-4 {
      width: auto;
      grid-column-end: span 4;
    }
  }
  .nx-form-col-sm-5 {
    width: calc(41.6666666667% - 15px);
    width: calc(41.6666666667% - var(--nx-form-grid-gutter-sm, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-sm-5 {
      width: auto;
      grid-column-end: span 5;
    }
  }
  .nx-form-col-sm-6 {
    width: calc(50% - 15px);
    width: calc(50% - var(--nx-form-grid-gutter-sm, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-sm-6 {
      width: auto;
      grid-column-end: span 6;
    }
  }
  .nx-form-col-sm-7 {
    width: calc(58.3333333333% - 15px);
    width: calc(58.3333333333% - var(--nx-form-grid-gutter-sm, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-sm-7 {
      width: auto;
      grid-column-end: span 7;
    }
  }
  .nx-form-col-sm-8 {
    width: calc(66.6666666667% - 15px);
    width: calc(66.6666666667% - var(--nx-form-grid-gutter-sm, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-sm-8 {
      width: auto;
      grid-column-end: span 8;
    }
  }
  .nx-form-col-sm-9 {
    width: calc(75% - 15px);
    width: calc(75% - var(--nx-form-grid-gutter-sm, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-sm-9 {
      width: auto;
      grid-column-end: span 9;
    }
  }
  .nx-form-col-sm-10 {
    width: calc(83.3333333333% - 15px);
    width: calc(83.3333333333% - var(--nx-form-grid-gutter-sm, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-sm-10 {
      width: auto;
      grid-column-end: span 10;
    }
  }
  .nx-form-col-sm-11 {
    width: calc(91.6666666667% - 15px);
    width: calc(91.6666666667% - var(--nx-form-grid-gutter-sm, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-sm-11 {
      width: auto;
      grid-column-end: span 11;
    }
  }
  .nx-form-col-sm-12 {
    width: calc(100% - 15px);
    width: calc(100% - var(--nx-form-grid-gutter-sm, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-sm-12 {
      width: auto;
      grid-column-end: span 12;
    }
  }
}
@media (min-width: 768px) {
  .nx-form-col-md-1 {
    width: calc(8.3333333333% - 15px);
    width: calc(8.3333333333% - var(--nx-form-grid-gutter-md, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-md-1 {
      width: auto;
      grid-column-end: span 1;
    }
  }
  .nx-form-col-md-2 {
    width: calc(16.6666666667% - 15px);
    width: calc(16.6666666667% - var(--nx-form-grid-gutter-md, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-md-2 {
      width: auto;
      grid-column-end: span 2;
    }
  }
  .nx-form-col-md-3 {
    width: calc(25% - 15px);
    width: calc(25% - var(--nx-form-grid-gutter-md, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-md-3 {
      width: auto;
      grid-column-end: span 3;
    }
  }
  .nx-form-col-md-4 {
    width: calc(33.3333333333% - 15px);
    width: calc(33.3333333333% - var(--nx-form-grid-gutter-md, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-md-4 {
      width: auto;
      grid-column-end: span 4;
    }
  }
  .nx-form-col-md-5 {
    width: calc(41.6666666667% - 15px);
    width: calc(41.6666666667% - var(--nx-form-grid-gutter-md, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-md-5 {
      width: auto;
      grid-column-end: span 5;
    }
  }
  .nx-form-col-md-6 {
    width: calc(50% - 15px);
    width: calc(50% - var(--nx-form-grid-gutter-md, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-md-6 {
      width: auto;
      grid-column-end: span 6;
    }
  }
  .nx-form-col-md-7 {
    width: calc(58.3333333333% - 15px);
    width: calc(58.3333333333% - var(--nx-form-grid-gutter-md, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-md-7 {
      width: auto;
      grid-column-end: span 7;
    }
  }
  .nx-form-col-md-8 {
    width: calc(66.6666666667% - 15px);
    width: calc(66.6666666667% - var(--nx-form-grid-gutter-md, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-md-8 {
      width: auto;
      grid-column-end: span 8;
    }
  }
  .nx-form-col-md-9 {
    width: calc(75% - 15px);
    width: calc(75% - var(--nx-form-grid-gutter-md, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-md-9 {
      width: auto;
      grid-column-end: span 9;
    }
  }
  .nx-form-col-md-10 {
    width: calc(83.3333333333% - 15px);
    width: calc(83.3333333333% - var(--nx-form-grid-gutter-md, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-md-10 {
      width: auto;
      grid-column-end: span 10;
    }
  }
  .nx-form-col-md-11 {
    width: calc(91.6666666667% - 15px);
    width: calc(91.6666666667% - var(--nx-form-grid-gutter-md, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-md-11 {
      width: auto;
      grid-column-end: span 11;
    }
  }
  .nx-form-col-md-12 {
    width: calc(100% - 15px);
    width: calc(100% - var(--nx-form-grid-gutter-md, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-md-12 {
      width: auto;
      grid-column-end: span 12;
    }
  }
}
@media (min-width: 992px) {
  .nx-form-col-lg-1 {
    width: calc(8.3333333333% - 15px);
    width: calc(8.3333333333% - var(--nx-form-grid-gutter-lg, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-lg-1 {
      width: auto;
      grid-column-end: span 1;
    }
  }
  .nx-form-col-lg-2 {
    width: calc(16.6666666667% - 15px);
    width: calc(16.6666666667% - var(--nx-form-grid-gutter-lg, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-lg-2 {
      width: auto;
      grid-column-end: span 2;
    }
  }
  .nx-form-col-lg-3 {
    width: calc(25% - 15px);
    width: calc(25% - var(--nx-form-grid-gutter-lg, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-lg-3 {
      width: auto;
      grid-column-end: span 3;
    }
  }
  .nx-form-col-lg-4 {
    width: calc(33.3333333333% - 15px);
    width: calc(33.3333333333% - var(--nx-form-grid-gutter-lg, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-lg-4 {
      width: auto;
      grid-column-end: span 4;
    }
  }
  .nx-form-col-lg-5 {
    width: calc(41.6666666667% - 15px);
    width: calc(41.6666666667% - var(--nx-form-grid-gutter-lg, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-lg-5 {
      width: auto;
      grid-column-end: span 5;
    }
  }
  .nx-form-col-lg-6 {
    width: calc(50% - 15px);
    width: calc(50% - var(--nx-form-grid-gutter-lg, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-lg-6 {
      width: auto;
      grid-column-end: span 6;
    }
  }
  .nx-form-col-lg-7 {
    width: calc(58.3333333333% - 15px);
    width: calc(58.3333333333% - var(--nx-form-grid-gutter-lg, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-lg-7 {
      width: auto;
      grid-column-end: span 7;
    }
  }
  .nx-form-col-lg-8 {
    width: calc(66.6666666667% - 15px);
    width: calc(66.6666666667% - var(--nx-form-grid-gutter-lg, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-lg-8 {
      width: auto;
      grid-column-end: span 8;
    }
  }
  .nx-form-col-lg-9 {
    width: calc(75% - 15px);
    width: calc(75% - var(--nx-form-grid-gutter-lg, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-lg-9 {
      width: auto;
      grid-column-end: span 9;
    }
  }
  .nx-form-col-lg-10 {
    width: calc(83.3333333333% - 15px);
    width: calc(83.3333333333% - var(--nx-form-grid-gutter-lg, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-lg-10 {
      width: auto;
      grid-column-end: span 10;
    }
  }
  .nx-form-col-lg-11 {
    width: calc(91.6666666667% - 15px);
    width: calc(91.6666666667% - var(--nx-form-grid-gutter-lg, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-lg-11 {
      width: auto;
      grid-column-end: span 11;
    }
  }
  .nx-form-col-lg-12 {
    width: calc(100% - 15px);
    width: calc(100% - var(--nx-form-grid-gutter-lg, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-lg-12 {
      width: auto;
      grid-column-end: span 12;
    }
  }
}
@media (min-width: 1200px) {
  .nx-form-col-xl-1 {
    width: calc(8.3333333333% - 15px);
    width: calc(8.3333333333% - var(--nx-form-grid-gutter-xl, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xl-1 {
      width: auto;
      grid-column-end: span 1;
    }
  }
  .nx-form-col-xl-2 {
    width: calc(16.6666666667% - 15px);
    width: calc(16.6666666667% - var(--nx-form-grid-gutter-xl, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xl-2 {
      width: auto;
      grid-column-end: span 2;
    }
  }
  .nx-form-col-xl-3 {
    width: calc(25% - 15px);
    width: calc(25% - var(--nx-form-grid-gutter-xl, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xl-3 {
      width: auto;
      grid-column-end: span 3;
    }
  }
  .nx-form-col-xl-4 {
    width: calc(33.3333333333% - 15px);
    width: calc(33.3333333333% - var(--nx-form-grid-gutter-xl, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xl-4 {
      width: auto;
      grid-column-end: span 4;
    }
  }
  .nx-form-col-xl-5 {
    width: calc(41.6666666667% - 15px);
    width: calc(41.6666666667% - var(--nx-form-grid-gutter-xl, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xl-5 {
      width: auto;
      grid-column-end: span 5;
    }
  }
  .nx-form-col-xl-6 {
    width: calc(50% - 15px);
    width: calc(50% - var(--nx-form-grid-gutter-xl, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xl-6 {
      width: auto;
      grid-column-end: span 6;
    }
  }
  .nx-form-col-xl-7 {
    width: calc(58.3333333333% - 15px);
    width: calc(58.3333333333% - var(--nx-form-grid-gutter-xl, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xl-7 {
      width: auto;
      grid-column-end: span 7;
    }
  }
  .nx-form-col-xl-8 {
    width: calc(66.6666666667% - 15px);
    width: calc(66.6666666667% - var(--nx-form-grid-gutter-xl, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xl-8 {
      width: auto;
      grid-column-end: span 8;
    }
  }
  .nx-form-col-xl-9 {
    width: calc(75% - 15px);
    width: calc(75% - var(--nx-form-grid-gutter-xl, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xl-9 {
      width: auto;
      grid-column-end: span 9;
    }
  }
  .nx-form-col-xl-10 {
    width: calc(83.3333333333% - 15px);
    width: calc(83.3333333333% - var(--nx-form-grid-gutter-xl, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xl-10 {
      width: auto;
      grid-column-end: span 10;
    }
  }
  .nx-form-col-xl-11 {
    width: calc(91.6666666667% - 15px);
    width: calc(91.6666666667% - var(--nx-form-grid-gutter-xl, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xl-11 {
      width: auto;
      grid-column-end: span 11;
    }
  }
  .nx-form-col-xl-12 {
    width: calc(100% - 15px);
    width: calc(100% - var(--nx-form-grid-gutter-xl, 15px));
  }
  @supports (display: grid) {
    .nx-form-col-xl-12 {
      width: auto;
      grid-column-end: span 12;
    }
  }
}
/*** Grid Items - END ***/
/*** custom max-width classes ***/
.grid-max-width-1200 {
  max-width: 1200px;
}

.grid-max-width-1000 {
  max-width: 1000px;
}

.grid-max-width-800 {
  max-width: 800px;
}

.grid-max-width-600 {
  max-width: 600px;
}

/**********************************************
  Generate NX Responsive Grids - end
***********************************************/
.nx-flex-container {
  -webkit-display: -webkit-box;
  -webkit-display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.nx-flex-container-justify-right {
  justify-content: flex-end;
}

.nx-flex-container-vertical {
  -webkit-display: -webkit-box;
  -webkit-display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.nx-flex-item {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.nx-flex-item-flexible {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.nx-flex-container-split {
  -webkit-display: -webkit-box;
  -webkit-display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}

.nx-flex-section {
  -webkit-display: -webkit-box;
  -webkit-display: -webkit-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin: -0.5rem;
}

.nx-flex-section-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 250px;
  -ms-flex: 1 1 250px;
  flex: 1 1 250px;
  margin: 0.5rem;
}

.nx-flex-section-item-not-flexible {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 250px;
  -ms-flex: 0 1 250px;
  flex: 0 1 250px;
  margin: 0.5rem;
}

/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
.nx-tab-label-active {
  opacity: 1 !important;
}

/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
.nx-input-full-width {
  width: 100%;
}

.nx-form-controls-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.nx-lookup-container .nx-flex-item-flexible {
  margin-right: 15px;
}

@media (max-width: 479px) {
  .nx-lookup-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .nx-lookup-container .nx-flex-item-flexible {
    margin-right: 0;
  }
  .nx-lookup-container .nx-flex-item {
    width: 100%;
  }
}
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * This mixin contains shared option styles between the select and
 * autocomplete components.
 */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
/**
 * Applies styles for users in high contrast mode. Note that this only applies
 * to Microsoft browsers. Chrome can be included by checking for the `html[hc]`
 * attribute, however Chrome handles high contrast differently.
 * @param target Which kind of high contrast setting to target. Defaults to `active`, can be
 *    `white-on-black` or `black-on-white`.
 */
/* Theme for the ripple elements.*/
/* stylelint-disable material/no-prefixes */
/* stylelint-enable */
.mat-elevation-z0 {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z1 {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z2 {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z3 {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z4 {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z5 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z6 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z7 {
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z8 {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z9 {
  box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z10 {
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z11 {
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z12 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z13 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z14 {
  box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z15 {
  box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z16 {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z17 {
  box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z18 {
  box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z19 {
  box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z20 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z21 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z22 {
  box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z23 {
  box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
}

.mat-elevation-z24 {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}

.mat-badge-content {
  font-weight: 600;
  font-size: 12px;
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.mat-badge-small .mat-badge-content {
  font-size: 6px;
}

.mat-badge-large .mat-badge-content {
  font-size: 24px;
}

.mat-h1, .mat-headline, .mat-typography h1 {
  font: 400 24px/1.2 Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 16px;
}

.mat-h2, .mat-title, .mat-typography h2 {
  font: 600 20px/1.2 Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 16px;
}

.mat-h3, .mat-subheading-2, .mat-typography h3 {
  font: 700 16px/1.2 Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 16px;
}

.mat-h4, .mat-subheading-1, .mat-typography h4 {
  font: 400 16px/1.2 Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 16px;
}

.mat-h5, .mat-typography h5 {
  font: 400 11.62px/1.5 Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 12px;
}

.mat-h6, .mat-typography h6 {
  font: 400 9.38px/1.5 Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 12px;
}

.mat-body-strong, .mat-body-2 {
  font: 700 14px/1.5 Roboto, Arial, Helvetica, sans-serif;
}

.mat-body, .mat-body-1, .mat-typography {
  font: 400 14px/1.5 Roboto, Arial, Helvetica, sans-serif;
}
.mat-body p, .mat-body-1 p, .mat-typography p {
  margin: 0 0 12px;
}

.mat-small, .mat-caption {
  font: 400 13px/1.5 Roboto, Arial, Helvetica, sans-serif;
}

.mat-display-4, .mat-typography .mat-display-4 {
  font: 300 62px/1.2 Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 56px;
  letter-spacing: -0.05em;
}

.mat-display-3, .mat-typography .mat-display-3 {
  font: 400 56px/1.2 Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 64px;
  letter-spacing: -0.02em;
}

.mat-display-2, .mat-typography .mat-display-2 {
  font: 400 45px/1.2 Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 64px;
  letter-spacing: -0.005em;
}

.mat-display-1, .mat-typography .mat-display-1 {
  font: 400 34px/1.2 Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 64px;
}

.mat-bottom-sheet-container {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.mat-button, .mat-raised-button, .mat-icon-button, .mat-stroked-button,
.mat-flat-button, .mat-fab, .mat-mini-fab {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.mat-button-toggle {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.mat-card {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.mat-card-title {
  font-size: 24px;
  font-weight: 400;
}

.mat-card-subtitle,
.mat-card-content,
.mat-card-header .mat-card-title {
  font-size: 14px;
}

.mat-checkbox {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.mat-checkbox-layout .mat-checkbox-label {
  line-height: 1.5;
}

.mat-chip {
  font-size: 13px;
  line-height: 18px;
}
.mat-chip .mat-chip-trailing-icon.mat-icon,
.mat-chip .mat-chip-remove.mat-icon {
  font-size: 18px;
}

.mat-table {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.mat-header-cell {
  font-size: 13px;
  font-weight: 700;
}

.mat-cell, .mat-footer-cell {
  font-size: 14px;
}

.mat-calendar {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.mat-calendar-body {
  font-size: 13px;
}

.mat-calendar-body-label,
.mat-calendar-period-button {
  font-size: 14px;
  font-weight: 500;
}

.mat-calendar-table-header th {
  font-size: 11px;
  font-weight: 400;
}

.mat-dialog-title {
  font: 600 20px/1.2 Roboto, Arial, Helvetica, sans-serif;
}

.mat-expansion-panel-header {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.mat-expansion-panel-content {
  font: 400 14px/1.5 Roboto, Arial, Helvetica, sans-serif;
}

.mat-form-field {
  font-size: inherit;
  font-weight: 400;
  line-height: 1.125;
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.mat-form-field-wrapper {
  padding-bottom: 1.34375em;
}

.mat-form-field-prefix .mat-icon,
.mat-form-field-suffix .mat-icon {
  font-size: 150%;
  line-height: 1.125;
}
.mat-form-field-prefix .mat-icon-button,
.mat-form-field-suffix .mat-icon-button {
  height: 1.5em;
  width: 1.5em;
}
.mat-form-field-prefix .mat-icon-button .mat-icon,
.mat-form-field-suffix .mat-icon-button .mat-icon {
  height: 1.125em;
  line-height: 1.125;
}

.mat-form-field-infix {
  padding: 0.5em 0;
  border-top: 0.84375em solid transparent;
}

.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.34375em) scale(0.75);
  width: 133.3333333333%;
}
.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.34374em) scale(0.75);
  width: 133.3333433333%;
}

.mat-form-field-label-wrapper {
  top: -0.84375em;
  padding-top: 0.84375em;
}

.mat-form-field-label {
  top: 1.34375em;
}

.mat-form-field-underline {
  bottom: 1.34375em;
}

.mat-form-field-subscript-wrapper {
  font-size: 75%;
  margin-top: 0.6666666667em;
  top: calc(100% - 1.7916666667em);
}

.mat-form-field-appearance-legacy .mat-form-field-wrapper {
  padding-bottom: 1.25em;
}
.mat-form-field-appearance-legacy .mat-form-field-infix {
  padding: 0.4375em 0;
}
.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);
  -ms-transform: translateY(-1.28125em) scale(0.75);
  width: 133.3333333333%;
}
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00101px);
  -ms-transform: translateY(-1.28124em) scale(0.75);
  width: 133.3333433333%;
}
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00102px);
  -ms-transform: translateY(-1.28123em) scale(0.75);
  width: 133.3333533333%;
}
.mat-form-field-appearance-legacy .mat-form-field-label {
  top: 1.28125em;
}
.mat-form-field-appearance-legacy .mat-form-field-underline {
  bottom: 1.25em;
}
.mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper {
  margin-top: 0.5416666667em;
  top: calc(100% - 1.6666666667em);
}

.mat-form-field-appearance-fill .mat-form-field-infix {
  padding: 0.25em 0 0.75em 0;
}
.mat-form-field-appearance-fill .mat-form-field-label {
  top: 1.09375em;
  margin-top: -0.5em;
}
.mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-0.59375em) scale(0.75);
  width: 133.3333333333%;
}
.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-0.59374em) scale(0.75);
  width: 133.3333433333%;
}

.mat-form-field-appearance-outline .mat-form-field-infix {
  padding: 1em 0 1em 0;
}
.mat-form-field-appearance-outline .mat-form-field-label {
  top: 1.84375em;
  margin-top: -0.25em;
}
.mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.59375em) scale(0.75);
  width: 133.3333333333%;
}
.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.59374em) scale(0.75);
  width: 133.3333433333%;
}

.mat-grid-tile-header,
.mat-grid-tile-footer {
  font-size: 14px;
}
.mat-grid-tile-header .mat-line,
.mat-grid-tile-footer .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.mat-grid-tile-header .mat-line:nth-child(n+2),
.mat-grid-tile-footer .mat-line:nth-child(n+2) {
  font-size: 13px;
}

input.mat-input-element {
  margin-top: -0.0625em;
}

.mat-menu-item {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
}

.mat-paginator,
.mat-paginator-page-size .mat-select-trigger {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 13px;
}

.mat-radio-button {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.mat-select {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.mat-select-trigger {
  height: 1.125em;
}

.mat-slide-toggle-content {
  font: 400 14px/1.5 Roboto, Arial, Helvetica, sans-serif;
}

.mat-slider-thumb-label-text {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.mat-stepper-vertical, .mat-stepper-horizontal {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.mat-step-label {
  font-size: 14px;
  font-weight: 400;
}

.mat-step-label-selected {
  font-size: 14px;
  font-weight: 700;
}

.mat-tab-group {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.mat-tab-label, .mat-tab-link {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.mat-toolbar,
.mat-toolbar h1,
.mat-toolbar h2,
.mat-toolbar h3,
.mat-toolbar h4,
.mat-toolbar h5,
.mat-toolbar h6 {
  font: 600 20px/1.2 Roboto, Arial, Helvetica, sans-serif;
  margin: 0;
}

.mat-tooltip {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
}

.mat-tooltip-handset {
  font-size: 14px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.mat-list-item {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.mat-list-option {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.mat-list .mat-list-item, .mat-nav-list .mat-list-item, .mat-selection-list .mat-list-item {
  font-size: 16px;
}
.mat-list .mat-list-item .mat-line, .mat-nav-list .mat-list-item .mat-line, .mat-selection-list .mat-list-item .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.mat-list .mat-list-item .mat-line:nth-child(n+2), .mat-nav-list .mat-list-item .mat-line:nth-child(n+2), .mat-selection-list .mat-list-item .mat-line:nth-child(n+2) {
  font-size: 14px;
}
.mat-list .mat-list-option, .mat-nav-list .mat-list-option, .mat-selection-list .mat-list-option {
  font-size: 16px;
}
.mat-list .mat-list-option .mat-line, .mat-nav-list .mat-list-option .mat-line, .mat-selection-list .mat-list-option .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.mat-list .mat-list-option .mat-line:nth-child(n+2), .mat-nav-list .mat-list-option .mat-line:nth-child(n+2), .mat-selection-list .mat-list-option .mat-line:nth-child(n+2) {
  font-size: 14px;
}
.mat-list .mat-subheader, .mat-nav-list .mat-subheader, .mat-selection-list .mat-subheader {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.mat-list[dense] .mat-list-item, .mat-nav-list[dense] .mat-list-item, .mat-selection-list[dense] .mat-list-item {
  font-size: 13px;
}
.mat-list[dense] .mat-list-item .mat-line, .mat-nav-list[dense] .mat-list-item .mat-line, .mat-selection-list[dense] .mat-list-item .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.mat-list[dense] .mat-list-item .mat-line:nth-child(n+2), .mat-nav-list[dense] .mat-list-item .mat-line:nth-child(n+2), .mat-selection-list[dense] .mat-list-item .mat-line:nth-child(n+2) {
  font-size: 13px;
}
.mat-list[dense] .mat-list-option, .mat-nav-list[dense] .mat-list-option, .mat-selection-list[dense] .mat-list-option {
  font-size: 13px;
}
.mat-list[dense] .mat-list-option .mat-line, .mat-nav-list[dense] .mat-list-option .mat-line, .mat-selection-list[dense] .mat-list-option .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.mat-list[dense] .mat-list-option .mat-line:nth-child(n+2), .mat-nav-list[dense] .mat-list-option .mat-line:nth-child(n+2), .mat-selection-list[dense] .mat-list-option .mat-line:nth-child(n+2) {
  font-size: 13px;
}
.mat-list[dense] .mat-subheader, .mat-nav-list[dense] .mat-subheader, .mat-selection-list[dense] .mat-subheader {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.mat-option {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
}

.mat-optgroup-label {
  font: 700 14px/1.5 Roboto, Arial, Helvetica, sans-serif;
}

.mat-simple-snackbar {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 14px;
}

.mat-simple-snackbar-action {
  line-height: 1;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
}

.mat-tree {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.mat-tree-node {
  font-weight: 400;
  font-size: 14px;
}

.mat-ripple {
  overflow: hidden;
}

.mat-ripple.mat-ripple-unbounded {
  overflow: visible;
}

.mat-ripple-element {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1);
  transform: scale(0);
}
@media screen and (-ms-high-contrast: active) {
  .mat-ripple-element {
    display: none;
  }
}

.cdk-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.cdk-overlay-container, .cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  display: none;
}

.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}

.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  z-index: 1000;
  display: flex;
  max-width: 100%;
  max-height: 100%;
}

.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 1;
}
@media screen and (-ms-high-contrast: active) {
  .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
    opacity: 0.6;
  }
}

.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, 0.288);
}

.cdk-overlay-transparent-backdrop, .cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0;
}

.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
}

.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

@keyframes cdk-text-field-autofill-start { /*!*/ }
@keyframes cdk-text-field-autofill-end { /*!*/ }
.cdk-text-field-autofill-monitored:-webkit-autofill {
  animation-name: cdk-text-field-autofill-start;
}

.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
  animation-name: cdk-text-field-autofill-end;
}

textarea.cdk-textarea-autosize {
  resize: none;
}

textarea.cdk-textarea-autosize-measuring {
  height: auto !important;
  overflow: hidden !important;
  padding: 2px 0 !important;
  box-sizing: content-box !important;
}

.nx-list-unstyled {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-bottom: 24px;
}

.nx-badge {
  border-radius: 10px;
  display: inline-block;
  font-weight: bold;
  line-height: 1;
  min-width: 10px;
  padding: 3px 7px;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
}

.nx-clearfix::after {
  clear: both;
  content: "";
  display: table;
}

.nx-container {
  margin: 0 0 24px 0;
}
.nx-container > :last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.nx-mar-bot {
  margin-bottom: 24px;
}

.nx-mar-top {
  margin-top: 0;
}

.nx-mar-bot-0 {
  margin-bottom: 0 !important;
}

.nx-mar-left {
  margin-left: 10px !important;
}

.nx-mar-right {
  margin-right: 10px !important;
}

.nx-pull-left {
  display: flex;
  justify-content: flex-start;
}

.nx-pull-right {
  display: flex;
  justify-content: flex-end;
}

.nx-hide {
  display: none;
}

.nx-styled-as-clickable {
  cursor: pointer;
}

.cdk-overlay-container {
  z-index: 1062;
}

.nx-basic-table th {
  font: 400 13px/1.5 Roboto, Arial, Helvetica, sans-serif;
}
.nx-basic-table td {
  font: 400 14px/1.5 Roboto, Arial, Helvetica, sans-serif;
}

.nx-typography .nx-h1,
.nx-typography .nx-headline,
.nx-h1,
.nx-headline,
.nx-typography h1 {
  font: 400 24px/1.2 Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 24px 0;
}

.nx-typography .nx-h2,
.nx-typography .nx-title,
.nx-h2,
.nx-title,
.nx-typography h2 {
  font-size: 20px;
  font-weight: 500;
  font-style: normal;
  font-family: "Roboto-Medium", Arial, Helvetica, sans-serif;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.nx-typography .nx-h3,
.nx-typography .nx-subheading-2,
.nx-h3,
.nx-subheading-2,
.nx-typography h3 {
  font-size: 16px;
  font-weight: 500;
  font-style: normal;
  font-family: "Roboto-Medium", Arial, Helvetica, sans-serif;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.nx-typography .nx-h4,
.nx-typography .nx-subheading-1,
.nx-h4,
.nx-subheading-1,
.nx-typography h4 {
  font: 400 16px/1.2 Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 20px 0;
}

.nx-typography .nx-h5,
.nx-h5,
.nx-typography h5 {
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  font-family: "Roboto-Bold", Arial, Helvetica, sans-serif;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.nx-typography .nx-h6,
.nx-h6,
.nx-typography h6 {
  font-size: 13px;
  font-weight: 700;
  font-style: normal;
  font-family: "Roboto-Bold", Arial, Helvetica, sans-serif;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.nx-typography .nx-body-2,
.nx-typography .nx-body-strong,
.nx-body-2,
.nx-body-strong {
  font-size: 14px;
  font-weight: 700;
  font-style: normal;
  font-family: "Roboto-Bold", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

.nx-typography .nx-body-medium,
.nx-body-medium {
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  font-family: "Roboto-Medium", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

.nx-typography .nx-body-italic,
.nx-body-italic {
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  font-family: "Roboto-Italic", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

.nx-typography .nx-body-medium-italic,
.nx-body-medium-italic {
  font-size: 14px;
  font-weight: 500;
  font-style: italic;
  font-family: "Roboto-Medium-Italic", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

.nx-typography .nx-body-bold-italic,
.nx-body-bold-italic {
  font-size: 14px;
  font-weight: 700;
  font-style: italic;
  font-family: "Roboto-Bold-Italic", Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

.nx-typography .nx-body,
.nx-typography .nx-body-1,
.nx-body,
.nx-body-1 {
  font: 400 14px/1.5 Roboto, Arial, Helvetica, sans-serif;
}
.nx-typography .nx-body p,
.nx-typography .nx-body-1 p,
.nx-body p,
.nx-body-1 p {
  margin: 0 0 24px 0;
}

.nx-typography .nx-small,
.nx-typography .nx-caption,
.nx-small,
.nx-caption {
  font: 400 13px/1.5 Roboto, Arial, Helvetica, sans-serif;
}

.nx-typography .nx-display-4,
.nx-display-4 {
  font: 300 62px/1.2 Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 24px 0;
  letter-spacing: -0.05em;
}

.nx-typography .nx-display-3,
.nx-display-3 {
  font: 400 56px/1.2 Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.nx-typography .nx-display-2,
.nx-display-2 {
  font: 400 45px/1.2 Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 24px 0;
  letter-spacing: -0.005em;
}

.nx-typography .nx-display-1,
.nx-display-1 {
  font: 400 34px/1.2 Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 24px 0;
}

.nx-text-left {
  text-align: left;
}

.nx-text-right {
  text-align: right;
}

.nx-text-center {
  text-align: center;
}

.nx-text-justify {
  text-align: justify;
}

.nx-text-nowrap {
  white-space: nowrap;
}

.nx-text-lowercase {
  text-transform: lowercase;
}

.nx-text-uppercase {
  text-transform: uppercase;
}

.nx-text-capitalize {
  text-transform: capitalize;
}

.nx-button-dropdown-item {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.nx-button-dropdown-trigger {
  height: 1.125em;
}

.nx-button, .nx-raised-button, .nx-icon-button, .nx-stroked-button, .nx-flat-button,
.nx-fab, .nx-mini-fab, .nx-tiny-fab {
  font-family: "Roboto-Medium", Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 14px;
}

.nx-card-title {
  font-size: 18px;
}

.nx-card-subtitle {
  font-size: 12px;
}

.nx-card-content {
  font-size: 14px;
}

.nx-checkbox {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.nx-checkbox-layout .nx-checkbox-label {
  line-height: 1.5;
}

.nx-calendar-body {
  font-size: 13px;
}

.nx-calendar-body-label,
.nx-calendar-period-button {
  font-size: 14px;
  font-weight: 500;
}

.nx-calendar-table-header th {
  font-size: 11px;
  font-weight: 400;
}

.nx-dialog-title,
.nx-dialog-title > h1,
.nx-dialog-title > h2,
.nx-dialog-title > h3,
.nx-dialog-title > h4,
.nx-dialog-title > h5,
.nx-dialog-title > h6 {
  font: 600 20px/1.2 Roboto, Arial, Helvetica, sans-serif;
}

.nx-expansion-panel-header-title {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.nx-expansion-panel-header-description {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.nx-expansion-panel-content {
  font: 400 14px/1.5 Roboto, Arial, Helvetica, sans-serif;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto-Italic";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/roboto-latin-400italic.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-latin-500.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto-Medium-Italic";
  font-style: italic;
  font-weight: 500;
  src: url("../fonts/roboto-latin-500italic.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-latin-700.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Roboto-Bold-Italic";
  font-style: italic;
  font-weight: 700;
  src: url("../fonts/roboto-latin-700italic.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/*changed from mat-*/
.nx-form-field {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: inherit;
  font-weight: 400;
  line-height: 1.125;
}

.mat-form-field-wrapper {
  padding-bottom: 1.25em;
}

.mat-form-field-prefix .mat-icon,
.mat-form-field-suffix .mat-icon {
  font-size: 150%;
  line-height: 1.125;
}
.mat-form-field-prefix .mat-icon-button,
.mat-form-field-suffix .mat-icon-button {
  height: 1.5em;
  width: 1.5em;
}
.mat-form-field-prefix .mat-icon-button .mat-icon,
.mat-form-field-suffix .mat-icon-button .mat-icon {
  height: 1.125em;
  line-height: 1.125;
}

.mat-form-field-infix {
  padding: 0.4375em 0;
  border-top: 0.84375em solid transparent;
}

.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-placeholder {
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);
  -ms-transform: translateY(-1.28125em) scale(0.75);
  width: 133.3333333333%;
}
.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-placeholder-wrapper .mat-form-field-placeholder {
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);
  -ms-transform: translateY(-1.28125em) scale(0.75);
  width: 133.3333333333%;
}

.mat-form-field-placeholder-wrapper {
  top: -0.84375em;
  padding-top: 0.84375em;
}

.mat-form-field-placeholder {
  top: 1.28125em;
}

.mat-form-field-underline {
  bottom: 1.25em;
}

.mat-form-field-subscript-wrapper {
  font-size: 75%;
  margin-top: 0.5416666667em;
  top: calc(100% - 1.6666666667em);
}

.nx-form-message {
  font-size: 75%;
  margin-top: 0.5416666667em;
}

/* fallback */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/material-icon.woff2") format("woff2"), 
  url("../fonts/material-icon.woff") format("woff");
}
@font-face {
  font-family: "Material Icons Outlined";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/material-icon-outlined.woff2") format("woff2"), 
  url("../fonts/material-icon-outlined.woff") format("woff");
}
@font-face {
  font-family: "nxComponents Icons";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/material-icon.woff2") format("woff2"), 
  url("../fonts/material-icon.woff") format("woff");
}
@font-face {
  font-family: "nxComponents Icons Outlined";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/material-icon-outlined.woff2") format("woff2"), 
  url("../fonts/material-icon-outlined.woff") format("woff");
}
.material-icons, .nx-component-icons-outlined, .nx-component-icons, .material-icons-outlined {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  font-feature-settings: "liga";
}

.material-icons-outlined {
  font-family: "Material Icons Outlined";
}

.nx-component-icons {
  font-family: "nxComponents Icons";
}

.nx-component-icons-outlined {
  font-family: "nxComponents Icons Outlined";
}

.nx-list-item {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.nx-list .nx-list-item, .nx-nav-list .nx-list-item {
  font-size: 14px;
}
.nx-list .nx-list-item .nx-line, .nx-nav-list .nx-list-item .nx-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.nx-list .nx-list-item .nx-line:nth-child(n+2), .nx-nav-list .nx-list-item .nx-line:nth-child(n+2) {
  font-size: 14px;
}
.nx-list .nx-list-item .nx-list-text :first-child, .nx-nav-list .nx-list-item .nx-list-text :first-child {
  font-size: 14px;
}
.nx-list .nx-list-item .nx-multi-line .nx-list-text, .nx-nav-list .nx-list-item .nx-multi-line .nx-list-text {
  font-size: 13px;
}
.nx-list .nx-subheader, .nx-nav-list .nx-subheader {
  font-size: 13px;
  font-weight: 400;
}

.nx-list[dense] .nx-list-item, .nx-nav-list[dense] .nx-list-item {
  font-size: 13px;
}
.nx-list[dense] .nx-list-item .mat-line, .nx-nav-list[dense] .nx-list-item .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.nx-list[dense] .nx-list-item .mat-line:nth-child(n+2), .nx-nav-list[dense] .nx-list-item .mat-line:nth-child(n+2) {
  font-size: 13px;
}
.nx-list[dense] .nx-list-item .nx-list-text .nx-line, .nx-nav-list[dense] .nx-list-item .nx-list-text .nx-line {
  font-size: 11px;
}
.nx-list[dense] .nx-subheader, .nx-nav-list[dense] .nx-subheader {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.nx-optgroup-label {
  font: 700 14px/1.5 Roboto, Arial, Helvetica, sans-serif;
}

.nx-option {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 16px;
}

.nx-paginator,
.nx-paginator-page-size .nx-select-trigger {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 13px;
}

.nx-range-slider .mat-slider-thumb-label-text {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.nx-select {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.nx-select-trigger {
  height: 1.125em;
}

.nx-slider-thumb-label-text {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.nx-stepper-vertical, .nx-stepper-horizontal {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.nx-step-header__label {
  font-size: 14px;
  font-weight: 400;
}

.nx-step-header__label--selected {
  font-family: "Roboto-Bold", Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.nx-step-header-icon--index {
  font-family: "Roboto-Bold", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.nx-table {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.nx-header-cell {
  font-family: "Roboto-Bold", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.nx-cell {
  font-size: 14px;
}

.nx-footer-cell {
  font-family: "Roboto-Bold", Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: bold;
}

.nx-tab-group {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.nx-tab-label,
.nx-tab-link {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

textarea.nx-textarea-element {
  margin-top: -0.0625em;
}

input.mat-input-element {
  margin-top: -0.0625em;
}

.nx-tree {
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

.nx-tree-node {
  font-size: 14px;
  font-weight: 400;
}

.nx-ag-grid-height-xs {
  height: 200px;
}

.nx-ag-grid-height-sm {
  height: 400px;
}

.nx-ag-grid-height-md {
  height: 600px;
}

.nx-ag-grid-height-lg {
  height: 800px;
}

.nx-basic-table {
  background-color: transparent;
  border-collapse: collapse;
  margin-bottom: 24px;
  max-width: 100%;
  width: 100%;
  /* stylelint-disable selector-max-compound-selectors */
  /* stylelint-enable */
}
.nx-basic-table th,
.nx-basic-table td {
  padding: 7px 5px;
  text-align: left;
  vertical-align: top;
  /* stylelint-disable selector-no-qualifying-type */
  /* stylelint-enable */
}
.nx-basic-table th.nx-cell-align-right,
.nx-basic-table td.nx-cell-align-right {
  text-align: right;
}
.nx-basic-table th.nx-cell-align-center,
.nx-basic-table td.nx-cell-align-center {
  text-align: center;
}
.nx-basic-table th.nx-nesting-cell,
.nx-basic-table td.nx-nesting-cell {
  padding: 0;
}
.nx-basic-table > caption + thead > tr:first-child > th,
.nx-basic-table > caption + thead > tr:first-child > td,
.nx-basic-table > colgroup + thead > tr:first-child > th,
.nx-basic-table > colgroup + thead > tr:first-child > td,
.nx-basic-table > thead:first-child > tr:first-child > th,
.nx-basic-table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.nx-basic-table .nx-basic-table {
  background-color: transparent;
  margin-bottom: 0;
  /* stylelint-disable selector-max-compound-selectors */
  /* stylelint-enable */
}
.nx-basic-table .nx-basic-table > thead > tr:first-child > th,
.nx-basic-table .nx-basic-table > thead > tr:first-child > td,
.nx-basic-table .nx-basic-table > tbody > tr:first-child > th,
.nx-basic-table .nx-basic-table > tbody > tr:first-child > td,
.nx-basic-table .nx-basic-table > tfoot > tr:first-child > th,
.nx-basic-table .nx-basic-table > tfoot > tr:first-child > td {
  border-top: 0;
}

.nx-basic-table-border-around,
.nx-basic-table-bordered {
  border-collapse: separate !important;
  border-radius: 2px;
  border-spacing: 0;
}

.nx-option {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 40px;
  height: 40px;
  padding: 0 16px;
  text-align: left;
  text-decoration: none;
  align-items: center;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  max-width: 100%;
  outline: none;
  position: relative;
}
.nx-option[disabled] {
  cursor: default;
}
[dir=rtl] .nx-option {
  text-align: right;
}
.nx-option .mat-icon {
  margin-right: 16px;
}
[dir=rtl] .nx-option .mat-icon {
  margin-left: 16px;
  margin-right: 0;
}
.nx-option[aria-disabled=true] {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
.nx-optgroup .nx-option:not(.nx-option-multiple) {
  padding-left: 32px;
}
[dir=rtl] .nx-optgroup .nx-option:not(.nx-option-multiple) {
  padding-left: 16px;
  padding-right: 32px;
}

.nx-option-hide {
  display: none;
}

.nx-option-text {
  display: inline-block;
  flex-grow: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nx-option-ripple {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  pointer-events: none;
}
@media screen and (-ms-high-contrast: active) {
  .nx-option-ripple {
    opacity: 0.5;
  }
}

.nx-option-pseudo-checkbox {
  margin-right: 8px;
}
[dir=rtl] .nx-option-pseudo-checkbox {
  margin-left: 8px;
  margin-right: 0;
}

.nx-select-filter-option .nx-option-pseudo-checkbox {
  display: none;
}

.nx-select-filter-option .nx-checkbox-layout {
  margin: 0;
}

.nx-optgroup-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  line-height: 40px;
  height: 40px;
  padding: 0 16px;
  text-align: left;
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
.nx-optgroup-label[disabled] {
  cursor: default;
}
[dir=rtl] .nx-optgroup-label {
  text-align: right;
}
.nx-optgroup-label .mat-icon {
  margin-right: 16px;
}
[dir=rtl] .nx-optgroup-label .mat-icon {
  margin-left: 16px;
  margin-right: 0;
}

.mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}

.mat-option {
  color: rgba(0, 0, 0, 0.85);
}
.mat-option:hover:not(.mat-option-disabled), .mat-option:focus:not(.mat-option-disabled) {
  background: rgba(0, 0, 0, 0.04);
}
.mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {
  background: rgba(0, 0, 0, 0.04);
}
.mat-option.mat-active {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.85);
}
.mat-option.mat-option-disabled {
  color: rgba(0, 0, 0, 0.38);
}

.mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #2f3b51;
}

.mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #107a83;
}

.mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #d53f1e;
}

.mat-optgroup-label {
  color: rgba(0, 0, 0, 0.54);
}

.mat-optgroup-disabled .mat-optgroup-label {
  color: rgba(0, 0, 0, 0.38);
}

.mat-pseudo-checkbox {
  color: rgba(0, 0, 0, 0.54);
}
.mat-pseudo-checkbox::after {
  color: #fafafa;
}

.mat-pseudo-checkbox-checked,
.mat-pseudo-checkbox-indeterminate,
.mat-accent .mat-pseudo-checkbox-checked,
.mat-accent .mat-pseudo-checkbox-indeterminate {
  background: #107a83;
}

.mat-primary .mat-pseudo-checkbox-checked,
.mat-primary .mat-pseudo-checkbox-indeterminate {
  background: #2f3b51;
}

.mat-warn .mat-pseudo-checkbox-checked,
.mat-warn .mat-pseudo-checkbox-indeterminate {
  background: #d53f1e;
}

.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,
.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {
  background: #b0b0b0;
}

.mat-app-background {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.85);
}

.mat-theme-loaded-marker {
  display: none;
}

.mat-autocomplete-panel {
  background: white;
  color: rgba(0, 0, 0, 0.85);
}
.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {
  background: white;
}
.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {
  color: rgba(0, 0, 0, 0.85);
}

.mat-badge-content {
  color: white;
  background: #2f3b51;
}

.mat-badge-accent .mat-badge-content {
  background: #107a83;
  color: white;
}

.mat-badge-warn .mat-badge-content {
  color: white;
  background: #d53f1e;
}

.mat-badge {
  position: relative;
}

.mat-badge-hidden .mat-badge-content {
  display: none;
}

.mat-badge-content {
  position: absolute;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  transition: transform 200ms ease-in-out;
  transform: scale(0.6);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}

.mat-badge-content.mat-badge-active {
  transform: none;
}

.mat-badge-small .mat-badge-content {
  width: 16px;
  height: 16px;
  line-height: 16px;
}
@media screen and (-ms-high-contrast: active) {
  .mat-badge-small .mat-badge-content {
    outline: solid 1px;
    border-radius: 0;
  }
}
.mat-badge-small.mat-badge-above .mat-badge-content {
  top: -8px;
}
.mat-badge-small.mat-badge-below .mat-badge-content {
  bottom: -8px;
}
.mat-badge-small.mat-badge-before .mat-badge-content {
  left: -16px;
}
[dir=rtl] .mat-badge-small.mat-badge-before .mat-badge-content {
  left: auto;
  right: -16px;
}
.mat-badge-small.mat-badge-after .mat-badge-content {
  right: -16px;
}
[dir=rtl] .mat-badge-small.mat-badge-after .mat-badge-content {
  right: auto;
  left: -16px;
}
.mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -8px;
}
[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -8px;
}
.mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -8px;
}
[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -8px;
}

.mat-badge-medium .mat-badge-content {
  width: 22px;
  height: 22px;
  line-height: 22px;
}
@media screen and (-ms-high-contrast: active) {
  .mat-badge-medium .mat-badge-content {
    outline: solid 1px;
    border-radius: 0;
  }
}
.mat-badge-medium.mat-badge-above .mat-badge-content {
  top: -11px;
}
.mat-badge-medium.mat-badge-below .mat-badge-content {
  bottom: -11px;
}
.mat-badge-medium.mat-badge-before .mat-badge-content {
  left: -22px;
}
[dir=rtl] .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: auto;
  right: -22px;
}
.mat-badge-medium.mat-badge-after .mat-badge-content {
  right: -22px;
}
[dir=rtl] .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: auto;
  left: -22px;
}
.mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -11px;
}
[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -11px;
}
.mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -11px;
}
[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -11px;
}

.mat-badge-large .mat-badge-content {
  width: 28px;
  height: 28px;
  line-height: 28px;
}
@media screen and (-ms-high-contrast: active) {
  .mat-badge-large .mat-badge-content {
    outline: solid 1px;
    border-radius: 0;
  }
}
.mat-badge-large.mat-badge-above .mat-badge-content {
  top: -14px;
}
.mat-badge-large.mat-badge-below .mat-badge-content {
  bottom: -14px;
}
.mat-badge-large.mat-badge-before .mat-badge-content {
  left: -28px;
}
[dir=rtl] .mat-badge-large.mat-badge-before .mat-badge-content {
  left: auto;
  right: -28px;
}
.mat-badge-large.mat-badge-after .mat-badge-content {
  right: -28px;
}
[dir=rtl] .mat-badge-large.mat-badge-after .mat-badge-content {
  right: auto;
  left: -28px;
}
.mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -14px;
}
[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -14px;
}
.mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -14px;
}
[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -14px;
}

.mat-bottom-sheet-container {
  background: white;
  color: rgba(0, 0, 0, 0.85);
}

.mat-button, .mat-icon-button, .mat-stroked-button {
  color: inherit;
  background: transparent;
}
.mat-button.mat-primary, .mat-icon-button.mat-primary, .mat-stroked-button.mat-primary {
  color: #2f3b51;
}
.mat-button.mat-accent, .mat-icon-button.mat-accent, .mat-stroked-button.mat-accent {
  color: #107a83;
}
.mat-button.mat-warn, .mat-icon-button.mat-warn, .mat-stroked-button.mat-warn {
  color: #d53f1e;
}
.mat-button.mat-primary[disabled], .mat-button.mat-accent[disabled], .mat-button.mat-warn[disabled], .mat-button[disabled][disabled], .mat-icon-button.mat-primary[disabled], .mat-icon-button.mat-accent[disabled], .mat-icon-button.mat-warn[disabled], .mat-icon-button[disabled][disabled], .mat-stroked-button.mat-primary[disabled], .mat-stroked-button.mat-accent[disabled], .mat-stroked-button.mat-warn[disabled], .mat-stroked-button[disabled][disabled] {
  color: rgba(0, 0, 0, 0.38);
}
.mat-button.mat-primary .mat-button-focus-overlay, .mat-icon-button.mat-primary .mat-button-focus-overlay, .mat-stroked-button.mat-primary .mat-button-focus-overlay {
  background-color: rgba(47, 59, 81, 0.12);
}
.mat-button.mat-accent .mat-button-focus-overlay, .mat-icon-button.mat-accent .mat-button-focus-overlay, .mat-stroked-button.mat-accent .mat-button-focus-overlay {
  background-color: rgba(16, 122, 131, 0.12);
}
.mat-button.mat-warn .mat-button-focus-overlay, .mat-icon-button.mat-warn .mat-button-focus-overlay, .mat-stroked-button.mat-warn .mat-button-focus-overlay {
  background-color: rgba(213, 63, 30, 0.12);
}
.mat-button[disabled] .mat-button-focus-overlay, .mat-icon-button[disabled] .mat-button-focus-overlay, .mat-stroked-button[disabled] .mat-button-focus-overlay {
  background-color: transparent;
}
.mat-button.mat-primary .mat-ripple-element, .mat-icon-button.mat-primary .mat-ripple-element, .mat-stroked-button.mat-primary .mat-ripple-element {
  background-color: rgba(47, 59, 81, 0.1);
}
.mat-button.mat-accent .mat-ripple-element, .mat-icon-button.mat-accent .mat-ripple-element, .mat-stroked-button.mat-accent .mat-ripple-element {
  background-color: rgba(16, 122, 131, 0.1);
}
.mat-button.mat-warn .mat-ripple-element, .mat-icon-button.mat-warn .mat-ripple-element, .mat-stroked-button.mat-warn .mat-ripple-element {
  background-color: rgba(213, 63, 30, 0.1);
}

.mat-flat-button, .mat-raised-button, .mat-fab, .mat-mini-fab {
  color: rgba(0, 0, 0, 0.85);
  background-color: white;
}
.mat-flat-button.mat-primary, .mat-raised-button.mat-primary, .mat-fab.mat-primary, .mat-mini-fab.mat-primary {
  color: white;
}
.mat-flat-button.mat-accent, .mat-raised-button.mat-accent, .mat-fab.mat-accent, .mat-mini-fab.mat-accent {
  color: white;
}
.mat-flat-button.mat-warn, .mat-raised-button.mat-warn, .mat-fab.mat-warn, .mat-mini-fab.mat-warn {
  color: white;
}
.mat-flat-button.mat-primary[disabled], .mat-flat-button.mat-accent[disabled], .mat-flat-button.mat-warn[disabled], .mat-flat-button[disabled][disabled], .mat-raised-button.mat-primary[disabled], .mat-raised-button.mat-accent[disabled], .mat-raised-button.mat-warn[disabled], .mat-raised-button[disabled][disabled], .mat-fab.mat-primary[disabled], .mat-fab.mat-accent[disabled], .mat-fab.mat-warn[disabled], .mat-fab[disabled][disabled], .mat-mini-fab.mat-primary[disabled], .mat-mini-fab.mat-accent[disabled], .mat-mini-fab.mat-warn[disabled], .mat-mini-fab[disabled][disabled] {
  color: rgba(0, 0, 0, 0.38);
}
.mat-flat-button.mat-primary, .mat-raised-button.mat-primary, .mat-fab.mat-primary, .mat-mini-fab.mat-primary {
  background-color: #2f3b51;
}
.mat-flat-button.mat-accent, .mat-raised-button.mat-accent, .mat-fab.mat-accent, .mat-mini-fab.mat-accent {
  background-color: #107a83;
}
.mat-flat-button.mat-warn, .mat-raised-button.mat-warn, .mat-fab.mat-warn, .mat-mini-fab.mat-warn {
  background-color: #d53f1e;
}
.mat-flat-button.mat-primary[disabled], .mat-flat-button.mat-accent[disabled], .mat-flat-button.mat-warn[disabled], .mat-flat-button[disabled][disabled], .mat-raised-button.mat-primary[disabled], .mat-raised-button.mat-accent[disabled], .mat-raised-button.mat-warn[disabled], .mat-raised-button[disabled][disabled], .mat-fab.mat-primary[disabled], .mat-fab.mat-accent[disabled], .mat-fab.mat-warn[disabled], .mat-fab[disabled][disabled], .mat-mini-fab.mat-primary[disabled], .mat-mini-fab.mat-accent[disabled], .mat-mini-fab.mat-warn[disabled], .mat-mini-fab[disabled][disabled] {
  background-color: rgba(0, 0, 0, 0.12);
}
.mat-flat-button.mat-primary .mat-ripple-element, .mat-raised-button.mat-primary .mat-ripple-element, .mat-fab.mat-primary .mat-ripple-element, .mat-mini-fab.mat-primary .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.mat-flat-button.mat-accent .mat-ripple-element, .mat-raised-button.mat-accent .mat-ripple-element, .mat-fab.mat-accent .mat-ripple-element, .mat-mini-fab.mat-accent .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.mat-flat-button.mat-warn .mat-ripple-element, .mat-raised-button.mat-warn .mat-ripple-element, .mat-fab.mat-warn .mat-ripple-element, .mat-mini-fab.mat-warn .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}

.mat-icon-button.mat-primary .mat-ripple-element {
  background-color: rgba(47, 59, 81, 0.2);
}
.mat-icon-button.mat-accent .mat-ripple-element {
  background-color: rgba(16, 122, 131, 0.2);
}
.mat-icon-button.mat-warn .mat-ripple-element {
  background-color: rgba(213, 63, 30, 0.2);
}

.mat-button-toggle {
  color: rgba(0, 0, 0, 0.38);
}
.mat-button-toggle .mat-button-toggle-focus-overlay {
  background-color: rgba(0, 0, 0, 0.06);
}

.mat-button-toggle-checked {
  background-color: #107a83;
  color: rgba(0, 0, 0, 0.54);
}

.mat-button-toggle-disabled {
  background-color: #eeeeee;
  color: rgba(0, 0, 0, 0.38);
}
.mat-button-toggle-disabled.mat-button-toggle-checked {
  background-color: #bdbdbd;
}

.mat-card {
  background: white;
  color: rgba(0, 0, 0, 0.85);
}

.mat-card-subtitle {
  color: rgba(0, 0, 0, 0.54);
}

.mat-checkbox-frame {
  border-color: rgba(0, 0, 0, 0.54);
}

.mat-checkbox-checkmark {
  fill: #fafafa;
}

.mat-checkbox-checkmark-path {
  stroke: #fafafa !important;
}
@media screen and (-ms-high-contrast: black-on-white) {
  .mat-checkbox-checkmark-path {
    stroke: #000 !important;
  }
}

.mat-checkbox-mixedmark {
  background-color: #fafafa;
}

.mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .mat-checkbox-checked.mat-primary .mat-checkbox-background {
  background-color: #2f3b51;
}
.mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .mat-checkbox-checked.mat-accent .mat-checkbox-background {
  background-color: #107a83;
}
.mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .mat-checkbox-checked.mat-warn .mat-checkbox-background {
  background-color: #d53f1e;
}

.mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {
  background-color: #b0b0b0;
}
.mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame {
  border-color: #b0b0b0;
}
.mat-checkbox-disabled .mat-checkbox-label {
  color: #b0b0b0;
}
@media screen and (-ms-high-contrast: active) {
  .mat-checkbox-disabled {
    opacity: 0.5;
  }
}

@media screen and (-ms-high-contrast: active) {
  .mat-checkbox-background {
    background: none;
  }
}
.mat-checkbox:not(.mat-checkbox-disabled).mat-primary .mat-checkbox-ripple .mat-ripple-element {
  background-color: rgba(47, 59, 81, 0.26);
}
.mat-checkbox:not(.mat-checkbox-disabled).mat-accent .mat-checkbox-ripple .mat-ripple-element {
  background-color: rgba(16, 122, 131, 0.26);
}
.mat-checkbox:not(.mat-checkbox-disabled).mat-warn .mat-checkbox-ripple .mat-ripple-element {
  background-color: rgba(213, 63, 30, 0.26);
}

.mat-chip.mat-standard-chip {
  background-color: #e0e0e0;
  color: rgba(0, 0, 0, 0.85);
}
.mat-chip.mat-standard-chip .mat-chip-remove {
  color: rgba(0, 0, 0, 0.85);
  opacity: 0.4;
}
.mat-chip.mat-standard-chip .mat-chip-remove:hover {
  opacity: 0.54;
}

.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {
  background-color: #2f3b51;
  color: white;
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {
  color: white;
  opacity: 0.4;
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove:hover {
  opacity: 0.54;
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn {
  background-color: #d53f1e;
  color: white;
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove {
  color: white;
  opacity: 0.4;
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove:hover {
  opacity: 0.54;
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent {
  background-color: #107a83;
  color: white;
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove {
  color: white;
  opacity: 0.4;
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove:hover {
  opacity: 0.54;
}

.mat-table {
  background: white;
}

.mat-table thead, .mat-table tbody, .mat-table tfoot,
mat-header-row, mat-row, mat-footer-row,
[mat-header-row], [mat-row], [mat-footer-row],
.mat-table-sticky {
  background: inherit;
}

mat-row, mat-header-row, mat-footer-row,
th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
  border-bottom-color: rgba(0, 0, 0, 0.15);
}

.mat-header-cell {
  color: rgba(0, 0, 0, 0.54);
}

.mat-cell, .mat-footer-cell {
  color: rgba(0, 0, 0, 0.85);
}

.mat-calendar-arrow {
  border-top-color: rgba(0, 0, 0, 0.54);
}

.mat-datepicker-toggle,
.mat-datepicker-content .mat-calendar-next-button,
.mat-datepicker-content .mat-calendar-previous-button {
  color: rgba(0, 0, 0, 0.54);
}

.mat-calendar-table-header {
  color: rgba(0, 0, 0, 0.38);
}

.mat-calendar-table-header-divider::after {
  background: rgba(0, 0, 0, 0.15);
}

.mat-calendar-body-label {
  color: rgba(0, 0, 0, 0.54);
}

.mat-calendar-body-cell-content {
  color: rgba(0, 0, 0, 0.85);
  border-color: transparent;
}

.mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected) {
  color: rgba(0, 0, 0, 0.35);
}

.mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected),
.cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected),
.cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected) {
  background-color: rgba(0, 0, 0, 0.04);
}

.mat-calendar-body-today:not(.mat-calendar-body-selected) {
  border-color: rgba(0, 0, 0, 0.38);
}

.mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected) {
  border-color: rgba(0, 0, 0, 0.18);
}

.mat-calendar-body-selected {
  background-color: #2f3b51;
  color: white;
}

.mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(47, 59, 81, 0.4);
}

.mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px white;
}

.mat-datepicker-content {
  background-color: white;
  color: rgba(0, 0, 0, 0.85);
}
.mat-datepicker-content.mat-accent .mat-calendar-body-selected {
  background-color: #107a83;
  color: white;
}
.mat-datepicker-content.mat-accent .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(16, 122, 131, 0.4);
}
.mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px white;
}
.mat-datepicker-content.mat-warn .mat-calendar-body-selected {
  background-color: #d53f1e;
  color: white;
}
.mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(213, 63, 30, 0.4);
}
.mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px white;
}

.mat-datepicker-toggle-active {
  color: #2f3b51;
}
.mat-datepicker-toggle-active.mat-accent {
  color: #107a83;
}
.mat-datepicker-toggle-active.mat-warn {
  color: #d53f1e;
}

.mat-dialog-container {
  background: white;
  color: rgba(0, 0, 0, 0.85);
}

.mat-divider {
  border-top-color: rgba(0, 0, 0, 0.15);
}

.mat-divider-vertical {
  border-right-color: rgba(0, 0, 0, 0.15);
}

.mat-expansion-panel {
  background: white;
  color: rgba(0, 0, 0, 0.85);
}

.mat-action-row {
  border-top-color: rgba(0, 0, 0, 0.15);
}

.mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused, .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused, .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:not([aria-disabled=true]):hover {
  background: rgba(0, 0, 0, 0.04);
}

@media (hover: none) {
  .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {
    background: white;
  }
}
.mat-expansion-panel-header-title {
  color: rgba(0, 0, 0, 0.85);
}

.mat-expansion-panel-header-description,
.mat-expansion-indicator::after {
  color: rgba(0, 0, 0, 0.54);
}

.mat-expansion-panel-header[aria-disabled=true] {
  color: rgba(0, 0, 0, 0.38);
}
.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,
.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description {
  color: inherit;
}

.mat-form-field-label {
  color: rgba(0, 0, 0, 0.6);
}

.mat-hint, .nx-hint {
  color: rgba(0, 0, 0, 0.6);
}

.mat-form-field.mat-focused .mat-form-field-label {
  color: #2f3b51;
}
.mat-form-field.mat-focused .mat-form-field-label.mat-accent {
  color: #107a83;
}
.mat-form-field.mat-focused .mat-form-field-label.mat-warn {
  color: #d53f1e;
}

.mat-focused .mat-form-field-required-marker {
  color: #107a83;
}

.mat-form-field-ripple {
  background-color: rgba(0, 0, 0, 0.87);
}

.mat-form-field.mat-focused .mat-form-field-ripple {
  background-color: #2f3b51;
}
.mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {
  background-color: #107a83;
}
.mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {
  background-color: #d53f1e;
}

.mat-form-field.mat-form-field-invalid .mat-form-field-label {
  color: #d53f1e;
}
.mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,
.mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker {
  color: #d53f1e;
}
.mat-form-field.mat-form-field-invalid .mat-form-field-ripple,
.mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent {
  background-color: #d53f1e;
}

.mat-error, .nx-error {
  color: #d53f1e;
}

.mat-form-field-appearance-legacy .mat-form-field-label {
  color: rgba(0, 0, 0, 0.54);
}
.mat-form-field-appearance-legacy .mat-hint, .mat-form-field-appearance-legacy .nx-hint {
  color: rgba(0, 0, 0, 0.54);
}
.mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(0, 0, 0, 0.42);
}
.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}

.mat-form-field-appearance-standard .mat-form-field-underline {
  background-color: rgba(0, 0, 0, 0.42);
}
.mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}

.mat-form-field-appearance-fill .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.04);
}
.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.02);
}
.mat-form-field-appearance-fill .mat-form-field-underline::before {
  background-color: rgba(0, 0, 0, 0.42);
}
.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {
  color: rgba(0, 0, 0, 0.35);
}
.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {
  background-color: transparent;
}

.mat-form-field-appearance-outline .mat-form-field-outline {
  color: rgba(0, 0, 0, 0.12);
}
.mat-form-field-appearance-outline .mat-form-field-outline-thick {
  color: rgba(0, 0, 0, 0.87);
}
.mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {
  color: #2f3b51;
}
.mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {
  color: #107a83;
}
.mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {
  color: #d53f1e;
}
.mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {
  color: #d53f1e;
}
.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {
  color: rgba(0, 0, 0, 0.35);
}
.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {
  color: rgba(0, 0, 0, 0.06);
}

.mat-icon.mat-primary {
  color: #2f3b51;
}
.mat-icon.mat-accent {
  color: #107a83;
}
.mat-icon.mat-warn {
  color: #d53f1e;
}

.mat-input-element:disabled {
  color: rgba(0, 0, 0, 0.35);
}

.mat-input-element {
  caret-color: #2f3b51;
}
.mat-input-element::placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.mat-input-element::-moz-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.mat-input-element::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.mat-input-element:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}

.mat-accent .mat-input-element {
  caret-color: #107a83;
}

.mat-warn .mat-input-element,
.mat-form-field-invalid .mat-input-element {
  caret-color: #d53f1e;
}

.mat-list .mat-list-item, .mat-nav-list .mat-list-item, .mat-selection-list .mat-list-item {
  color: rgba(0, 0, 0, 0.85);
}
.mat-list .mat-list-option, .mat-nav-list .mat-list-option, .mat-selection-list .mat-list-option {
  color: rgba(0, 0, 0, 0.85);
}
.mat-list .mat-subheader, .mat-nav-list .mat-subheader, .mat-selection-list .mat-subheader {
  color: rgba(0, 0, 0, 0.54);
}

.mat-list-item-disabled {
  background-color: #eeeeee;
}

.mat-list-option:hover, .mat-list-option.mat-list-item-focus,
.mat-nav-list .mat-list-item:hover,
.mat-nav-list .mat-list-item.mat-list-item-focus {
  background: rgba(0, 0, 0, 0.04);
}

.mat-menu-panel {
  background: white;
}

.mat-menu-item {
  background: transparent;
  color: rgba(0, 0, 0, 0.85);
}
.mat-menu-item[disabled], .mat-menu-item[disabled]::after {
  color: rgba(0, 0, 0, 0.38);
}

.mat-menu-item .mat-icon:not([color]),
.mat-menu-item-submenu-trigger::after {
  color: rgba(0, 0, 0, 0.54);
}

.mat-menu-item:hover:not([disabled]),
.mat-menu-item.cdk-program-focused:not([disabled]),
.mat-menu-item.cdk-keyboard-focused:not([disabled]),
.mat-menu-item-highlighted:not([disabled]) {
  background: rgba(0, 0, 0, 0.04);
}

.mat-paginator {
  background: white;
}

.mat-paginator,
.mat-paginator-page-size .mat-select-trigger {
  color: rgba(0, 0, 0, 0.54);
}

.mat-paginator-decrement,
.mat-paginator-increment {
  border-top: 2px solid rgba(0, 0, 0, 0.54);
  border-right: 2px solid rgba(0, 0, 0, 0.54);
}

.mat-paginator-first,
.mat-paginator-last {
  border-top: 2px solid rgba(0, 0, 0, 0.54);
}

.mat-icon-button[disabled] .mat-paginator-decrement,
.mat-icon-button[disabled] .mat-paginator-increment,
.mat-icon-button[disabled] .mat-paginator-first,
.mat-icon-button[disabled] .mat-paginator-last {
  border-color: rgba(0, 0, 0, 0.38);
}

.mat-progress-bar-background {
  fill: #c1c4cb;
}

.mat-progress-bar-buffer {
  background-color: #c1c4cb;
}

.mat-progress-bar-fill::after {
  background-color: #2f3b51;
}

.mat-progress-bar.mat-accent .mat-progress-bar-background {
  fill: #b7d7da;
}
.mat-progress-bar.mat-accent .mat-progress-bar-buffer {
  background-color: #b7d7da;
}
.mat-progress-bar.mat-accent .mat-progress-bar-fill::after {
  background-color: #107a83;
}

.mat-progress-bar.mat-warn .mat-progress-bar-background {
  fill: #f2c5bc;
}
.mat-progress-bar.mat-warn .mat-progress-bar-buffer {
  background-color: #f2c5bc;
}
.mat-progress-bar.mat-warn .mat-progress-bar-fill::after {
  background-color: #d53f1e;
}

.mat-progress-spinner circle, .mat-spinner circle {
  stroke: #2f3b51;
}
.mat-progress-spinner.mat-accent circle, .mat-spinner.mat-accent circle {
  stroke: #107a83;
}
.mat-progress-spinner.mat-warn circle, .mat-spinner.mat-warn circle {
  stroke: #d53f1e;
}

.mat-radio-outer-circle {
  border-color: rgba(0, 0, 0, 0.54);
}

.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {
  border-color: #2f3b51;
}
.mat-radio-button.mat-primary .mat-radio-inner-circle {
  background-color: #2f3b51;
}
.mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element {
  background-color: rgba(47, 59, 81, 0.26);
}
.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
  border-color: #107a83;
}
.mat-radio-button.mat-accent .mat-radio-inner-circle {
  background-color: #107a83;
}
.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element {
  background-color: rgba(16, 122, 131, 0.26);
}
.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {
  border-color: #d53f1e;
}
.mat-radio-button.mat-warn .mat-radio-inner-circle {
  background-color: #d53f1e;
}
.mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element {
  background-color: rgba(213, 63, 30, 0.26);
}
.mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,
.mat-radio-button.mat-radio-disabled .mat-radio-outer-circle {
  border-color: rgba(0, 0, 0, 0.38);
}
.mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,
.mat-radio-button.mat-radio-disabled .mat-radio-inner-circle {
  background-color: rgba(0, 0, 0, 0.38);
}
.mat-radio-button.mat-radio-disabled .mat-radio-label-content {
  color: rgba(0, 0, 0, 0.38);
}

.mat-select-content, .mat-select-panel-done-animating {
  background: white;
}

.mat-select-value {
  color: rgba(0, 0, 0, 0.85);
}

.mat-select-placeholder {
  color: rgba(0, 0, 0, 0.42);
}

.mat-select-disabled .mat-select-value {
  color: rgba(0, 0, 0, 0.35);
}

.mat-select-arrow {
  color: rgba(0, 0, 0, 0.54);
}

.mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {
  background: rgba(0, 0, 0, 0.12);
}

.mat-form-field.mat-focused.mat-primary .mat-select-arrow {
  color: #2f3b51;
}
.mat-form-field.mat-focused.mat-accent .mat-select-arrow {
  color: #107a83;
}
.mat-form-field.mat-focused.mat-warn .mat-select-arrow {
  color: #d53f1e;
}
.mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {
  color: #d53f1e;
}
.mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: rgba(0, 0, 0, 0.35);
}

.mat-drawer-container {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.85);
}

.mat-drawer {
  background-color: white;
  color: rgba(0, 0, 0, 0.85);
}
.mat-drawer.mat-drawer-push {
  background-color: white;
}

.mat-drawer-backdrop.mat-drawer-shown {
  background-color: rgba(0, 0, 0, 0.6);
}

.mat-slide-toggle.mat-checked:not(.mat-disabled) .mat-slide-toggle-thumb {
  background-color: #107a83;
}
.mat-slide-toggle.mat-checked:not(.mat-disabled) .mat-slide-toggle-bar {
  background-color: rgba(16, 122, 131, 0.5);
}
.mat-slide-toggle:not(.mat-checked) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.06);
}
.mat-slide-toggle .mat-ripple-element {
  background-color: rgba(16, 122, 131, 0.12);
}
.mat-slide-toggle.mat-primary.mat-checked:not(.mat-disabled) .mat-slide-toggle-thumb {
  background-color: #2f3b51;
}
.mat-slide-toggle.mat-primary.mat-checked:not(.mat-disabled) .mat-slide-toggle-bar {
  background-color: rgba(47, 59, 81, 0.5);
}
.mat-slide-toggle.mat-primary:not(.mat-checked) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.06);
}
.mat-slide-toggle.mat-primary .mat-ripple-element {
  background-color: rgba(47, 59, 81, 0.12);
}
.mat-slide-toggle.mat-warn.mat-checked:not(.mat-disabled) .mat-slide-toggle-thumb {
  background-color: #d53f1e;
}
.mat-slide-toggle.mat-warn.mat-checked:not(.mat-disabled) .mat-slide-toggle-bar {
  background-color: rgba(213, 63, 30, 0.5);
}
.mat-slide-toggle.mat-warn:not(.mat-checked) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.06);
}
.mat-slide-toggle.mat-warn .mat-ripple-element {
  background-color: rgba(213, 63, 30, 0.12);
}

.mat-disabled .mat-slide-toggle-thumb {
  background-color: #bdbdbd;
}
.mat-disabled .mat-slide-toggle-bar {
  background-color: rgba(0, 0, 0, 0.1);
}

.mat-slide-toggle-thumb {
  background-color: #fafafa;
}

.mat-slide-toggle-bar {
  background-color: rgba(0, 0, 0, 0.38);
}

.mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26);
}

.mat-primary .mat-slider-track-fill,
.mat-primary .mat-slider-thumb,
.mat-primary .mat-slider-thumb-label {
  background-color: #2f3b51;
}
.mat-primary .mat-slider-thumb-label-text {
  color: white;
}

.mat-accent .mat-slider-track-fill,
.mat-accent .mat-slider-thumb,
.mat-accent .mat-slider-thumb-label {
  background-color: #107a83;
}
.mat-accent .mat-slider-thumb-label-text {
  color: white;
}

.mat-warn .mat-slider-track-fill,
.mat-warn .mat-slider-thumb,
.mat-warn .mat-slider-thumb-label {
  background-color: #d53f1e;
}
.mat-warn .mat-slider-thumb-label-text {
  color: white;
}

.mat-slider-focus-ring {
  background-color: rgba(16, 122, 131, 0.2);
}

.mat-slider:hover .mat-slider-track-background,
.cdk-focused .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.38);
}

.mat-slider-disabled .mat-slider-track-background,
.mat-slider-disabled .mat-slider-track-fill,
.mat-slider-disabled .mat-slider-thumb {
  background-color: rgba(0, 0, 0, 0.26);
}
.mat-slider-disabled:hover .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26);
}

.mat-slider-min-value .mat-slider-focus-ring {
  background-color: rgba(0, 0, 0, 0.12);
}
.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.87);
}
.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.26);
}
.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26);
  background-color: transparent;
}
.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.38);
}
.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26);
}

.mat-slider-has-ticks .mat-slider-wrapper::after {
  border-color: rgba(0, 0, 0, 0.7);
}

.mat-slider-horizontal .mat-slider-ticks {
  background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
  background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
}

.mat-slider-vertical .mat-slider-ticks {
  background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
}

.mat-step-header.cdk-keyboard-focused, .mat-step-header.cdk-program-focused, .mat-step-header:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.mat-step-header .mat-step-label,
.mat-step-header .mat-step-optional {
  color: rgba(0, 0, 0, 0.35);
}
.mat-step-header .mat-step-icon {
  background-color: #2f3b51;
  color: white;
}
.mat-step-header .mat-step-icon-not-touched {
  background-color: rgba(0, 0, 0, 0.35);
  color: white;
}
.mat-step-header .mat-step-label.mat-step-label-active {
  color: rgba(0, 0, 0, 0.85);
}

.mat-stepper-horizontal, .mat-stepper-vertical {
  background-color: white;
}

.mat-stepper-vertical-line::before {
  border-left-color: rgba(0, 0, 0, 0.15);
}

.mat-stepper-horizontal-line {
  border-top-color: rgba(0, 0, 0, 0.15);
}

.mat-sort-header-arrow {
  color: #757575;
}

.mat-tab-nav-bar,
.mat-tab-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.mat-tab-group-inverted-header .mat-tab-nav-bar,
.mat-tab-group-inverted-header .mat-tab-header {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: none;
}

.mat-tab-label, .mat-tab-link {
  color: rgba(0, 0, 0, 0.85);
}
.mat-tab-label.mat-tab-disabled, .mat-tab-link.mat-tab-disabled {
  color: rgba(0, 0, 0, 0.35);
}

.mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.85);
}

.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.35);
}

.mat-tab-group[class*=mat-background-] .mat-tab-header,
.mat-tab-nav-bar[class*=mat-background-] {
  border-bottom: none;
  border-top: none;
}

.mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(193, 196, 203, 0.3);
}
.mat-tab-group.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary .mat-ink-bar {
  background-color: #2f3b51;
}
.mat-tab-group.mat-primary.mat-background-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary.mat-background-primary .mat-ink-bar {
  background-color: white;
}
.mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(183, 215, 218, 0.3);
}
.mat-tab-group.mat-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent .mat-ink-bar {
  background-color: #107a83;
}
.mat-tab-group.mat-accent.mat-background-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent.mat-background-accent .mat-ink-bar {
  background-color: white;
}
.mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(242, 197, 188, 0.3);
}
.mat-tab-group.mat-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn .mat-ink-bar {
  background-color: #d53f1e;
}
.mat-tab-group.mat-warn.mat-background-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn.mat-background-warn .mat-ink-bar {
  background-color: white;
}
.mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(193, 196, 203, 0.3);
}
.mat-tab-group.mat-background-primary .mat-tab-header, .mat-tab-group.mat-background-primary .mat-tab-links, .mat-tab-nav-bar.mat-background-primary .mat-tab-header, .mat-tab-nav-bar.mat-background-primary .mat-tab-links {
  background-color: #2f3b51;
}
.mat-tab-group.mat-background-primary .mat-tab-label, .mat-tab-group.mat-background-primary .mat-tab-link, .mat-tab-nav-bar.mat-background-primary .mat-tab-label, .mat-tab-nav-bar.mat-background-primary .mat-tab-link {
  color: white;
}
.mat-tab-group.mat-background-primary .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-primary .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-primary .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-primary .mat-tab-link.mat-tab-disabled {
  color: rgba(255, 255, 255, 0.4);
}
.mat-tab-group.mat-background-primary .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-chevron {
  border-color: white;
}
.mat-tab-group.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-primary .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(255, 255, 255, 0.4);
}
.mat-tab-group.mat-background-primary .mat-ripple-element, .mat-tab-nav-bar.mat-background-primary .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.12);
}
.mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(183, 215, 218, 0.3);
}
.mat-tab-group.mat-background-accent .mat-tab-header, .mat-tab-group.mat-background-accent .mat-tab-links, .mat-tab-nav-bar.mat-background-accent .mat-tab-header, .mat-tab-nav-bar.mat-background-accent .mat-tab-links {
  background-color: #107a83;
}
.mat-tab-group.mat-background-accent .mat-tab-label, .mat-tab-group.mat-background-accent .mat-tab-link, .mat-tab-nav-bar.mat-background-accent .mat-tab-label, .mat-tab-nav-bar.mat-background-accent .mat-tab-link {
  color: white;
}
.mat-tab-group.mat-background-accent .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-accent .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-accent .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-accent .mat-tab-link.mat-tab-disabled {
  color: rgba(255, 255, 255, 0.4);
}
.mat-tab-group.mat-background-accent .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-chevron {
  border-color: white;
}
.mat-tab-group.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-accent .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(255, 255, 255, 0.4);
}
.mat-tab-group.mat-background-accent .mat-ripple-element, .mat-tab-nav-bar.mat-background-accent .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.12);
}
.mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(242, 197, 188, 0.3);
}
.mat-tab-group.mat-background-warn .mat-tab-header, .mat-tab-group.mat-background-warn .mat-tab-links, .mat-tab-nav-bar.mat-background-warn .mat-tab-header, .mat-tab-nav-bar.mat-background-warn .mat-tab-links {
  background-color: #d53f1e;
}
.mat-tab-group.mat-background-warn .mat-tab-label, .mat-tab-group.mat-background-warn .mat-tab-link, .mat-tab-nav-bar.mat-background-warn .mat-tab-label, .mat-tab-nav-bar.mat-background-warn .mat-tab-link {
  color: white;
}
.mat-tab-group.mat-background-warn .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-warn .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-warn .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-warn .mat-tab-link.mat-tab-disabled {
  color: rgba(255, 255, 255, 0.4);
}
.mat-tab-group.mat-background-warn .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-chevron {
  border-color: white;
}
.mat-tab-group.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-warn .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(255, 255, 255, 0.4);
}
.mat-tab-group.mat-background-warn .mat-ripple-element, .mat-tab-nav-bar.mat-background-warn .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.12);
}

.mat-toolbar {
  background: whitesmoke;
  color: rgba(0, 0, 0, 0.85);
}
.mat-toolbar.mat-primary {
  background: #2f3b51;
  color: white;
}
.mat-toolbar.mat-accent {
  background: #107a83;
  color: white;
}
.mat-toolbar.mat-warn {
  background: #d53f1e;
  color: white;
}
.mat-toolbar .mat-form-field-underline,
.mat-toolbar .mat-form-field-ripple,
.mat-toolbar .mat-focused .mat-form-field-ripple {
  background-color: currentColor;
}
.mat-toolbar .mat-form-field-label,
.mat-toolbar .mat-focused .mat-form-field-label,
.mat-toolbar .mat-select-value,
.mat-toolbar .mat-select-arrow,
.mat-toolbar .mat-form-field.mat-focused .mat-select-arrow {
  color: inherit;
}
.mat-toolbar .mat-input-element {
  caret-color: currentColor;
}

.mat-tooltip {
  background: rgba(97, 97, 97, 0.9);
}

.mat-tree {
  background: white;
}

.mat-tree-node {
  color: rgba(0, 0, 0, 0.85);
}

.mat-snack-bar-container {
  background: #323232;
  color: white;
}

.mat-simple-snackbar-action {
  color: #107a83;
}

code {
  background-color: #fae8e4;
  color: #c2185b;
}

.nx-badge {
  background-color: #107a83;
  color: #fff;
}

pre {
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.85);
  overflow: auto;
}

.nx-error {
  color: #d53f1e;
}

.nx-error-color {
  color: #d53f1e;
}

.nx-form-group-label {
  color: rgba(0, 0, 0, 0.54);
}
.nx-form-group-label.nx-error {
  color: #d53f1e;
}

.nx-info {
  background-color: #91cef2;
  color: #3e3e3e;
}

.nx-danger {
  background-color: #ea9f8e;
  color: #3e3e3e;
}

.nx-success {
  background-color: #9ad39b;
  color: #3e3e3e;
}

.nx-warn {
  background-color: #f2d681;
  color: #3e3e3e;
}

.nx-optgroup-label {
  color: rgba(0, 0, 0, 0.54);
}

.nx-optgroup-disabled .nx-optgroup-label {
  color: rgba(0, 0, 0, 0.38);
}

.nx-option {
  color: rgba(0, 0, 0, 0.85);
}
.nx-option:hover:not(.nx-option-disabled), .nx-option:focus:not(.nx-option-disabled) {
  background: rgba(0, 0, 0, 0.04);
}
.nx-option.nx-selected:not(.nx-option-multiple):not(.nx-option-disabled) {
  background: rgba(0, 0, 0, 0.04);
}
.nx-option.nx-active {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.85);
}
.nx-option.nx-option-disabled {
  color: rgba(0, 0, 0, 0.38);
}
.nx-option .nx-option-text {
  vertical-align: middle;
}
.nx-option .nx-option-search-term-highlight {
  background-color: #86efff;
}

.mat-primary .nx-option.nx-selected:not(.nx-option-disabled) {
  color: #2f3b51;
}

.mat-accent .nx-option.nx-selected:not(.nx-option-disabled) {
  color: #107a83;
}

.mat-warn .nx-option.nx-selected:not(.nx-option-disabled) {
  color: #d53f1e;
}

.nx-basic-table th,
.nx-basic-table td {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.nx-basic-table th {
  color: rgba(0, 0, 0, 0.54);
}
.nx-basic-table td {
  color: rgba(0, 0, 0, 0.85);
}
.nx-basic-table.nx-basic-table-row-hover > tbody > tr:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.nx-basic-table > tbody + tbody {
  border-top: 2px solid rgba(0, 0, 0, 0.12);
}

.nx-basic-table-border-around,
.nx-basic-table-bordered {
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.nx-basic-table-bordered th,
.nx-basic-table-bordered td {
  border-bottom: 0;
  border-left: 1px solid rgba(0, 0, 0, 0.12);
  border-right: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}
.nx-basic-table-bordered th:first-child,
.nx-basic-table-bordered td:first-child {
  border-left: 0;
}

.nx-accumulator .accumulator-selected {
  background: rgba(0, 0, 0, 0.1);
}
.nx-accumulator nx-row:hover {
  background: rgba(0, 0, 0, 0.05);
}

.nx-accumulator-container nx-table {
  border-color: rgba(0, 0, 0, 0.12);
}

ag-grid-angular.ag-theme-material .ag-row-odd {
  background-color: #F0F0F0;
}
ag-grid-angular.ag-theme-material .ag-row-selected {
  background-color: #E0E0E0;
}
ag-grid-angular.ag-theme-material .ag-row-hover:not(.ag-row-level-1) {
  background-color: #CCCCCC;
}
ag-grid-angular.ag-theme-material .ag-cell-data-changed {
  background-color: #B3D7C2 !important;
}
ag-grid-angular.ag-theme-material .ag-cell-data-changed [href] {
  color: black;
  text-decoration: underline;
}
ag-grid-angular.ag-theme-material .ag-value-change-value-highlight {
  background-color: #B3D7C2;
}
ag-grid-angular.ag-theme-material .ag-value-change-value-highlight [href] {
  color: black;
  text-decoration: underline;
}

[nx-export-textfield-item] {
  background-color: #fafafa;
  color: rgba(0, 0, 0, 0.85);
}

.nx-ag-grid-header {
  background: #e0e0e0;
}

.nx-alert .nx-alert-warning {
  background-color: #f2d681;
  border-color: #f2d681;
  color: #3e3e3e;
}
.nx-alert .nx-alert-success {
  background-color: #9ad39b;
  border-color: #9ad39b;
  color: #3e3e3e;
}
.nx-alert .nx-alert-info {
  background-color: #91cef2;
  border-color: #91cef2;
  color: #3e3e3e;
}
.nx-alert .nx-alert-danger {
  background-color: #ea9f8e;
  border-color: #ea9f8e;
  color: #3e3e3e;
}
.nx-alert .nx-alert-action-link {
  color: #3e3e3e;
}
.nx-alert .nx-icon {
  color: rgba(0, 0, 0, 0.54);
}

.nx-autocomplete-panel {
  background: white;
  color: rgba(0, 0, 0, 0.85);
  color-scheme: light;
}
.nx-autocomplete-panel .nx-option.nx-selected:not(.nx-active):not(:hover) {
  background: white;
}
.nx-autocomplete-panel .nx-option.nx-selected:not(.nx-active):not(:hover):not(.nx-option-disabled) {
  color: rgba(0, 0, 0, 0.85);
}
.nx-autocomplete-panel .nx-option-text {
  text-transform: capitalize;
}

.nx-button-dropdown-panel {
  background: white;
  color-scheme: light;
}

.nx-button-dropdown-item {
  background: transparent;
  color: rgba(0, 0, 0, 0.85);
}
.nx-button-dropdown-item[disabled] {
  color: rgba(0, 0, 0, 0.38);
}

.nx-button-dropdown-item .nx-icon:not([color]),
.nx-button-dropdown-item-submenu-trigger::after {
  color: rgba(0, 0, 0, 0.54);
}

.nx-button-dropdown-item:hover:not([disabled]),
.nx-button-dropdown-item.cdk-program-focused:not([disabled]),
.nx-button-dropdown-item.cdk-keyboard-focused:not([disabled]),
.nx-button-dropdown-item-highlighted:not([disabled]) {
  background: rgba(0, 0, 0, 0.04);
}

.nx-button, .nx-fab, .nx-mini-fab, .nx-tiny-fab {
  color: rgba(0, 0, 0, 0.85);
  background-color: white;
}
.nx-button.mat-primary, .nx-fab.mat-primary, .nx-mini-fab.mat-primary, .nx-tiny-fab.mat-primary {
  color: white;
}
.nx-button.mat-accent, .nx-fab.mat-accent, .nx-mini-fab.mat-accent, .nx-tiny-fab.mat-accent {
  color: #fff;
}
.nx-button.mat-warn, .nx-fab.mat-warn, .nx-mini-fab.mat-warn, .nx-tiny-fab.mat-warn {
  color: white;
}
.nx-button.mat-primary .nx-icon, .nx-button.mat-accent .nx-icon, .nx-button.mat-warn .nx-icon, .nx-fab.mat-primary .nx-icon, .nx-fab.mat-accent .nx-icon, .nx-fab.mat-warn .nx-icon, .nx-mini-fab.mat-primary .nx-icon, .nx-mini-fab.mat-accent .nx-icon, .nx-mini-fab.mat-warn .nx-icon, .nx-tiny-fab.mat-primary .nx-icon, .nx-tiny-fab.mat-accent .nx-icon, .nx-tiny-fab.mat-warn .nx-icon {
  color: #fff;
}
.nx-button[disabled], .nx-fab[disabled], .nx-mini-fab[disabled], .nx-tiny-fab[disabled] {
  color: rgba(0, 0, 0, 0.38);
}
.nx-button[disabled] .nx-icon, .nx-fab[disabled] .nx-icon, .nx-mini-fab[disabled] .nx-icon, .nx-tiny-fab[disabled] .nx-icon {
  color: rgba(0, 0, 0, 0.38);
}
.nx-button.mat-primary, .nx-fab.mat-primary, .nx-mini-fab.mat-primary, .nx-tiny-fab.mat-primary {
  background-color: #2f3b51;
}
.nx-button.mat-accent, .nx-fab.mat-accent, .nx-mini-fab.mat-accent, .nx-tiny-fab.mat-accent {
  background-color: #107a83;
}
.nx-button.mat-warn, .nx-fab.mat-warn, .nx-mini-fab.mat-warn, .nx-tiny-fab.mat-warn {
  background-color: #d53f1e;
}
.nx-button.mat-primary .nx-icon, .nx-button.mat-accent .nx-icon, .nx-button.mat-warn .nx-icon, .nx-fab.mat-primary .nx-icon, .nx-fab.mat-accent .nx-icon, .nx-fab.mat-warn .nx-icon, .nx-mini-fab.mat-primary .nx-icon, .nx-mini-fab.mat-accent .nx-icon, .nx-mini-fab.mat-warn .nx-icon, .nx-tiny-fab.mat-primary .nx-icon, .nx-tiny-fab.mat-accent .nx-icon, .nx-tiny-fab.mat-warn .nx-icon {
  color: #fff;
}
.nx-button[disabled], .nx-fab[disabled], .nx-mini-fab[disabled], .nx-tiny-fab[disabled] {
  background-color: rgba(0, 0, 0, 0.12);
}
.nx-button[disabled] .nx-icon, .nx-fab[disabled] .nx-icon, .nx-mini-fab[disabled] .nx-icon, .nx-tiny-fab[disabled] .nx-icon {
  color: rgba(0, 0, 0, 0.38);
}
.nx-button.mat-primary .nx-ripple-element, .nx-fab.mat-primary .nx-ripple-element, .nx-mini-fab.mat-primary .nx-ripple-element, .nx-tiny-fab.mat-primary .nx-ripple-element {
  background-color: rgba(255, 255, 255, 0.2);
}
.nx-button.mat-accent .nx-ripple-element, .nx-fab.mat-accent .nx-ripple-element, .nx-mini-fab.mat-accent .nx-ripple-element, .nx-tiny-fab.mat-accent .nx-ripple-element {
  background-color: rgba(255, 255, 255, 0.2);
}
.nx-button.mat-warn .nx-ripple-element, .nx-fab.mat-warn .nx-ripple-element, .nx-mini-fab.mat-warn .nx-ripple-element, .nx-tiny-fab.mat-warn .nx-ripple-element {
  background-color: rgba(255, 255, 255, 0.2);
}

.nx-button.mat-primary .nx-ripple-element {
  background-color: rgba(47, 59, 81, 0.1);
}
.nx-button.mat-accent .nx-ripple-element {
  background-color: rgba(16, 122, 131, 0.1);
}
.nx-button.mat-warn .nx-ripple-element {
  background-color: rgba(213, 63, 30, 0.1);
}

.nx-button[disabled]:hover, .nx-button[disabled]:focus {
  background-color: rgba(0, 0, 0, 0.12);
}

.nx-flat-button {
  color: rgba(0, 0, 0, 0.85);
  background-color: white;
}
.nx-flat-button.mat-primary {
  color: white;
}
.nx-flat-button.mat-accent {
  color: #fff;
}
.nx-flat-button.mat-warn {
  color: white;
}
.nx-flat-button.mat-primary .nx-icon, .nx-flat-button.mat-accent .nx-icon, .nx-flat-button.mat-warn .nx-icon {
  color: #fff;
}
.nx-flat-button[disabled] {
  color: rgba(0, 0, 0, 0.38);
}
.nx-flat-button[disabled] .nx-icon {
  color: rgba(0, 0, 0, 0.38);
}
.nx-flat-button.mat-primary {
  background-color: #2f3b51;
}
.nx-flat-button.mat-accent {
  background-color: #107a83;
}
.nx-flat-button.mat-warn {
  background-color: #d53f1e;
}
.nx-flat-button.mat-primary .nx-icon, .nx-flat-button.mat-accent .nx-icon, .nx-flat-button.mat-warn .nx-icon {
  color: #fff;
}
.nx-flat-button[disabled] {
  background-color: rgba(0, 0, 0, 0.12);
}
.nx-flat-button[disabled] .nx-icon {
  color: rgba(0, 0, 0, 0.38);
}
.nx-flat-button.mat-primary .nx-ripple-element {
  background-color: rgba(255, 255, 255, 0.2);
}
.nx-flat-button.mat-accent .nx-ripple-element {
  background-color: rgba(255, 255, 255, 0.2);
}
.nx-flat-button.mat-warn .nx-ripple-element {
  background-color: rgba(255, 255, 255, 0.2);
}

.nx-icon-button.mat-primary .nx-ripple-element {
  background-color: rgba(47, 59, 81, 0.2);
}
.nx-icon-button.mat-accent .nx-ripple-element {
  background-color: rgba(16, 122, 131, 0.2);
}
.nx-icon-button.mat-warn .nx-ripple-element {
  background-color: rgba(213, 63, 30, 0.2);
}

.nx-button-toggle {
  color: rgba(0, 0, 0, 0.85);
  border-color: rgba(0, 0, 0, 0.12);
  background-color: #fff;
}
.nx-button-toggle.cdk-focused {
  box-shadow: inset 0px 0px 0 2px #18A3FF;
}
.nx-button-toggle.cdk-focused .nx-button-toggle-focus-overlay {
  background-color: rgba(0, 0, 0, 0.06);
}
.nx-button-toggle:not(:last-child) {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
}
.nx-button-toggle .nx-button-toggle-label-content .mat-icon, .nx-button-toggle .nx-button-toggle-label-content .nx-icon {
  color: rgba(0, 0, 0, 0.38);
}
.nx-button-toggle .nx-button-toggle-label-content:hover, .nx-button-toggle .nx-button-toggle-label-content:focus {
  background-color: #029aa5;
  color: #fff;
}
.nx-button-toggle .nx-button-toggle-label-content:hover .mat-icon, .nx-button-toggle .nx-button-toggle-label-content:hover .nx-icon {
  color: #fff;
}
.nx-button-toggle.nx-button-toggle-checked {
  background-color: #107a83;
  color: #fff;
}
.nx-button-toggle.nx-button-toggle-checked .nx-button-toggle-label-content:hover {
  background-color: #107a83;
  color: #fff;
}
.nx-button-toggle.nx-button-toggle-checked .mat-icon, .nx-button-toggle.nx-button-toggle-checked .nx-icon {
  color: #fff;
}
.nx-button-toggle.nx-button-toggle-disabled, .nx-button-toggle.nx-button-toggle-disabled:hover {
  border-color: rgba(0, 0, 0, 0.12);
}
.nx-button-toggle.nx-button-toggle-disabled.nx-button-toggle-checked,
.nx-button-toggle.nx-button-toggle-disabled .nx-button-toggle-label-content,
.nx-button-toggle.nx-button-toggle-disabled .mat-icon, .nx-button-toggle.nx-button-toggle-disabled .nx-icon, .nx-button-toggle.nx-button-toggle-disabled:hover.nx-button-toggle-checked,
.nx-button-toggle.nx-button-toggle-disabled:hover .nx-button-toggle-label-content,
.nx-button-toggle.nx-button-toggle-disabled:hover .mat-icon, .nx-button-toggle.nx-button-toggle-disabled:hover .nx-icon {
  background-color: #eee;
  color: rgba(0, 0, 0, 0.38);
}

/* we are setting some properties which are not connected to theme but button-toggle in dark-theme 
   has border and there is no way to pass information about theme to nx-button-toggle.component.scss */
.nx-card-subtitle {
  color: #a6a6a6;
}

.nx-card {
  background-color: white;
}
.nx-card .nx-button-bar {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.nx-card .nx-button-bar:not(:last-child) {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}
.nx-card.nx-card-clickable {
  background-color: #fff;
}
.nx-card.nx-card-clickable:hover {
  background-color: #fff;
}
.nx-card.nx-card-clickable:focus {
  background-color: #fff;
  outline-color: #3b91f7;
}
.nx-card.nx-card-clickable.nx-card-selected {
  color: #000;
  background-color: #e3ebed;
}
.nx-card.nx-card-clickable.nx-card-selected:hover {
  background-color: #cde0e4;
}

.nx-checkbox-frame {
  border-color: rgba(0, 0, 0, 0.54);
}

.nx-checkbox-checkmark {
  fill: #fafafa;
}

.nx-checkbox-checkmark-path {
  stroke: #fafafa !important;
}

.nx-checkbox-mixedmark {
  background-color: #fafafa;
}

.nx-checkbox-indeterminate.mat-primary .nx-checkbox-background,
.nx-checkbox-checked.mat-primary .nx-checkbox-background {
  background-color: #2f3b51;
}
.nx-checkbox-indeterminate.mat-accent .nx-checkbox-background,
.nx-checkbox-checked.mat-accent .nx-checkbox-background {
  background-color: #107a83;
}
.nx-checkbox-indeterminate.mat-warn .nx-checkbox-background,
.nx-checkbox-checked.mat-warn .nx-checkbox-background {
  background-color: #d53f1e;
}

.nx-checkbox-disabled.nx-checkbox-checked .nx-checkbox-background, .nx-checkbox-disabled.nx-checkbox-indeterminate .nx-checkbox-background {
  background-color: #b0b0b0;
}
.nx-checkbox-disabled:not(.nx-checkbox-checked) .nx-checkbox-frame {
  border-color: #b0b0b0;
}
.nx-checkbox-disabled .nx-checkbox-label {
  color: #b0b0b0;
}

.nx-checkbox:not(.nx-checkbox-disabled) .mat-ripple-element {
  background-color: rgba(16, 122, 131, 0.26);
}

.nx-checkbox__label_required {
  color: #d53f1e;
}

.nx-checkbox-group__label_required {
  color: #d53f1e;
}

.nx-chip,
.nx-chip.nx-chip-selected {
  opacity: 1;
}
.nx-chip i.nx-chip-remove,
.nx-chip.nx-chip-selected i.nx-chip-remove {
  opacity: 0.54;
}
.nx-chip:not(:hover),
.nx-chip.nx-chip-selected:not(:hover) {
  background-color: rgba(0, 0, 0, 0.15);
  color: #000;
  transition: background-color 400ms cubic-bezier(0.25, 0.8, 0.25, 1), color 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nx-chip:not(:hover) i.nx-chip-remove,
.nx-chip.nx-chip-selected:not(:hover) i.nx-chip-remove {
  color: rgba(0, 0, 0, 0.35);
}
.nx-chip:hover,
.nx-chip.nx-chip-selected:hover {
  background-color: rgba(0, 0, 0, 0.55);
  color: #fff;
  transition: background-color 400ms cubic-bezier(0.25, 0.8, 0.25, 1), color 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
}
.nx-datepicker-content {
  background-color: white;
  color: rgba(0, 0, 0, 0.85);
}

.nx-calendar-header {
  background-color: #2f3b51;
}

.nx-calendar-arrow {
  border-top-color: white;
}

.nx-calendar-controls .nx-calendar-period-button {
  color: white;
}
.nx-calendar-controls .nx-calendar-period-button .mat-button-focus-overlay {
  background-color: rgba(0, 0, 0, 0.12);
}

.nx-calendar-controls .nx-calendar-next-button::after, .nx-calendar-controls .nx-calendar-previous-button::after {
  border-color: white;
}

.nx-calendar-table-header {
  color: rgba(0, 0, 0, 0.38);
}

.nx-calendar-table-header-divider::after {
  background: rgba(0, 0, 0, 0.12);
}

.nx-calendar-body-label {
  color: rgba(0, 0, 0, 0.54);
}

.nx-calendar-body-cell-content {
  color: rgba(0, 0, 0, 0.85);
  border-color: transparent;
}

.nx-calendar-body-disabled > .nx-calendar-body-cell-content:not(.nx-calendar-body-selected) {
  color: rgba(0, 0, 0, 0.35);
}

:not(.nx-calendar-body-disabled):hover > .nx-calendar-body-cell-content:not(.nx-calendar-body-selected),
.cdk-keyboard-focused .nx-calendar-body-active > .nx-calendar-body-cell-content:not(.nx-calendar-body-selected),
.cdk-program-focused .nx-calendar-body-active > .nx-calendar-body-cell-content:not(.nx-calendar-body-selected) {
  background-color: rgba(0, 0, 0, 0.04);
}

.nx-calendar-body-selected {
  background-color: #2f3b51;
  color: white;
}

.nx-calendar-body-disabled > .nx-calendar-body-selected {
  background-color: rgba(47, 59, 81, 0.4);
}

.nx-calendar-body-today:not(.nx-calendar-body-selected) {
  border-color: rgba(0, 0, 0, 0.38);
}
.nx-calendar-body-today.nx-calendar-body-selected {
  box-shadow: inset 0 0 0 1px white;
}

.nx-calendar-body-disabled > .nx-calendar-body-today:not(.nx-calendar-body-selected) {
  border-color: rgba(0, 0, 0, 0.18);
}

.nx-datepicker-toggle-active {
  color: #2f3b51;
}

.nx-predefined-date-range:hover:not(.nx-predefined-date-range-selected) {
  background-color: rgba(0, 0, 0, 0.04);
}

.nx-predefined-date-range-selected {
  background-color: #107a83;
  color: white !important;
}

.nx-drp-col-picker-1 {
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.nx-drp-col-picker-2 {
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.nx-drp-selected-date,
.nx-calendar-body-cell.nx-drp-selected-date-parent-first .nx-drp-selected-date,
.nx-calendar-body-cell.nx-drp-selected-date-parent-first.nx-calendar-body-active .nx-drp-selected-date.nx-calendar-body-today,
.nx-calendar-body-cell.nx-drp-selected-date-parent-first.nx-calendar-body-active .nx-drp-selected-date,
.nx-calendar-body-cell.nx-drp-selected-date-parent-first:hover .nx-drp-selected-date,
.nx-calendar-body-cell.nx-drp-selected-date-parent-first.nx-calendar-body-active:hover .nx-drp-selected-date.nx-calendar-body-today,
.nx-calendar-body-cell.nx-drp-selected-date-parent-first.nx-calendar-body-active:hover .nx-drp-selected-date,
.nx-drp-selected-date-parent-first.nx-drp-selected-range-completed:hover .nx-drp-selected-date,
.nx-drp-selected-date-parent-last.nx-drp-selected-range-completed:hover .nx-drp-selected-date {
  background-color: #107a83;
  color: white;
}

.nx-drp-selected-date-parent-first.nx-drp-selected-range-completed,
.nx-drp-selected-date-parent-last.nx-drp-selected-range-completed,
.nx-drp-inner-date.nx-drp-selected-range-completed,
.nx-calendar-body-active > .nx-calendar-body-cell-content.nx-drp-inner-date.nx-drp-selected-range-completed:not(.nx-calendar-body-selected) {
  background-color: #86efff;
}

.nx-dialog-container {
  background: white;
  color: rgba(0, 0, 0, 0.85);
}

.nx-dialog-border {
  border-top-color: #e5e5e5;
  border-bottom-color: #e5e5e5;
}

.nx-expansion-panel {
  background: white;
  color: rgba(0, 0, 0, 0.85);
}
.nx-expansion-panel nx-button-bar,
.nx-expansion-panel .nx-button-bar {
  border-top-color: rgba(0, 0, 0, 0.12);
}

.nx-expansion-panel:not(.nx-expanded) .nx-expansion-panel-header:not([aria-disabled=true]).cdk-keyboard-focused, .nx-expansion-panel:not(.nx-expanded) .nx-expansion-panel-header:not([aria-disabled=true]).cdk-program-focused, .nx-expansion-panel:not(.nx-expanded) .nx-expansion-panel-header:not([aria-disabled=true]):hover {
  background: rgba(0, 0, 0, 0.04);
}

.nx-expansion-panel-header-title {
  color: rgba(0, 0, 0, 0.85);
}

.nx-expansion-panel-header-description,
.nx-expansion-indicator::after {
  color: rgba(0, 0, 0, 0.54);
}

.nx-expansion-panel-header[aria-disabled=true] {
  color: rgba(0, 0, 0, 0.38);
}
.nx-expansion-panel-header[aria-disabled=true] .nx-expansion-panel-header-title,
.nx-expansion-panel-header[aria-disabled=true] .nx-expansion-panel-header-description {
  color: inherit;
}

.nx-panel-alert-warning {
  background-color: #f2d681;
}
.nx-panel-alert-warning .nx-expansion-panel-header-title {
  color: rgba(0, 0, 0, 0.85);
}
.nx-panel-alert-warning .nx-expansion-panel-content {
  background: white;
}
.nx-panel-alert-warning .nx-expansion-panel-header-description,
.nx-panel-alert-warning .nx-expansion-indicator::after {
  color: #3e3e3e;
}

.nx-panel-alert-success {
  background-color: #9ad39b;
}
.nx-panel-alert-success .nx-expansion-panel-header-title {
  color: rgba(0, 0, 0, 0.85);
}
.nx-panel-alert-success .nx-expansion-panel-content {
  background: white;
}
.nx-panel-alert-success .nx-expansion-panel-header-description,
.nx-panel-alert-success .nx-expansion-indicator::after {
  color: #3e3e3e;
}

.nx-panel-alert-info {
  background-color: #91cef2;
}
.nx-panel-alert-info .nx-expansion-panel-header-title {
  color: rgba(0, 0, 0, 0.85);
}
.nx-panel-alert-info .nx-expansion-panel-content {
  background: white;
}
.nx-panel-alert-info .nx-expansion-panel-header-description,
.nx-panel-alert-info .nx-expansion-indicator::after {
  color: #3e3e3e;
}

.nx-panel-alert-danger {
  background-color: #ea9f8e;
}
.nx-panel-alert-danger .nx-expansion-panel-header-title {
  color: rgba(0, 0, 0, 0.85);
}
.nx-panel-alert-danger .nx-expansion-panel-content {
  background: white;
}
.nx-panel-alert-danger .nx-expansion-panel-header-description,
.nx-panel-alert-danger .nx-expansion-indicator::after {
  color: #3e3e3e;
}

.nx-filter-chip-text {
  color: #d53f1e !important;
}

.nx-file-upload .nx-file-upload-drag-drop-box {
  background-color: #f5f5f5;
  border-color: #bdbdbd !important;
  color: rgba(0, 0, 0, 0.38);
}
.nx-file-upload .nx-file-upload-drag-drop-box.nx-file-upload-drag-drop-highlight {
  border-color: #2f3b51 !important;
}
.nx-file-upload .nx-file-upload-choose {
  background-color: #107a83;
  color: #fff;
}
.nx-file-upload .nx-file-upload-choose .nx-icon {
  color: #fff;
}
.nx-file-upload .nx-file-upload-choose.nx-choose-disabled {
  background-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.38);
}
.nx-file-upload .nx-file-upload-choose.nx-choose-disabled .nx-icon {
  color: rgba(0, 0, 0, 0.38) !important;
}

/* Nx added boxed form-field for textarea */
.nx-form-field-boxed .mat-input-flex {
  border: 1px solid rgba(0, 0, 0, 0.42);
  transition: border 150ms linear;
}
.nx-form-field-boxed.mat-focused .mat-input-flex {
  border-width: 2px;
  border-style: solid;
}
.nx-form-field-boxed.mat-focused .mat-input-flex {
  border-color: #2f3b51;
  transition: border 150ms linear;
}
.nx-form-field-boxed.mat-form-field-invalid .mat-input-flex {
  border-color: #d53f1e;
  transition: border 150ms linear;
}

.mat-form-field-placeholder {
  color: rgba(0, 0, 0, 0.54);
}

.mat-hint, .nx-hint {
  color: rgba(0, 0, 0, 0.54);
}

.mat-focused .mat-form-field-placeholder {
  color: #2f3b51;
}
.mat-focused .mat-form-field-placeholder.mat-accent {
  color: #107a83;
}
.mat-focused .mat-form-field-placeholder.mat-warn {
  color: #d53f1e;
}

.mat-focused .mat-form-field-required-marker {
  color: #2f3b51;
}

.mat-form-field-underline {
  background-color: rgba(0, 0, 0, 0.42);
}

.mat-form-field-disabled {
  color: rgba(0, 0, 0, 0.35);
}
.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}

.mat-form-field-ripple {
  background-color: #2f3b51;
}
.mat-form-field-ripple.mat-accent {
  background-color: #107a83;
}
.mat-form-field-ripple.mat-warn {
  background-color: #d53f1e;
}

.mat-form-field-invalid .mat-form-field-placeholder {
  color: #d53f1e;
}
.mat-form-field-invalid .mat-form-field-placeholder.mat-accent,
.mat-form-field-invalid .mat-form-field-placeholder .mat-form-field-required-marker {
  color: #d53f1e;
}
.mat-form-field-invalid .mat-form-field-ripple {
  background-color: #d53f1e;
}

.mat-error, .nx-error {
  color: #d53f1e;
}

.nx-form-message {
  color: rgba(0, 0, 0, 0.85);
}
.nx-form-message-error {
  color: #d53f1e;
}
.nx-form-message-hint {
  color: rgba(0, 0, 0, 0.54);
}

.nx-icon {
  color: rgba(0, 0, 0, 0.54);
}

.mat-fab .nx-icon {
  color: #fff;
}

.nx-list-item {
  color: rgba(0, 0, 0, 0.85);
}
.nx-list-item .nx-subheader {
  color: rgba(0, 0, 0, 0.54);
}
.nx-list-item .nx-chip:hover {
  background-color: rgba(0, 0, 0, 0.15);
  color: #000;
}

.nx-divider {
  border-top-color: rgba(0, 0, 0, 0.12);
}

.nx-nav-list .nx-list-item {
  outline: none;
}
.nx-nav-list .nx-list-item:hover, .nx-nav-list .nx-list-item:focus {
  background: rgba(0, 0, 0, 0.05);
}
.nx-nav-list .nx-list-item.nx-list-item-selected {
  background: rgba(0, 0, 0, 0.12);
}
.nx-nav-list .nx-list-item.nx-list-item-selected .nx-icon {
  color: #107a83;
}

.nx-popover {
  background-color: #fff;
  border: 1px solid #dcddde;
}

.nx-popover-title {
  background-color: rgba(0, 0, 0, 0.12);
  border-bottom: #dcddde;
}

.nx-popover.top > .nx-popover-arrow {
  border-top-color: #dcddde;
}

.nx-popover.right > .nx-popover-arrow {
  border-right-color: #dcddde;
}

.nx-popover.left > .nx-popover-arrow {
  border-left-color: #dcddde;
}

.nx-popover.bottom > .nx-popover-arrow {
  border-bottom-color: #dcddde;
}

.nx-popover.right > .nx-popover-arrow::after {
  border-right-color: #fff;
}

.nx-popover.left > .nx-popover-arrow::after {
  border-left-color: #fff;
}

.nx-popover.top > .nx-popover-arrow::after {
  border-top-color: #fff;
}

.nx-popover.bottom > .nx-popover-arrow::after {
  border-bottom-color: #fff;
}

.nx-popover-arrow-header-bg .nx-popover.right > .nx-popover-arrow::after {
  border-right-color: #dcddde;
}

.nx-popover-arrow-header-bg .nx-popover.bottom > .nx-popover-arrow::after {
  border-bottom-color: #dcddde;
}

.nx-popover-arrow-header-bg .nx-popover.left > .nx-popover-arrow::after {
  border-left-color: #dcddde;
}

.nx-option {
  color: rgba(0, 0, 0, 0.85);
}
.nx-option:hover:not(.nx-option-disabled), .nx-option:focus:not(.nx-option-disabled) {
  background: rgba(0, 0, 0, 0.04);
}
.nx-option.nx-selected:not(.nx-option-multiple):not(.nx-option-disabled) {
  background: rgba(0, 0, 0, 0.04);
}
.nx-option.nx-active {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.85);
}
.nx-option.nx-option-disabled {
  color: rgba(0, 0, 0, 0.38);
}
.nx-option .nx-option-text {
  vertical-align: middle;
}
.nx-option .nx-option-search-term-highlight {
  background-color: #86efff;
}

.mat-primary .nx-option.nx-selected:not(.nx-option-disabled) {
  color: #2f3b51;
}

.mat-accent .nx-option.nx-selected:not(.nx-option-disabled) {
  color: #107a83;
}

.mat-warn .nx-option.nx-selected:not(.nx-option-disabled) {
  color: #d53f1e;
}

.nx-paginator {
  background: white;
}

.nx-paginator,
.nx-paginator-page-size .nx-select-trigger {
  color: rgba(0, 0, 0, 0.54);
}

.nx-paginator-decrement,
.nx-paginator-increment {
  border-top: 2px solid rgba(0, 0, 0, 0.54);
  border-right: 2px solid rgba(0, 0, 0, 0.54);
}

.nx-paginator-first,
.nx-paginator-last {
  border-top: 2px solid rgba(0, 0, 0, 0.54);
}

.nx-icon-button[disabled] .nx-paginator-decrement,
.nx-icon-button[disabled] .nx-paginator-increment,
.nx-icon-button[disabled] .nx-paginator-first,
.nx-icon-button[disabled] .nx-paginator-last {
  border-color: rgba(0, 0, 0, 0.38);
}

.nx-popover {
  background-color: #fff;
  border: 1px solid #dcddde;
}

.nx-popover-title {
  background-color: rgba(0, 0, 0, 0.12);
  border-bottom: #dcddde;
}

.nx-popover.top > .nx-popover-arrow {
  border-top-color: #dcddde;
}

.nx-popover.right > .nx-popover-arrow {
  border-right-color: #dcddde;
}

.nx-popover.left > .nx-popover-arrow {
  border-left-color: #dcddde;
}

.nx-popover.bottom > .nx-popover-arrow {
  border-bottom-color: #dcddde;
}

.nx-popover.right > .nx-popover-arrow::after {
  border-right-color: #fff;
}

.nx-popover.left > .nx-popover-arrow::after {
  border-left-color: #fff;
}

.nx-popover.top > .nx-popover-arrow::after {
  border-top-color: #fff;
}

.nx-popover.bottom > .nx-popover-arrow::after {
  border-bottom-color: #fff;
}

.nx-popover-arrow-header-bg .nx-popover.right > .nx-popover-arrow::after {
  border-right-color: #dcddde;
}

.nx-popover-arrow-header-bg .nx-popover.bottom > .nx-popover-arrow::after {
  border-bottom-color: #dcddde;
}

.nx-popover-arrow-header-bg .nx-popover.left > .nx-popover-arrow::after {
  border-left-color: #dcddde;
}

.nx-progress-bar-background {
  fill: #c1c4cb;
}

.nx-progress-bar-buffer {
  background-color: #ececec;
}

.nx-progress-bar-fill::after {
  background-color: #107a83;
}

.nx-progress-bar.nx-accent .nx-progress-bar-background {
  fill: #b7d7da;
}
.nx-progress-bar.nx-accent .nx-progress-bar-buffer {
  background-color: #b7d7da;
}
.nx-progress-bar.nx-accent .nx-progress-bar-fill::after {
  background-color: #107a83;
}

.nx-progress-bar.nx-warn .nx-progress-bar-background {
  fill: #f2c5bc;
}
.nx-progress-bar.nx-warn .nx-progress-bar-buffer {
  background-color: #f2c5bc;
}
.nx-progress-bar.nx-warn .nx-progress-bar-fill::after {
  background-color: #d53f1e;
}

.nx-progress-spinner circle,
.nx-spinner circle {
  stroke: #107a83;
}
.nx-progress-spinner.nx-accent circle,
.nx-spinner.nx-accent circle {
  stroke: #107a83;
}
.nx-progress-spinner.nx-primary circle,
.nx-spinner.nx-primary circle {
  stroke: #2f3b51;
}
.nx-progress-spinner.nx-warn circle,
.nx-spinner.nx-warn circle {
  stroke: #d53f1e;
}

.nx-page-spinner {
  background-color: #fff;
}
.nx-page-spinner .nx-loading-text {
  color: rgba(0, 0, 0, 0.85);
}

.nx-radio-outer-circle {
  border-color: rgba(0, 0, 0, 0.54);
}

.nx-radio-button.nx-radio-disabled .nx-radio-outer-circle {
  border-color: rgba(0, 0, 0, 0.38);
}
.nx-radio-button.nx-radio-disabled .nx-radio-ripple .mat-ripple-element,
.nx-radio-button.nx-radio-disabled .nx-radio-inner-circle {
  background-color: rgba(0, 0, 0, 0.38);
}
.nx-radio-button.nx-radio-disabled .nx-radio-label-content {
  color: rgba(0, 0, 0, 0.38);
}
.nx-radio-button.mat-primary.nx-radio-checked .nx-radio-outer-circle {
  border-color: #2f3b51;
}
.nx-radio-button.mat-primary .nx-radio-inner-circle {
  background-color: #2f3b51;
}
.nx-radio-button.mat-primary .nx-radio-ripple .mat-ripple-element {
  background-color: rgba(47, 59, 81, 0.26);
}
.nx-radio-button.mat-accent.nx-radio-checked .nx-radio-outer-circle {
  border-color: #107a83;
}
.nx-radio-button.mat-accent .nx-radio-inner-circle {
  background-color: #107a83;
}
.nx-radio-button.mat-accent .nx-radio-ripple .mat-ripple-element {
  background-color: rgba(16, 122, 131, 0.26);
}
.nx-radio-button.mat-warn.nx-radio-checked .nx-radio-outer-circle {
  border-color: #d53f1e;
}
.nx-radio-button.mat-warn .nx-radio-inner-circle {
  background-color: #d53f1e;
}
.nx-radio-button.mat-warn .nx-radio-ripple .mat-ripple-element {
  background-color: rgba(213, 63, 30, 0.26);
}

.nx-range-slider .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26);
}
.nx-range-slider .mat-primary .mat-slider-track-fill,
.nx-range-slider .mat-primary .mat-slider-thumb,
.nx-range-slider .mat-primary .mat-slider-thumb-label {
  background-color: #2f3b51;
}
.nx-range-slider .mat-primary .mat-slider-thumb-label-text {
  color: white;
}
.nx-range-slider .mat-primary .mat-slider-thumb:hover {
  background-color: #58a2a8;
}
.nx-range-slider .mat-accent .mat-slider-track-fill,
.nx-range-slider .mat-accent .mat-slider-thumb,
.nx-range-slider .mat-accent .mat-slider-thumb-label {
  background-color: #107a83;
}
.nx-range-slider .mat-accent .mat-slider-thumb-label-text {
  color: white;
}
.nx-range-slider .mat-warn .mat-slider-track-fill,
.nx-range-slider .mat-warn .mat-slider-thumb,
.nx-range-slider .mat-warn .mat-slider-thumb-label {
  background-color: #d53f1e;
}
.nx-range-slider .mat-warn .mat-slider-thumb-label-text {
  color: white;
}
.nx-range-slider .mat-slider-focus-ring {
  background-color: rgba(16, 122, 131, 0.2);
}
.nx-range-slider .mat-slider:hover .mat-slider-track-background,
.nx-range-slider .cdk-focused .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.38);
}
.nx-range-slider .mat-slider-disabled .mat-slider-track-background,
.nx-range-slider .mat-slider-disabled .mat-slider-track-fill,
.nx-range-slider .mat-slider-disabled .mat-slider-thumb {
  background-color: rgba(0, 0, 0, 0.38);
}
.nx-range-slider .mat-slider-disabled:hover .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.38);
}
.nx-range-slider .mat-slider-min-value .mat-slider-focus-ring {
  background-color: rgba(0, 0, 0, 0.12);
}
.nx-range-slider .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
.nx-range-slider .mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.87);
}
.nx-range-slider .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
.nx-range-slider .mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.26);
}
.nx-range-slider .mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26);
  background-color: transparent;
}
.nx-range-slider .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .nx-range-slider .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.38);
}
.nx-range-slider .mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .nx-range-slider .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.38);
}
.nx-range-slider .mat-slider-has-ticks .mat-slider-wrapper::after {
  border-color: rgba(0, 0, 0, 0.54);
}
.nx-range-slider .mat-slider-horizontal .mat-slider-ticks {
  background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.54) 2px, transparent 0, transparent);
  background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.54) 2px, transparent 0, transparent);
}
.nx-range-slider .mat-slider-vertical .mat-slider-ticks {
  background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.54) 2px, transparent 0, transparent);
}

.nx-select-disabled .nx-select-value,
.nx-select-arrow {
  color: rgba(0, 0, 0, 0.54);
}

.nx-select-content,
.nx-select-panel-done-animating {
  background: white;
  color-scheme: light;
}

.nx-select-value {
  color: rgba(0, 0, 0, 0.85);
}

.nx-select-panel .nx-option.nx-selected:not(.nx-option-multiple) {
  background: rgba(0, 0, 0, 0.12);
}

.mat-form-field.mat-focused.mat-primary .nx-select-arrow {
  color: #2f3b51;
}
.mat-form-field.mat-focused.mat-accent .nx-select-arrow {
  color: #107a83;
}
.mat-form-field.mat-focused.mat-warn .nx-select-arrow {
  color: #d53f1e;
}
.mat-form-field .nx-select.nx-select-invalid .nx-select-arrow {
  color: #d53f1e;
}
.mat-form-field .nx-select.nx-select-disabled .nx-select-arrow {
  color: rgba(0, 0, 0, 0.54);
}

.nx-option-pseudo-checkbox.mat-pseudo-checkbox-checked,
.nx-option-pseudo-checkbox.mat-pseudo-checkbox-indeterminate {
  background: #107a83;
}

.nx-select-trigger .example-additional-selection {
  color: #737373;
  font-size: 12px;
}

.nx-option-text {
  text-transform: capitalize;
}

.nx-select-search-clear .nx-icon {
  color: rgba(0, 0, 0, 0.54) !important;
}

.nx-select-all {
  color: rgba(0, 0, 0, 0.85);
}

.nx-slide-toggle.nx-checked:not(.nx-disabled) .nx-slide-toggle-thumb {
  background-color: #107a83;
}
.nx-slide-toggle.nx-checked:not(.nx-disabled) .nx-slide-toggle-bar {
  background-color: rgba(16, 122, 131, 0.5);
}
.nx-slide-toggle:not(.nx-checked) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.06);
}
.nx-slide-toggle .mat-ripple-element {
  background-color: rgba(16, 122, 131, 0.12);
}
.nx-slide-toggle.mat-primary.nx-checked:not(.nx-disabled) .nx-slide-toggle-thumb {
  background-color: #2f3b51;
}
.nx-slide-toggle.mat-primary.nx-checked:not(.nx-disabled) .nx-slide-toggle-bar {
  background-color: rgba(47, 59, 81, 0.5);
}
.nx-slide-toggle.mat-primary:not(.nx-checked) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.06);
}
.nx-slide-toggle.mat-primary .mat-ripple-element {
  background-color: rgba(47, 59, 81, 0.12);
}
.nx-slide-toggle.mat-warn.nx-checked:not(.nx-disabled) .nx-slide-toggle-thumb {
  background-color: #d53f1e;
}
.nx-slide-toggle.mat-warn.nx-checked:not(.nx-disabled) .nx-slide-toggle-bar {
  background-color: rgba(213, 63, 30, 0.5);
}
.nx-slide-toggle.mat-warn:not(.nx-checked) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.06);
}
.nx-slide-toggle.mat-warn .mat-ripple-element {
  background-color: rgba(213, 63, 30, 0.12);
}

.nx-disabled .nx-slide-toggle-thumb {
  background-color: #bdbdbd;
}
.nx-disabled .nx-slide-toggle-bar {
  background-color: rgba(0, 0, 0, 0.1);
}

.nx-slide-toggle-thumb {
  background-color: #fafafa;
}

.nx-slide-toggle-bar {
  background-color: rgba(0, 0, 0, 0.38);
}

.nx-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26);
}

.mat-primary .nx-slider-track-fill,
.mat-primary .nx-slider-thumb,
.mat-primary .nx-slider-thumb-label {
  background-color: #2f3b51;
}
.mat-primary .nx-slider-thumb-label-text {
  color: white;
}
.mat-primary .nx-slider-thumb:hover {
  background-color: #58a2a8;
}

.mat-accent .nx-slider-track-fill,
.mat-accent .nx-slider-thumb,
.mat-accent .nx-slider-thumb-label {
  background-color: #107a83;
}
.mat-accent .nx-slider-thumb-label-text {
  color: white;
}

.mat-warn .nx-slider-track-fill,
.mat-warn .nx-slider-thumb,
.mat-warn .nx-slider-thumb-label {
  background-color: #d53f1e;
}
.mat-warn .nx-slider-thumb-label-text {
  color: white;
}

.nx-slider-focus-ring {
  background-color: rgba(16, 122, 131, 0.2);
}

.nx-slider:hover .nx-slider-track-background,
.cdk-focused .nx-slider-track-background {
  background-color: rgba(0, 0, 0, 0.38);
}

.nx-slider-disabled .nx-slider-track-background,
.nx-slider-disabled .nx-slider-track-fill,
.nx-slider-disabled .nx-slider-thumb {
  background-color: rgba(0, 0, 0, 0.38);
}
.nx-slider-disabled:hover .nx-slider-track-background {
  background-color: rgba(0, 0, 0, 0.38);
}

.nx-slider-min-value .nx-slider-focus-ring {
  background-color: rgba(0, 0, 0, 0.12);
}
.nx-slider-min-value.nx-slider-thumb-label-showing .nx-slider-thumb,
.nx-slider-min-value.nx-slider-thumb-label-showing .nx-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.87);
}
.nx-slider-min-value.nx-slider-thumb-label-showing.cdk-focused .nx-slider-thumb,
.nx-slider-min-value.nx-slider-thumb-label-showing.cdk-focused .nx-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.26);
}
.nx-slider-min-value:not(.nx-slider-thumb-label-showing) .nx-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26);
  background-color: transparent;
}
.nx-slider-min-value:not(.nx-slider-thumb-label-showing):hover .nx-slider-thumb, .nx-slider-min-value:not(.nx-slider-thumb-label-showing).cdk-focused .nx-slider-thumb {
  border-color: rgba(0, 0, 0, 0.38);
}
.nx-slider-min-value:not(.nx-slider-thumb-label-showing):hover.nx-slider-disabled .nx-slider-thumb, .nx-slider-min-value:not(.nx-slider-thumb-label-showing).cdk-focused.nx-slider-disabled .nx-slider-thumb {
  border-color: rgba(0, 0, 0, 0.38);
}

.nx-slider-has-ticks .nx-slider-wrapper::after {
  border-color: rgba(0, 0, 0, 0.54);
}

.nx-slider-horizontal .nx-slider-ticks {
  background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.54) 2px, transparent 0, transparent);
  background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.54) 2px, transparent 0, transparent);
}

.nx-slider-vertical .nx-slider-ticks {
  background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.54), rgba(0, 0, 0, 0.54) 2px, transparent 0, transparent);
}

.nx-step-header__icon {
  background: rgba(0, 0, 0, 0.35);
}
.nx-step-header__icon .nx-step-header-icon {
  color: #fff;
}

.nx-step-header__label {
  color: rgba(0, 0, 0, 0.85);
}

.nx-step-header__icon--disabled .nx-step-header-icon--index {
  color: #fff;
}

.nx-step-header__label--disabled {
  color: rgba(0, 0, 0, 0.35);
}

.nx-step-header__icon--editable {
  background: #2f3b51;
}
.nx-step-header__icon--editable .nx-step-header-icon--edit {
  color: #fff;
}

.nx-step-header__label--editable {
  color: rgba(0, 0, 0, 0.85);
}

.nx-step-header__icon--selected {
  background: #2f3b51;
}
.nx-step-header__icon--selected .nx-step-header-icon--index {
  color: #fff;
}

.nx-step-header__label--selected {
  color: rgba(0, 0, 0, 0.85);
}

.nx-step-header__icon--completed {
  background: #2f3b51;
}
.nx-step-header__icon--completed .nx-step-header-icon--done {
  color: #fff;
}

.nx-step-header__label--completed {
  color: rgba(0, 0, 0, 0.85);
}

.nx-stepper-horizontal, .nx-stepper-vertical {
  background-color: white;
}

.nx-stepper-vertical-line::before {
  border-left-color: rgba(0, 0, 0, 0.15);
}

.nx-stepper-horizontal-line {
  border-top-color: rgba(0, 0, 0, 0.15);
}

.nx-table {
  background: white;
}

.nx-row, .nx-header-row {
  border-bottom-color: rgba(0, 0, 0, 0.12);
}

.nx-footer-row {
  border-top-color: rgba(0, 0, 0, 0.12);
}

.nx-header-cell {
  color: rgba(0, 0, 0, 0.54);
}

.nx-cell, .nx-footer-cell {
  color: rgba(0, 0, 0, 0.85);
}

.nx-tab-nav-bar,
.nx-tab-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.nx-tab-group-inverted-header .nx-tab-nav-bar,
.nx-tab-group-inverted-header .nx-tab-header {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  border-bottom: none;
}

.nx-tab-label,
.nx-tab-link {
  color: rgba(0, 0, 0, 0.85);
}
.nx-tab-label.nx-tab-disabled,
.nx-tab-link.nx-tab-disabled {
  color: rgba(0, 0, 0, 0.35);
}

.nx-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.85);
}

.nx-tab-header-pagination-disabled .nx-tab-header-pagination-chevron {
  border-color: rgba(0, 0, 0, 0.35);
}

.nx-tab-group[class*=nx-background-] .nx-tab-header,
.nx-tab-nav-bar[class*=nx-background-] {
  border-bottom: none;
  border-top: none;
}

.nx-tab-group {
  background-color: white;
}

.nx-tab-group.mat-primary .nx-tab-label:not(.nx-tab-disabled):focus,
.nx-tab-group.mat-primary .nx-tab-link:not(.nx-tab-disabled):focus,
.nx-tab-nav-bar.mat-primary .nx-tab-label:not(.nx-tab-disabled):focus,
.nx-tab-nav-bar.mat-primary .nx-tab-link:not(.nx-tab-disabled):focus {
  background-color: rgba(193, 196, 203, 0.3);
}
.nx-tab-group.mat-primary .nx-ink-bar,
.nx-tab-nav-bar.mat-primary .nx-ink-bar {
  background-color: #2f3b51;
}
.nx-tab-group.mat-primary.nx-background-primary .nx-ink-bar,
.nx-tab-nav-bar.mat-primary.nx-background-primary .nx-ink-bar {
  background-color: white;
}
.nx-tab-group.mat-accent .nx-tab-label:not(.nx-tab-disabled):focus,
.nx-tab-group.mat-accent .nx-tab-link:not(.nx-tab-disabled):focus,
.nx-tab-nav-bar.mat-accent .nx-tab-label:not(.nx-tab-disabled):focus,
.nx-tab-nav-bar.mat-accent .nx-tab-link:not(.nx-tab-disabled):focus {
  background-color: rgba(183, 215, 218, 0.3);
}
.nx-tab-group.mat-accent .nx-ink-bar,
.nx-tab-nav-bar.mat-accent .nx-ink-bar {
  background-color: #107a83;
}
.nx-tab-group.mat-accent.nx-background-accent .nx-ink-bar,
.nx-tab-nav-bar.mat-accent.nx-background-accent .nx-ink-bar {
  background-color: white;
}
.nx-tab-group.mat-accent.nx-background-primary .nx-ink-bar,
.nx-tab-nav-bar.mat-accent.nx-background-primary .nx-ink-bar {
  background-color: #07ddff;
}
.nx-tab-group.mat-warn .nx-tab-label:not(.nx-tab-disabled):focus,
.nx-tab-group.mat-warn .nx-tab-link:not(.nx-tab-disabled):focus,
.nx-tab-nav-bar.mat-warn .nx-tab-label:not(.nx-tab-disabled):focus,
.nx-tab-nav-bar.mat-warn .nx-tab-link:not(.nx-tab-disabled):focus {
  background-color: rgba(242, 197, 188, 0.3);
}
.nx-tab-group.mat-warn .nx-ink-bar,
.nx-tab-nav-bar.mat-warn .nx-ink-bar {
  background-color: #d53f1e;
}
.nx-tab-group.mat-warn.nx-background-warn .nx-ink-bar,
.nx-tab-nav-bar.mat-warn.nx-background-warn .nx-ink-bar {
  background-color: white;
}
.nx-tab-group.nx-background-primary .nx-tab-label:not(.nx-tab-disabled):focus,
.nx-tab-group.nx-background-primary .nx-tab-link:not(.nx-tab-disabled):focus,
.nx-tab-nav-bar.nx-background-primary .nx-tab-label:not(.nx-tab-disabled):focus,
.nx-tab-nav-bar.nx-background-primary .nx-tab-link:not(.nx-tab-disabled):focus {
  background-color: rgba(193, 196, 203, 0.3);
}
.nx-tab-group.nx-background-primary .nx-tab-header,
.nx-tab-group.nx-background-primary .nx-tab-links,
.nx-tab-nav-bar.nx-background-primary .nx-tab-header,
.nx-tab-nav-bar.nx-background-primary .nx-tab-links {
  background-color: #2f3b51;
}
.nx-tab-group.nx-background-primary .nx-tab-label,
.nx-tab-group.nx-background-primary .nx-tab-link,
.nx-tab-nav-bar.nx-background-primary .nx-tab-label,
.nx-tab-nav-bar.nx-background-primary .nx-tab-link {
  color: white;
}
.nx-tab-group.nx-background-primary .nx-tab-label.nx-tab-disabled,
.nx-tab-group.nx-background-primary .nx-tab-link.nx-tab-disabled,
.nx-tab-nav-bar.nx-background-primary .nx-tab-label.nx-tab-disabled,
.nx-tab-nav-bar.nx-background-primary .nx-tab-link.nx-tab-disabled {
  color: rgba(255, 255, 255, 0.4);
}
.nx-tab-group.nx-background-primary .nx-tab-header-pagination-chevron,
.nx-tab-nav-bar.nx-background-primary .nx-tab-header-pagination-chevron {
  border-color: white;
}
.nx-tab-group.nx-background-primary .nx-tab-header-pagination-disabled .nx-tab-header-pagination-chevron,
.nx-tab-nav-bar.nx-background-primary .nx-tab-header-pagination-disabled .nx-tab-header-pagination-chevron {
  border-color: rgba(255, 255, 255, 0.4);
}
.nx-tab-group.nx-background-primary .mat-ripple-element,
.nx-tab-nav-bar.nx-background-primary .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.12);
}
.nx-tab-group.nx-background-accent .nx-tab-label:not(.nx-tab-disabled):focus,
.nx-tab-group.nx-background-accent .nx-tab-link:not(.nx-tab-disabled):focus,
.nx-tab-nav-bar.nx-background-accent .nx-tab-label:not(.nx-tab-disabled):focus,
.nx-tab-nav-bar.nx-background-accent .nx-tab-link:not(.nx-tab-disabled):focus {
  background-color: rgba(183, 215, 218, 0.3);
}
.nx-tab-group.nx-background-accent .nx-tab-header,
.nx-tab-group.nx-background-accent .nx-tab-links,
.nx-tab-nav-bar.nx-background-accent .nx-tab-header,
.nx-tab-nav-bar.nx-background-accent .nx-tab-links {
  background-color: #107a83;
}
.nx-tab-group.nx-background-accent .nx-tab-label,
.nx-tab-group.nx-background-accent .nx-tab-link,
.nx-tab-nav-bar.nx-background-accent .nx-tab-label,
.nx-tab-nav-bar.nx-background-accent .nx-tab-link {
  color: white;
}
.nx-tab-group.nx-background-accent .nx-tab-label.nx-tab-disabled,
.nx-tab-group.nx-background-accent .nx-tab-link.nx-tab-disabled,
.nx-tab-nav-bar.nx-background-accent .nx-tab-label.nx-tab-disabled,
.nx-tab-nav-bar.nx-background-accent .nx-tab-link.nx-tab-disabled {
  color: rgba(255, 255, 255, 0.4);
}
.nx-tab-group.nx-background-accent .nx-tab-header-pagination-chevron,
.nx-tab-nav-bar.nx-background-accent .nx-tab-header-pagination-chevron {
  border-color: white;
}
.nx-tab-group.nx-background-accent .nx-tab-header-pagination-disabled .nx-tab-header-pagination-chevron,
.nx-tab-nav-bar.nx-background-accent .nx-tab-header-pagination-disabled .nx-tab-header-pagination-chevron {
  border-color: rgba(255, 255, 255, 0.4);
}
.nx-tab-group.nx-background-accent .mat-ripple-element,
.nx-tab-nav-bar.nx-background-accent .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.12);
}
.nx-tab-group.nx-background-warn .nx-tab-label:not(.nx-tab-disabled):focus,
.nx-tab-group.nx-background-warn .nx-tab-link:not(.nx-tab-disabled):focus,
.nx-tab-nav-bar.nx-background-warn .nx-tab-label:not(.nx-tab-disabled):focus,
.nx-tab-nav-bar.nx-background-warn .nx-tab-link:not(.nx-tab-disabled):focus {
  background-color: rgba(242, 197, 188, 0.3);
}
.nx-tab-group.nx-background-warn .nx-tab-header,
.nx-tab-group.nx-background-warn .nx-tab-links,
.nx-tab-nav-bar.nx-background-warn .nx-tab-header,
.nx-tab-nav-bar.nx-background-warn .nx-tab-links {
  background-color: #d53f1e;
}
.nx-tab-group.nx-background-warn .nx-tab-label,
.nx-tab-group.nx-background-warn .nx-tab-link,
.nx-tab-nav-bar.nx-background-warn .nx-tab-label,
.nx-tab-nav-bar.nx-background-warn .nx-tab-link {
  color: white;
}
.nx-tab-group.nx-background-warn .nx-tab-label.nx-tab-disabled,
.nx-tab-group.nx-background-warn .nx-tab-link.nx-tab-disabled,
.nx-tab-nav-bar.nx-background-warn .nx-tab-label.nx-tab-disabled,
.nx-tab-nav-bar.nx-background-warn .nx-tab-link.nx-tab-disabled {
  color: rgba(255, 255, 255, 0.4);
}
.nx-tab-group.nx-background-warn .nx-tab-header-pagination-chevron,
.nx-tab-nav-bar.nx-background-warn .nx-tab-header-pagination-chevron {
  border-color: white;
}
.nx-tab-group.nx-background-warn .nx-tab-header-pagination-disabled .nx-tab-header-pagination-chevron,
.nx-tab-nav-bar.nx-background-warn .nx-tab-header-pagination-disabled .nx-tab-header-pagination-chevron {
  border-color: rgba(255, 255, 255, 0.4);
}
.nx-tab-group.nx-background-warn .mat-ripple-element,
.nx-tab-nav-bar.nx-background-warn .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.12);
}

.mat-input-element:disabled {
  color: rgba(0, 0, 0, 0.42);
}

.nx-textarea-element:disabled {
  color: rgba(0, 0, 0, 0.42);
}

.nx-time-input-content-container {
  background-color: white;
}
.nx-time-input-content-container input,
.nx-time-input-content-container span {
  background-color: transparent;
}

.nx-time-input-dropdown {
  background-color: white;
  color: rgba(0, 0, 0, 0.85);
}

.nx-time-item {
  border-color: white;
  color: rgba(0, 0, 0, 0.85);
}

.nx-time-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
}

.nx-time-item-selected,
.nx-time-item-selected:hover {
  background-color: #2f3b51;
  color: white;
  border-color: transparent;
}

.time-toggle-button .nx-icon-xs.nx-icon .mat-icon {
  color: #373737;
}

.nx-tree {
  background: white;
}

.nx-tree-node {
  color: rgba(0, 0, 0, 0.85);
}

.nx-tooltip {
  color: white;
  background: #4d4d4d;
}

.mat-form-field.mat-focused .mat-form-field-ripple {
  background-color: #2f3b51;
}

.mat-form-field.mat-form-field-invalid .mat-form-field-label,
.mat-form-field.mat-form-field-invalid.mat-focused .mat-form-field-label {
  color: #d53f1e;
}
.mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,
.mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker,
.mat-form-field.mat-form-field-invalid.mat-focused .mat-form-field-label.mat-accent,
.mat-form-field.mat-form-field-invalid.mat-focused .mat-form-field-label .mat-form-field-required-marker {
  color: #d53f1e;
}
.mat-form-field.mat-form-field-invalid .mat-form-field-ripple,
.mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent,
.mat-form-field.mat-form-field-invalid.mat-focused .mat-form-field-ripple,
.mat-form-field.mat-form-field-invalid.mat-focused .mat-form-field-ripple.mat-accent {
  background-color: #d53f1e;
}

.mat-form-field.mat-focused .mat-form-field-label {
  color: #2f3b51;
}

.mat-form-field.mat-focused.mat-primary .mat-select-arrow {
  color: #2f3b51;
}

.mat-progress-spinner circle, .mat-progress-spinner.mat-accent circle,
.mat-spinner circle,
.mat-spinner.mat-accent circle {
  stroke: #107a83 !important;
}
/*# sourceMappingURL=blk.css.map */
