/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v2.0.0
* Docs at http://ramseyinhouse.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.
* v2.0.0
* Docs at http://ramseyinhouse.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;
  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) ***/
.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;
  }
}
.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 ***/
.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 ***/
.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;
  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) ***/
.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;
  }
}
.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
***********************************************/
/**
 * This mixin adds the correct panel transform styles based
 * on the direction that the menu panel opens.
 */
.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;
}

/**
 * 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.
* v2.0.0
* Docs at http://ramseyinhouse.github.io/scut
*/
/**
 * This mixin adds the correct panel transform styles based
 * on the direction that the menu panel opens.
 */
.nx-tab-label-active {
  opacity: 1 !important;
}

.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%;
  }
}
/**
 * This mixin adds the correct panel transform styles based
 * on the direction that the menu panel opens.
 */
/**
 * This mixin contains shared option styles between the select and
 * autocomplete components.
 */
/**
 * This mixin adds the correct panel transform styles based
 * on the direction that the menu panel opens.
 */
/**
 * This mixin adds the correct panel transform styles based
 * on the direction that the menu panel opens.
 */
/**
 * This mixin adds the correct panel transform styles based
 * on the direction that the menu panel opens.
 */
.nx-tab-label-active {
  opacity: 1 !important;
}

/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v2.0.0
* Docs at http://ramseyinhouse.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.
* v2.0.0
* Docs at http://ramseyinhouse.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;
  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) ***/
.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-xs-1, .nx-col-xs-2, .nx-col-xs-3, .nx-col-xs-4, .nx-col-xs-5, .nx-col-xs-6, .nx-col-xs-7, .nx-col-xs-8, .nx-col-xs-9, .nx-col-xs-10, .nx-col-xs-11, .nx-col-xs-12, .nx-col-sm-1, .nx-col-sm-2, .nx-col-sm-3, .nx-col-sm-4, .nx-col-sm-5, .nx-col-sm-6, .nx-col-sm-7, .nx-col-sm-8, .nx-col-sm-9, .nx-col-sm-10, .nx-col-sm-11, .nx-col-sm-12, .nx-col-md-1, .nx-col-md-2, .nx-col-md-3, .nx-col-md-4, .nx-col-md-5, .nx-col-md-6, .nx-col-md-7, .nx-col-md-8, .nx-col-md-9, .nx-col-md-10, .nx-col-md-11, .nx-col-md-12, .nx-col-lg-1, .nx-col-lg-2, .nx-col-lg-3, .nx-col-lg-4, .nx-col-lg-5, .nx-col-lg-6, .nx-col-lg-7, .nx-col-lg-8, .nx-col-lg-9, .nx-col-lg-10, .nx-col-lg-11, .nx-col-lg-12, .nx-col-xl-1, .nx-col-xl-2, .nx-col-xl-3, .nx-col-xl-4, .nx-col-xl-5, .nx-col-xl-6, .nx-col-xl-7, .nx-col-xl-8, .nx-col-xl-9, .nx-col-xl-10, .nx-col-xl-11, .nx-col-xl-12 {
  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-xs-1, .nx-col-xs-2, .nx-col-xs-3, .nx-col-xs-4, .nx-col-xs-5, .nx-col-xs-6, .nx-col-xs-7, .nx-col-xs-8, .nx-col-xs-9, .nx-col-xs-10, .nx-col-xs-11, .nx-col-xs-12, .nx-col-sm-1, .nx-col-sm-2, .nx-col-sm-3, .nx-col-sm-4, .nx-col-sm-5, .nx-col-sm-6, .nx-col-sm-7, .nx-col-sm-8, .nx-col-sm-9, .nx-col-sm-10, .nx-col-sm-11, .nx-col-sm-12, .nx-col-md-1, .nx-col-md-2, .nx-col-md-3, .nx-col-md-4, .nx-col-md-5, .nx-col-md-6, .nx-col-md-7, .nx-col-md-8, .nx-col-md-9, .nx-col-md-10, .nx-col-md-11, .nx-col-md-12, .nx-col-lg-1, .nx-col-lg-2, .nx-col-lg-3, .nx-col-lg-4, .nx-col-lg-5, .nx-col-lg-6, .nx-col-lg-7, .nx-col-lg-8, .nx-col-lg-9, .nx-col-lg-10, .nx-col-lg-11, .nx-col-lg-12, .nx-col-xl-1, .nx-col-xl-2, .nx-col-xl-3, .nx-col-xl-4, .nx-col-xl-5, .nx-col-xl-6, .nx-col-xl-7, .nx-col-xl-8, .nx-col-xl-9, .nx-col-xl-10, .nx-col-xl-11, .nx-col-xl-12 {
    margin: 0;
    width: auto;
    grid-column-end: span 12;
  }
}
.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 ***/
.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 ***/
.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;
  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) ***/
.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-xs-1, .nx-form-col-xs-2, .nx-form-col-xs-3, .nx-form-col-xs-4, .nx-form-col-xs-5, .nx-form-col-xs-6, .nx-form-col-xs-7, .nx-form-col-xs-8, .nx-form-col-xs-9, .nx-form-col-xs-10, .nx-form-col-xs-11, .nx-form-col-xs-12, .nx-form-col-sm-1, .nx-form-col-sm-2, .nx-form-col-sm-3, .nx-form-col-sm-4, .nx-form-col-sm-5, .nx-form-col-sm-6, .nx-form-col-sm-7, .nx-form-col-sm-8, .nx-form-col-sm-9, .nx-form-col-sm-10, .nx-form-col-sm-11, .nx-form-col-sm-12, .nx-form-col-md-1, .nx-form-col-md-2, .nx-form-col-md-3, .nx-form-col-md-4, .nx-form-col-md-5, .nx-form-col-md-6, .nx-form-col-md-7, .nx-form-col-md-8, .nx-form-col-md-9, .nx-form-col-md-10, .nx-form-col-md-11, .nx-form-col-md-12, .nx-form-col-lg-1, .nx-form-col-lg-2, .nx-form-col-lg-3, .nx-form-col-lg-4, .nx-form-col-lg-5, .nx-form-col-lg-6, .nx-form-col-lg-7, .nx-form-col-lg-8, .nx-form-col-lg-9, .nx-form-col-lg-10, .nx-form-col-lg-11, .nx-form-col-lg-12, .nx-form-col-xl-1, .nx-form-col-xl-2, .nx-form-col-xl-3, .nx-form-col-xl-4, .nx-form-col-xl-5, .nx-form-col-xl-6, .nx-form-col-xl-7, .nx-form-col-xl-8, .nx-form-col-xl-9, .nx-form-col-xl-10, .nx-form-col-xl-11, .nx-form-col-xl-12 {
  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-xs-1, .nx-form-col-xs-2, .nx-form-col-xs-3, .nx-form-col-xs-4, .nx-form-col-xs-5, .nx-form-col-xs-6, .nx-form-col-xs-7, .nx-form-col-xs-8, .nx-form-col-xs-9, .nx-form-col-xs-10, .nx-form-col-xs-11, .nx-form-col-xs-12, .nx-form-col-sm-1, .nx-form-col-sm-2, .nx-form-col-sm-3, .nx-form-col-sm-4, .nx-form-col-sm-5, .nx-form-col-sm-6, .nx-form-col-sm-7, .nx-form-col-sm-8, .nx-form-col-sm-9, .nx-form-col-sm-10, .nx-form-col-sm-11, .nx-form-col-sm-12, .nx-form-col-md-1, .nx-form-col-md-2, .nx-form-col-md-3, .nx-form-col-md-4, .nx-form-col-md-5, .nx-form-col-md-6, .nx-form-col-md-7, .nx-form-col-md-8, .nx-form-col-md-9, .nx-form-col-md-10, .nx-form-col-md-11, .nx-form-col-md-12, .nx-form-col-lg-1, .nx-form-col-lg-2, .nx-form-col-lg-3, .nx-form-col-lg-4, .nx-form-col-lg-5, .nx-form-col-lg-6, .nx-form-col-lg-7, .nx-form-col-lg-8, .nx-form-col-lg-9, .nx-form-col-lg-10, .nx-form-col-lg-11, .nx-form-col-lg-12, .nx-form-col-xl-1, .nx-form-col-xl-2, .nx-form-col-xl-3, .nx-form-col-xl-4, .nx-form-col-xl-5, .nx-form-col-xl-6, .nx-form-col-xl-7, .nx-form-col-xl-8, .nx-form-col-xl-9, .nx-form-col-xl-10, .nx-form-col-xl-11, .nx-form-col-xl-12 {
    margin: 0;
    width: auto;
    grid-column-end: span 12;
  }
}
.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
***********************************************/
/**
 * This mixin adds the correct panel transform styles based
 * on the direction that the menu panel opens.
 */
.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;
}

/**
 * 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.
* v2.0.0
* Docs at http://ramseyinhouse.github.io/scut
*/
/**
 * This mixin adds the correct panel transform styles based
 * on the direction that the menu panel opens.
 */
.nx-tab-label-active {
  opacity: 1 !important;
}

.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%;
  }
}
/**
 * This mixin adds the correct panel transform styles based
 * on the direction that the menu panel opens.
 */
/**
 * This mixin contains shared option styles between the select and
 * autocomplete components.
 */
/**
 * This mixin adds the correct panel transform styles based
 * on the direction that the menu panel opens.
 */
html {
  --mat-badge-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-badge-text-size: 12px;
  --mat-badge-text-weight: 600;
  --mat-badge-small-size-text-size: 9px;
  --mat-badge-large-size-text-size: 24px;
}

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

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

.mat-h3,
.mat-subtitle-1,
.mat-typography .mat-h3,
.mat-typography .mat-subtitle-1,
.mat-typography h3 {
  font: 400 16px / 1.2 Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}

.mat-h4,
.mat-body-1,
.mat-typography .mat-h4,
.mat-typography .mat-body-1,
.mat-typography h4 {
  font: 400 14px / 1.5 Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}

.mat-h5,
.mat-typography .mat-h5,
.mat-typography h5 {
  font: 700 calc(14px * 0.83) / 1.5 Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 12px;
}

.mat-h6,
.mat-typography .mat-h6,
.mat-typography h6 {
  font: 700 calc(14px * 0.67) / 1.5 Roboto, Arial, Helvetica, sans-serif;
  margin: 0 0 12px;
}

.mat-body-strong,
.mat-subtitle-2,
.mat-typography .mat-body-strong,
.mat-typography .mat-subtitle-2 {
  font: 700 16px / 1.2 Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
}

.mat-body,
.mat-body-2,
.mat-typography .mat-body,
.mat-typography .mat-body-2,
.mat-typography {
  font: 700 14px / 1.5 Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
}
.mat-body p,
.mat-body-2 p,
.mat-typography .mat-body p,
.mat-typography .mat-body-2 p,
.mat-typography p {
  margin: 0 0 12px;
}

.mat-small,
.mat-caption,
.mat-typography .mat-small,
.mat-typography .mat-caption {
  font: 400 12px / 1.5 Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
}

.mat-headline-1,
.mat-typography .mat-headline-1 {
  font: 300 62px / 1.2 Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
  margin: 0 0 56px;
}

.mat-headline-2,
.mat-typography .mat-headline-2 {
  font: 400 56px / 1.2 Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
  margin: 0 0 64px;
}

.mat-headline-3,
.mat-typography .mat-headline-3 {
  font: 400 45px / 1.2 Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
  margin: 0 0 64px;
}

.mat-headline-4,
.mat-typography .mat-headline-4 {
  font: 400 34px / 1.2 Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
  margin: 0 0 64px;
}

html {
  --mat-bottom-sheet-container-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-bottom-sheet-container-text-line-height: 1.5;
  --mat-bottom-sheet-container-text-size: 14px;
  --mat-bottom-sheet-container-text-tracking: normal;
  --mat-bottom-sheet-container-text-weight: 700;
}

html {
  --mat-legacy-button-toggle-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-legacy-button-toggle-label-text-line-height: 1.5;
  --mat-legacy-button-toggle-label-text-size: 14px;
  --mat-legacy-button-toggle-label-text-tracking: normal;
  --mat-legacy-button-toggle-label-text-weight: 400;
  --mat-standard-button-toggle-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-standard-button-toggle-label-text-line-height: 1.5;
  --mat-standard-button-toggle-label-text-size: 14px;
  --mat-standard-button-toggle-label-text-tracking: normal;
  --mat-standard-button-toggle-label-text-weight: 400;
}

html {
  --mat-datepicker-calendar-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-datepicker-calendar-text-size: 13px;
  --mat-datepicker-calendar-body-label-text-size: 14px;
  --mat-datepicker-calendar-body-label-text-weight: 500;
  --mat-datepicker-calendar-period-button-text-size: 14px;
  --mat-datepicker-calendar-period-button-text-weight: 500;
  --mat-datepicker-calendar-header-text-size: 11px;
  --mat-datepicker-calendar-header-text-weight: 400;
}

html {
  --mat-expansion-header-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-expansion-header-text-size: 16px;
  --mat-expansion-header-text-weight: 700;
  --mat-expansion-header-text-line-height: inherit;
  --mat-expansion-header-text-tracking: inherit;
  --mat-expansion-container-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-expansion-container-text-line-height: 1.5;
  --mat-expansion-container-text-size: 14px;
  --mat-expansion-container-text-tracking: normal;
  --mat-expansion-container-text-weight: 700;
}

html {
  --mat-grid-list-tile-header-primary-text-size: 14px;
  --mat-grid-list-tile-header-secondary-text-size: 12px;
  --mat-grid-list-tile-footer-primary-text-size: 14px;
  --mat-grid-list-tile-footer-secondary-text-size: 12px;
}

html {
  --mat-stepper-container-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-stepper-header-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-stepper-header-label-text-size: 14px;
  --mat-stepper-header-label-text-weight: 700;
  --mat-stepper-header-error-state-label-text-size: 14px;
  --mat-stepper-header-selected-state-label-text-size: 14px;
  --mat-stepper-header-selected-state-label-text-weight: 400;
}

html {
  --mat-toolbar-title-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-toolbar-title-text-line-height: 1.2;
  --mat-toolbar-title-text-size: 20px;
  --mat-toolbar-title-text-tracking: normal;
  --mat-toolbar-title-text-weight: 600;
}

html {
  --mat-tree-node-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-tree-node-text-size: 14px;
  --mat-tree-node-text-weight: 700;
}

html {
  --mat-option-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-option-label-text-line-height: 1.5;
  --mat-option-label-text-size: 14px;
  --mat-option-label-text-tracking: normal;
  --mat-option-label-text-weight: 400;
}

html {
  --mat-optgroup-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-optgroup-label-text-line-height: 1.5;
  --mat-optgroup-label-text-size: 14px;
  --mat-optgroup-label-text-tracking: normal;
  --mat-optgroup-label-text-weight: 400;
}

html {
  --mat-card-title-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-card-title-text-line-height: 1.2;
  --mat-card-title-text-size: 20px;
  --mat-card-title-text-tracking: normal;
  --mat-card-title-text-weight: 600;
  --mat-card-subtitle-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-card-subtitle-text-line-height: 1.2;
  --mat-card-subtitle-text-size: 16px;
  --mat-card-subtitle-text-tracking: normal;
  --mat-card-subtitle-text-weight: 700;
}

html {
  --mdc-plain-tooltip-supporting-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-plain-tooltip-supporting-text-size: 12px;
  --mdc-plain-tooltip-supporting-text-weight: 400;
  --mdc-plain-tooltip-supporting-text-tracking: normal;
}

html {
  --mdc-filled-text-field-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-filled-text-field-label-text-size: 14px;
  --mdc-filled-text-field-label-text-tracking: normal;
  --mdc-filled-text-field-label-text-weight: 400;
  --mdc-outlined-text-field-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-outlined-text-field-label-text-size: 14px;
  --mdc-outlined-text-field-label-text-tracking: normal;
  --mdc-outlined-text-field-label-text-weight: 400;
  --mat-form-field-container-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-form-field-container-text-line-height: 1.5;
  --mat-form-field-container-text-size: 14px;
  --mat-form-field-container-text-tracking: normal;
  --mat-form-field-container-text-weight: 400;
  --mat-form-field-outlined-label-text-populated-size: 14px;
  --mat-form-field-subscript-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-form-field-subscript-text-line-height: 1.5;
  --mat-form-field-subscript-text-size: 12px;
  --mat-form-field-subscript-text-tracking: normal;
  --mat-form-field-subscript-text-weight: 400;
}

html {
  --mat-select-trigger-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-select-trigger-text-line-height: 1.5;
  --mat-select-trigger-text-size: 14px;
  --mat-select-trigger-text-tracking: normal;
  --mat-select-trigger-text-weight: 400;
}

html {
  --mdc-dialog-subhead-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-dialog-subhead-line-height: 1.2;
  --mdc-dialog-subhead-size: 20px;
  --mdc-dialog-subhead-weight: 600;
  --mdc-dialog-subhead-tracking: normal;
  --mdc-dialog-supporting-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-dialog-supporting-text-line-height: 1.5;
  --mdc-dialog-supporting-text-size: 14px;
  --mdc-dialog-supporting-text-weight: 400;
  --mdc-dialog-supporting-text-tracking: normal;
}

.mat-mdc-standard-chip {
  --mdc-chip-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-chip-label-text-line-height: 1.5;
  --mdc-chip-label-text-size: 14px;
  --mdc-chip-label-text-tracking: normal;
  --mdc-chip-label-text-weight: 700;
}

html .mat-mdc-slide-toggle {
  --mdc-form-field-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-form-field-label-text-line-height: 1.5;
  --mdc-form-field-label-text-size: 14px;
  --mdc-form-field-label-text-tracking: normal;
  --mdc-form-field-label-text-weight: 700;
}

.mat-mdc-radio-button {
  --mdc-form-field-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-form-field-label-text-line-height: 1.5;
  --mdc-form-field-label-text-size: 14px;
  --mdc-form-field-label-text-tracking: normal;
  --mdc-form-field-label-text-weight: 700;
}

html {
  --mdc-slider-label-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-slider-label-label-text-size: 16px;
  --mdc-slider-label-label-text-line-height: 1.2;
  --mdc-slider-label-label-text-tracking: normal;
  --mdc-slider-label-label-text-weight: 700;
}

html {
  --mat-menu-item-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-menu-item-label-text-size: 14px;
  --mat-menu-item-label-text-tracking: normal;
  --mat-menu-item-label-text-line-height: 1.5;
  --mat-menu-item-label-text-weight: 400;
}

html {
  --mdc-list-list-item-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-list-list-item-label-text-line-height: 1.5;
  --mdc-list-list-item-label-text-size: 14px;
  --mdc-list-list-item-label-text-tracking: normal;
  --mdc-list-list-item-label-text-weight: 400;
  --mdc-list-list-item-supporting-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-list-list-item-supporting-text-line-height: 1.5;
  --mdc-list-list-item-supporting-text-size: 14px;
  --mdc-list-list-item-supporting-text-tracking: normal;
  --mdc-list-list-item-supporting-text-weight: 700;
  --mdc-list-list-item-trailing-supporting-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-list-list-item-trailing-supporting-text-line-height: 1.5;
  --mdc-list-list-item-trailing-supporting-text-size: 12px;
  --mdc-list-list-item-trailing-supporting-text-tracking: normal;
  --mdc-list-list-item-trailing-supporting-text-weight: 400;
}

.mdc-list-group__subheader {
  font: 400 16px / 1.2 Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
}

html {
  --mat-paginator-container-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-paginator-container-text-line-height: 1.5;
  --mat-paginator-container-text-size: 12px;
  --mat-paginator-container-text-tracking: normal;
  --mat-paginator-container-text-weight: 400;
  --mat-paginator-select-trigger-text-size: 12px;
}

.mat-mdc-tab-header {
  --mat-tab-header-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-tab-header-label-text-size: 14px;
  --mat-tab-header-label-text-tracking: normal;
  --mat-tab-header-label-text-line-height: 1.125;
  --mat-tab-header-label-text-weight: 500;
}

.mat-mdc-checkbox {
  --mdc-form-field-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-form-field-label-text-line-height: 1.5;
  --mdc-form-field-label-text-size: 14px;
  --mdc-form-field-label-text-tracking: normal;
  --mdc-form-field-label-text-weight: 700;
}

html {
  --mdc-text-button-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-text-button-label-text-size: 14px;
  --mdc-text-button-label-text-tracking: normal;
  --mdc-text-button-label-text-weight: 500;
  --mdc-text-button-label-text-transform: none;
  --mdc-filled-button-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-filled-button-label-text-size: 14px;
  --mdc-filled-button-label-text-tracking: normal;
  --mdc-filled-button-label-text-weight: 500;
  --mdc-filled-button-label-text-transform: none;
  --mdc-outlined-button-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-outlined-button-label-text-size: 14px;
  --mdc-outlined-button-label-text-tracking: normal;
  --mdc-outlined-button-label-text-weight: 500;
  --mdc-outlined-button-label-text-transform: none;
  --mdc-protected-button-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-protected-button-label-text-size: 14px;
  --mdc-protected-button-label-text-tracking: normal;
  --mdc-protected-button-label-text-weight: 500;
  --mdc-protected-button-label-text-transform: none;
}

html {
  --mdc-extended-fab-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-extended-fab-label-text-size: 14px;
  --mdc-extended-fab-label-text-tracking: normal;
  --mdc-extended-fab-label-text-weight: 500;
}

html {
  --mdc-snackbar-supporting-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-snackbar-supporting-text-line-height: 1.5;
  --mdc-snackbar-supporting-text-size: 14px;
  --mdc-snackbar-supporting-text-weight: 700;
}

html {
  --mat-table-header-headline-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-table-header-headline-line-height: 1.2;
  --mat-table-header-headline-size: 16px;
  --mat-table-header-headline-weight: 700;
  --mat-table-header-headline-tracking: normal;
  --mat-table-row-item-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-table-row-item-label-text-line-height: 1.5;
  --mat-table-row-item-label-text-size: 14px;
  --mat-table-row-item-label-text-weight: 700;
  --mat-table-row-item-label-text-tracking: normal;
  --mat-table-footer-supporting-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-table-footer-supporting-text-line-height: 1.5;
  --mat-table-footer-supporting-text-size: 14px;
  --mat-table-footer-supporting-text-weight: 700;
  --mat-table-footer-supporting-text-tracking: normal;
}

.mat-ripple {
  overflow: hidden;
  position: relative;
}
.mat-ripple:not(:empty) {
  transform: translateZ(0);
}

.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: scale3d(0, 0, 0);
  background-color: var(--mat-ripple-color, rgba(0, 0, 0, 0.1));
}
.cdk-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;
  white-space: nowrap;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  left: 0;
}
[dir=rtl] .cdk-visually-hidden {
  left: auto;
  right: 0;
}

.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;
}
.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0.6;
}

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

.cdk-overlay-transparent-backdrop {
  transition: visibility 1ms linear, opacity 1ms linear;
  visibility: hidden;
  opacity: 1;
}
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0;
  visibility: visible;
}

.cdk-overlay-backdrop-noop-animation {
  transition: none;
}

.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;
}

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

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

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

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

.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
  animation: cdk-text-field-autofill-end 0s 1ms;
}

.mat-focus-indicator {
  position: relative;
}
.mat-focus-indicator::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  box-sizing: border-box;
  pointer-events: none;
  display: var(--mat-focus-indicator-display, none);
  border: var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);
  border-radius: var(--mat-focus-indicator-border-radius, 4px);
}
.mat-focus-indicator:focus::before {
  content: "";
}

.cdk-high-contrast-active {
  --mat-focus-indicator-display: block;
}

.mat-mdc-focus-indicator {
  position: relative;
}
.mat-mdc-focus-indicator::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  box-sizing: border-box;
  pointer-events: none;
  display: var(--mat-mdc-focus-indicator-display, none);
  border: var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);
  border-radius: var(--mat-mdc-focus-indicator-border-radius, 4px);
}
.mat-mdc-focus-indicator:focus::before {
  content: "";
}

.cdk-high-contrast-active {
  --mat-mdc-focus-indicator-display: block;
}

.mat-app-background {
  background-color: var(--mat-app-background-color, transparent);
  color: var(--mat-app-text-color, inherit);
}

.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-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
}
.nx-basic-table td {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
}

.nx-typography .nx-h1,
.nx-typography .nx-headline,
.nx-h1,
.nx-headline,
.nx-typography h1 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
  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: 600;
  line-height: 1.2;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
  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: 400;
  line-height: 1.2;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
  margin: 0 0 20px 0;
}

.nx-typography .nx-h4,
.nx-typography .nx-subheading-1,
.nx-h4,
.nx-subheading-1,
.nx-typography h4 {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
  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: 12px;
  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-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
}
.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-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
}

.nx-typography .nx-display-4,
.nx-display-4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
  margin: 0 0 24px 0;
  letter-spacing: -0.05em;
}

.nx-typography .nx-display-3,
.nx-display-3 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.nx-typography .nx-display-2,
.nx-display-2 {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.2;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
  margin: 0 0 24px 0;
  letter-spacing: -0.005em;
}

.nx-typography .nx-display-1,
.nx-display-1 {
  font-size: 45px;
  font-weight: 400;
  line-height: 1.2;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
  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.5em;
}

.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-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
}

.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-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../../../assets/fonts/roboto/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("../../../assets/fonts/roboto/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("../../../assets/fonts/roboto/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("../../../assets/fonts/roboto/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("../../../assets/fonts/roboto/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("../../../assets/fonts/roboto/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.5;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.mat-form-field-wrapper {
  padding-bottom: 1.25em;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.mat-form-field-prefix .mat-icon,
.mat-form-field-suffix .mat-icon {
  font-size: 150%;
  line-height: 1.125;
}
.mat-form-field-prefix .mat-mdc-icon-button,
.mat-form-field-suffix .mat-mdc-icon-button {
  height: 1.5em;
  width: 1.5em;
}
.mat-form-field-prefix .mat-mdc-icon-button .mat-icon,
.mat-form-field-suffix .mat-mdc-icon-button .mat-icon {
  height: 1.125em;
  line-height: 1.125;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.mat-form-field-infix {
  padding: 0.4375em 0;
  border-top: 0.84375em solid transparent;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.mat-form-field-can-float {
  /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
}
.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;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.mat-form-field-underline {
  bottom: 1.25em;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.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: 2em;
}

/* fallback */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url("../../../assets/icons/material/material-icon.woff2") format("woff2"), url("../../../assets/icons/material/material-icon.woff") format("woff");
}
@font-face {
  font-family: "Material Icons Outlined";
  font-style: normal;
  font-weight: 400;
  src: url("../../../assets/icons/material/material-icon-outlined.woff2") format("woff2"), url("../../../assets/icons/material/material-icon-outlined.woff") format("woff");
}
@font-face {
  font-family: "nx-components Icons";
  font-style: normal;
  font-weight: 400;
  src: url("../../../assets/icons/material/material-icon.woff2") format("woff2"), url("../../../assets/icons/material/material-icon.woff") format("woff");
}
@font-face {
  font-family: "nx-components Icons Outlined";
  font-style: normal;
  font-weight: 400;
  src: url("../../../assets/icons/material/material-icon-outlined.woff2") format("woff2"), url("../../../assets/icons/material/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: "nx-components Icons";
}

.nx-component-icons-outlined {
  font-family: "nx-components 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: 12px;
}
.nx-list .nx-subheader, .nx-nav-list .nx-subheader {
  font-size: 12px;
  font-weight: 400;
}

.nx-list[dense] .nx-list-item, .nx-nav-list[dense] .nx-list-item {
  font-size: 12px;
}
.nx-list[dense] .nx-list-item .nx-line, .nx-nav-list[dense] .nx-list-item .nx-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.nx-list[dense] .nx-list-item .nx-line:nth-child(n+2), .nx-nav-list[dense] .nx-list-item .nx-line:nth-child(n+2) {
  font-size: 12px;
}
.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: 12px;
  font-weight: 400;
}

.nx-optgroup-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  font-family: Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
}

.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: 12px;
}

/* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
.nx-range-slider .mat-slider-thumb-label-text {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

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

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

.nx-slider-thumb-label-text {
  font-family: Roboto, Arial, Helvetica, sans-serif;
  font-size: 12px;
  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: 12px;
  font-weight: 700;
}

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

.nx-footer-cell {
  font-family: "Roboto-Bold", Arial, Helvetica, sans-serif;
  font-size: 12px;
  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.25em;
}

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

.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;
  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;
}
.cdk-high-contrast-active .nx-option-ripple {
  opacity: 0.5;
}

.cdk-high-contrast-active :host .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;
  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;
}

html {
  --mat-ripple-color: rgba(0, 0, 0, 0.1);
}

html {
  --mat-option-selected-state-label-text-color: #2f3b51;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.85);
  --mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);
}

.mat-accent {
  --mat-option-selected-state-label-text-color: #107a83;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.85);
  --mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);
}

.mat-warn {
  --mat-option-selected-state-label-text-color: #d53f1e;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.85);
  --mat-option-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-option-selected-state-layer-color: rgba(0, 0, 0, 0.04);
}

html {
  --mat-optgroup-label-text-color: rgba(0, 0, 0, 0.85);
}

.mat-primary {
  --mat-full-pseudo-checkbox-selected-icon-color: #2f3b51;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #2f3b51;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}

html {
  --mat-full-pseudo-checkbox-selected-icon-color: #107a83;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #107a83;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}

.mat-accent {
  --mat-full-pseudo-checkbox-selected-icon-color: #107a83;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #107a83;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}

.mat-warn {
  --mat-full-pseudo-checkbox-selected-icon-color: #d53f1e;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #fafafa;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #d53f1e;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}

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

.mat-elevation-z0, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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, .mat-mdc-elevation-specific.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-theme-loaded-marker {
  display: none;
}

html {
  --mat-option-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-option-label-text-line-height: 1.5;
  --mat-option-label-text-size: 14px;
  --mat-option-label-text-tracking: normal;
  --mat-option-label-text-weight: 400;
}

html {
  --mat-optgroup-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-optgroup-label-text-line-height: 1.5;
  --mat-optgroup-label-text-size: 14px;
  --mat-optgroup-label-text-tracking: normal;
  --mat-optgroup-label-text-weight: 400;
}

html {
  --mdc-elevated-card-container-shape: 4px;
  --mdc-outlined-card-container-shape: 4px;
  --mdc-outlined-card-outline-width: 1px;
}

html {
  --mdc-elevated-card-container-color: white;
  --mdc-elevated-card-container-elevation: 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);
  --mdc-outlined-card-container-color: white;
  --mdc-outlined-card-outline-color: rgba(0, 0, 0, 0.12);
  --mdc-outlined-card-container-elevation: 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-card-subtitle-text-color: rgba(0, 0, 0, 0.54);
}

html {
  --mat-card-title-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-card-title-text-line-height: 1.2;
  --mat-card-title-text-size: 20px;
  --mat-card-title-text-tracking: normal;
  --mat-card-title-text-weight: 600;
  --mat-card-subtitle-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-card-subtitle-text-line-height: 1.2;
  --mat-card-subtitle-text-size: 16px;
  --mat-card-subtitle-text-tracking: normal;
  --mat-card-subtitle-text-weight: 700;
}

html {
  --mdc-linear-progress-active-indicator-height: 4px;
  --mdc-linear-progress-track-height: 4px;
  --mdc-linear-progress-track-shape: 0;
}

.mat-mdc-progress-bar {
  --mdc-linear-progress-active-indicator-color: #2f3b51;
  --mdc-linear-progress-track-color: rgba(47, 59, 81, 0.25);
}
.mat-mdc-progress-bar.mat-accent {
  --mdc-linear-progress-active-indicator-color: #107a83;
  --mdc-linear-progress-track-color: rgba(16, 122, 131, 0.25);
}
.mat-mdc-progress-bar.mat-warn {
  --mdc-linear-progress-active-indicator-color: #d53f1e;
  --mdc-linear-progress-track-color: rgba(213, 63, 30, 0.25);
}

html {
  --mdc-plain-tooltip-container-shape: 4px;
  --mdc-plain-tooltip-supporting-text-line-height: 16px;
}

html {
  --mdc-plain-tooltip-supporting-text-color: #fff;
}

html {
  --mdc-plain-tooltip-supporting-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-plain-tooltip-supporting-text-size: 12px;
  --mdc-plain-tooltip-supporting-text-weight: 400;
  --mdc-plain-tooltip-supporting-text-tracking: normal;
}

html {
  --mdc-filled-text-field-active-indicator-height: 1px;
  --mdc-filled-text-field-focus-active-indicator-height: 2px;
  --mdc-filled-text-field-container-shape: 4px;
  --mdc-outlined-text-field-outline-width: 1px;
  --mdc-outlined-text-field-focus-outline-width: 2px;
  --mdc-outlined-text-field-container-shape: 4px;
}

html {
  --mdc-filled-text-field-caret-color: #2f3b51;
  --mdc-filled-text-field-focus-active-indicator-color: #2f3b51;
  --mdc-filled-text-field-focus-label-text-color: rgba(47, 59, 81, 0.87);
  --mdc-filled-text-field-container-color: whitesmoke;
  --mdc-filled-text-field-disabled-container-color: #fafafa;
  --mdc-filled-text-field-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-filled-text-field-input-text-color: rgba(0, 0, 0, 0.87);
  --mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.38);
  --mdc-filled-text-field-input-text-placeholder-color: rgba(0, 0, 0, 0.6);
  --mdc-filled-text-field-error-hover-label-text-color: #d53f1e;
  --mdc-filled-text-field-error-focus-label-text-color: #d53f1e;
  --mdc-filled-text-field-error-label-text-color: #d53f1e;
  --mdc-filled-text-field-error-caret-color: #d53f1e;
  --mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, 0.42);
  --mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, 0.06);
  --mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, 0.87);
  --mdc-filled-text-field-error-active-indicator-color: #d53f1e;
  --mdc-filled-text-field-error-focus-active-indicator-color: #d53f1e;
  --mdc-filled-text-field-error-hover-active-indicator-color: #d53f1e;
  --mdc-outlined-text-field-caret-color: #2f3b51;
  --mdc-outlined-text-field-focus-outline-color: #2f3b51;
  --mdc-outlined-text-field-focus-label-text-color: rgba(47, 59, 81, 0.87);
  --mdc-outlined-text-field-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-outlined-text-field-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-input-text-color: rgba(0, 0, 0, 0.87);
  --mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-input-text-placeholder-color: rgba(0, 0, 0, 0.6);
  --mdc-outlined-text-field-error-caret-color: #d53f1e;
  --mdc-outlined-text-field-error-focus-label-text-color: #d53f1e;
  --mdc-outlined-text-field-error-label-text-color: #d53f1e;
  --mdc-outlined-text-field-error-hover-label-text-color: #d53f1e;
  --mdc-outlined-text-field-outline-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, 0.06);
  --mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, 0.87);
  --mdc-outlined-text-field-error-focus-outline-color: #d53f1e;
  --mdc-outlined-text-field-error-hover-outline-color: #d53f1e;
  --mdc-outlined-text-field-error-outline-color: #d53f1e;
  --mat-form-field-focus-select-arrow-color: rgba(47, 59, 81, 0.87);
  --mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, 0.38);
  --mat-form-field-state-layer-color: rgba(0, 0, 0, 0.87);
  --mat-form-field-error-text-color: #d53f1e;
  --mat-form-field-select-option-text-color: inherit;
  --mat-form-field-select-disabled-option-text-color: GrayText;
  --mat-form-field-leading-icon-color: unset;
  --mat-form-field-disabled-leading-icon-color: unset;
  --mat-form-field-trailing-icon-color: unset;
  --mat-form-field-disabled-trailing-icon-color: unset;
  --mat-form-field-error-focus-trailing-icon-color: unset;
  --mat-form-field-error-hover-trailing-icon-color: unset;
  --mat-form-field-error-trailing-icon-color: unset;
  --mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-form-field-hover-state-layer-opacity: 0.04;
  --mat-form-field-focus-state-layer-opacity: 0.08;
}

.mat-mdc-form-field.mat-accent {
  --mdc-filled-text-field-caret-color: #107a83;
  --mdc-filled-text-field-focus-active-indicator-color: #107a83;
  --mdc-filled-text-field-focus-label-text-color: rgba(16, 122, 131, 0.87);
  --mdc-outlined-text-field-caret-color: #107a83;
  --mdc-outlined-text-field-focus-outline-color: #107a83;
  --mdc-outlined-text-field-focus-label-text-color: rgba(16, 122, 131, 0.87);
  --mat-form-field-focus-select-arrow-color: rgba(16, 122, 131, 0.87);
}

.mat-mdc-form-field.mat-warn {
  --mdc-filled-text-field-caret-color: #d53f1e;
  --mdc-filled-text-field-focus-active-indicator-color: #d53f1e;
  --mdc-filled-text-field-focus-label-text-color: rgba(213, 63, 30, 0.87);
  --mdc-outlined-text-field-caret-color: #d53f1e;
  --mdc-outlined-text-field-focus-outline-color: #d53f1e;
  --mdc-outlined-text-field-focus-label-text-color: rgba(213, 63, 30, 0.87);
  --mat-form-field-focus-select-arrow-color: rgba(213, 63, 30, 0.87);
}

html {
  --mat-form-field-container-height: 56px;
  --mat-form-field-filled-label-display: block;
  --mat-form-field-container-vertical-padding: 16px;
  --mat-form-field-filled-with-label-container-padding-top: 24px;
  --mat-form-field-filled-with-label-container-padding-bottom: 8px;
}

html {
  --mdc-filled-text-field-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-filled-text-field-label-text-size: 14px;
  --mdc-filled-text-field-label-text-tracking: normal;
  --mdc-filled-text-field-label-text-weight: 400;
  --mdc-outlined-text-field-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-outlined-text-field-label-text-size: 14px;
  --mdc-outlined-text-field-label-text-tracking: normal;
  --mdc-outlined-text-field-label-text-weight: 400;
  --mat-form-field-container-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-form-field-container-text-line-height: 1.5;
  --mat-form-field-container-text-size: 14px;
  --mat-form-field-container-text-tracking: normal;
  --mat-form-field-container-text-weight: 400;
  --mat-form-field-outlined-label-text-populated-size: 14px;
  --mat-form-field-subscript-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-form-field-subscript-text-line-height: 1.5;
  --mat-form-field-subscript-text-size: 12px;
  --mat-form-field-subscript-text-tracking: normal;
  --mat-form-field-subscript-text-weight: 400;
}

html {
  --mat-select-container-elevation-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);
}

html {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-select-focused-arrow-color: rgba(47, 59, 81, 0.87);
  --mat-select-invalid-arrow-color: rgba(213, 63, 30, 0.87);
}
html .mat-mdc-form-field.mat-accent {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-select-focused-arrow-color: rgba(16, 122, 131, 0.87);
  --mat-select-invalid-arrow-color: rgba(213, 63, 30, 0.87);
}
html .mat-mdc-form-field.mat-warn {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(0, 0, 0, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(0, 0, 0, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-select-focused-arrow-color: rgba(213, 63, 30, 0.87);
  --mat-select-invalid-arrow-color: rgba(213, 63, 30, 0.87);
}

html {
  --mat-select-arrow-transform: translateY(-8px);
}

html {
  --mat-select-trigger-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-select-trigger-text-line-height: 1.5;
  --mat-select-trigger-text-size: 14px;
  --mat-select-trigger-text-tracking: normal;
  --mat-select-trigger-text-weight: 400;
}

html {
  --mat-autocomplete-container-shape: 4px;
  --mat-autocomplete-container-elevation-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);
}

html {
  --mat-autocomplete-background-color: white;
}

html {
  --mdc-dialog-container-elevation-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);
  --mdc-dialog-container-shadow-color: #000;
  --mdc-dialog-container-shape: 4px;
  --mat-dialog-container-max-width: 80vw;
  --mat-dialog-container-small-max-width: 80vw;
  --mat-dialog-container-min-width: 0;
  --mat-dialog-actions-alignment: start;
  --mat-dialog-actions-padding: 8px;
  --mat-dialog-content-padding: 20px 24px;
  --mat-dialog-with-actions-content-padding: 20px 24px;
  --mat-dialog-headline-padding: 0 24px 9px;
}

html {
  --mdc-dialog-container-color: white;
  --mdc-dialog-subhead-color: rgba(0, 0, 0, 0.87);
  --mdc-dialog-supporting-text-color: rgba(0, 0, 0, 0.6);
}

html {
  --mdc-dialog-subhead-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-dialog-subhead-line-height: 1.2;
  --mdc-dialog-subhead-size: 20px;
  --mdc-dialog-subhead-weight: 600;
  --mdc-dialog-subhead-tracking: normal;
  --mdc-dialog-supporting-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-dialog-supporting-text-line-height: 1.5;
  --mdc-dialog-supporting-text-size: 14px;
  --mdc-dialog-supporting-text-weight: 400;
  --mdc-dialog-supporting-text-tracking: normal;
}

.mat-mdc-standard-chip {
  --mdc-chip-container-shape-family: rounded;
  --mdc-chip-container-shape-radius: 16px 16px 16px 16px;
  --mdc-chip-with-avatar-avatar-shape-family: rounded;
  --mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;
  --mdc-chip-with-avatar-avatar-size: 28px;
  --mdc-chip-with-icon-icon-size: 18px;
  --mdc-chip-outline-width: 0;
  --mdc-chip-outline-color: transparent;
  --mdc-chip-disabled-outline-color: transparent;
  --mdc-chip-focus-outline-color: transparent;
  --mdc-chip-hover-state-layer-opacity: 0.04;
  --mdc-chip-with-avatar-disabled-avatar-opacity: 1;
  --mdc-chip-flat-selected-outline-width: 0;
  --mdc-chip-selected-hover-state-layer-opacity: 0.04;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;
  --mdc-chip-with-icon-disabled-icon-opacity: 1;
  --mat-chip-disabled-container-opacity: 0.4;
  --mat-chip-trailing-action-opacity: 0.54;
  --mat-chip-trailing-action-focus-opacity: 1;
  --mat-chip-trailing-action-state-layer-color: transparent;
  --mat-chip-selected-trailing-action-state-layer-color: transparent;
  --mat-chip-trailing-action-hover-state-layer-opacity: 0;
  --mat-chip-trailing-action-focus-state-layer-opacity: 0;
}

.mat-mdc-standard-chip {
  --mdc-chip-disabled-label-text-color: #212121;
  --mdc-chip-elevated-container-color: #e0e0e0;
  --mdc-chip-elevated-selected-container-color: #e0e0e0;
  --mdc-chip-elevated-disabled-container-color: #e0e0e0;
  --mdc-chip-flat-disabled-selected-container-color: #e0e0e0;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: #212121;
  --mdc-chip-selected-label-text-color: #212121;
  --mdc-chip-with-icon-icon-color: #212121;
  --mdc-chip-with-icon-disabled-icon-color: #212121;
  --mdc-chip-with-icon-selected-icon-color: #212121;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;
  --mdc-chip-with-trailing-icon-trailing-icon-color: #212121;
  --mat-chip-selected-disabled-trailing-icon-color: #212121;
  --mat-chip-selected-trailing-icon-color: #212121;
}
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary, .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #2f3b51;
  --mdc-chip-elevated-selected-container-color: #2f3b51;
  --mdc-chip-elevated-disabled-container-color: #2f3b51;
  --mdc-chip-flat-disabled-selected-container-color: #2f3b51;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent, .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #107a83;
  --mdc-chip-elevated-selected-container-color: #107a83;
  --mdc-chip-elevated-disabled-container-color: #107a83;
  --mdc-chip-flat-disabled-selected-container-color: #107a83;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn, .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #d53f1e;
  --mdc-chip-elevated-selected-container-color: #d53f1e;
  --mdc-chip-elevated-disabled-container-color: #d53f1e;
  --mdc-chip-flat-disabled-selected-container-color: #d53f1e;
  --mdc-chip-focus-state-layer-color: black;
  --mdc-chip-hover-state-layer-color: black;
  --mdc-chip-selected-hover-state-layer-color: black;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: black;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}

.mat-mdc-chip.mat-mdc-standard-chip {
  --mdc-chip-container-height: 32px;
}

.mat-mdc-standard-chip {
  --mdc-chip-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-chip-label-text-line-height: 1.5;
  --mdc-chip-label-text-size: 14px;
  --mdc-chip-label-text-tracking: normal;
  --mdc-chip-label-text-weight: 700;
}

html {
  --mdc-switch-disabled-selected-icon-opacity: 0.38;
  --mdc-switch-disabled-track-opacity: 0.12;
  --mdc-switch-disabled-unselected-icon-opacity: 0.38;
  --mdc-switch-handle-height: 20px;
  --mdc-switch-handle-shape: 10px;
  --mdc-switch-handle-width: 20px;
  --mdc-switch-selected-icon-size: 18px;
  --mdc-switch-track-height: 14px;
  --mdc-switch-track-shape: 7px;
  --mdc-switch-track-width: 36px;
  --mdc-switch-unselected-icon-size: 18px;
  --mdc-switch-selected-focus-state-layer-opacity: 0.12;
  --mdc-switch-selected-hover-state-layer-opacity: 0.04;
  --mdc-switch-selected-pressed-state-layer-opacity: 0.1;
  --mdc-switch-unselected-focus-state-layer-opacity: 0.12;
  --mdc-switch-unselected-hover-state-layer-opacity: 0.04;
  --mdc-switch-unselected-pressed-state-layer-opacity: 0.1;
  --mat-switch-disabled-selected-handle-opacity: 0.38;
  --mat-switch-disabled-unselected-handle-opacity: 0.38;
  --mat-switch-unselected-handle-size: 20px;
  --mat-switch-selected-handle-size: 20px;
  --mat-switch-pressed-handle-size: 20px;
  --mat-switch-with-icon-handle-size: 20px;
  --mat-switch-selected-handle-horizontal-margin: 0;
  --mat-switch-selected-with-icon-handle-horizontal-margin: 0;
  --mat-switch-selected-pressed-handle-horizontal-margin: 0;
  --mat-switch-unselected-handle-horizontal-margin: 0;
  --mat-switch-unselected-with-icon-handle-horizontal-margin: 0;
  --mat-switch-unselected-pressed-handle-horizontal-margin: 0;
  --mat-switch-visible-track-opacity: 1;
  --mat-switch-hidden-track-opacity: 1;
  --mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);
  --mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  --mat-switch-track-outline-width: 1px;
  --mat-switch-track-outline-color: transparent;
  --mat-switch-selected-track-outline-width: 1px;
  --mat-switch-disabled-unselected-track-outline-width: 1px;
  --mat-switch-disabled-unselected-track-outline-color: transparent;
}

html {
  --mdc-switch-selected-focus-state-layer-color: #2a354a;
  --mdc-switch-selected-handle-color: #2a354a;
  --mdc-switch-selected-hover-state-layer-color: #2a354a;
  --mdc-switch-selected-pressed-state-layer-color: #2a354a;
  --mdc-switch-selected-focus-handle-color: #121927;
  --mdc-switch-selected-hover-handle-color: #121927;
  --mdc-switch-selected-pressed-handle-color: #121927;
  --mdc-switch-selected-focus-track-color: #6d7685;
  --mdc-switch-selected-hover-track-color: #6d7685;
  --mdc-switch-selected-pressed-track-color: #6d7685;
  --mdc-switch-selected-track-color: #6d7685;
  --mdc-switch-disabled-selected-handle-color: #424242;
  --mdc-switch-disabled-selected-icon-color: #fff;
  --mdc-switch-disabled-selected-track-color: #424242;
  --mdc-switch-disabled-unselected-handle-color: #424242;
  --mdc-switch-disabled-unselected-icon-color: #fff;
  --mdc-switch-disabled-unselected-track-color: #424242;
  --mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);
  --mdc-switch-handle-elevation-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);
  --mdc-switch-handle-shadow-color: black;
  --mdc-switch-disabled-handle-elevation-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);
  --mdc-switch-selected-icon-color: #fff;
  --mdc-switch-unselected-focus-handle-color: #212121;
  --mdc-switch-unselected-focus-state-layer-color: #424242;
  --mdc-switch-unselected-focus-track-color: #e0e0e0;
  --mdc-switch-unselected-handle-color: #616161;
  --mdc-switch-unselected-hover-handle-color: #212121;
  --mdc-switch-unselected-hover-state-layer-color: #424242;
  --mdc-switch-unselected-hover-track-color: #e0e0e0;
  --mdc-switch-unselected-icon-color: #fff;
  --mdc-switch-unselected-pressed-handle-color: #212121;
  --mdc-switch-unselected-pressed-state-layer-color: #424242;
  --mdc-switch-unselected-pressed-track-color: #e0e0e0;
  --mdc-switch-unselected-track-color: #e0e0e0;
  --mdc-switch-disabled-label-text-color: rgba(0, 0, 0, 0.35);
}
html .mat-mdc-slide-toggle {
  --mdc-form-field-label-text-color: rgba(0, 0, 0, 0.85);
}
html .mat-mdc-slide-toggle.mat-accent {
  --mdc-switch-selected-focus-state-layer-color: #0e727b;
  --mdc-switch-selected-handle-color: #0e727b;
  --mdc-switch-selected-hover-state-layer-color: #0e727b;
  --mdc-switch-selected-pressed-state-layer-color: #0e727b;
  --mdc-switch-selected-focus-handle-color: #054a53;
  --mdc-switch-selected-hover-handle-color: #054a53;
  --mdc-switch-selected-pressed-handle-color: #054a53;
  --mdc-switch-selected-focus-track-color: #58a2a8;
  --mdc-switch-selected-hover-track-color: #58a2a8;
  --mdc-switch-selected-pressed-track-color: #58a2a8;
  --mdc-switch-selected-track-color: #58a2a8;
}
html .mat-mdc-slide-toggle.mat-warn {
  --mdc-switch-selected-focus-state-layer-color: #d0391a;
  --mdc-switch-selected-handle-color: #d0391a;
  --mdc-switch-selected-hover-state-layer-color: #d0391a;
  --mdc-switch-selected-pressed-state-layer-color: #d0391a;
  --mdc-switch-selected-focus-handle-color: #ba1b0a;
  --mdc-switch-selected-hover-handle-color: #ba1b0a;
  --mdc-switch-selected-pressed-handle-color: #ba1b0a;
  --mdc-switch-selected-focus-track-color: #e27962;
  --mdc-switch-selected-hover-track-color: #e27962;
  --mdc-switch-selected-pressed-track-color: #e27962;
  --mdc-switch-selected-track-color: #e27962;
}

html {
  --mdc-switch-state-layer-size: 40px;
}

html .mat-mdc-slide-toggle {
  --mdc-form-field-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-form-field-label-text-line-height: 1.5;
  --mdc-form-field-label-text-size: 14px;
  --mdc-form-field-label-text-tracking: normal;
  --mdc-form-field-label-text-weight: 700;
}

html {
  --mdc-radio-disabled-selected-icon-opacity: 0.38;
  --mdc-radio-disabled-unselected-icon-opacity: 0.38;
  --mdc-radio-state-layer-size: 40px;
}

.mat-mdc-radio-button {
  --mdc-form-field-label-text-color: rgba(0, 0, 0, 0.85);
}
.mat-mdc-radio-button.mat-primary {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #2f3b51;
  --mdc-radio-selected-hover-icon-color: #2f3b51;
  --mdc-radio-selected-icon-color: #2f3b51;
  --mdc-radio-selected-pressed-icon-color: #2f3b51;
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #2f3b51;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.35);
}
.mat-mdc-radio-button.mat-accent {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #107a83;
  --mdc-radio-selected-hover-icon-color: #107a83;
  --mdc-radio-selected-icon-color: #107a83;
  --mdc-radio-selected-pressed-icon-color: #107a83;
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #107a83;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.35);
}
.mat-mdc-radio-button.mat-warn {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #d53f1e;
  --mdc-radio-selected-hover-icon-color: #d53f1e;
  --mdc-radio-selected-icon-color: #d53f1e;
  --mdc-radio-selected-pressed-icon-color: #d53f1e;
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #d53f1e;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.35);
}

html {
  --mdc-radio-state-layer-size: 40px;
  --mat-radio-touch-target-display: block;
}

.mat-mdc-radio-button {
  --mdc-form-field-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-form-field-label-text-line-height: 1.5;
  --mdc-form-field-label-text-size: 14px;
  --mdc-form-field-label-text-tracking: normal;
  --mdc-form-field-label-text-weight: 700;
}

html {
  --mat-slider-value-indicator-width: auto;
  --mat-slider-value-indicator-height: 32px;
  --mat-slider-value-indicator-caret-display: block;
  --mat-slider-value-indicator-border-radius: 4px;
  --mat-slider-value-indicator-padding: 0 12px;
  --mat-slider-value-indicator-text-transform: none;
  --mat-slider-value-indicator-container-transform: translateX(-50%);
  --mdc-slider-active-track-height: 6px;
  --mdc-slider-active-track-shape: 9999px;
  --mdc-slider-handle-height: 20px;
  --mdc-slider-handle-shape: 50%;
  --mdc-slider-handle-width: 20px;
  --mdc-slider-inactive-track-height: 4px;
  --mdc-slider-inactive-track-shape: 9999px;
  --mdc-slider-with-overlap-handle-outline-width: 1px;
  --mdc-slider-with-tick-marks-active-container-opacity: 0.6;
  --mdc-slider-with-tick-marks-container-shape: 50%;
  --mdc-slider-with-tick-marks-container-size: 2px;
  --mdc-slider-with-tick-marks-inactive-container-opacity: 0.6;
}

html {
  --mdc-slider-handle-color: #2f3b51;
  --mdc-slider-focus-handle-color: #2f3b51;
  --mdc-slider-hover-handle-color: #2f3b51;
  --mdc-slider-active-track-color: #2f3b51;
  --mdc-slider-inactive-track-color: #2f3b51;
  --mdc-slider-with-tick-marks-inactive-container-color: #2f3b51;
  --mdc-slider-with-tick-marks-active-container-color: white;
  --mdc-slider-disabled-active-track-color: #000;
  --mdc-slider-disabled-handle-color: #000;
  --mdc-slider-disabled-inactive-track-color: #000;
  --mdc-slider-label-container-color: #000;
  --mdc-slider-label-label-text-color: #fff;
  --mdc-slider-with-overlap-handle-outline-color: #fff;
  --mdc-slider-with-tick-marks-disabled-container-color: #000;
  --mdc-slider-handle-elevation: 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-slider-ripple-color: #2f3b51;
  --mat-slider-hover-state-layer-color: rgba(47, 59, 81, 0.05);
  --mat-slider-focus-state-layer-color: rgba(47, 59, 81, 0.2);
  --mat-slider-value-indicator-opacity: 0.6;
}
html .mat-accent {
  --mat-slider-ripple-color: #107a83;
  --mat-slider-hover-state-layer-color: rgba(16, 122, 131, 0.05);
  --mat-slider-focus-state-layer-color: rgba(16, 122, 131, 0.2);
  --mdc-slider-handle-color: #107a83;
  --mdc-slider-focus-handle-color: #107a83;
  --mdc-slider-hover-handle-color: #107a83;
  --mdc-slider-active-track-color: #107a83;
  --mdc-slider-inactive-track-color: #107a83;
  --mdc-slider-with-tick-marks-inactive-container-color: #107a83;
  --mdc-slider-with-tick-marks-active-container-color: white;
}
html .mat-warn {
  --mat-slider-ripple-color: #d53f1e;
  --mat-slider-hover-state-layer-color: rgba(213, 63, 30, 0.05);
  --mat-slider-focus-state-layer-color: rgba(213, 63, 30, 0.2);
  --mdc-slider-handle-color: #d53f1e;
  --mdc-slider-focus-handle-color: #d53f1e;
  --mdc-slider-hover-handle-color: #d53f1e;
  --mdc-slider-active-track-color: #d53f1e;
  --mdc-slider-inactive-track-color: #d53f1e;
  --mdc-slider-with-tick-marks-inactive-container-color: #d53f1e;
  --mdc-slider-with-tick-marks-active-container-color: white;
}

html {
  --mdc-slider-label-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-slider-label-label-text-size: 16px;
  --mdc-slider-label-label-text-line-height: 1.2;
  --mdc-slider-label-label-text-tracking: normal;
  --mdc-slider-label-label-text-weight: 700;
}

html {
  --mat-menu-container-shape: 4px;
  --mat-menu-divider-bottom-spacing: 0;
  --mat-menu-divider-top-spacing: 0;
  --mat-menu-item-spacing: 16px;
  --mat-menu-item-icon-size: 24px;
  --mat-menu-item-leading-spacing: 16px;
  --mat-menu-item-trailing-spacing: 16px;
  --mat-menu-item-with-icon-leading-spacing: 16px;
  --mat-menu-item-with-icon-trailing-spacing: 16px;
}

html {
  --mat-menu-item-label-text-color: rgba(0, 0, 0, 0.85);
  --mat-menu-item-icon-color: rgba(0, 0, 0, 0.85);
  --mat-menu-item-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-menu-item-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-menu-container-color: white;
  --mat-menu-divider-color: rgba(0, 0, 0, 0.15);
}

html {
  --mat-menu-item-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-menu-item-label-text-size: 14px;
  --mat-menu-item-label-text-tracking: normal;
  --mat-menu-item-label-text-line-height: 1.5;
  --mat-menu-item-label-text-weight: 400;
}

html {
  --mdc-list-list-item-container-shape: 0;
  --mdc-list-list-item-leading-avatar-shape: 50%;
  --mdc-list-list-item-container-color: transparent;
  --mdc-list-list-item-selected-container-color: transparent;
  --mdc-list-list-item-leading-avatar-color: transparent;
  --mdc-list-list-item-leading-icon-size: 24px;
  --mdc-list-list-item-leading-avatar-size: 40px;
  --mdc-list-list-item-trailing-icon-size: 24px;
  --mdc-list-list-item-disabled-state-layer-color: transparent;
  --mdc-list-list-item-disabled-state-layer-opacity: 0;
  --mdc-list-list-item-disabled-label-text-opacity: 0.38;
  --mdc-list-list-item-disabled-leading-icon-opacity: 0.38;
  --mdc-list-list-item-disabled-trailing-icon-opacity: 0.38;
  --mat-list-active-indicator-color: transparent;
  --mat-list-active-indicator-shape: 4px;
}

html {
  --mdc-list-list-item-label-text-color: rgba(0, 0, 0, 0.85);
  --mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, 0.54);
  --mdc-list-list-item-leading-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-trailing-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-selected-trailing-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-disabled-label-text-color: black;
  --mdc-list-list-item-disabled-leading-icon-color: black;
  --mdc-list-list-item-disabled-trailing-icon-color: black;
  --mdc-list-list-item-hover-label-text-color: rgba(0, 0, 0, 0.85);
  --mdc-list-list-item-hover-leading-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-hover-trailing-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-focus-label-text-color: rgba(0, 0, 0, 0.85);
  --mdc-list-list-item-hover-state-layer-color: black;
  --mdc-list-list-item-hover-state-layer-opacity: 0.04;
  --mdc-list-list-item-focus-state-layer-color: black;
  --mdc-list-list-item-focus-state-layer-opacity: 0.12;
}

.mdc-list-item__start,
.mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #2f3b51;
  --mdc-radio-selected-hover-icon-color: #2f3b51;
  --mdc-radio-selected-icon-color: #2f3b51;
  --mdc-radio-selected-pressed-icon-color: #2f3b51;
}

.mat-accent .mdc-list-item__start,
.mat-accent .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #107a83;
  --mdc-radio-selected-hover-icon-color: #107a83;
  --mdc-radio-selected-icon-color: #107a83;
  --mdc-radio-selected-pressed-icon-color: #107a83;
}

.mat-warn .mdc-list-item__start,
.mat-warn .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #d53f1e;
  --mdc-radio-selected-hover-icon-color: #d53f1e;
  --mdc-radio-selected-icon-color: #d53f1e;
  --mdc-radio-selected-pressed-icon-color: #d53f1e;
}

.mat-mdc-list-option {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #2f3b51;
  --mdc-checkbox-selected-hover-icon-color: #2f3b51;
  --mdc-checkbox-selected-icon-color: #2f3b51;
  --mdc-checkbox-selected-pressed-icon-color: #2f3b51;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #2f3b51;
  --mdc-checkbox-selected-hover-state-layer-color: #2f3b51;
  --mdc-checkbox-selected-pressed-state-layer-color: #2f3b51;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}

.mat-mdc-list-option.mat-accent {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #107a83;
  --mdc-checkbox-selected-hover-icon-color: #107a83;
  --mdc-checkbox-selected-icon-color: #107a83;
  --mdc-checkbox-selected-pressed-icon-color: #107a83;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #107a83;
  --mdc-checkbox-selected-hover-state-layer-color: #107a83;
  --mdc-checkbox-selected-pressed-state-layer-color: #107a83;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}

.mat-mdc-list-option.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #d53f1e;
  --mdc-checkbox-selected-hover-icon-color: #d53f1e;
  --mdc-checkbox-selected-icon-color: #d53f1e;
  --mdc-checkbox-selected-pressed-icon-color: #d53f1e;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #d53f1e;
  --mdc-checkbox-selected-hover-state-layer-color: #d53f1e;
  --mdc-checkbox-selected-pressed-state-layer-color: #d53f1e;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}

.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text {
  color: #2f3b51;
}
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start {
  color: #2f3b51;
}

.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,
.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {
  opacity: 1;
}

html {
  --mdc-list-list-item-one-line-container-height: 48px;
  --mdc-list-list-item-two-line-container-height: 64px;
  --mdc-list-list-item-three-line-container-height: 88px;
  --mat-list-list-item-leading-icon-start-space: 16px;
  --mat-list-list-item-leading-icon-end-space: 32px;
}

.mdc-list-item__start,
.mdc-list-item__end {
  --mdc-radio-state-layer-size: 40px;
}

.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line, .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line, .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {
  height: 56px;
}
.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines, .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines, .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines {
  height: 72px;
}

html {
  --mdc-list-list-item-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-list-list-item-label-text-line-height: 1.5;
  --mdc-list-list-item-label-text-size: 14px;
  --mdc-list-list-item-label-text-tracking: normal;
  --mdc-list-list-item-label-text-weight: 400;
  --mdc-list-list-item-supporting-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-list-list-item-supporting-text-line-height: 1.5;
  --mdc-list-list-item-supporting-text-size: 14px;
  --mdc-list-list-item-supporting-text-tracking: normal;
  --mdc-list-list-item-supporting-text-weight: 700;
  --mdc-list-list-item-trailing-supporting-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-list-list-item-trailing-supporting-text-line-height: 1.5;
  --mdc-list-list-item-trailing-supporting-text-size: 12px;
  --mdc-list-list-item-trailing-supporting-text-tracking: normal;
  --mdc-list-list-item-trailing-supporting-text-weight: 400;
}

.mdc-list-group__subheader {
  font: 400 16px / 1.2 Roboto, Arial, Helvetica, sans-serif;
  letter-spacing: normal;
}

html {
  --mat-paginator-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-paginator-container-background-color: white;
  --mat-paginator-enabled-icon-color: rgba(0, 0, 0, 0.54);
  --mat-paginator-disabled-icon-color: rgba(0, 0, 0, 0.12);
}

html {
  --mat-paginator-container-size: 56px;
  --mat-paginator-form-field-container-height: 40px;
  --mat-paginator-form-field-container-vertical-padding: 8px;
}

html {
  --mat-paginator-container-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-paginator-container-text-line-height: 1.5;
  --mat-paginator-container-text-size: 12px;
  --mat-paginator-container-text-tracking: normal;
  --mat-paginator-container-text-weight: 400;
  --mat-paginator-select-trigger-text-size: 12px;
}

html {
  --mdc-tab-indicator-active-indicator-height: 2px;
  --mdc-tab-indicator-active-indicator-shape: 0;
  --mdc-secondary-navigation-tab-container-height: 48px;
  --mat-tab-header-divider-color: transparent;
  --mat-tab-header-divider-height: 0;
}

.mat-mdc-tab-group, .mat-mdc-tab-nav-bar {
  --mdc-tab-indicator-active-indicator-color: #2f3b51;
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #2f3b51;
  --mat-tab-header-active-ripple-color: #2f3b51;
  --mat-tab-header-inactive-ripple-color: #2f3b51;
  --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-focus-label-text-color: #2f3b51;
  --mat-tab-header-active-hover-label-text-color: #2f3b51;
  --mat-tab-header-active-focus-indicator-color: #2f3b51;
  --mat-tab-header-active-hover-indicator-color: #2f3b51;
}
.mat-mdc-tab-group.mat-accent, .mat-mdc-tab-nav-bar.mat-accent {
  --mdc-tab-indicator-active-indicator-color: #107a83;
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #107a83;
  --mat-tab-header-active-ripple-color: #107a83;
  --mat-tab-header-inactive-ripple-color: #107a83;
  --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-focus-label-text-color: #107a83;
  --mat-tab-header-active-hover-label-text-color: #107a83;
  --mat-tab-header-active-focus-indicator-color: #107a83;
  --mat-tab-header-active-hover-indicator-color: #107a83;
}
.mat-mdc-tab-group.mat-warn, .mat-mdc-tab-nav-bar.mat-warn {
  --mdc-tab-indicator-active-indicator-color: #d53f1e;
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-label-text-color: #d53f1e;
  --mat-tab-header-active-ripple-color: #d53f1e;
  --mat-tab-header-inactive-ripple-color: #d53f1e;
  --mat-tab-header-inactive-focus-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(0, 0, 0, 0.6);
  --mat-tab-header-active-focus-label-text-color: #d53f1e;
  --mat-tab-header-active-hover-label-text-color: #d53f1e;
  --mat-tab-header-active-focus-indicator-color: #d53f1e;
  --mat-tab-header-active-hover-indicator-color: #d53f1e;
}
.mat-mdc-tab-group.mat-background-primary, .mat-mdc-tab-nav-bar.mat-background-primary {
  --mat-tab-header-with-background-background-color: #2f3b51;
  --mat-tab-header-with-background-foreground-color: white;
}
.mat-mdc-tab-group.mat-background-accent, .mat-mdc-tab-nav-bar.mat-background-accent {
  --mat-tab-header-with-background-background-color: #107a83;
  --mat-tab-header-with-background-foreground-color: white;
}
.mat-mdc-tab-group.mat-background-warn, .mat-mdc-tab-nav-bar.mat-background-warn {
  --mat-tab-header-with-background-background-color: #d53f1e;
  --mat-tab-header-with-background-foreground-color: white;
}

.mat-mdc-tab-header {
  --mdc-secondary-navigation-tab-container-height: 48px;
}

.mat-mdc-tab-header {
  --mat-tab-header-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-tab-header-label-text-size: 14px;
  --mat-tab-header-label-text-tracking: normal;
  --mat-tab-header-label-text-line-height: 1.125;
  --mat-tab-header-label-text-weight: 500;
}

html {
  --mdc-checkbox-disabled-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-state-layer-opacity: 0.16;
  --mdc-checkbox-selected-hover-state-layer-opacity: 0.04;
  --mdc-checkbox-selected-pressed-state-layer-opacity: 0.16;
  --mdc-checkbox-unselected-focus-state-layer-opacity: 0.16;
  --mdc-checkbox-unselected-hover-state-layer-opacity: 0.04;
  --mdc-checkbox-unselected-pressed-state-layer-opacity: 0.16;
}

html {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #107a83;
  --mdc-checkbox-selected-hover-icon-color: #107a83;
  --mdc-checkbox-selected-icon-color: #107a83;
  --mdc-checkbox-selected-pressed-icon-color: #107a83;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #107a83;
  --mdc-checkbox-selected-hover-state-layer-color: #107a83;
  --mdc-checkbox-selected-pressed-state-layer-color: #107a83;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
  --mat-checkbox-disabled-label-color: rgba(0, 0, 0, 0.35);
}

.mat-mdc-checkbox {
  --mdc-form-field-label-text-color: rgba(0, 0, 0, 0.85);
}
.mat-mdc-checkbox.mat-primary {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #2f3b51;
  --mdc-checkbox-selected-hover-icon-color: #2f3b51;
  --mdc-checkbox-selected-icon-color: #2f3b51;
  --mdc-checkbox-selected-pressed-icon-color: #2f3b51;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #2f3b51;
  --mdc-checkbox-selected-hover-state-layer-color: #2f3b51;
  --mdc-checkbox-selected-pressed-state-layer-color: #2f3b51;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}
.mat-mdc-checkbox.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(0, 0, 0, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #d53f1e;
  --mdc-checkbox-selected-hover-icon-color: #d53f1e;
  --mdc-checkbox-selected-icon-color: #d53f1e;
  --mdc-checkbox-selected-pressed-icon-color: #d53f1e;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #d53f1e;
  --mdc-checkbox-selected-hover-state-layer-color: #d53f1e;
  --mdc-checkbox-selected-pressed-state-layer-color: #d53f1e;
  --mdc-checkbox-unselected-focus-state-layer-color: black;
  --mdc-checkbox-unselected-hover-state-layer-color: black;
  --mdc-checkbox-unselected-pressed-state-layer-color: black;
}

html {
  --mdc-checkbox-state-layer-size: 40px;
  --mat-checkbox-touch-target-display: block;
}

.mat-mdc-checkbox {
  --mdc-form-field-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-form-field-label-text-line-height: 1.5;
  --mdc-form-field-label-text-size: 14px;
  --mdc-form-field-label-text-tracking: normal;
  --mdc-form-field-label-text-weight: 700;
}

html {
  --mdc-text-button-container-shape: 4px;
  --mdc-text-button-keep-touch-target: false;
  --mdc-filled-button-container-shape: 4px;
  --mdc-filled-button-keep-touch-target: false;
  --mdc-protected-button-container-shape: 4px;
  --mdc-protected-button-keep-touch-target: false;
  --mdc-outlined-button-keep-touch-target: false;
  --mdc-outlined-button-outline-width: 1px;
  --mdc-outlined-button-container-shape: 4px;
  --mat-text-button-horizontal-padding: 8px;
  --mat-text-button-with-icon-horizontal-padding: 8px;
  --mat-text-button-icon-spacing: 8px;
  --mat-text-button-icon-offset: 0;
  --mat-filled-button-horizontal-padding: 16px;
  --mat-filled-button-icon-spacing: 8px;
  --mat-filled-button-icon-offset: -4px;
  --mat-protected-button-horizontal-padding: 16px;
  --mat-protected-button-icon-spacing: 8px;
  --mat-protected-button-icon-offset: -4px;
  --mat-outlined-button-horizontal-padding: 15px;
  --mat-outlined-button-icon-spacing: 8px;
  --mat-outlined-button-icon-offset: -4px;
}

html {
  --mdc-text-button-label-text-color: black;
  --mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mat-text-button-state-layer-color: black;
  --mat-text-button-disabled-state-layer-color: black;
  --mat-text-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-text-button-hover-state-layer-opacity: 0.04;
  --mat-text-button-focus-state-layer-opacity: 0.12;
  --mat-text-button-pressed-state-layer-opacity: 0.12;
  --mdc-filled-button-container-color: white;
  --mdc-filled-button-label-text-color: black;
  --mdc-filled-button-disabled-container-color: rgba(0, 0, 0, 0.12);
  --mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mat-filled-button-state-layer-color: black;
  --mat-filled-button-disabled-state-layer-color: black;
  --mat-filled-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-filled-button-hover-state-layer-opacity: 0.04;
  --mat-filled-button-focus-state-layer-opacity: 0.12;
  --mat-filled-button-pressed-state-layer-opacity: 0.12;
  --mdc-protected-button-container-color: white;
  --mdc-protected-button-label-text-color: black;
  --mdc-protected-button-disabled-container-color: rgba(0, 0, 0, 0.12);
  --mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-protected-button-container-elevation-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);
  --mdc-protected-button-disabled-container-elevation-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);
  --mdc-protected-button-focus-container-elevation-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);
  --mdc-protected-button-hover-container-elevation-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);
  --mdc-protected-button-pressed-container-elevation-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);
  --mdc-protected-button-container-shadow-color: #000;
  --mat-protected-button-state-layer-color: black;
  --mat-protected-button-disabled-state-layer-color: black;
  --mat-protected-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-protected-button-hover-state-layer-opacity: 0.04;
  --mat-protected-button-focus-state-layer-opacity: 0.12;
  --mat-protected-button-pressed-state-layer-opacity: 0.12;
  --mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, 0.15);
  --mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-button-label-text-color: black;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.15);
  --mat-outlined-button-state-layer-color: black;
  --mat-outlined-button-disabled-state-layer-color: black;
  --mat-outlined-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-outlined-button-hover-state-layer-opacity: 0.04;
  --mat-outlined-button-focus-state-layer-opacity: 0.12;
  --mat-outlined-button-pressed-state-layer-opacity: 0.12;
}

.mat-mdc-button.mat-primary {
  --mdc-text-button-label-text-color: #2f3b51;
  --mat-text-button-state-layer-color: #2f3b51;
  --mat-text-button-ripple-color: rgba(47, 59, 81, 0.1);
}
.mat-mdc-button.mat-accent {
  --mdc-text-button-label-text-color: #107a83;
  --mat-text-button-state-layer-color: #107a83;
  --mat-text-button-ripple-color: rgba(16, 122, 131, 0.1);
}
.mat-mdc-button.mat-warn {
  --mdc-text-button-label-text-color: #d53f1e;
  --mat-text-button-state-layer-color: #d53f1e;
  --mat-text-button-ripple-color: rgba(213, 63, 30, 0.1);
}

.mat-mdc-unelevated-button.mat-primary {
  --mdc-filled-button-container-color: #2f3b51;
  --mdc-filled-button-label-text-color: white;
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-unelevated-button.mat-accent {
  --mdc-filled-button-container-color: #107a83;
  --mdc-filled-button-label-text-color: white;
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-unelevated-button.mat-warn {
  --mdc-filled-button-container-color: #d53f1e;
  --mdc-filled-button-label-text-color: white;
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}

.mat-mdc-raised-button.mat-primary {
  --mdc-protected-button-container-color: #2f3b51;
  --mdc-protected-button-label-text-color: white;
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-raised-button.mat-accent {
  --mdc-protected-button-container-color: #107a83;
  --mdc-protected-button-label-text-color: white;
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-raised-button.mat-warn {
  --mdc-protected-button-container-color: #d53f1e;
  --mdc-protected-button-label-text-color: white;
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}

.mat-mdc-outlined-button.mat-primary {
  --mdc-outlined-button-label-text-color: #2f3b51;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.15);
  --mat-outlined-button-state-layer-color: #2f3b51;
  --mat-outlined-button-ripple-color: rgba(47, 59, 81, 0.1);
}
.mat-mdc-outlined-button.mat-accent {
  --mdc-outlined-button-label-text-color: #107a83;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.15);
  --mat-outlined-button-state-layer-color: #107a83;
  --mat-outlined-button-ripple-color: rgba(16, 122, 131, 0.1);
}
.mat-mdc-outlined-button.mat-warn {
  --mdc-outlined-button-label-text-color: #d53f1e;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.15);
  --mat-outlined-button-state-layer-color: #d53f1e;
  --mat-outlined-button-ripple-color: rgba(213, 63, 30, 0.1);
}

html {
  --mdc-text-button-container-height: 36px;
  --mdc-filled-button-container-height: 36px;
  --mdc-outlined-button-container-height: 36px;
  --mdc-protected-button-container-height: 36px;
  --mat-text-button-touch-target-display: block;
  --mat-filled-button-touch-target-display: block;
  --mat-protected-button-touch-target-display: block;
  --mat-outlined-button-touch-target-display: block;
}

html {
  --mdc-text-button-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-text-button-label-text-size: 14px;
  --mdc-text-button-label-text-tracking: normal;
  --mdc-text-button-label-text-weight: 500;
  --mdc-text-button-label-text-transform: none;
  --mdc-filled-button-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-filled-button-label-text-size: 14px;
  --mdc-filled-button-label-text-tracking: normal;
  --mdc-filled-button-label-text-weight: 500;
  --mdc-filled-button-label-text-transform: none;
  --mdc-outlined-button-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-outlined-button-label-text-size: 14px;
  --mdc-outlined-button-label-text-tracking: normal;
  --mdc-outlined-button-label-text-weight: 500;
  --mdc-outlined-button-label-text-transform: none;
  --mdc-protected-button-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-protected-button-label-text-size: 14px;
  --mdc-protected-button-label-text-tracking: normal;
  --mdc-protected-button-label-text-weight: 500;
  --mdc-protected-button-label-text-transform: none;
}

html {
  --mdc-icon-button-icon-size: 24px;
}

html {
  --mdc-icon-button-icon-color: inherit;
  --mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, 0.38);
  --mat-icon-button-state-layer-color: black;
  --mat-icon-button-disabled-state-layer-color: black;
  --mat-icon-button-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-icon-button-hover-state-layer-opacity: 0.04;
  --mat-icon-button-focus-state-layer-opacity: 0.12;
  --mat-icon-button-pressed-state-layer-opacity: 0.12;
}
html .mat-mdc-icon-button.mat-primary {
  --mdc-icon-button-icon-color: #2f3b51;
  --mat-icon-button-state-layer-color: #2f3b51;
  --mat-icon-button-ripple-color: rgba(47, 59, 81, 0.1);
}
html .mat-mdc-icon-button.mat-accent {
  --mdc-icon-button-icon-color: #107a83;
  --mat-icon-button-state-layer-color: #107a83;
  --mat-icon-button-ripple-color: rgba(16, 122, 131, 0.1);
}
html .mat-mdc-icon-button.mat-warn {
  --mdc-icon-button-icon-color: #d53f1e;
  --mat-icon-button-state-layer-color: #d53f1e;
  --mat-icon-button-ripple-color: rgba(213, 63, 30, 0.1);
}

html {
  --mat-icon-button-touch-target-display: block;
}

.mat-mdc-icon-button.mat-mdc-button-base {
  --mdc-icon-button-state-layer-size: 48px;
  width: var(--mdc-icon-button-state-layer-size);
  height: var(--mdc-icon-button-state-layer-size);
  padding: 12px;
}

html {
  --mdc-fab-container-shape: 50%;
  --mdc-fab-icon-size: 24px;
  --mdc-fab-small-container-shape: 50%;
  --mdc-fab-small-icon-size: 24px;
  --mdc-extended-fab-container-height: 48px;
  --mdc-extended-fab-container-shape: 24px;
}

html {
  --mdc-fab-container-color: white;
  --mdc-fab-container-elevation-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);
  --mdc-fab-focus-container-elevation-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);
  --mdc-fab-hover-container-elevation-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);
  --mdc-fab-pressed-container-elevation-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);
  --mdc-fab-container-shadow-color: #000;
  --mat-fab-foreground-color: black;
  --mat-fab-state-layer-color: black;
  --mat-fab-disabled-state-layer-color: black;
  --mat-fab-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-fab-hover-state-layer-opacity: 0.04;
  --mat-fab-focus-state-layer-opacity: 0.12;
  --mat-fab-pressed-state-layer-opacity: 0.12;
  --mat-fab-disabled-state-container-color: rgba(0, 0, 0, 0.12);
  --mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, 0.38);
  --mdc-fab-small-container-color: white;
  --mdc-fab-small-container-elevation-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);
  --mdc-fab-small-focus-container-elevation-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);
  --mdc-fab-small-hover-container-elevation-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);
  --mdc-fab-small-pressed-container-elevation-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);
  --mdc-fab-small-container-shadow-color: #000;
  --mat-fab-small-foreground-color: black;
  --mat-fab-small-state-layer-color: black;
  --mat-fab-small-disabled-state-layer-color: black;
  --mat-fab-small-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-fab-small-hover-state-layer-opacity: 0.04;
  --mat-fab-small-focus-state-layer-opacity: 0.12;
  --mat-fab-small-pressed-state-layer-opacity: 0.12;
  --mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, 0.12);
  --mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, 0.38);
  --mdc-extended-fab-container-elevation-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);
  --mdc-extended-fab-focus-container-elevation-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);
  --mdc-extended-fab-hover-container-elevation-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);
  --mdc-extended-fab-pressed-container-elevation-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);
  --mdc-extended-fab-container-shadow-color: #000;
}
html .mat-mdc-fab.mat-primary {
  --mdc-fab-container-color: #2f3b51;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
html .mat-mdc-fab.mat-accent {
  --mdc-fab-container-color: #107a83;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
html .mat-mdc-fab.mat-warn {
  --mdc-fab-container-color: #d53f1e;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
html .mat-mdc-mini-fab.mat-primary {
  --mdc-fab-small-container-color: #2f3b51;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
html .mat-mdc-mini-fab.mat-accent {
  --mdc-fab-small-container-color: #107a83;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
html .mat-mdc-mini-fab.mat-warn {
  --mdc-fab-small-container-color: #d53f1e;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}

html {
  --mat-fab-touch-target-display: block;
  --mat-fab-small-touch-target-display: block;
}

html {
  --mdc-extended-fab-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-extended-fab-label-text-size: 14px;
  --mdc-extended-fab-label-text-tracking: normal;
  --mdc-extended-fab-label-text-weight: 500;
}

html {
  --mdc-snackbar-container-shape: 4px;
}

html {
  --mdc-snackbar-container-color: #333333;
  --mdc-snackbar-supporting-text-color: rgba(255, 255, 255, 0.87);
  --mat-snack-bar-button-color: #107a83;
}

html {
  --mdc-snackbar-supporting-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mdc-snackbar-supporting-text-line-height: 1.5;
  --mdc-snackbar-supporting-text-size: 14px;
  --mdc-snackbar-supporting-text-weight: 700;
}

html {
  --mat-table-row-item-outline-width: 1px;
}

html {
  --mat-table-background-color: white;
  --mat-table-header-headline-color: rgba(0, 0, 0, 0.85);
  --mat-table-row-item-label-text-color: rgba(0, 0, 0, 0.85);
  --mat-table-row-item-outline-color: rgba(0, 0, 0, 0.15);
}

html {
  --mat-table-header-container-height: 56px;
  --mat-table-footer-container-height: 52px;
  --mat-table-row-item-container-height: 52px;
}

html {
  --mat-table-header-headline-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-table-header-headline-line-height: 1.2;
  --mat-table-header-headline-size: 16px;
  --mat-table-header-headline-weight: 700;
  --mat-table-header-headline-tracking: normal;
  --mat-table-row-item-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-table-row-item-label-text-line-height: 1.5;
  --mat-table-row-item-label-text-size: 14px;
  --mat-table-row-item-label-text-weight: 700;
  --mat-table-row-item-label-text-tracking: normal;
  --mat-table-footer-supporting-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-table-footer-supporting-text-line-height: 1.5;
  --mat-table-footer-supporting-text-size: 14px;
  --mat-table-footer-supporting-text-weight: 700;
  --mat-table-footer-supporting-text-tracking: normal;
}

html {
  --mdc-circular-progress-active-indicator-width: 4px;
  --mdc-circular-progress-size: 48px;
}

html {
  --mdc-circular-progress-active-indicator-color: #2f3b51;
}
html .mat-accent {
  --mdc-circular-progress-active-indicator-color: #107a83;
}
html .mat-warn {
  --mdc-circular-progress-active-indicator-color: #d53f1e;
}

html {
  --mat-badge-container-shape: 50%;
  --mat-badge-container-size: unset;
  --mat-badge-small-size-container-size: unset;
  --mat-badge-large-size-container-size: unset;
  --mat-badge-legacy-container-size: 22px;
  --mat-badge-legacy-small-size-container-size: 16px;
  --mat-badge-legacy-large-size-container-size: 28px;
  --mat-badge-container-offset: -11px 0;
  --mat-badge-small-size-container-offset: -8px 0;
  --mat-badge-large-size-container-offset: -14px 0;
  --mat-badge-container-overlap-offset: -11px;
  --mat-badge-small-size-container-overlap-offset: -8px;
  --mat-badge-large-size-container-overlap-offset: -14px;
  --mat-badge-container-padding: 0;
  --mat-badge-small-size-container-padding: 0;
  --mat-badge-large-size-container-padding: 0;
}

html {
  --mat-badge-background-color: #2f3b51;
  --mat-badge-text-color: white;
  --mat-badge-disabled-state-background-color: #9b9b9b;
  --mat-badge-disabled-state-text-color: rgba(0, 0, 0, 0.35);
}

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

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

html {
  --mat-badge-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-badge-text-size: 12px;
  --mat-badge-text-weight: 600;
  --mat-badge-small-size-text-size: 9px;
  --mat-badge-large-size-text-size: 24px;
}

html {
  --mat-bottom-sheet-container-shape: 4px;
}

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

html {
  --mat-bottom-sheet-container-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-bottom-sheet-container-text-line-height: 1.5;
  --mat-bottom-sheet-container-text-size: 14px;
  --mat-bottom-sheet-container-text-tracking: normal;
  --mat-bottom-sheet-container-text-weight: 700;
}

html {
  --mat-legacy-button-toggle-height: 36px;
  --mat-legacy-button-toggle-shape: 2px;
  --mat-legacy-button-toggle-focus-state-layer-opacity: 1;
  --mat-standard-button-toggle-shape: 4px;
  --mat-standard-button-toggle-hover-state-layer-opacity: 0.04;
  --mat-standard-button-toggle-focus-state-layer-opacity: 0.12;
}

html {
  --mat-legacy-button-toggle-text-color: rgba(0, 0, 0, 0.38);
  --mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, 0.06);
  --mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, 0.54);
  --mat-legacy-button-toggle-selected-state-background-color: #107a83;
  --mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;
  --mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;
  --mat-standard-button-toggle-text-color: rgba(0, 0, 0, 0.85);
  --mat-standard-button-toggle-background-color: white;
  --mat-standard-button-toggle-state-layer-color: black;
  --mat-standard-button-toggle-selected-state-background-color: #107a83;
  --mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, 0.85);
  --mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-standard-button-toggle-disabled-state-background-color: white;
  --mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, 0.85);
  --mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;
  --mat-standard-button-toggle-divider-color: #d9d9d9;
}

html {
  --mat-standard-button-toggle-height: 48px;
}

html {
  --mat-legacy-button-toggle-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-legacy-button-toggle-label-text-line-height: 1.5;
  --mat-legacy-button-toggle-label-text-size: 14px;
  --mat-legacy-button-toggle-label-text-tracking: normal;
  --mat-legacy-button-toggle-label-text-weight: 400;
  --mat-standard-button-toggle-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-standard-button-toggle-label-text-line-height: 1.5;
  --mat-standard-button-toggle-label-text-size: 14px;
  --mat-standard-button-toggle-label-text-tracking: normal;
  --mat-standard-button-toggle-label-text-weight: 400;
}

html {
  --mat-datepicker-calendar-container-shape: 4px;
  --mat-datepicker-calendar-container-touch-shape: 4px;
  --mat-datepicker-calendar-container-elevation-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-datepicker-calendar-container-touch-elevation-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);
}

html {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #2f3b51;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(47, 59, 81, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(47, 59, 81, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(47, 59, 81, 0.3);
  --mat-datepicker-toggle-active-state-icon-color: #2f3b51;
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(47, 59, 81, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
  --mat-datepicker-toggle-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-period-button-text-color: black;
  --mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, 0.15);
  --mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, 0.18);
  --mat-datepicker-calendar-date-text-color: rgba(0, 0, 0, 0.85);
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, 0.35);
  --mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, 0.3);
  --mat-datepicker-range-input-separator-color: rgba(0, 0, 0, 0.85);
  --mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, 0.35);
  --mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, 0.35);
  --mat-datepicker-calendar-container-background-color: white;
  --mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, 0.85);
}

.mat-datepicker-content.mat-accent {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #107a83;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(16, 122, 131, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(16, 122, 131, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(16, 122, 131, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(16, 122, 131, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
}
.mat-datepicker-content.mat-warn {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #d53f1e;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(213, 63, 30, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(213, 63, 30, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(213, 63, 30, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(213, 63, 30, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
}

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

.mat-calendar-controls {
  --mat-icon-button-touch-target-display: none;
}
.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base {
  --mdc-icon-button-state-layer-size: 40px;
  width: var(--mdc-icon-button-state-layer-size);
  height: var(--mdc-icon-button-state-layer-size);
  padding: 8px;
}

html {
  --mat-datepicker-calendar-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-datepicker-calendar-text-size: 13px;
  --mat-datepicker-calendar-body-label-text-size: 14px;
  --mat-datepicker-calendar-body-label-text-weight: 500;
  --mat-datepicker-calendar-period-button-text-size: 14px;
  --mat-datepicker-calendar-period-button-text-weight: 500;
  --mat-datepicker-calendar-header-text-size: 11px;
  --mat-datepicker-calendar-header-text-weight: 400;
}

html {
  --mat-divider-width: 1px;
}

html {
  --mat-divider-color: rgba(0, 0, 0, 0.15);
}

html {
  --mat-expansion-container-shape: 4px;
  --mat-expansion-legacy-header-indicator-display: inline-block;
  --mat-expansion-header-indicator-display: none;
}

html {
  --mat-expansion-container-background-color: white;
  --mat-expansion-container-text-color: rgba(0, 0, 0, 0.85);
  --mat-expansion-actions-divider-color: rgba(0, 0, 0, 0.15);
  --mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-expansion-header-text-color: rgba(0, 0, 0, 0.85);
  --mat-expansion-header-description-color: rgba(0, 0, 0, 0.54);
  --mat-expansion-header-indicator-color: rgba(0, 0, 0, 0.54);
}

html {
  --mat-expansion-header-collapsed-state-height: 48px;
  --mat-expansion-header-expanded-state-height: 64px;
}

html {
  --mat-expansion-header-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-expansion-header-text-size: 16px;
  --mat-expansion-header-text-weight: 700;
  --mat-expansion-header-text-line-height: inherit;
  --mat-expansion-header-text-tracking: inherit;
  --mat-expansion-container-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-expansion-container-text-line-height: 1.5;
  --mat-expansion-container-text-size: 14px;
  --mat-expansion-container-text-tracking: normal;
  --mat-expansion-container-text-weight: 700;
}

html {
  --mat-grid-list-tile-header-primary-text-size: 14px;
  --mat-grid-list-tile-header-secondary-text-size: 12px;
  --mat-grid-list-tile-footer-primary-text-size: 14px;
  --mat-grid-list-tile-footer-secondary-text-size: 12px;
}

html {
  --mat-icon-color: inherit;
}

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

html {
  --mat-sidenav-container-shape: 0;
  --mat-sidenav-container-elevation-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-sidenav-container-width: auto;
}

html {
  --mat-sidenav-container-divider-color: rgba(0, 0, 0, 0.15);
  --mat-sidenav-container-background-color: white;
  --mat-sidenav-container-text-color: rgba(0, 0, 0, 0.85);
  --mat-sidenav-content-background-color: #fafafa;
  --mat-sidenav-content-text-color: rgba(0, 0, 0, 0.85);
  --mat-sidenav-scrim-color: rgba(0, 0, 0, 0.6);
}

html {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #2f3b51;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #2f3b51;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #2f3b51;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
  --mat-stepper-container-color: white;
  --mat-stepper-line-color: rgba(0, 0, 0, 0.15);
  --mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-stepper-header-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-selected-state-label-text-color: rgba(0, 0, 0, 0.85);
  --mat-stepper-header-error-state-label-text-color: #d53f1e;
  --mat-stepper-header-icon-background-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-error-state-icon-foreground-color: #d53f1e;
  --mat-stepper-header-error-state-icon-background-color: transparent;
}
html .mat-step-header.mat-accent {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #107a83;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #107a83;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #107a83;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
html .mat-step-header.mat-warn {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #d53f1e;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #d53f1e;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #d53f1e;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}

html {
  --mat-stepper-header-height: 72px;
}

html {
  --mat-stepper-container-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-stepper-header-label-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-stepper-header-label-text-size: 14px;
  --mat-stepper-header-label-text-weight: 700;
  --mat-stepper-header-error-state-label-text-size: 14px;
  --mat-stepper-header-selected-state-label-text-size: 14px;
  --mat-stepper-header-selected-state-label-text-weight: 400;
}

html {
  --mat-sort-arrow-color: #757575;
}

html {
  --mat-toolbar-container-background-color: whitesmoke;
  --mat-toolbar-container-text-color: rgba(0, 0, 0, 0.85);
}

.mat-toolbar.mat-primary {
  --mat-toolbar-container-background-color: #2f3b51;
  --mat-toolbar-container-text-color: white;
}
.mat-toolbar.mat-accent {
  --mat-toolbar-container-background-color: #107a83;
  --mat-toolbar-container-text-color: white;
}
.mat-toolbar.mat-warn {
  --mat-toolbar-container-background-color: #d53f1e;
  --mat-toolbar-container-text-color: white;
}

html {
  --mat-toolbar-standard-height: 64px;
  --mat-toolbar-mobile-height: 56px;
}

html {
  --mat-toolbar-title-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-toolbar-title-text-line-height: 1.2;
  --mat-toolbar-title-text-size: 20px;
  --mat-toolbar-title-text-tracking: normal;
  --mat-toolbar-title-text-weight: 600;
}

html {
  --mat-tree-container-background-color: white;
  --mat-tree-node-text-color: rgba(0, 0, 0, 0.85);
}

html {
  --mat-tree-node-min-height: 48px;
}

html {
  --mat-tree-node-text-font: Roboto, Arial, Helvetica, sans-serif;
  --mat-tree-node-text-size: 14px;
  --mat-tree-node-text-weight: 700;
}

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-checkbox-unchecked-color: #828282;
  --ag-checkbox-checked-color: #828282;
  --ag-checkbox-indeterminate-color: #828282;
  --ag-row-hover-color: #CCCCCC;
  --ag-selected-row-background-color: #E0E0E0;
}
ag-grid-angular.ag-theme-material .ag-row-odd {
  background-color: #F0F0F0;
}
ag-grid-angular.ag-theme-material .ag-input-field-input {
  --ag-material-primary-color: #828282;
}
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;
}
ag-grid-angular.ag-theme-material .ag-icon-filter::before {
  content: none;
}
ag-grid-angular.ag-theme-material .ag-checkbox-input-wrapper.ag-checked::after {
  --ag-checkbox-checked-color: #828282;
  color: var(--ag-checkbox-checked-color);
}

.ag-column-drop-cell .ag-column-drop-cell-button {
  background-repeat: no-repeat;
  color: rgba(245, 245, 245, 0.87);
}

[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 {
  /* TODO(mdc-migration): The following rule targets internal classes of button that may no longer apply for the MDC version.*/
}
.nx-calendar-controls .nx-calendar-period-button .mdc-button__label {
  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 .mat-mdc-icon-button {
  --mdc-icon-button-state-layer-size: 1.5em;
  font-size: inherit;
  line-height: 1em;
  vertical-align: baseline;
  padding: 0;
}
.nx-datepicker-toggle .mat-mdc-icon-button .nx-datepicker-toggle-default-icon {
  width: 1em;
}

.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 !important;
}
.nx-predefined-date-range-selected .nx-predefined-date-range-label {
  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 {
  /* TODO(mdc-migration): The following rule targets internal classes of input that may no longer apply for the MDC version.*/
}
.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 {
  /* TODO(mdc-migration): The following rule targets internal classes of input that may no longer apply for the MDC version.*/
}
.nx-form-field-boxed.mat-focused .mat-input-flex {
  border-width: 2px;
  border-style: solid;
}
.nx-form-field-boxed.mat-focused {
  /* TODO(mdc-migration): The following rule targets internal classes of input that may no longer apply for the MDC version.*/
}
.nx-form-field-boxed.mat-focused .mat-input-flex {
  border-color: #2f3b51;
  transition: border 150ms linear;
}
.nx-form-field-boxed.mat-form-field-invalid {
  /* TODO(mdc-migration): The following rule targets internal classes of input that may no longer apply for the MDC version.*/
}
.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-mdc-form-field-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;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.mat-focused .mat-form-field-required-marker {
  color: #2f3b51;
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.mat-form-field-underline {
  background-color: rgba(0, 0, 0, 0.42);
}

.mat-form-field-disabled {
  color: rgba(0, 0, 0, 0.35);
}

/* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
.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 {
  /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
}
.mat-form-field-invalid .mat-form-field-placeholder {
  color: #d53f1e;
  /* TODO(mdc-migration): The following rule targets internal classes of form-field that may no longer apply for the MDC version.*/
}
.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-mdc-form-field-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-mdc-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);
  transition-duration: 450ms !important;
}
.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);
  transition-duration: 450ms !important;
}
.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);
  transition-duration: 450ms !important;
}

.nx-range-slider {
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
}
.nx-range-slider .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26);
}
.nx-range-slider .mat-primary {
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
}
.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 {
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
}
.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 {
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
}
.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-mdc-slider:hover,
.nx-range-slider .cdk-focused {
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
}
.nx-range-slider .mat-mdc-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 {
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
}
.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 {
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
}
.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 {
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
}
.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 {
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
}
.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 {
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
}
.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) {
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
}
.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, .nx-range-slider .mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused {
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
  /* TODO(mdc-migration): The following rule targets internal classes of slider that may no longer apply for the MDC version. */
}
.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-mdc-form-field.mat-focused.mat-primary .nx-select-arrow {
  color: #2f3b51;
}
.mat-mdc-form-field.mat-focused.mat-accent .nx-select-arrow {
  color: #107a83;
}
.mat-mdc-form-field.mat-focused.mat-warn .nx-select-arrow {
  color: #d53f1e;
}
.mat-mdc-form-field .nx-select.nx-select-invalid .nx-select-arrow {
  color: #d53f1e;
}
.mat-mdc-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 !important;
}

.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-mdc-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=h07.css.map */
