/*!***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[5].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[5].rules[1].use[1]!./src/styles.scss?ngGlobalStyle ***!
  \***********************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css?family=Roboto);
/*!***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[5].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[5].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[5].rules[1].use[1]!./src/styles.scss?ngGlobalStyle (1) ***!
  \***************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/** Based upon Material built-in breakpoints: https://material.angular.io/cdk/layout/overview */
:root {
  --nextech-transition-duration: 225ms;
  --nextech-transition-easing: cubic-bezier(0.4, 0, 0.2, 1);
  --nextech-transition-duration-inbetween: calc(
    var(--nextech-transition-duration) * 0.844
  );
  --nextech-transition-easing-inbetween: linear;
}

.nextech-transition {
  transition-duration: var(--nextech-transition-duration);
  transition-timing-function: var(--nextech-transition-easing);
}

.nextech-transition-all {
  transition-duration: var(--nextech-transition-duration);
  transition-timing-function: var(--nextech-transition-easing);
  transition-property: all;
}

.nextech-transition-rotate {
  transition-duration: var(--nextech-transition-duration);
  transition-timing-function: var(--nextech-transition-easing);
  transition-property: transform;
}

.nextech-transition-rotate-180 {
  transform: rotate(180deg);
}

.nextech-expansion-container {
  transition-duration: var(--nextech-transition-duration);
  transition-timing-function: var(--nextech-transition-easing);
  transition-property: grid-template-rows;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 0fr;
  overflow: hidden;
}
@supports not (grid-template-columns: 0fr) {
  .nextech-expansion-container {
    height: 0;
  }
}
.nextech-expansion-container--expanded {
  grid-template-rows: 1fr;
}
@supports not (grid-template-columns: 0fr) {
  .nextech-expansion-container--expanded {
    height: auto;
  }
}
.nextech-expansion-content {
  transition-property: visibility;
  transition-duration: var(--nextech-transition-duration-inbetween);
  min-height: 0;
  visibility: hidden;
}
.nextech-expansion-content--expanded {
  visibility: visible;
}

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

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

html {
  --mat-ripple-color: rgba(0, 0, 0, 0.1);
  --mat-option-selected-state-label-text-color: #155fc0;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.87);
  --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-optgroup-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-full-pseudo-checkbox-selected-icon-color: #176e42;
  --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: #176e42;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
  --mat-app-background-color: #fafafa;
  --mat-app-text-color: rgba(0, 0, 0, 0.87);
  --mat-option-label-text-font: 'Open Sans', sans-serif;
  --mat-option-label-text-line-height: 1.5;
  --mat-option-label-text-size: 14px;
  --mat-option-label-text-tracking: 0.1px;
  --mat-option-label-text-weight: 400;
  --mat-optgroup-label-text-font: 'Open Sans', sans-serif;
  --mat-optgroup-label-text-line-height: 1.5;
  --mat-optgroup-label-text-size: 14px;
  --mat-optgroup-label-text-tracking: 0.1px;
  --mat-optgroup-label-text-weight: 400;
  --mdc-elevated-card-container-shape: 4px;
  --mdc-outlined-card-container-shape: 4px;
  --mdc-outlined-card-outline-width: 1px;
  --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);
  --mat-card-title-text-font: 'Open Sans', sans-serif;
  --mat-card-title-text-line-height: 1.3;
  --mat-card-title-text-size: 22px;
  --mat-card-title-text-tracking: normal;
  --mat-card-title-text-weight: 600;
  --mat-card-subtitle-text-font: 'Open Sans', sans-serif;
  --mat-card-subtitle-text-line-height: 1.5;
  --mat-card-subtitle-text-size: 14px;
  --mat-card-subtitle-text-tracking: 0.01px;
  --mat-card-subtitle-text-weight: 400;
  --mdc-linear-progress-active-indicator-height: 4px;
  --mdc-linear-progress-track-height: 4px;
  --mdc-linear-progress-track-shape: 0;
  --mdc-plain-tooltip-container-shape: 4px;
  --mdc-plain-tooltip-supporting-text-line-height: 16px;
  --mdc-plain-tooltip-container-color: #616161;
  --mdc-plain-tooltip-supporting-text-color: #fff;
  --mdc-plain-tooltip-supporting-text-font: 'Open Sans', sans-serif;
  --mdc-plain-tooltip-supporting-text-size: 12px;
  --mdc-plain-tooltip-supporting-text-weight: 400;
  --mdc-plain-tooltip-supporting-text-tracking: 0.1px;
  --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;
  --mdc-filled-text-field-caret-color: #155fc0;
  --mdc-filled-text-field-focus-active-indicator-color: #155fc0;
  --mdc-filled-text-field-focus-label-text-color: rgba(21, 95, 192, 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: #ba1a1a;
  --mdc-filled-text-field-error-focus-label-text-color: #ba1a1a;
  --mdc-filled-text-field-error-label-text-color: #ba1a1a;
  --mdc-filled-text-field-error-caret-color: #ba1a1a;
  --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: #ba1a1a;
  --mdc-filled-text-field-error-focus-active-indicator-color: #ba1a1a;
  --mdc-filled-text-field-error-hover-active-indicator-color: #ba1a1a;
  --mdc-outlined-text-field-caret-color: #155fc0;
  --mdc-outlined-text-field-focus-outline-color: #155fc0;
  --mdc-outlined-text-field-focus-label-text-color: rgba(21, 95, 192, 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: #ba1a1a;
  --mdc-outlined-text-field-error-focus-label-text-color: #ba1a1a;
  --mdc-outlined-text-field-error-label-text-color: #ba1a1a;
  --mdc-outlined-text-field-error-hover-label-text-color: #ba1a1a;
  --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: #ba1a1a;
  --mdc-outlined-text-field-error-hover-outline-color: #ba1a1a;
  --mdc-outlined-text-field-error-outline-color: #ba1a1a;
  --mat-form-field-focus-select-arrow-color: rgba(21, 95, 192, 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: #ba1a1a;
  --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-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;
  --mdc-filled-text-field-label-text-font: 'Open Sans', sans-serif;
  --mdc-filled-text-field-label-text-size: 14px;
  --mdc-filled-text-field-label-text-tracking: 0.1px;
  --mdc-filled-text-field-label-text-weight: 400;
  --mdc-outlined-text-field-label-text-font: 'Open Sans', sans-serif;
  --mdc-outlined-text-field-label-text-size: 14px;
  --mdc-outlined-text-field-label-text-tracking: 0.1px;
  --mdc-outlined-text-field-label-text-weight: 400;
  --mat-form-field-container-text-font: 'Open Sans', sans-serif;
  --mat-form-field-container-text-line-height: 1.5;
  --mat-form-field-container-text-size: 14px;
  --mat-form-field-container-text-tracking: 0.1px;
  --mat-form-field-container-text-weight: 400;
  --mat-form-field-outlined-label-text-populated-size: 14px;
  --mat-form-field-subscript-text-font: 'Open Sans', sans-serif;
  --mat-form-field-subscript-text-line-height: 1.4;
  --mat-form-field-subscript-text-size: 12px;
  --mat-form-field-subscript-text-tracking: 0.1px;
  --mat-form-field-subscript-text-weight: 400;
  --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);
  --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(21, 95, 192, 0.87);
  --mat-select-invalid-arrow-color: rgba(186, 26, 26, 0.87);
  --mat-select-arrow-transform: translateY(-8px);
  --mat-select-trigger-text-font: 'Open Sans', sans-serif;
  --mat-select-trigger-text-line-height: 1.5;
  --mat-select-trigger-text-size: 14px;
  --mat-select-trigger-text-tracking: 0.1px;
  --mat-select-trigger-text-weight: 400;
  --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);
  --mat-autocomplete-background-color: white;
  --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;
  --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);
  --mdc-dialog-subhead-font: 'Open Sans', sans-serif;
  --mdc-dialog-subhead-line-height: 1.3;
  --mdc-dialog-subhead-size: 22px;
  --mdc-dialog-subhead-weight: 600;
  --mdc-dialog-subhead-tracking: normal;
  --mdc-dialog-supporting-text-font: 'Open Sans', 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: 0.1px;
  --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;
  --mdc-switch-selected-focus-state-layer-color: #155fc0;
  --mdc-switch-selected-handle-color: #155fc0;
  --mdc-switch-selected-hover-state-layer-color: #155fc0;
  --mdc-switch-selected-pressed-state-layer-color: #155fc0;
  --mdc-switch-selected-focus-handle-color: #090c33;
  --mdc-switch-selected-hover-handle-color: #090c33;
  --mdc-switch-selected-pressed-handle-color: #090c33;
  --mdc-switch-selected-focus-track-color: #79c6ff;
  --mdc-switch-selected-hover-track-color: #79c6ff;
  --mdc-switch-selected-pressed-track-color: #79c6ff;
  --mdc-switch-selected-track-color: #79c6ff;
  --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.38);
  --mdc-switch-state-layer-size: 40px;
  --mdc-radio-disabled-selected-icon-opacity: 0.38;
  --mdc-radio-disabled-unselected-icon-opacity: 0.38;
  --mdc-radio-state-layer-size: 40px;
  --mdc-radio-state-layer-size: 40px;
  --mat-radio-touch-target-display: block;
  --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;
  --mdc-slider-handle-color: #155fc0;
  --mdc-slider-focus-handle-color: #155fc0;
  --mdc-slider-hover-handle-color: #155fc0;
  --mdc-slider-active-track-color: #155fc0;
  --mdc-slider-inactive-track-color: #155fc0;
  --mdc-slider-with-tick-marks-inactive-container-color: #155fc0;
  --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: #155fc0;
  --mat-slider-hover-state-layer-color: rgba(21, 95, 192, 0.05);
  --mat-slider-focus-state-layer-color: rgba(21, 95, 192, 0.2);
  --mat-slider-value-indicator-opacity: 0.6;
  --mdc-slider-label-label-text-font: 'Open Sans', sans-serif;
  --mdc-slider-label-label-text-size: 14px;
  --mdc-slider-label-label-text-line-height: 1.5;
  --mdc-slider-label-label-text-tracking: 0.01px;
  --mdc-slider-label-label-text-weight: 400;
  --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;
  --mat-menu-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-menu-item-icon-color: rgba(0, 0, 0, 0.87);
  --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.12);
  --mat-menu-item-label-text-font: 'Open Sans', sans-serif;
  --mat-menu-item-label-text-size: 14px;
  --mat-menu-item-label-text-tracking: 0.1px;
  --mat-menu-item-label-text-line-height: 1.5;
  --mat-menu-item-label-text-weight: 400;
  --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;
  --mdc-list-list-item-label-text-color: rgba(0, 0, 0, 0.87);
  --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.87);
  --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.87);
  --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-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-list-item-label-text-font: 'Open Sans', 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: 0.1px;
  --mdc-list-list-item-label-text-weight: 400;
  --mdc-list-list-item-supporting-text-font: 'Open Sans', 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: 0.1px;
  --mdc-list-list-item-supporting-text-weight: 400;
  --mdc-list-list-item-trailing-supporting-text-font: 'Open Sans', sans-serif;
  --mdc-list-list-item-trailing-supporting-text-line-height: 1.4;
  --mdc-list-list-item-trailing-supporting-text-size: 12px;
  --mdc-list-list-item-trailing-supporting-text-tracking: 0.1px;
  --mdc-list-list-item-trailing-supporting-text-weight: 400;
  --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);
  --mat-paginator-container-size: 56px;
  --mat-paginator-form-field-container-height: 40px;
  --mat-paginator-form-field-container-vertical-padding: 8px;
  --mat-paginator-container-text-font: 'Open Sans', sans-serif;
  --mat-paginator-container-text-line-height: 1.4;
  --mat-paginator-container-text-size: 12px;
  --mat-paginator-container-text-tracking: 0.1px;
  --mat-paginator-container-text-weight: 400;
  --mat-paginator-select-trigger-text-size: 12px;
  --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;
  --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;
  --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: #176e42;
  --mdc-checkbox-selected-hover-icon-color: #176e42;
  --mdc-checkbox-selected-icon-color: #176e42;
  --mdc-checkbox-selected-pressed-icon-color: #176e42;
  --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: #176e42;
  --mdc-checkbox-selected-hover-state-layer-color: #176e42;
  --mdc-checkbox-selected-pressed-state-layer-color: #176e42;
  --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.38);
  --mdc-checkbox-state-layer-size: 40px;
  --mat-checkbox-touch-target-display: block;
  --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;
  --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.12);
  --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.12);
  --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;
  --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;
  --mdc-text-button-label-text-font: 'Open Sans', sans-serif;
  --mdc-text-button-label-text-size: 14px;
  --mdc-text-button-label-text-tracking: 0.1px;
  --mdc-text-button-label-text-weight: 600;
  --mdc-text-button-label-text-transform: none;
  --mdc-filled-button-label-text-font: 'Open Sans', sans-serif;
  --mdc-filled-button-label-text-size: 14px;
  --mdc-filled-button-label-text-tracking: 0.1px;
  --mdc-filled-button-label-text-weight: 600;
  --mdc-filled-button-label-text-transform: none;
  --mdc-outlined-button-label-text-font: 'Open Sans', sans-serif;
  --mdc-outlined-button-label-text-size: 14px;
  --mdc-outlined-button-label-text-tracking: 0.1px;
  --mdc-outlined-button-label-text-weight: 600;
  --mdc-outlined-button-label-text-transform: none;
  --mdc-protected-button-label-text-font: 'Open Sans', sans-serif;
  --mdc-protected-button-label-text-size: 14px;
  --mdc-protected-button-label-text-tracking: 0.1px;
  --mdc-protected-button-label-text-weight: 600;
  --mdc-protected-button-label-text-transform: none;
  --mdc-icon-button-icon-size: 24px;
  --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;
  --mat-icon-button-touch-target-display: block;
  --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;
  --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;
  --mat-fab-touch-target-display: block;
  --mat-fab-small-touch-target-display: block;
  --mdc-extended-fab-label-text-font: 'Open Sans', sans-serif;
  --mdc-extended-fab-label-text-size: 14px;
  --mdc-extended-fab-label-text-tracking: 0.1px;
  --mdc-extended-fab-label-text-weight: 600;
  --mdc-snackbar-container-shape: 4px;
  --mdc-snackbar-container-color: #333333;
  --mdc-snackbar-supporting-text-color: rgba(255, 255, 255, 0.87);
  --mat-snack-bar-button-color: #176e42;
  --mdc-snackbar-supporting-text-font: 'Open Sans', sans-serif;
  --mdc-snackbar-supporting-text-line-height: 1.5;
  --mdc-snackbar-supporting-text-size: 14px;
  --mdc-snackbar-supporting-text-weight: 400;
  --mat-table-row-item-outline-width: 1px;
  --mat-table-background-color: white;
  --mat-table-header-headline-color: rgba(0, 0, 0, 0.87);
  --mat-table-row-item-label-text-color: rgba(0, 0, 0, 0.87);
  --mat-table-row-item-outline-color: rgba(0, 0, 0, 0.12);
  --mat-table-header-container-height: 56px;
  --mat-table-footer-container-height: 52px;
  --mat-table-row-item-container-height: 52px;
  --mat-table-header-headline-font: 'Open Sans', sans-serif;
  --mat-table-header-headline-line-height: 1.5;
  --mat-table-header-headline-size: 14px;
  --mat-table-header-headline-weight: 400;
  --mat-table-header-headline-tracking: 0.01px;
  --mat-table-row-item-label-text-font: 'Open Sans', 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: 400;
  --mat-table-row-item-label-text-tracking: 0.1px;
  --mat-table-footer-supporting-text-font: 'Open Sans', sans-serif;
  --mat-table-footer-supporting-text-line-height: 1.5;
  --mat-table-footer-supporting-text-size: 14px;
  --mat-table-footer-supporting-text-weight: 400;
  --mat-table-footer-supporting-text-tracking: 0.1px;
  --mdc-circular-progress-active-indicator-width: 4px;
  --mdc-circular-progress-size: 48px;
  --mdc-circular-progress-active-indicator-color: #155fc0;
  --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;
  --mat-badge-background-color: #155fc0;
  --mat-badge-text-color: white;
  --mat-badge-disabled-state-background-color: #b9b9b9;
  --mat-badge-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-badge-text-font: 'Open Sans', 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-bottom-sheet-container-shape: 4px;
  --mat-bottom-sheet-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-bottom-sheet-container-background-color: white;
  --mat-bottom-sheet-container-text-font: 'Open Sans', sans-serif;
  --mat-bottom-sheet-container-text-line-height: 1.5;
  --mat-bottom-sheet-container-text-size: 14px;
  --mat-bottom-sheet-container-text-tracking: 0.1px;
  --mat-bottom-sheet-container-text-weight: 400;
  --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;
  --mat-legacy-button-toggle-text-color: rgba(0, 0, 0, 0.38);
  --mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, 0.12);
  --mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, 0.54);
  --mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;
  --mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --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.87);
  --mat-standard-button-toggle-background-color: white;
  --mat-standard-button-toggle-state-layer-color: black;
  --mat-standard-button-toggle-selected-state-background-color: #e0e0e0;
  --mat-standard-button-toggle-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --mat-standard-button-toggle-disabled-state-background-color: white;
  --mat-standard-button-toggle-disabled-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;
  --mat-standard-button-toggle-divider-color: #e0e0e0;
  --mat-standard-button-toggle-height: 48px;
  --mat-legacy-button-toggle-label-text-font: 'Open Sans', 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: 0.1px;
  --mat-legacy-button-toggle-label-text-weight: 400;
  --mat-standard-button-toggle-label-text-font: 'Open Sans', 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: 0.1px;
  --mat-standard-button-toggle-label-text-weight: 400;
  --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);
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #155fc0;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(21, 95, 192, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(21, 95, 192, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(21, 95, 192, 0.3);
  --mat-datepicker-toggle-active-state-icon-color: #155fc0;
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(21, 95, 192, 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.12);
  --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.87);
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, 0.24);
  --mat-datepicker-range-input-separator-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-container-background-color: white;
  --mat-datepicker-calendar-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-text-font: 'Open Sans', sans-serif;
  --mat-datepicker-calendar-text-size: 13px;
  --mat-datepicker-calendar-body-label-text-size: 14px;
  --mat-datepicker-calendar-body-label-text-weight: 600;
  --mat-datepicker-calendar-period-button-text-size: 14px;
  --mat-datepicker-calendar-period-button-text-weight: 600;
  --mat-datepicker-calendar-header-text-size: 11px;
  --mat-datepicker-calendar-header-text-weight: 400;
  --mat-divider-width: 1px;
  --mat-divider-color: rgba(0, 0, 0, 0.12);
  --mat-expansion-container-shape: 4px;
  --mat-expansion-legacy-header-indicator-display: inline-block;
  --mat-expansion-header-indicator-display: none;
  --mat-expansion-container-background-color: white;
  --mat-expansion-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-expansion-actions-divider-color: rgba(0, 0, 0, 0.12);
  --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.26);
  --mat-expansion-header-text-color: rgba(0, 0, 0, 0.87);
  --mat-expansion-header-description-color: rgba(0, 0, 0, 0.54);
  --mat-expansion-header-indicator-color: rgba(0, 0, 0, 0.54);
  --mat-expansion-header-collapsed-state-height: 48px;
  --mat-expansion-header-expanded-state-height: 64px;
  --mat-expansion-header-text-font: 'Open Sans', sans-serif;
  --mat-expansion-header-text-size: 14px;
  --mat-expansion-header-text-weight: 400;
  --mat-expansion-header-text-line-height: inherit;
  --mat-expansion-header-text-tracking: inherit;
  --mat-expansion-container-text-font: 'Open Sans', sans-serif;
  --mat-expansion-container-text-line-height: 1.5;
  --mat-expansion-container-text-size: 14px;
  --mat-expansion-container-text-tracking: 0.1px;
  --mat-expansion-container-text-weight: 400;
  --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;
  --mat-icon-color: inherit;
  --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;
  --mat-sidenav-container-divider-color: rgba(0, 0, 0, 0.12);
  --mat-sidenav-container-background-color: white;
  --mat-sidenav-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-sidenav-content-background-color: #fafafa;
  --mat-sidenav-content-text-color: rgba(0, 0, 0, 0.87);
  --mat-sidenav-scrim-color: rgba(0, 0, 0, 0.6);
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #155fc0;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #155fc0;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #155fc0;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
  --mat-stepper-container-color: white;
  --mat-stepper-line-color: rgba(0, 0, 0, 0.12);
  --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.87);
  --mat-stepper-header-error-state-label-text-color: #ba1a1a;
  --mat-stepper-header-icon-background-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-error-state-icon-foreground-color: #ba1a1a;
  --mat-stepper-header-error-state-icon-background-color: transparent;
  --mat-stepper-header-height: 72px;
  --mat-stepper-container-text-font: 'Open Sans', sans-serif;
  --mat-stepper-header-label-text-font: 'Open Sans', sans-serif;
  --mat-stepper-header-label-text-size: 14px;
  --mat-stepper-header-label-text-weight: 400;
  --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;
  --mat-sort-arrow-color: #757575;
  --mat-toolbar-container-background-color: whitesmoke;
  --mat-toolbar-container-text-color: rgba(0, 0, 0, 0.87);
  --mat-toolbar-standard-height: 64px;
  --mat-toolbar-mobile-height: 56px;
  --mat-toolbar-title-text-font: 'Open Sans', sans-serif;
  --mat-toolbar-title-text-line-height: 1.3;
  --mat-toolbar-title-text-size: 22px;
  --mat-toolbar-title-text-tracking: normal;
  --mat-toolbar-title-text-weight: 600;
  --mat-tree-container-background-color: white;
  --mat-tree-node-text-color: rgba(0, 0, 0, 0.87);
  --mat-tree-node-min-height: 48px;
  --mat-tree-node-text-font: 'Open Sans', sans-serif;
  --mat-tree-node-text-size: 14px;
  --mat-tree-node-text-weight: 400;
  --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: #155fc0;
  --mdc-checkbox-selected-hover-icon-color: #155fc0;
  --mdc-checkbox-selected-icon-color: #155fc0;
  --mdc-checkbox-selected-pressed-icon-color: #155fc0;
  --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: #155fc0;
  --mdc-checkbox-selected-hover-state-layer-color: #155fc0;
  --mdc-checkbox-selected-pressed-state-layer-color: #155fc0;
  --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.38);
  --mat-full-pseudo-checkbox-selected-icon-color: #155fc0;
  --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: #155fc0;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
  --mdc-list-list-item-label-text-color: rgba(0, 0, 0, 0.87);
  --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.87);
  --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.87);
  --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-switch-selected-focus-state-layer-color: #155fc0;
  --mdc-switch-selected-handle-color: #155fc0;
  --mdc-switch-selected-hover-state-layer-color: #155fc0;
  --mdc-switch-selected-pressed-state-layer-color: #155fc0;
  --mdc-switch-selected-focus-handle-color: #090c33;
  --mdc-switch-selected-hover-handle-color: #090c33;
  --mdc-switch-selected-pressed-handle-color: #090c33;
  --mdc-switch-selected-focus-track-color: #79c6ff;
  --mdc-switch-selected-hover-track-color: #79c6ff;
  --mdc-switch-selected-pressed-track-color: #79c6ff;
  --mdc-switch-selected-track-color: #79c6ff;
  --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.38);
  --mdc-snackbar-container-color: #333333;
  --mdc-snackbar-supporting-text-color: rgba(255, 255, 255, 0.87);
  --mat-snack-bar-button-color: #155fc0;
  --mat-badge-text-font: 'Open Sans', 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-bottom-sheet-container-text-font: 'Open Sans', sans-serif;
  --mat-bottom-sheet-container-text-line-height: 1.5;
  --mat-bottom-sheet-container-text-size: 14px;
  --mat-bottom-sheet-container-text-tracking: 0.1px;
  --mat-bottom-sheet-container-text-weight: 400;
  --mat-legacy-button-toggle-label-text-font: 'Open Sans', 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: 0.1px;
  --mat-legacy-button-toggle-label-text-weight: 400;
  --mat-standard-button-toggle-label-text-font: 'Open Sans', 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: 0.1px;
  --mat-standard-button-toggle-label-text-weight: 400;
  --mat-datepicker-calendar-text-font: 'Open Sans', sans-serif;
  --mat-datepicker-calendar-text-size: 13px;
  --mat-datepicker-calendar-body-label-text-size: 14px;
  --mat-datepicker-calendar-body-label-text-weight: 600;
  --mat-datepicker-calendar-period-button-text-size: 14px;
  --mat-datepicker-calendar-period-button-text-weight: 600;
  --mat-datepicker-calendar-header-text-size: 11px;
  --mat-datepicker-calendar-header-text-weight: 400;
  --mat-expansion-header-text-font: 'Open Sans', sans-serif;
  --mat-expansion-header-text-size: 14px;
  --mat-expansion-header-text-weight: 400;
  --mat-expansion-header-text-line-height: inherit;
  --mat-expansion-header-text-tracking: inherit;
  --mat-expansion-container-text-font: 'Open Sans', sans-serif;
  --mat-expansion-container-text-line-height: 1.5;
  --mat-expansion-container-text-size: 14px;
  --mat-expansion-container-text-tracking: 0.1px;
  --mat-expansion-container-text-weight: 400;
  --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;
  --mat-stepper-container-text-font: 'Open Sans', sans-serif;
  --mat-stepper-header-label-text-font: 'Open Sans', sans-serif;
  --mat-stepper-header-label-text-size: 14px;
  --mat-stepper-header-label-text-weight: 400;
  --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;
  --mat-toolbar-title-text-font: 'Open Sans', sans-serif;
  --mat-toolbar-title-text-line-height: 1.3;
  --mat-toolbar-title-text-size: 22px;
  --mat-toolbar-title-text-tracking: normal;
  --mat-toolbar-title-text-weight: 600;
  --mat-tree-node-text-font: 'Open Sans', sans-serif;
  --mat-tree-node-text-size: 14px;
  --mat-tree-node-text-weight: 400;
  --mat-option-label-text-font: 'Open Sans', sans-serif;
  --mat-option-label-text-line-height: 1.5;
  --mat-option-label-text-size: 14px;
  --mat-option-label-text-tracking: 0.1px;
  --mat-option-label-text-weight: 400;
  --mat-optgroup-label-text-font: 'Open Sans', sans-serif;
  --mat-optgroup-label-text-line-height: 1.5;
  --mat-optgroup-label-text-size: 14px;
  --mat-optgroup-label-text-tracking: 0.1px;
  --mat-optgroup-label-text-weight: 400;
  --mat-card-title-text-font: 'Open Sans', sans-serif;
  --mat-card-title-text-line-height: 1.3;
  --mat-card-title-text-size: 22px;
  --mat-card-title-text-tracking: normal;
  --mat-card-title-text-weight: 600;
  --mat-card-subtitle-text-font: 'Open Sans', sans-serif;
  --mat-card-subtitle-text-line-height: 1.5;
  --mat-card-subtitle-text-size: 14px;
  --mat-card-subtitle-text-tracking: 0.01px;
  --mat-card-subtitle-text-weight: 400;
  --mdc-plain-tooltip-supporting-text-font: 'Open Sans', sans-serif;
  --mdc-plain-tooltip-supporting-text-size: 12px;
  --mdc-plain-tooltip-supporting-text-weight: 400;
  --mdc-plain-tooltip-supporting-text-tracking: 0.1px;
  --mdc-filled-text-field-label-text-font: 'Open Sans', sans-serif;
  --mdc-filled-text-field-label-text-size: 14px;
  --mdc-filled-text-field-label-text-tracking: 0.1px;
  --mdc-filled-text-field-label-text-weight: 400;
  --mdc-outlined-text-field-label-text-font: 'Open Sans', sans-serif;
  --mdc-outlined-text-field-label-text-size: 14px;
  --mdc-outlined-text-field-label-text-tracking: 0.1px;
  --mdc-outlined-text-field-label-text-weight: 400;
  --mat-form-field-container-text-font: 'Open Sans', sans-serif;
  --mat-form-field-container-text-line-height: 1.5;
  --mat-form-field-container-text-size: 14px;
  --mat-form-field-container-text-tracking: 0.1px;
  --mat-form-field-container-text-weight: 400;
  --mat-form-field-outlined-label-text-populated-size: 14px;
  --mat-form-field-subscript-text-font: 'Open Sans', sans-serif;
  --mat-form-field-subscript-text-line-height: 1.4;
  --mat-form-field-subscript-text-size: 12px;
  --mat-form-field-subscript-text-tracking: 0.1px;
  --mat-form-field-subscript-text-weight: 400;
  --mat-select-trigger-text-font: 'Open Sans', sans-serif;
  --mat-select-trigger-text-line-height: 1.5;
  --mat-select-trigger-text-size: 14px;
  --mat-select-trigger-text-tracking: 0.1px;
  --mat-select-trigger-text-weight: 400;
  --mdc-dialog-subhead-font: 'Open Sans', sans-serif;
  --mdc-dialog-subhead-line-height: 1.3;
  --mdc-dialog-subhead-size: 22px;
  --mdc-dialog-subhead-weight: 600;
  --mdc-dialog-subhead-tracking: normal;
  --mdc-dialog-supporting-text-font: 'Open Sans', 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: 0.1px;
  --mdc-slider-label-label-text-font: 'Open Sans', sans-serif;
  --mdc-slider-label-label-text-size: 14px;
  --mdc-slider-label-label-text-line-height: 1.5;
  --mdc-slider-label-label-text-tracking: 0.01px;
  --mdc-slider-label-label-text-weight: 400;
  --mat-menu-item-label-text-font: 'Open Sans', sans-serif;
  --mat-menu-item-label-text-size: 14px;
  --mat-menu-item-label-text-tracking: 0.1px;
  --mat-menu-item-label-text-line-height: 1.5;
  --mat-menu-item-label-text-weight: 400;
  --mdc-list-list-item-label-text-font: 'Open Sans', 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: 0.1px;
  --mdc-list-list-item-label-text-weight: 400;
  --mdc-list-list-item-supporting-text-font: 'Open Sans', 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: 0.1px;
  --mdc-list-list-item-supporting-text-weight: 400;
  --mdc-list-list-item-trailing-supporting-text-font: 'Open Sans', sans-serif;
  --mdc-list-list-item-trailing-supporting-text-line-height: 1.4;
  --mdc-list-list-item-trailing-supporting-text-size: 12px;
  --mdc-list-list-item-trailing-supporting-text-tracking: 0.1px;
  --mdc-list-list-item-trailing-supporting-text-weight: 400;
  --mat-paginator-container-text-font: 'Open Sans', sans-serif;
  --mat-paginator-container-text-line-height: 1.4;
  --mat-paginator-container-text-size: 12px;
  --mat-paginator-container-text-tracking: 0.1px;
  --mat-paginator-container-text-weight: 400;
  --mat-paginator-select-trigger-text-size: 12px;
  --mdc-text-button-label-text-font: 'Open Sans', sans-serif;
  --mdc-text-button-label-text-size: 14px;
  --mdc-text-button-label-text-tracking: 0.1px;
  --mdc-text-button-label-text-weight: 600;
  --mdc-text-button-label-text-transform: none;
  --mdc-filled-button-label-text-font: 'Open Sans', sans-serif;
  --mdc-filled-button-label-text-size: 14px;
  --mdc-filled-button-label-text-tracking: 0.1px;
  --mdc-filled-button-label-text-weight: 600;
  --mdc-filled-button-label-text-transform: none;
  --mdc-outlined-button-label-text-font: 'Open Sans', sans-serif;
  --mdc-outlined-button-label-text-size: 14px;
  --mdc-outlined-button-label-text-tracking: 0.1px;
  --mdc-outlined-button-label-text-weight: 600;
  --mdc-outlined-button-label-text-transform: none;
  --mdc-protected-button-label-text-font: 'Open Sans', sans-serif;
  --mdc-protected-button-label-text-size: 14px;
  --mdc-protected-button-label-text-tracking: 0.1px;
  --mdc-protected-button-label-text-weight: 600;
  --mdc-protected-button-label-text-transform: none;
  --mdc-extended-fab-label-text-font: 'Open Sans', sans-serif;
  --mdc-extended-fab-label-text-size: 14px;
  --mdc-extended-fab-label-text-tracking: 0.1px;
  --mdc-extended-fab-label-text-weight: 600;
  --mdc-snackbar-supporting-text-font: 'Open Sans', sans-serif;
  --mdc-snackbar-supporting-text-line-height: 1.5;
  --mdc-snackbar-supporting-text-size: 14px;
  --mdc-snackbar-supporting-text-weight: 400;
  --mat-table-header-headline-font: 'Open Sans', sans-serif;
  --mat-table-header-headline-line-height: 1.5;
  --mat-table-header-headline-size: 14px;
  --mat-table-header-headline-weight: 400;
  --mat-table-header-headline-tracking: 0.01px;
  --mat-table-row-item-label-text-font: 'Open Sans', 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: 400;
  --mat-table-row-item-label-text-tracking: 0.1px;
  --mat-table-footer-supporting-text-font: 'Open Sans', sans-serif;
  --mat-table-footer-supporting-text-line-height: 1.5;
  --mat-table-footer-supporting-text-size: 14px;
  --mat-table-footer-supporting-text-weight: 400;
  --mat-table-footer-supporting-text-tracking: 0.1px;
  color-scheme: light;
  --spacing-1: 4px;
  --spacing-2: 8px;
  --spacing-3: 12px;
  --spacing-4: 16px;
  --spacing-8: 32px;
  --spacing-12: 48px;
  --shape-full: 999px;
  --shape-large: 16px;
  --shape-medium: 8px;
  --shape-small: 4px;
  --shape-x-large: 24px;
  --background: #ffffff;
  --background-secondary: #e6f2ed;
  --background-secondary-variant: #cee5db;
  --primary: #155fc0;
  --on-primary: #ffffff;
  --primary-container: #ecf7ff;
  --on-primary-container: #090c33;
  --secondary: #176e42;
  --on-secondary: #ffffff;
  --secondary-container: #e1f5e9;
  --on-secondary-container: #091f14;
  --surface: #ffffff;
  --on-surface: #1b1b1f;
  --on-surface-rgb: 27 31 27;
  --surface-container: #ededf2;
  --surface-container-high: #e7e8ed;
  --surface-container-highest: #e1e2e8;
  --surface-container-low: #f4f5f9;
  --surface-container-lowest: #ffffff;
  --on-surface-variant: #46464a;
  --outline: #727784;
  --outline-variant: #c2c6d4;
  --caution: #e06a00;
  --caution-bright: #fda02a;
  --caution-container: #ffdcbd;
  --on-caution: #000000;
  --on-caution-bright: #000000;
  --on-caution-container: #000000;
  --error: #ba1a1a;
  --error-bright: #ba1a1a;
  --error-container: #ffdad6;
  --on-error: #ffffff;
  --on-error-bright: #ffffff;
  --on-error-container: #410002;
  --info: #155fc0;
  --info-container: #ecf7ff;
  --on-info: #ffffff;
  --on-info-container: #090c33;
  --success: #176e42;
  --success-container: #e1f5e9;
  --on-success: #ffffff;
  --on-success-container: #091f14;
  --disabled-surface: rgba(27, 27, 31, 0.12);
  --on-disabled-surface: rgba(27, 27, 31, 0.38);
  --disabled-surface-variant: rgba(27, 27, 31, 0.04);
  --inverse-primary: #b5e3ff;
  --inverse-surface: #2f3033;
  --on-inverse-surface: #f2f0f4;
  --inverse-surface-variant: #5e5e62;
  --gradient-avatar-end: #103a92;
  --gradient-avatar-start: #1e88e5;
  --gradient-banner-end: #ecf7ff;
  --gradient-banner-start: #e1f5e9;
  --scrim: rgba(0, 0, 0, 0.4);
  --error-dragged: rgba(186, 26, 26, 0.16);
  --error-focused: rgba(186, 26, 26, 0.12);
  --error-hovered: rgba(186, 26, 26, 0.08);
  --error-pressed: rgba(186, 26, 26, 0.12);
  --error-ripple: rgba(186, 26, 26, 0.16);
  --error-selected: rgba(186, 26, 26, 0.12);
  --on-error-dragged: rgba(255, 255, 255, 0.16);
  --on-error-focused: rgba(255, 255, 255, 0.12);
  --on-error-hovered: rgba(255, 255, 255, 0.08);
  --on-error-pressed: rgba(255, 255, 255, 0.12);
  --on-error-ripple: rgba(255, 255, 255, 0.16);
  --on-error-selected: rgba(255, 255, 255, 0.12);
  --on-primary-dragged: rgba(255, 255, 255, 0.16);
  --on-primary-focused: rgba(255, 255, 255, 0.12);
  --on-primary-hovered: rgba(255, 255, 255, 0.08);
  --on-primary-pressed: rgba(255, 255, 255, 0.12);
  --on-primary-ripple: rgba(255, 255, 255, 0.16);
  --on-primary-selected: rgba(255, 255, 255, 0.12);
  --on-primary-container-dragged: rgba(9, 12, 51, 0.16);
  --on-primary-container-focused: rgba(9, 12, 51, 0.12);
  --on-primary-container-hovered: rgba(9, 12, 51, 0.08);
  --on-primary-container-pressed: rgba(9, 12, 51, 0.12);
  --on-primary-container-ripple: rgba(9, 12, 51, 0.16);
  --on-primary-container-selected: rgba(9, 12, 51, 0.12);
  --on-secondary-dragged: rgba(255, 255, 255, 0.16);
  --on-secondary-focused: rgba(255, 255, 255, 0.12);
  --on-secondary-hovered: rgba(255, 255, 255, 0.08);
  --on-secondary-pressed: rgba(255, 255, 255, 0.12);
  --on-secondary-ripple: rgba(249, 249, 252, 0.16);
  --on-secondary-selected: rgba(255, 255, 255, 0.12);
  --on-secondary-container-dragged: rgba(9, 31, 20, 0.16);
  --on-secondary-container-focused: rgba(9, 31, 20, 0.12);
  --on-secondary-container-hovered: rgba(9, 31, 20, 0.08);
  --on-secondary-container-pressed: rgba(9, 31, 20, 0.12);
  --on-secondary-container-ripple: rgba(9, 31, 20, 0.16);
  --on-secondary-container-selected: rgba(9, 31, 20, 0.12);
  --on-surface-dragged: rgba(27, 27, 31, 0.16);
  --on-surface-focused: rgba(27, 27, 31, 0.12);
  --on-surface-hovered: rgba(27, 27, 31, 0.08);
  --on-surface-pressed: rgba(27, 27, 31, 0.12);
  --on-surface-ripple: rgba(27, 27, 31, 0.16);
  --on-surface-selected: rgba(27, 27, 31, 0.12);
  --primary-dragged: rgba(21, 95, 192, 0.16);
  --primary-focused: rgba(21, 95, 192, 0.12);
  --primary-hovered: rgba(21, 95, 192, 0.08);
  --primary-pressed: rgba(21, 95, 192, 0.12);
  --primary-ripple: rgba(21, 95, 192, 0.16);
  --primary-selected: rgba(21, 95, 192, 0.12);
  --secondary-dragged: rgba(23, 110, 66, 0.16);
  --secondary-focused: rgba(23, 110, 66, 0.12);
  --secondary-hovered: rgba(23, 110, 66, 0.08);
  --secondary-pressed: rgba(23, 110, 66, 0.12);
  --secondary-ripple: rgba(23, 110, 66, 0.16);
  --state-hovered: 0.08;
  --state-focused: 0.12;
  --state-pressed: 0.12;
  --state-selected: 0.12;
  --state-dragged: 0.16;
  --state-ripple: 0.16;
  --nav-qap-link: #103a92;
  --navigation-container: light-dark(
    #ffffff,
    #0c0e14
  );
  --navigation-container-active: light-dark(
    rgba(121, 198, 255, 0.12),
    rgba(121, 198, 255, 0.12)
  );
  --navigation-container-active-mix: color-mix(
    in srgb,
    var(--navigation-container),
    var(--on-navigation-container-active) 12%
  );
  --on-navigation-container: light-dark(
    #46464a,
    #c7c6ca
  );
  --on-navigation-container-hovered: light-dark(
    #000000,
    #ffffff
  );
  --on-navigation-container-active: light-dark(
    #103a92,
    #79c6ff
  );
  --on-navigation-container-disabled: light-dark(
    rgba(27, 27, 31, 0.38),
    rgba(242, 240, 244, 0.38)
  );
  --navigation-badge-success: light-dark(
    #176e42,
    #a0debb
  );
  --navigation-on-badge-success: light-dark(
    #ffffff,
    #091f14
  );
  --navigation-badge-info: light-dark(
    #155fc0,
    #b5e3ff
  );
  --navigation-on-badge-info: light-dark(
    #ffffff,
    #090c33
  );
  --navigation-badge-caution: light-dark(
    #e06a00,
    #fbb974
  );
  --navigation-on-badge-caution: light-dark(
    #000000,
    #000000
  );
  --navigation-badge-error: light-dark(
    #ba1a1a,
    #ffb4ab
  );
  --navigation-on-badge-error: light-dark(
    #ffffff,
    #410002
  );
  --typography-body-large-font-size: 16px;
  --typography-body-large-font-weight: 400;
  --typography-body-large-letter-spacing: 0.15px;
  --typography-body-large-line-height: 24px;
  --typography-body-large-prominent-font-size: 16px;
  --typography-body-large-prominent-font-weight: 600;
  --typography-body-large-prominent-letter-spacing: 0.15px;
  --typography-body-large-prominent-line-height: 24px;
  --typography-body-medium-font-size: 14px;
  --typography-body-medium-font-weight: 400;
  --typography-body-medium-letter-spacing: 0.15px;
  --typography-body-medium-line-height: 20px;
  --typography-body-medium-prominent-font-size: 14px;
  --typography-body-medium-prominent-font-weight: 600;
  --typography-body-medium-prominent-letter-spacing: 0.15px;
  --typography-body-medium-prominent-line-height: 20px;
  --typography-display-small-font-size: 36px;
  --typography-display-small-font-weight: 400;
  --typography-display-small-letter-spacing: 0px;
  --typography-display-small-line-height: 44px;
  --typography-font-family: Open Sans, sans-serif;
  --typography-headline-large-font-size: 32px;
  --typography-headline-large-font-weight: 400;
  --typography-headline-large-letter-spacing: 0px;
  --typography-headline-large-line-height: 40px;
  --typography-headline-medium-font-size: 28px;
  --typography-headline-medium-font-weight: 400;
  --typography-headline-medium-letter-spacing: 0px;
  --typography-headline-medium-line-height: 36px;
  --typography-headline-small-font-size: 24px;
  --typography-headline-small-font-weight: 400;
  --typography-headline-small-letter-spacing: 0px;
  --typography-headline-small-line-height: 32px;
  --typography-label-large-font-size: 14px;
  --typography-label-large-font-weight: 400;
  --typography-label-large-letter-spacing: 0.1px;
  --typography-label-large-line-height: 20px;
  --typography-label-large-prominent-font-size: 14px;
  --typography-label-large-prominent-font-weight: 600;
  --typography-label-large-prominent-letter-spacing: 0.1px;
  --typography-label-large-prominent-line-height: 20px;
  --typography-label-medium-font-size: 12px;
  --typography-label-medium-font-weight: 400;
  --typography-label-medium-letter-spacing: 0.1px;
  --typography-label-medium-line-height: 16px;
  --typography-label-medium-prominent-font-size: 12px;
  --typography-label-medium-prominent-font-weight: 600;
  --typography-label-medium-prominent-letter-spacing: 0.1px;
  --typography-label-medium-prominent-line-height: 16px;
  --typography-label-small-font-size: 11px;
  --typography-label-small-font-weight: 400;
  --typography-label-small-letter-spacing: 0.15px;
  --typography-label-small-line-height: 16px;
  --typography-title-large-font-size: 22px;
  --typography-title-large-font-weight: 400;
  --typography-title-large-letter-spacing: 0px;
  --typography-title-large-line-height: 28px;
  --typography-title-large-prominent-font-size: 22px;
  --typography-title-large-prominent-font-weight: 600;
  --typography-title-large-prominent-letter-spacing: 0px;
  --typography-title-large-prominent-line-height: 28px;
  --typography-title-medium-font-size: 16px;
  --typography-title-medium-font-weight: 400;
  --typography-title-medium-letter-spacing: 0.1px;
  --typography-title-medium-line-height: 24px;
  --typography-title-medium-prominent-font-size: 16px;
  --typography-title-medium-prominent-font-weight: 600;
  --typography-title-medium-prominent-letter-spacing: 0.1px;
  --typography-title-medium-prominent-line-height: 24px;
  --typography-title-small-font-size: 14px;
  --typography-title-small-font-weight: 400;
  --typography-title-small-letter-spacing: 0.1px;
  --typography-title-small-line-height: 20px;
  --typography-title-small-prominent-font-size: 14px;
  --typography-title-small-prominent-font-weight: 600;
  --typography-title-small-prominent-letter-spacing: 0.1px;
  --typography-title-small-prominent-line-height: 20px;
  --mdc-theme-primary: var(--primary);
  --mdc-theme-surface: var(--surface);
  --mdc-theme-on-surface: var(--on-surface);
  --mdc-theme-text-primary-on-background: var(--on-surface);
  --mdc-filled-button-container-shape: var(--shape-medium);
  --mdc-outlined-button-container-shape: var(--shape-medium);
  --mdc-outlined-button-outline-width: 2px;
  --mdc-protected-button-container-shape: var(--shape-medium);
  --mdc-text-button-container-shape: var(--shape-medium);
  --mdc-typography-button-font-size: 14px;
  --mat-outlined-button-hover-state-layer-opacity: var(--state-hovered);
  --mdc-filled-button-container-height: 40px;
  --mdc-outlined-button-container-height: 40px;
  --mdc-protected-button-container-height: 40px;
  --mdc-text-button-container-height: 40px;
  --mat-standard-button-toggle-height: 40px;
  --mdc-elevated-card-container-color: var(--surface);
  --mdc-elevated-card-container-shape: var(--shape-large);
  --mdc-outlined-card-container-color: var(--surface);
  --mdc-outlined-card-container-shape: var(--shape-large);
  --mdc-outlined-card-outline-color: var(--outline-variant);
  --mat-card-subtitle-text-color: var(--on-surface-variant);
  --mat-checkbox-disabled-label-color: var(--on-disabled-surface);
  --mdc-checkbox-disabled-selected-checkmark-color: var(--on-primary);
  --mat-full-pseudo-checkbox-unselected-icon-color: var(--on-surface-variant);
  --mdc-chip-with-avatar-avatar-size: 18px;
  --mat-datepicker-calendar-date-today-outline-color: var(--primary);
  --mat-datepicker-calendar-date-in-range-state-background-color: var(
    --primary-container
  );
  --nextech-datepicker-calendar-date-in-range-state-text-color: var(
    --on-primary-container
  );
  --mat-datepicker-calendar-date-hover-state-background-color: var(
    --on-surface-hovered
  );
  /** Datepicker panel only takes up the height it needs */
  --nextech-dialog-spacing: 24px;
  --nextech-dialog-width: 100%;
  --mat-dialog-actions-alignment: flex-end;
  --mat-dialog-headline-padding: var(--nextech-dialog-spacing) var(--nextech-dialog-spacing) var(--spacing-4);
  --mat-dialog-actions-padding: var(--nextech-dialog-spacing);
  --mat-dialog-content-padding: var(--nextech-dialog-spacing);
  --mat-dialog-with-actions-content-padding: var(--nextech-dialog-spacing) var(--nextech-dialog-spacing) 0;
  --mat-divider-color: var(--outline-variant);
  --icon-font-variation-fill: 0;
  --icon-size: 24px;
  --icon-font-weight: normal;
  --mat-icon-button-touch-target-display: none;
  --mdc-icon-button-icon-color: var(--on-surface-variant);
  --nextech-icon-button-outline-color: var(--outline);
  --nextech-icon-button-outline-width: 2px;
  --nextech-icon-button-container-shape: var(--shape-medium);
  --mdc-list-list-item-disabled-label-text-color: var(--on-disabled-surface);
  --mdc-list-list-item-disabled-label-text-opacity: 1;
  --mat-option-selected-state-layer-color: var(--primary-container);
  --mat-option-selected-state-label-text-color: var(--on-primary-container);
  --mat-snack-bar-button-color: var(--inverse-primary);
  --mdc-snackbar-container-color: var(--inverse-surface);
  --mdc-snackbar-supporting-text-color: var(--on-inverse-surface);
  --mat-table-background-color: var(--surface);
  --mat-table-header-headline-color: var(--on-surface);
  --mat-table-header-headline-size: var(
    --typography-label-medium-prominent-font-size
  );
  --mat-table-header-headline-weight: var(
    --typography-label-medium-prominent-font-weight
  );
  --mat-table-row-item-label-text-color: var(--on-surface);
  --mat-table-row-item-outline-color: var(--outline-variant);
  --nextech-table-header-background-color: var(--surface-container);
  --mat-tab-header-divider-height: 1px;
  --mat-tab-header-divider-color: var(--outline-variant);
  --nextech-text-editor-min-height: calc(var(--mat-form-field-container-text-line-height) * var(--mat-form-field-container-text-size));
  --nextech-text-editor-max-height: 250px;
}
html .mat-accent {
  --mat-option-selected-state-label-text-color: #176e42;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.87);
  --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-warn {
  --mat-option-selected-state-label-text-color: #ba1a1a;
  --mat-option-label-text-color: rgba(0, 0, 0, 0.87);
  --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-primary {
  --mat-full-pseudo-checkbox-selected-icon-color: #155fc0;
  --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: #155fc0;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
html .mat-accent {
  --mat-full-pseudo-checkbox-selected-icon-color: #176e42;
  --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: #176e42;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
html .mat-warn {
  --mat-full-pseudo-checkbox-selected-icon-color: #ba1a1a;
  --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: #ba1a1a;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
html .mat-elevation-z0, html .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);
}
html .mat-elevation-z1, html .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);
}
html .mat-elevation-z2, html .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);
}
html .mat-elevation-z3, html .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);
}
html .mat-elevation-z4, html .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);
}
html .mat-elevation-z5, html .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);
}
html .mat-elevation-z6, html .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);
}
html .mat-elevation-z7, html .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);
}
html .mat-elevation-z8, html .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);
}
html .mat-elevation-z9, html .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);
}
html .mat-elevation-z10, html .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);
}
html .mat-elevation-z11, html .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);
}
html .mat-elevation-z12, html .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);
}
html .mat-elevation-z13, html .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);
}
html .mat-elevation-z14, html .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);
}
html .mat-elevation-z15, html .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);
}
html .mat-elevation-z16, html .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);
}
html .mat-elevation-z17, html .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);
}
html .mat-elevation-z18, html .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);
}
html .mat-elevation-z19, html .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);
}
html .mat-elevation-z20, html .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);
}
html .mat-elevation-z21, html .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);
}
html .mat-elevation-z22, html .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);
}
html .mat-elevation-z23, html .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);
}
html .mat-elevation-z24, html .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-mdc-progress-bar {
  --mdc-linear-progress-active-indicator-color: #155fc0;
  --mdc-linear-progress-track-color: rgba(21, 95, 192, 0.25);
}
html .mat-mdc-progress-bar.mat-accent {
  --mdc-linear-progress-active-indicator-color: #176e42;
  --mdc-linear-progress-track-color: rgba(23, 110, 66, 0.25);
}
html .mat-mdc-progress-bar.mat-warn {
  --mdc-linear-progress-active-indicator-color: #ba1a1a;
  --mdc-linear-progress-track-color: rgba(186, 26, 26, 0.25);
}
html .mat-mdc-form-field.mat-accent {
  --mdc-filled-text-field-caret-color: #176e42;
  --mdc-filled-text-field-focus-active-indicator-color: #176e42;
  --mdc-filled-text-field-focus-label-text-color: rgba(23, 110, 66, 0.87);
  --mdc-outlined-text-field-caret-color: #176e42;
  --mdc-outlined-text-field-focus-outline-color: #176e42;
  --mdc-outlined-text-field-focus-label-text-color: rgba(23, 110, 66, 0.87);
  --mat-form-field-focus-select-arrow-color: rgba(23, 110, 66, 0.87);
}
html .mat-mdc-form-field.mat-warn {
  --mdc-filled-text-field-caret-color: #ba1a1a;
  --mdc-filled-text-field-focus-active-indicator-color: #ba1a1a;
  --mdc-filled-text-field-focus-label-text-color: rgba(186, 26, 26, 0.87);
  --mdc-outlined-text-field-caret-color: #ba1a1a;
  --mdc-outlined-text-field-focus-outline-color: #ba1a1a;
  --mdc-outlined-text-field-focus-label-text-color: rgba(186, 26, 26, 0.87);
  --mat-form-field-focus-select-arrow-color: rgba(186, 26, 26, 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(23, 110, 66, 0.87);
  --mat-select-invalid-arrow-color: rgba(186, 26, 26, 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(186, 26, 26, 0.87);
  --mat-select-invalid-arrow-color: rgba(186, 26, 26, 0.87);
}
html .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;
}
html .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;
}
html .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary, html .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #155fc0;
  --mdc-chip-elevated-selected-container-color: #155fc0;
  --mdc-chip-elevated-disabled-container-color: #155fc0;
  --mdc-chip-flat-disabled-selected-container-color: #155fc0;
  --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;
}
html .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent, html .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #176e42;
  --mdc-chip-elevated-selected-container-color: #176e42;
  --mdc-chip-elevated-disabled-container-color: #176e42;
  --mdc-chip-flat-disabled-selected-container-color: #176e42;
  --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;
}
html .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn, html .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #ba1a1a;
  --mdc-chip-elevated-selected-container-color: #ba1a1a;
  --mdc-chip-elevated-disabled-container-color: #ba1a1a;
  --mdc-chip-flat-disabled-selected-container-color: #ba1a1a;
  --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;
}
html .mat-mdc-chip.mat-mdc-standard-chip {
  --mdc-chip-container-height: 32px;
}
html .mat-mdc-standard-chip {
  --mdc-chip-label-text-font: 'Open Sans', sans-serif;
  --mdc-chip-label-text-line-height: 1.5;
  --mdc-chip-label-text-size: 14px;
  --mdc-chip-label-text-tracking: 0.1px;
  --mdc-chip-label-text-weight: 400;
}
html .mat-mdc-slide-toggle {
  --mdc-form-field-label-text-color: rgba(0, 0, 0, 0.87);
}
html .mat-mdc-slide-toggle.mat-accent {
  --mdc-switch-selected-focus-state-layer-color: #176e42;
  --mdc-switch-selected-handle-color: #176e42;
  --mdc-switch-selected-hover-state-layer-color: #176e42;
  --mdc-switch-selected-pressed-state-layer-color: #176e42;
  --mdc-switch-selected-focus-handle-color: #091f14;
  --mdc-switch-selected-hover-handle-color: #091f14;
  --mdc-switch-selected-pressed-handle-color: #091f14;
  --mdc-switch-selected-focus-track-color: #65c190;
  --mdc-switch-selected-hover-track-color: #65c190;
  --mdc-switch-selected-pressed-track-color: #65c190;
  --mdc-switch-selected-track-color: #65c190;
}
html .mat-mdc-slide-toggle {
  --mdc-form-field-label-text-font: 'Open Sans', sans-serif;
  --mdc-form-field-label-text-line-height: 1.5;
  --mdc-form-field-label-text-size: 14px;
  --mdc-form-field-label-text-tracking: 0.1px;
  --mdc-form-field-label-text-weight: 400;
}
html .mat-mdc-radio-button {
  --mdc-form-field-label-text-color: rgba(0, 0, 0, 0.87);
}
html .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: #155fc0;
  --mdc-radio-selected-hover-icon-color: #155fc0;
  --mdc-radio-selected-icon-color: #155fc0;
  --mdc-radio-selected-pressed-icon-color: #155fc0;
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #155fc0;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
}
html .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: #176e42;
  --mdc-radio-selected-hover-icon-color: #176e42;
  --mdc-radio-selected-icon-color: #176e42;
  --mdc-radio-selected-pressed-icon-color: #176e42;
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #176e42;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
}
html .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: #ba1a1a;
  --mdc-radio-selected-hover-icon-color: #ba1a1a;
  --mdc-radio-selected-icon-color: #ba1a1a;
  --mdc-radio-selected-pressed-icon-color: #ba1a1a;
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #ba1a1a;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
}
html .mat-mdc-radio-button {
  --mdc-form-field-label-text-font: 'Open Sans', sans-serif;
  --mdc-form-field-label-text-line-height: 1.5;
  --mdc-form-field-label-text-size: 14px;
  --mdc-form-field-label-text-tracking: 0.1px;
  --mdc-form-field-label-text-weight: 400;
}
html .mat-accent {
  --mat-slider-ripple-color: #176e42;
  --mat-slider-hover-state-layer-color: rgba(23, 110, 66, 0.05);
  --mat-slider-focus-state-layer-color: rgba(23, 110, 66, 0.2);
  --mdc-slider-handle-color: #176e42;
  --mdc-slider-focus-handle-color: #176e42;
  --mdc-slider-hover-handle-color: #176e42;
  --mdc-slider-active-track-color: #176e42;
  --mdc-slider-inactive-track-color: #176e42;
  --mdc-slider-with-tick-marks-inactive-container-color: #176e42;
  --mdc-slider-with-tick-marks-active-container-color: white;
}
html .mat-warn {
  --mat-slider-ripple-color: #ba1a1a;
  --mat-slider-hover-state-layer-color: rgba(186, 26, 26, 0.05);
  --mat-slider-focus-state-layer-color: rgba(186, 26, 26, 0.2);
  --mdc-slider-handle-color: #ba1a1a;
  --mdc-slider-focus-handle-color: #ba1a1a;
  --mdc-slider-hover-handle-color: #ba1a1a;
  --mdc-slider-active-track-color: #ba1a1a;
  --mdc-slider-inactive-track-color: #ba1a1a;
  --mdc-slider-with-tick-marks-inactive-container-color: #ba1a1a;
  --mdc-slider-with-tick-marks-active-container-color: white;
}
html .mdc-list-item__start,
html .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: #155fc0;
  --mdc-radio-selected-hover-icon-color: #155fc0;
  --mdc-radio-selected-icon-color: #155fc0;
  --mdc-radio-selected-pressed-icon-color: #155fc0;
}
html .mat-accent .mdc-list-item__start,
html .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: #176e42;
  --mdc-radio-selected-hover-icon-color: #176e42;
  --mdc-radio-selected-icon-color: #176e42;
  --mdc-radio-selected-pressed-icon-color: #176e42;
}
html .mat-warn .mdc-list-item__start,
html .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: #ba1a1a;
  --mdc-radio-selected-hover-icon-color: #ba1a1a;
  --mdc-radio-selected-icon-color: #ba1a1a;
  --mdc-radio-selected-pressed-icon-color: #ba1a1a;
}
html .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: #155fc0;
  --mdc-checkbox-selected-hover-icon-color: #155fc0;
  --mdc-checkbox-selected-icon-color: #155fc0;
  --mdc-checkbox-selected-pressed-icon-color: #155fc0;
  --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: #155fc0;
  --mdc-checkbox-selected-hover-state-layer-color: #155fc0;
  --mdc-checkbox-selected-pressed-state-layer-color: #155fc0;
  --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 .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: #176e42;
  --mdc-checkbox-selected-hover-icon-color: #176e42;
  --mdc-checkbox-selected-icon-color: #176e42;
  --mdc-checkbox-selected-pressed-icon-color: #176e42;
  --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: #176e42;
  --mdc-checkbox-selected-hover-state-layer-color: #176e42;
  --mdc-checkbox-selected-pressed-state-layer-color: #176e42;
  --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 .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: #ba1a1a;
  --mdc-checkbox-selected-hover-icon-color: #ba1a1a;
  --mdc-checkbox-selected-icon-color: #ba1a1a;
  --mdc-checkbox-selected-pressed-icon-color: #ba1a1a;
  --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: #ba1a1a;
  --mdc-checkbox-selected-hover-state-layer-color: #ba1a1a;
  --mdc-checkbox-selected-pressed-state-layer-color: #ba1a1a;
  --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 .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
html .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text {
  color: #155fc0;
}
html .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,
html .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start {
  color: #155fc0;
}
html .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,
html .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
html .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {
  opacity: 1;
}
html .mdc-list-item__start,
html .mdc-list-item__end {
  --mdc-radio-state-layer-size: 40px;
}
html .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line, html .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line, html .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {
  height: 56px;
}
html .mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines, html .mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines, html .mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines {
  height: 72px;
}
html .mdc-list-group__subheader {
  font: 400 16px / 1.5 'Open Sans', sans-serif;
  letter-spacing: 0.01px;
}
html .mat-mdc-tab-group, html .mat-mdc-tab-nav-bar {
  --mdc-tab-indicator-active-indicator-color: #155fc0;
  --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: #155fc0;
  --mat-tab-header-active-ripple-color: #155fc0;
  --mat-tab-header-inactive-ripple-color: #155fc0;
  --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: #155fc0;
  --mat-tab-header-active-hover-label-text-color: #155fc0;
  --mat-tab-header-active-focus-indicator-color: #155fc0;
  --mat-tab-header-active-hover-indicator-color: #155fc0;
}
html .mat-mdc-tab-group.mat-accent, html .mat-mdc-tab-nav-bar.mat-accent {
  --mdc-tab-indicator-active-indicator-color: #176e42;
  --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: #176e42;
  --mat-tab-header-active-ripple-color: #176e42;
  --mat-tab-header-inactive-ripple-color: #176e42;
  --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: #176e42;
  --mat-tab-header-active-hover-label-text-color: #176e42;
  --mat-tab-header-active-focus-indicator-color: #176e42;
  --mat-tab-header-active-hover-indicator-color: #176e42;
}
html .mat-mdc-tab-group.mat-warn, html .mat-mdc-tab-nav-bar.mat-warn {
  --mdc-tab-indicator-active-indicator-color: #ba1a1a;
  --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: #ba1a1a;
  --mat-tab-header-active-ripple-color: #ba1a1a;
  --mat-tab-header-inactive-ripple-color: #ba1a1a;
  --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: #ba1a1a;
  --mat-tab-header-active-hover-label-text-color: #ba1a1a;
  --mat-tab-header-active-focus-indicator-color: #ba1a1a;
  --mat-tab-header-active-hover-indicator-color: #ba1a1a;
}
html .mat-mdc-tab-group.mat-background-primary, html .mat-mdc-tab-nav-bar.mat-background-primary {
  --mat-tab-header-with-background-background-color: #155fc0;
  --mat-tab-header-with-background-foreground-color: white;
}
html .mat-mdc-tab-group.mat-background-accent, html .mat-mdc-tab-nav-bar.mat-background-accent {
  --mat-tab-header-with-background-background-color: #176e42;
  --mat-tab-header-with-background-foreground-color: white;
}
html .mat-mdc-tab-group.mat-background-warn, html .mat-mdc-tab-nav-bar.mat-background-warn {
  --mat-tab-header-with-background-background-color: #ba1a1a;
  --mat-tab-header-with-background-foreground-color: white;
}
html .mat-mdc-tab-header {
  --mdc-secondary-navigation-tab-container-height: 48px;
}
html .mat-mdc-tab-header {
  --mat-tab-header-label-text-font: 'Open Sans', sans-serif;
  --mat-tab-header-label-text-size: 14px;
  --mat-tab-header-label-text-tracking: 0.1px;
  --mat-tab-header-label-text-line-height: 1.5;
  --mat-tab-header-label-text-weight: 600;
}
html .mat-mdc-checkbox {
  --mdc-form-field-label-text-color: rgba(0, 0, 0, 0.87);
}
html .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: #155fc0;
  --mdc-checkbox-selected-hover-icon-color: #155fc0;
  --mdc-checkbox-selected-icon-color: #155fc0;
  --mdc-checkbox-selected-pressed-icon-color: #155fc0;
  --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: #155fc0;
  --mdc-checkbox-selected-hover-state-layer-color: #155fc0;
  --mdc-checkbox-selected-pressed-state-layer-color: #155fc0;
  --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 .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: #ba1a1a;
  --mdc-checkbox-selected-hover-icon-color: #ba1a1a;
  --mdc-checkbox-selected-icon-color: #ba1a1a;
  --mdc-checkbox-selected-pressed-icon-color: #ba1a1a;
  --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: #ba1a1a;
  --mdc-checkbox-selected-hover-state-layer-color: #ba1a1a;
  --mdc-checkbox-selected-pressed-state-layer-color: #ba1a1a;
  --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 .mat-mdc-checkbox {
  --mdc-form-field-label-text-font: 'Open Sans', sans-serif;
  --mdc-form-field-label-text-line-height: 1.5;
  --mdc-form-field-label-text-size: 14px;
  --mdc-form-field-label-text-tracking: 0.1px;
  --mdc-form-field-label-text-weight: 400;
}
html .mat-mdc-button.mat-primary {
  --mdc-text-button-label-text-color: #155fc0;
  --mat-text-button-state-layer-color: #155fc0;
  --mat-text-button-ripple-color: rgba(21, 95, 192, 0.1);
}
html .mat-mdc-button.mat-accent {
  --mdc-text-button-label-text-color: #176e42;
  --mat-text-button-state-layer-color: #176e42;
  --mat-text-button-ripple-color: rgba(23, 110, 66, 0.1);
}
html .mat-mdc-button.mat-warn {
  --mdc-text-button-label-text-color: #ba1a1a;
  --mat-text-button-state-layer-color: #ba1a1a;
  --mat-text-button-ripple-color: rgba(186, 26, 26, 0.1);
}
html .mat-mdc-unelevated-button.mat-primary {
  --mdc-filled-button-container-color: #155fc0;
  --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);
}
html .mat-mdc-unelevated-button.mat-accent {
  --mdc-filled-button-container-color: #176e42;
  --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);
}
html .mat-mdc-unelevated-button.mat-warn {
  --mdc-filled-button-container-color: #ba1a1a;
  --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);
}
html .mat-mdc-raised-button.mat-primary {
  --mdc-protected-button-container-color: #155fc0;
  --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);
}
html .mat-mdc-raised-button.mat-accent {
  --mdc-protected-button-container-color: #176e42;
  --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);
}
html .mat-mdc-raised-button.mat-warn {
  --mdc-protected-button-container-color: #ba1a1a;
  --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);
}
html .mat-mdc-outlined-button.mat-primary {
  --mdc-outlined-button-label-text-color: #155fc0;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
  --mat-outlined-button-state-layer-color: #155fc0;
  --mat-outlined-button-ripple-color: rgba(21, 95, 192, 0.1);
}
html .mat-mdc-outlined-button.mat-accent {
  --mdc-outlined-button-label-text-color: #176e42;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
  --mat-outlined-button-state-layer-color: #176e42;
  --mat-outlined-button-ripple-color: rgba(23, 110, 66, 0.1);
}
html .mat-mdc-outlined-button.mat-warn {
  --mdc-outlined-button-label-text-color: #ba1a1a;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
  --mat-outlined-button-state-layer-color: #ba1a1a;
  --mat-outlined-button-ripple-color: rgba(186, 26, 26, 0.1);
}
html .mat-mdc-icon-button.mat-primary {
  --mdc-icon-button-icon-color: #155fc0;
  --mat-icon-button-state-layer-color: #155fc0;
  --mat-icon-button-ripple-color: rgba(21, 95, 192, 0.1);
}
html .mat-mdc-icon-button.mat-accent {
  --mdc-icon-button-icon-color: #176e42;
  --mat-icon-button-state-layer-color: #176e42;
  --mat-icon-button-ripple-color: rgba(23, 110, 66, 0.1);
}
html .mat-mdc-icon-button.mat-warn {
  --mdc-icon-button-icon-color: #ba1a1a;
  --mat-icon-button-state-layer-color: #ba1a1a;
  --mat-icon-button-ripple-color: rgba(186, 26, 26, 0.1);
}
html .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 .mat-mdc-fab.mat-primary {
  --mdc-fab-container-color: #155fc0;
  --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: #176e42;
  --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: #ba1a1a;
  --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: #155fc0;
  --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: #176e42;
  --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: #ba1a1a;
  --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-accent {
  --mdc-circular-progress-active-indicator-color: #176e42;
}
html .mat-warn {
  --mdc-circular-progress-active-indicator-color: #ba1a1a;
}
html .mat-badge-accent {
  --mat-badge-background-color: #176e42;
  --mat-badge-text-color: white;
}
html .mat-badge-warn {
  --mat-badge-background-color: #ba1a1a;
  --mat-badge-text-color: white;
}
html .mat-datepicker-content.mat-accent {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #176e42;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(23, 110, 66, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(23, 110, 66, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(23, 110, 66, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(23, 110, 66, 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;
}
html .mat-datepicker-content.mat-warn {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #ba1a1a;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(186, 26, 26, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(186, 26, 26, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(186, 26, 26, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(186, 26, 26, 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;
}
html .mat-datepicker-toggle-active.mat-accent {
  --mat-datepicker-toggle-active-state-icon-color: #176e42;
}
html .mat-datepicker-toggle-active.mat-warn {
  --mat-datepicker-toggle-active-state-icon-color: #ba1a1a;
}
html .mat-calendar-controls {
  --mat-icon-button-touch-target-display: none;
}
html .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-icon.mat-primary {
  --mat-icon-color: #155fc0;
}
html .mat-icon.mat-accent {
  --mat-icon-color: #176e42;
}
html .mat-icon.mat-warn {
  --mat-icon-color: #ba1a1a;
}
html .mat-step-header.mat-accent {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #176e42;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #176e42;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #176e42;
  --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: #ba1a1a;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #ba1a1a;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #ba1a1a;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
html .mat-toolbar.mat-primary {
  --mat-toolbar-container-background-color: #155fc0;
  --mat-toolbar-container-text-color: white;
}
html .mat-toolbar.mat-accent {
  --mat-toolbar-container-background-color: #176e42;
  --mat-toolbar-container-text-color: white;
}
html .mat-toolbar.mat-warn {
  --mat-toolbar-container-background-color: #ba1a1a;
  --mat-toolbar-container-text-color: white;
}
html .mat-mdc-checkbox {
  --mdc-form-field-label-text-color: rgba(0, 0, 0, 0.87);
}
html .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: #155fc0;
  --mdc-checkbox-selected-hover-icon-color: #155fc0;
  --mdc-checkbox-selected-icon-color: #155fc0;
  --mdc-checkbox-selected-pressed-icon-color: #155fc0;
  --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: #155fc0;
  --mdc-checkbox-selected-hover-state-layer-color: #155fc0;
  --mdc-checkbox-selected-pressed-state-layer-color: #155fc0;
  --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 .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: #ba1a1a;
  --mdc-checkbox-selected-hover-icon-color: #ba1a1a;
  --mdc-checkbox-selected-icon-color: #ba1a1a;
  --mdc-checkbox-selected-pressed-icon-color: #ba1a1a;
  --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: #ba1a1a;
  --mdc-checkbox-selected-hover-state-layer-color: #ba1a1a;
  --mdc-checkbox-selected-pressed-state-layer-color: #ba1a1a;
  --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 .mat-primary {
  --mat-full-pseudo-checkbox-selected-icon-color: #155fc0;
  --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: #155fc0;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
html .mat-accent {
  --mat-full-pseudo-checkbox-selected-icon-color: #155fc0;
  --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: #155fc0;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
html .mat-warn {
  --mat-full-pseudo-checkbox-selected-icon-color: #ba1a1a;
  --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: #ba1a1a;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
html .mdc-list-item__start,
html .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: #155fc0;
  --mdc-radio-selected-hover-icon-color: #155fc0;
  --mdc-radio-selected-icon-color: #155fc0;
  --mdc-radio-selected-pressed-icon-color: #155fc0;
}
html .mat-accent .mdc-list-item__start,
html .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: #155fc0;
  --mdc-radio-selected-hover-icon-color: #155fc0;
  --mdc-radio-selected-icon-color: #155fc0;
  --mdc-radio-selected-pressed-icon-color: #155fc0;
}
html .mat-warn .mdc-list-item__start,
html .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: #ba1a1a;
  --mdc-radio-selected-hover-icon-color: #ba1a1a;
  --mdc-radio-selected-icon-color: #ba1a1a;
  --mdc-radio-selected-pressed-icon-color: #ba1a1a;
}
html .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: #155fc0;
  --mdc-checkbox-selected-hover-icon-color: #155fc0;
  --mdc-checkbox-selected-icon-color: #155fc0;
  --mdc-checkbox-selected-pressed-icon-color: #155fc0;
  --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: #155fc0;
  --mdc-checkbox-selected-hover-state-layer-color: #155fc0;
  --mdc-checkbox-selected-pressed-state-layer-color: #155fc0;
  --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 .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: #155fc0;
  --mdc-checkbox-selected-hover-icon-color: #155fc0;
  --mdc-checkbox-selected-icon-color: #155fc0;
  --mdc-checkbox-selected-pressed-icon-color: #155fc0;
  --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: #155fc0;
  --mdc-checkbox-selected-hover-state-layer-color: #155fc0;
  --mdc-checkbox-selected-pressed-state-layer-color: #155fc0;
  --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 .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: #ba1a1a;
  --mdc-checkbox-selected-hover-icon-color: #ba1a1a;
  --mdc-checkbox-selected-icon-color: #ba1a1a;
  --mdc-checkbox-selected-pressed-icon-color: #ba1a1a;
  --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: #ba1a1a;
  --mdc-checkbox-selected-hover-state-layer-color: #ba1a1a;
  --mdc-checkbox-selected-pressed-state-layer-color: #ba1a1a;
  --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 .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
html .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text {
  color: #155fc0;
}
html .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,
html .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start {
  color: #155fc0;
}
html .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,
html .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
html .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {
  opacity: 1;
}
html .mat-mdc-radio-button {
  --mdc-form-field-label-text-color: rgba(0, 0, 0, 0.87);
}
html .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: #155fc0;
  --mdc-radio-selected-hover-icon-color: #155fc0;
  --mdc-radio-selected-icon-color: #155fc0;
  --mdc-radio-selected-pressed-icon-color: #155fc0;
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #155fc0;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
}
html .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: #155fc0;
  --mdc-radio-selected-hover-icon-color: #155fc0;
  --mdc-radio-selected-icon-color: #155fc0;
  --mdc-radio-selected-pressed-icon-color: #155fc0;
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #155fc0;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
}
html .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: #ba1a1a;
  --mdc-radio-selected-hover-icon-color: #ba1a1a;
  --mdc-radio-selected-icon-color: #ba1a1a;
  --mdc-radio-selected-pressed-icon-color: #ba1a1a;
  --mat-radio-ripple-color: black;
  --mat-radio-checked-ripple-color: #ba1a1a;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
}
html .mat-mdc-slide-toggle {
  --mdc-form-field-label-text-color: rgba(0, 0, 0, 0.87);
}
html .mat-mdc-slide-toggle.mat-accent {
  --mdc-switch-selected-focus-state-layer-color: #155fc0;
  --mdc-switch-selected-handle-color: #155fc0;
  --mdc-switch-selected-hover-state-layer-color: #155fc0;
  --mdc-switch-selected-pressed-state-layer-color: #155fc0;
  --mdc-switch-selected-focus-handle-color: #090c33;
  --mdc-switch-selected-hover-handle-color: #090c33;
  --mdc-switch-selected-pressed-handle-color: #090c33;
  --mdc-switch-selected-focus-track-color: #79c6ff;
  --mdc-switch-selected-hover-track-color: #79c6ff;
  --mdc-switch-selected-pressed-track-color: #79c6ff;
  --mdc-switch-selected-track-color: #79c6ff;
}
html .mat-h1,
html .mat-headline-5,
html .mat-typography .mat-h1,
html .mat-typography .mat-headline-5,
html .mat-typography h1 {
  font: 400 22px / 1.3 'Open Sans', sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
html .mat-h2,
html .mat-headline-6,
html .mat-typography .mat-h2,
html .mat-typography .mat-headline-6,
html .mat-typography h2 {
  font: 600 22px / 1.3 'Open Sans', sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
html .mat-h3,
html .mat-subtitle-1,
html .mat-typography .mat-h3,
html .mat-typography .mat-subtitle-1,
html .mat-typography h3 {
  font: 400 16px / 1.5 'Open Sans', sans-serif;
  letter-spacing: 0.01px;
  margin: 0 0 16px;
}
html .mat-h4,
html .mat-body-1,
html .mat-typography .mat-h4,
html .mat-typography .mat-body-1,
html .mat-typography h4 {
  font: 400 14px / 1.5 'Open Sans', sans-serif;
  letter-spacing: 0.1px;
  margin: 0 0 16px;
}
html .mat-h5,
html .mat-typography .mat-h5,
html .mat-typography h5 {
  font: 400 calc(14px * 0.83) / 1.5 'Open Sans', sans-serif;
  margin: 0 0 12px;
}
html .mat-h6,
html .mat-typography .mat-h6,
html .mat-typography h6 {
  font: 400 calc(14px * 0.67) / 1.5 'Open Sans', sans-serif;
  margin: 0 0 12px;
}
html .mat-body-strong,
html .mat-subtitle-2,
html .mat-typography .mat-body-strong,
html .mat-typography .mat-subtitle-2 {
  font: 400 14px / 1.5 'Open Sans', sans-serif;
  letter-spacing: 0.01px;
}
html .mat-body,
html .mat-body-2,
html .mat-typography .mat-body,
html .mat-typography .mat-body-2,
html .mat-typography {
  font: 400 14px / 1.5 'Open Sans', sans-serif;
  letter-spacing: 0.1px;
}
html .mat-body p,
html .mat-body-2 p,
html .mat-typography .mat-body p,
html .mat-typography .mat-body-2 p,
html .mat-typography p {
  margin: 0 0 12px;
}
html .mat-small,
html .mat-caption,
html .mat-typography .mat-small,
html .mat-typography .mat-caption {
  font: 400 12px / 1.4 'Open Sans', sans-serif;
  letter-spacing: 0.1px;
}
html .mat-headline-1,
html .mat-typography .mat-headline-1 {
  font: 400 36px / 1.2 'Open Sans', sans-serif;
  letter-spacing: normal;
  margin: 0 0 56px;
}
html .mat-headline-2,
html .mat-typography .mat-headline-2 {
  font: 400 32px / 1.25 'Open Sans', sans-serif;
  letter-spacing: normal;
  margin: 0 0 64px;
}
html .mat-headline-3,
html .mat-typography .mat-headline-3 {
  font: 400 28px / 1.3 'Open Sans', sans-serif;
  letter-spacing: normal;
  margin: 0 0 64px;
}
html .mat-headline-4,
html .mat-typography .mat-headline-4 {
  font: 400 24px / 1.35 'Open Sans', sans-serif;
  letter-spacing: normal;
  margin: 0 0 64px;
}
html .mat-mdc-standard-chip {
  --mdc-chip-label-text-font: 'Open Sans', sans-serif;
  --mdc-chip-label-text-line-height: 1.5;
  --mdc-chip-label-text-size: 14px;
  --mdc-chip-label-text-tracking: 0.1px;
  --mdc-chip-label-text-weight: 400;
}
html .mat-mdc-slide-toggle {
  --mdc-form-field-label-text-font: 'Open Sans', sans-serif;
  --mdc-form-field-label-text-line-height: 1.5;
  --mdc-form-field-label-text-size: 14px;
  --mdc-form-field-label-text-tracking: 0.1px;
  --mdc-form-field-label-text-weight: 400;
}
html .mat-mdc-radio-button {
  --mdc-form-field-label-text-font: 'Open Sans', sans-serif;
  --mdc-form-field-label-text-line-height: 1.5;
  --mdc-form-field-label-text-size: 14px;
  --mdc-form-field-label-text-tracking: 0.1px;
  --mdc-form-field-label-text-weight: 400;
}
html .mdc-list-group__subheader {
  font: 400 16px / 1.5 'Open Sans', sans-serif;
  letter-spacing: 0.01px;
}
html .mat-mdc-tab-header {
  --mat-tab-header-label-text-font: 'Open Sans', sans-serif;
  --mat-tab-header-label-text-size: 14px;
  --mat-tab-header-label-text-tracking: 0.1px;
  --mat-tab-header-label-text-line-height: 1.5;
  --mat-tab-header-label-text-weight: 600;
}
html .mat-mdc-checkbox {
  --mdc-form-field-label-text-font: 'Open Sans', sans-serif;
  --mdc-form-field-label-text-line-height: 1.5;
  --mdc-form-field-label-text-size: 14px;
  --mdc-form-field-label-text-tracking: 0.1px;
  --mdc-form-field-label-text-weight: 400;
}
html body, html.mat-app-background,
html .mat-app-background {
  background-color: var(--background);
  color: var(--on-surface);
}
html body {
  font: 400 14px / 1.5 'Open Sans', sans-serif;
  letter-spacing: 0.1px;
}
html h1 {
  font: 400 22px / 1.3 'Open Sans', sans-serif;
  letter-spacing: normal;
}
html h2 {
  font: 600 22px / 1.3 'Open Sans', sans-serif;
  letter-spacing: normal;
}
html h3 {
  font: 400 16px / 1.5 'Open Sans', sans-serif;
  letter-spacing: 0.01px;
}
html h4 {
  font: 400 14px / 1.5 'Open Sans', sans-serif;
  letter-spacing: 0.01px;
}
html .mat-typography .prominent,
html .prominent {
  font-weight: 600;
}
html .mat-typography .mat-body-1,
html .mat-body-1 {
  font-size: 16px;
  letter-spacing: 0.15px;
}
html .mat-badge:not(.mat-badge-primary, .mat-badge-warn, .mat-badge-accent), html .mat-badge.nextech-badge--success {
  --mat-badge-background-color: var(--success);
  --mat-badge-text-color: var(--on-success);
}
html .mat-badge.nextech-badge--info {
  --mat-badge-background-color: var(--info);
  --mat-badge-text-color: var(--on-info);
}
html .mat-badge.nextech-badge--caution {
  --mat-badge-background-color: var(--caution);
  --mat-badge-text-color: var(--on-caution);
}
html .mat-badge.nextech-badge--error {
  --mat-badge-background-color: var(--error);
  --mat-badge-text-color: var(--on-error);
}
html .mat-badge.mat-badge-small .mat-badge-content, html .mat-badge.mat-badge-medium .mat-badge-content, html .mat-badge.mat-badge-large .mat-badge-content {
  border-radius: var(--shape-full);
  box-sizing: border-box;
  margin: calc(var(--nextech-badge-overlap-LR) * -1) 0;
  text-align: center;
}
html .mat-badge.mat-badge-small.mat-badge-above .mat-badge-content, html .mat-badge.mat-badge-medium.mat-badge-above .mat-badge-content, html .mat-badge.mat-badge-large.mat-badge-above .mat-badge-content {
  top: unset;
}
html .mat-badge.mat-badge-small.mat-badge-below .mat-badge-content, html .mat-badge.mat-badge-medium.mat-badge-below .mat-badge-content, html .mat-badge.mat-badge-large.mat-badge-below .mat-badge-content {
  bottom: unset;
}
html .mat-badge.mat-badge-small.mat-badge-before .mat-badge-content, html .mat-badge.mat-badge-medium.mat-badge-before .mat-badge-content, html .mat-badge.mat-badge-large.mat-badge-before .mat-badge-content {
  right: calc(100% - var(--nextech-badge-overlap-LR, 0px));
  left: unset;
}
html .mat-badge.mat-badge-small.mat-badge-after .mat-badge-content, html .mat-badge.mat-badge-medium.mat-badge-after .mat-badge-content, html .mat-badge.mat-badge-large.mat-badge-after .mat-badge-content {
  left: calc(100% - var(--nextech-badge-overlap-LR, 0px));
  right: unset;
}
html .mat-badge.mat-badge-small .mat-badge-content {
  width: 8px;
  height: 8px;
  font-size: 0px;
  padding: 0px;
}
html .mat-badge.mat-badge-small.mat-badge-overlap .mat-badge-content {
  --nextech-badge-overlap-LR: 8px;
}
html .mat-badge.mat-badge-medium .mat-badge-content, html .mat-badge.mat-badge-large .mat-badge-content {
  --mat-badge-large-size-text-size: var(
    --typography-label-small-font-size
  );
  --mat-badge-text-font: var(--typography-font-family);
  --mat-badge-text-size: var(--typography-label-small-font-size);
  --mat-badge-text-weight: var(--typography-label-small-font-weight);
  height: unset;
  letter-spacing: var(--typography-headline-small-letter-spacing);
  line-height: var(--typography-label-small-line-height);
  margin: -14px 0;
  min-height: var(--typography-label-small-line-height);
  min-width: 16px;
  padding: 0 4px;
  width: unset;
}
html .mat-badge.mat-badge-medium.mat-badge-overlap .mat-badge-content, html .mat-badge.mat-badge-large.mat-badge-overlap .mat-badge-content {
  --nextech-badge-overlap-LR: 12px;
}
html .nextech-navbar-item .mat-badge, html .nextech-navbar-item .mat-badge.nextech-badge--success {
  --mat-badge-background-color: var(--navigation-badge-success);
  --mat-badge-text-color: var(--navigation-on-badge-success);
}
html .nextech-navbar-item .mat-badge.nextech-badge--info {
  --mat-badge-background-color: var(--navigation-badge-info);
  --mat-badge-text-color: var(--navigation-on-badge-info);
}
html .nextech-navbar-item .mat-badge.nextech-badge--caution {
  --mat-badge-background-color: var(--navigation-badge-caution);
  --mat-badge-text-color: var(--navigation-on-badge-caution);
}
html .nextech-navbar-item .mat-badge.nextech-badge--error {
  --mat-badge-background-color: var(--navigation-badge-error);
  --mat-badge-text-color: var(--navigation-on-badge-error);
}
html .mdc-button {
  --mdc-filled-button-label-text-size: var(--mdc-typography-button-font-size);
  --mdc-outlined-button-label-text-size: var(--mdc-typography-button-font-size);
  --mdc-protected-button-label-text-size: var(--mdc-typography-button-font-size);
  --mdc-text-button-label-text-size: var(--mdc-typography-button-font-size);
}
html .mdc-button .mat-icon {
  font-size: var(--nextech-button-icon-size, 18px);
}
html .mdc-button[mat-button] {
  padding: 0 12px;
}
html .mdc-button[mat-button] .mdc-button__ripple + .mat-icon {
  margin-left: -4px;
}
html .mdc-button[mat-button] .mdc-button__label + .mat-icon {
  margin-right: -4px;
}
html .mdc-button.mat-mdc-outlined-button {
  --mdc-outlined-button-outline-color: currentColor;
  padding: 0 calc(16px - var(--mdc-outlined-button-outline-width));
}
html .mdc-button.mat-mdc-unelevated-button {
  --mdc-filled-button-container-color: var(--surface);
  --mdc-filled-button-label-text-color: var(--on-surface);
}
html .mdc-button.mat-mdc-unelevated-button.mat-primary {
  --mdc-filled-button-container-color: var(--primary);
  --mdc-filled-button-label-text-color: var(--on-primary);
}
html .mdc-button.mat-mdc-unelevated-button.mat-accent {
  --mdc-filled-button-container-color: var(--secondary);
  --mdc-filled-button-label-text-color: var(--on-secondary);
}
html .mdc-button.mat-mdc-unelevated-button.mat-warn {
  --mdc-filled-button-container-color: var(--error);
  --mdc-filled-button-label-text-color: var(--on-error);
}
html .mat-mdc-outlined-button .mat-mdc-button-ripple,
html .mat-mdc-outlined-button .mdc-button__ripple {
  top: calc(0px - var(--mdc-outlined-button-outline-width));
  right: calc(0px - var(--mdc-outlined-button-outline-width));
  bottom: calc(0px - var(--mdc-outlined-button-outline-width));
  left: calc(0px - var(--mdc-outlined-button-outline-width));
}
html .nextech-button--lg, html .nextech-button--large {
  --mdc-typography-button-font-size: 16px;
  --nextech-button-icon-size: 24px;
  --mdc-filled-button-container-height: 48px;
  --mdc-outlined-button-container-height: 48px;
  --mdc-protected-button-container-height: 48px;
  --mdc-text-button-container-height: 48px;
}
html .nextech-button--sm, html .nextech-button--small {
  --mdc-typography-button-font-size: 12px;
  --nextech-button-icon-size: 16px;
  --mdc-filled-button-container-height: 32px;
  --mdc-outlined-button-container-height: 32px;
  --mdc-protected-button-container-height: 32px;
  --mdc-text-button-container-height: 32px;
}
html .mdc-button[size=lg], html .mdc-button[size=large] {
  --mdc-typography-button-font-size: 16px;
  --nextech-button-icon-size: 24px;
  --mdc-filled-button-container-height: 48px;
  --mdc-outlined-button-container-height: 48px;
  --mdc-protected-button-container-height: 48px;
  --mdc-text-button-container-height: 48px;
}
html .mdc-button[size=sm], html .mdc-button[size=small] {
  --mdc-typography-button-font-size: 12px;
  --nextech-button-icon-size: 16px;
  --mdc-filled-button-container-height: 32px;
  --mdc-outlined-button-container-height: 32px;
  --mdc-protected-button-container-height: 32px;
  --mdc-text-button-container-height: 32px;
}
html .mat-button-toggle-group {
  --mat-standard-button-toggle-background-color: var(--surface);
  --mat-standard-button-toggle-disabled-selected-state-background-color: var(--disabled-surface);
  --mat-standard-button-toggle-disabled-selected-state-text-color: var(--on-disabled-surface);
  --mat-standard-button-toggle-disabled-state-background-color: var(--surface);
  --mat-standard-button-toggle-disabled-state-text-color: var(--on-disabled-surface);
  --mat-standard-button-toggle-divider-color: var(--outline);
  --mat-standard-button-toggle-label-text-weight: 600;
  --mat-standard-button-toggle-selected-state-background-color: var(--inverse-primary);
  --mat-standard-button-toggle-selected-state-text-color: var(--on-primary-container);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
html .nextech-button-toggle--icon .mat-button-toggle-label-content {
  padding: 0 8px;
}
html .nextech-button-toggle--icon .mat-button-toggle-label-content .mat-icon {
  margin-top: -2px;
}
html .nextech-button-toggle--icon .mat-pseudo-checkbox {
  display: none;
}
html .nextech-button-toggle--icon .mat-button-toggle-checked .mat-button-toggle-button:has(.mat-button-toggle-checkbox-wrapper) {
  padding-left: 0px;
}
html .nextech-button-toggle--icon[showSelectionIndicator]:not([showSelectionIndicator=false]) .mat-pseudo-checkbox, html .nextech-button-toggle--icon.nextech-button-toggle--show-check .mat-pseudo-checkbox {
  display: inline-block;
}
html .nextech-button-toggle--icon[showSelectionIndicator]:not([showSelectionIndicator=false]) .mat-button-toggle-checked .mat-button-toggle-button:has(.mat-button-toggle-checkbox-wrapper), html .nextech-button-toggle--icon.nextech-button-toggle--show-check .mat-button-toggle-checked .mat-button-toggle-button:has(.mat-button-toggle-checkbox-wrapper) {
  padding-left: 36px;
}
html .nextech-button-toggle--primary {
  --mat-standard-button-toggle-selected-state-background-color: var(--primary);
  --mat-standard-button-toggle-selected-state-text-color: var(--on-primary);
}
html .nextech-button-toggle--lg, html .nextech-button-toggle--large {
  --mat-standard-button-toggle-height: 48px;
}
html .nextech-button-toggle--lg.nextech-button-toggle--icon .mat-button-toggle-label-content, html .nextech-button-toggle--large.nextech-button-toggle--icon .mat-button-toggle-label-content {
  padding: 0 12px;
}
html .nextech-button-toggle--sm, html .nextech-button-toggle--small {
  --mat-standard-button-toggle-height: 32px;
}
html .nextech-button-toggle--sm.nextech-button-toggle--icon .mat-button-toggle-label-content, html .nextech-button-toggle--small.nextech-button-toggle--icon .mat-button-toggle-label-content {
  padding: 0 4px;
}
html .mat-calendar {
  --mat-datepicker-calendar-body-label-text-color: #0000;
  --mat-datepicker-calendar-body-label-text-size: 0;
  height: auto;
}
html .mat-calendar .mat-calendar-body-label[colspan="7"],
html .mat-calendar .mat-calendar-table-header tr:last-child {
  display: none;
}
html .mat-calendar mat-year-view .mat-calendar-body tr[aria-hidden=true] {
  display: none;
}
html .mat-mdc-card {
  color: var(--on-surface);
  overflow: hidden;
}
html .mat-mdc-card.nextech-card--primary, html .mat-mdc-card.nextech-card--secondary, html .mat-mdc-card.nextech-card--variant, html .mat-mdc-card.nextech-card--variant-lighter {
  --mdc-outlined-card-outline-color: transparent;
  box-shadow: none;
}
html .mat-mdc-card.nextech-card--primary .mat-mdc-form-field, html .mat-mdc-card.nextech-card--secondary .mat-mdc-form-field, html .mat-mdc-card.nextech-card--variant .mat-mdc-form-field, html .mat-mdc-card.nextech-card--variant-lighter .mat-mdc-form-field {
  --mdc-filled-text-field-container-color: var(
    --surface-container-lowest
  );
}
html .mat-mdc-card.nextech-card--primary {
  --mdc-elevated-card-container-color: var(--primary-container);
  --mdc-outlined-card-container-color: var(--primary-container);
  color: var(--on-primary-container);
}
html .mat-mdc-card.nextech-card--secondary {
  --mdc-elevated-card-container-color: var(--secondary-container);
  --mdc-outlined-card-container-color: var(--secondary-container);
  color: var(--on-secondary-container);
}
html .mat-mdc-card.nextech-card--variant, html .mat-mdc-card.nextech-card--variant-lighter {
  --mdc-elevated-card-container-color: var(--surface-container-low);
  --mdc-outlined-card-container-color: var(--surface-container-low);
}
html .mat-mdc-card-avatar {
  background-color: var(--primary);
  background-image: radial-gradient(circle at -25% -25%, var(--gradient-avatar-start), var(--gradient-avatar-end));
  color: var(--on-primary);
  display: grid;
  font-size: var(--typography-title-small-prominent-font-size);
  font-weight: var(--typography-title-small-prominent-font-weight);
  place-items: center;
  margin-bottom: 0;
  -webkit-font-smoothing: antialiased;
}
html .mat-mdc-card-content {
  padding: 16px;
}
html .mat-mdc-card-header {
  align-items: center;
  padding-bottom: 16px;
}
html .mat-mdc-card-header-text {
  flex-grow: 1;
}
html .mdc-card__actions {
  gap: 8px;
  padding: 16px;
}
html .mdc-card__media {
  position: static;
  width: 100%;
}
html .mat-mdc-card.mat-ripple:not(:has(.mat-mdc-card-actions)),
html .nextech-card--interactive:not(:has(.mat-mdc-card-actions)) {
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
}
html .mat-mdc-card.mat-ripple:not(:has(.mat-mdc-card-actions))::after,
html .nextech-card--interactive:not(:has(.mat-mdc-card-actions))::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: currentColor;
  opacity: 0;
}
html .mat-mdc-card.mat-ripple:not(:has(.mat-mdc-card-actions)):hover::after,
html .nextech-card--interactive:not(:has(.mat-mdc-card-actions)):hover::after {
  opacity: var(--state-hovered);
}
html .mat-mdc-card.mat-ripple:not(:has(.mat-mdc-card-actions)):focus,
html .nextech-card--interactive:not(:has(.mat-mdc-card-actions)):focus {
  outline: none;
}
html .mat-mdc-card.mat-ripple:not(:has(.mat-mdc-card-actions)):focus::after,
html .nextech-card--interactive:not(:has(.mat-mdc-card-actions)):focus::after {
  opacity: var(--state-focused);
}
html .mat-mdc-card.mat-ripple:not(:has(.mat-mdc-card-actions)):active::after,
html .nextech-card--interactive:not(:has(.mat-mdc-card-actions)):active::after {
  opacity: var(--state-pressed);
}
html .mat-mdc-card.mat-ripple:not(:has(.mat-mdc-card-actions)):has(.mat-ripple-element) .mat-mdc-card-content,
html .nextech-card--interactive:not(:has(.mat-mdc-card-actions)):has(.mat-ripple-element) .mat-mdc-card-content {
  padding-bottom: 16px;
}
html a:has(.mat-mdc-card.mat-ripple),
html a:has(.nextech-card--interactive) {
  --nextech-hyperlink-focused-state-color: transparent;
  color: currentColor;
}
html a:has(.mat-mdc-card.mat-ripple):focus-within .mat-mdc-card.mat-ripple::after,
html a:has(.nextech-card--interactive):focus-within .nextech-card--interactive::after {
  opacity: var(--state-focused);
}
html .mdc-checkbox {
  --mdc-checkbox-disabled-unselected-icon-color: var(--on-disabled-surface);
  --mdc-checkbox-unselected-icon-color: var(--on-surface-variant);
}
html .mat-mdc-chip.mat-mdc-standard-chip {
  --mdc-chip-label-text-line-height: var(
    --typography-label-large-line-height
  );
  --mdc-chip-label-text-size: var(--typography-label-large-font-size);
  --mdc-chip-label-text-tracking: var(
    --typography-label-large-letter-spacing
  );
  --mdc-chip-label-text-weight: var(--typography-label-large-font-weight);
}
html .mat-mdc-chip.mat-mdc-standard-chip, html .mat-mdc-chip.mat-mdc-standard-chip.mat-mdc-chip-highlighted, html .mat-mdc-chip.mat-mdc-standard-chip.mat-mdc-chip-selected {
  --mdc-chip-focus-state-layer-color: var(--mdc-chip-label-text-color);
}
html .mat-mdc-chip.mat-mdc-standard-chip.mat-mdc-chip-highlighted, html .mat-mdc-chip.mat-mdc-standard-chip.mat-mdc-chip-selected {
  --mdc-chip-flat-disabled-selected-container-color: var(
    --disabled-surface-variant
  );
  --mdc-chip-with-icon-icon-color: var(--mdc-chip-label-text-color);
  --mdc-chip-with-icon-selected-icon-color: var(
    --mdc-chip-label-text-color
  );
  --mdc-chip-with-trailing-icon-trailing-icon-color: var(
    --mdc-chip-label-text-color
  );
  --mat-chip-selected-trailing-icon-color: var(
    --mdc-chip-selected-label-text-color
  );
}
html .mat-mdc-chip {
  --icon-size: var(--mdc-chip-with-icon-icon-size, 18px);
  --mat-chip-disabled-container-opacity: 1;
  --mdc-chip-elevated-container-color: var(--surface-container-high);
  --mdc-chip-flat-container-color: var(--surface-container-high);
  --mdc-chip-label-text-color: var(--on-surface);
  --mdc-chip-with-icon-icon-color: var(--on-surface-variant);
  --mdc-chip-with-trailing-icon-trailing-icon-color: var(
    --on-surface-variant
  );
  --mat-chip-trailing-action-opacity: 1;
}
html .mat-mdc-chip:hover .mat-mdc-chip-focus-overlay {
  --mdc-chip-focus-state-layer-opacity: var(--state-hovered);
}
html .mat-mdc-chip.mat-mdc-chip-highlighted.mat-primary, html .mat-mdc-chip.mat-mdc-chip-selected.mat-primary {
  --mdc-chip-elevated-container-color: var(--primary-container);
  --mdc-chip-elevated-selected-container-color: var(--primary-container);
  --mdc-chip-flat-container-color: var(--primary-container);
  --mdc-chip-label-text-color: var(--on-primary-container);
  --mdc-chip-hover-state-layer-color: var(--on-primary-container);
  --mdc-chip-selected-hover-state-layer-color: var(
    --on-primary-container
  );
  --mdc-chip-selected-label-text-color: var(--on-primary-container);
}
html .mat-mdc-chip.mat-mdc-chip-highlighted.mat-accent, html .mat-mdc-chip.mat-mdc-chip-selected.mat-accent {
  --mdc-chip-elevated-container-color: var(--secondary-container);
  --mdc-chip-elevated-selected-container-color: var(
    --secondary-container
  );
  --mdc-chip-flat-container-color: var(--secondary-container);
  --mdc-chip-label-text-color: var(--on-secondary-container);
  --mdc-chip-hover-state-layer-color: var(--on-secondary-container);
  --mdc-chip-selected-hover-state-layer-color: var(
    --on-secondary-container
  );
  --mdc-chip-selected-label-text-color: var(--on-primary-container);
}
html .mat-mdc-chip.mat-mdc-chip-highlighted.mat-warn, html .mat-mdc-chip.mat-mdc-chip-selected.mat-warn {
  --mdc-chip-elevated-container-color: var(--error-container);
  --mdc-chip-elevated-selected-container-color: var(--error-container);
  --mdc-chip-flat-container-color: var(--error-container);
  --mdc-chip-label-text-color: var(--on-error-container);
  --mdc-chip-hover-state-layer-color: var(--on-error-container);
  --mdc-chip-selected-hover-state-layer-color: var(--on-error-container);
  --mdc-chip-selected-label-text-color: var(--on-primary-container);
}
html .mat-mdc-chip.mdc-evolution-chip--disabled, html .mat-mdc-chip.mdc-evolution-chip--disabled.mat-mdc-chip-highlighted, html .mat-mdc-chip.mdc-evolution-chip--disabled.mat-mdc-chip-selected {
  --mdc-chip-disabled-label-text-color: var(--on-disabled-surface);
  --mdc-chip-elevated-disabled-container-color: var(
    --disabled-surface-variant
  );
  --mdc-chip-flat-disabled-container-color: var(
    --disabled-surface-variant
  );
  --mdc-chip-with-icon-disabled-icon-color: var(
    --mdc-chip-disabled-label-text-color
  );
  --mdc-chip-with-icon-selected-icon-color: var(
    --mdc-chip-disabled-label-text-color
  );
  --mat-chip-selected-disabled-trailing-icon-color: var(
    --mdc-chip-disabled-label-text-color
  );
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: var(
    --mdc-chip-disabled-label-text-color
  );
}
html .mat-mdc-standard-chip {
  --_chip-spacing: 16px;
  --mdc-chip-with-avatar-avatar-size: inherit;
}
html .mat-mdc-standard-chip:not(.mdc-evolution-chip--with-trailing-action) .mdc-evolution-chip__action--primary {
  padding-right: var(--_chip-spacing);
}
html .mat-mdc-standard-chip .mdc-evolution-chip__action--primary, html .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary {
  padding-left: var(--_chip-spacing);
}
html .mat-mdc-standard-chip .mdc-evolution-chip__action--primary:has(.mdc-evolution-chip__graphic), html .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--primary:has(.mdc-evolution-chip__graphic) {
  padding-left: 0;
}
html .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__graphic, html .mat-mdc-standard-chip.mdc-evolution-chip--with-primary-graphic.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__graphic {
  padding: 0 calc(var(--_chip-spacing) / 2);
}
html .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action .mdc-evolution-chip__action--trailing, html .mat-mdc-standard-chip.mdc-evolution-chip--with-trailing-action.mdc-evolution-chip--with-primary-graphic .mdc-evolution-chip__action--trailing {
  padding: 0 calc(var(--_chip-spacing) / 2);
}
html .nextech-chip--outlined {
  --nextech-chip-border-color: var(--outline);
}
html .nextech-chip--outlined .mat-mdc-chip, html .nextech-chip--outlined.mat-mdc-chip {
  --mdc-chip-elevated-container-color: transparent;
  box-shadow: inset 0 0 0 1px var(--nextech-chip-border-color);
}
html .nextech-chip--outlined .mat-mdc-chip.mat-mdc-chip-highlighted, html .nextech-chip--outlined .mat-mdc-chip.mat-mdc-chip-selected, html .nextech-chip--outlined.mat-mdc-chip.mat-mdc-chip-highlighted, html .nextech-chip--outlined.mat-mdc-chip.mat-mdc-chip-selected {
  --nextech-chip-border-color: var(--mdc-chip-label-text-color);
}
html .nextech-chip--outlined .mat-mdc-chip.mdc-evolution-chip--disabled, html .nextech-chip--outlined.mat-mdc-chip.mdc-evolution-chip--disabled {
  --nextech-chip-border-color: var(--disabled-surface);
}
html .nextech-chip--small .mat-mdc-chip.mat-mdc-standard-chip,
html .nextech-chip--sm .mat-mdc-chip.mat-mdc-standard-chip,
html .mdc-evolution-chip-set[size=sm] .mat-mdc-chip.mat-mdc-standard-chip {
  --mdc-chip-container-height: 24px;
}
html .nextech-chip--small .mat-mdc-standard-chip,
html .nextech-chip--sm .mat-mdc-standard-chip,
html .mdc-evolution-chip-set[size=sm] .mat-mdc-standard-chip {
  --mdc-chip-label-text-line-height: var(
    --typography-label-medium-line-height
  );
  --mdc-chip-label-text-size: var(--typography-label-medium-font-size);
  --mdc-chip-label-text-tracking: var(
    --typography-label-medium-letter-spacing
  );
  --mdc-chip-label-text-weight: var(--typography-label-medium-font-weight);
  --_chip-spacing: 8px;
}
html .nextech-chip--small.mat-mdc-chip,
html .nextech-chip--sm.mat-mdc-chip,
html .mdc-evolution-chip-set[size=sm].mat-mdc-chip {
  --mdc-chip-container-height: 24px;
  --_chip-spacing: 8px;
}
html .nextech-info-chip {
  --mdc-chip-elevated-container-color: var(--mdc-chip-flat-container-color);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
html .nextech-info-chip .mat-mdc-chip-focus-overlay,
html .nextech-info-chip .mat-mdc-chip-ripple {
  display: none;
}
html .nextech-info-chip .mdc-evolution-chip__text-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
html .nextech-info-chip .mdc-evolution-chip__text-label::before {
  font-family: "Material Symbols Outlined", "Material Icons";
  font-variation-settings: "FILL" 1;
  font-size: var(--icon-size);
  margin-left: -8px;
}
html .nextech-info-chip.nextech-chip--small, html .nextech-info-chip.nextech-chip--sm, html .nextech-info-chip[size=sm] {
  --mdc-chip-label-text-line-height: var(
    --typography-label-medium-line-height
  );
  --mdc-chip-label-text-size: var(--typography-label-medium-font-size);
  --mdc-chip-label-text-tracking: var(
    --typography-label-medium-letter-spacing
  );
  --mdc-chip-label-text-weight: var(--typography-label-medium-font-weight);
}
html .nextech-info-chip.nextech-chip--small .mdc-evolution-chip__text-label, html .nextech-info-chip.nextech-chip--sm .mdc-evolution-chip__text-label, html .nextech-info-chip[size=sm] .mdc-evolution-chip__text-label {
  gap: 4px;
}
html .nextech-info-chip.nextech-chip--small .mdc-evolution-chip__text-label::before, html .nextech-info-chip.nextech-chip--sm .mdc-evolution-chip__text-label::before, html .nextech-info-chip[size=sm] .mdc-evolution-chip__text-label::before {
  margin-left: -4px;
}
html .nextech-info-chip.nextech-info-chip--info {
  --mdc-chip-flat-container-color: var(--info-container);
  --mdc-chip-label-text-color: var(--on-info-container);
}
html .nextech-info-chip.nextech-info-chip--info:not(.nextech-info-chip--no-icon) .mdc-evolution-chip__text-label::before {
  content: "info";
}
html .nextech-info-chip.nextech-info-chip--info.nextech-chip--filled {
  --mdc-chip-flat-container-color: var(--info);
  --mdc-chip-label-text-color: var(--on-info);
}
html .nextech-info-chip.nextech-info-chip--info.nextech-chip--outlined {
  --mdc-chip-label-text-color: var(--info);
  --nextech-chip-border-color: var(--info);
}
html .nextech-info-chip.nextech-info-chip--success {
  --mdc-chip-flat-container-color: var(--success-container);
  --mdc-chip-label-text-color: var(--on-success-container);
}
html .nextech-info-chip.nextech-info-chip--success:not(.nextech-info-chip--no-icon) .mdc-evolution-chip__text-label::before {
  content: "check_circle";
}
html .nextech-info-chip.nextech-info-chip--success.nextech-chip--filled {
  --mdc-chip-flat-container-color: var(--success);
  --mdc-chip-label-text-color: var(--on-success);
}
html .nextech-info-chip.nextech-info-chip--success.nextech-chip--outlined {
  --mdc-chip-label-text-color: var(--success);
  --nextech-chip-border-color: var(--success);
}
html .nextech-info-chip.nextech-info-chip--caution {
  --mdc-chip-flat-container-color: var(--caution-container);
  --mdc-chip-label-text-color: var(--on-caution-container);
}
html .nextech-info-chip.nextech-info-chip--caution:not(.nextech-info-chip--no-icon) .mdc-evolution-chip__text-label::before {
  content: "warning";
}
html .nextech-info-chip.nextech-info-chip--caution.nextech-chip--filled {
  --mdc-chip-flat-container-color: var(--caution);
  --mdc-chip-label-text-color: var(--on-caution);
}
html .nextech-info-chip.nextech-info-chip--caution.nextech-chip--outlined {
  --mdc-chip-label-text-color: var(--caution);
  --nextech-chip-border-color: var(--caution);
}
html .nextech-info-chip.nextech-info-chip--error {
  --mdc-chip-flat-container-color: var(--error-container);
  --mdc-chip-label-text-color: var(--on-error-container);
}
html .nextech-info-chip.nextech-info-chip--error:not(.nextech-info-chip--no-icon) .mdc-evolution-chip__text-label::before {
  content: "error";
}
html .nextech-info-chip.nextech-info-chip--error.nextech-chip--filled {
  --mdc-chip-flat-container-color: var(--error);
  --mdc-chip-label-text-color: var(--on-error);
}
html .nextech-info-chip.nextech-info-chip--error.nextech-chip--outlined {
  --mdc-chip-label-text-color: var(--error);
  --nextech-chip-border-color: var(--error);
}
html .nextech-info-chip.nextech-info-chip--pending {
  --mdc-chip-flat-container-color: var(--surface-container);
  --mdc-chip-label-text-color: var(--on-surface-variant);
}
html .nextech-info-chip.nextech-info-chip--pending:not(.nextech-info-chip--no-icon) .mdc-evolution-chip__text-label::before {
  content: "pending";
}
html .nextech-info-chip.nextech-info-chip--pending.nextech-chip--filled {
  --mdc-chip-flat-container-color: var(--inverse-surface-variant);
  --mdc-chip-label-text-color: var(--on-inverse-surface);
}
html .nextech-info-chip.nextech-info-chip--pending.nextech-chip--outlined {
  --mdc-chip-label-text-color: var(--on-surface-variant);
  --nextech-chip-border-color: var(--on-surface-variant);
}
html .nextech-info-chip.nextech-info-chip--outlined {
  --mdc-chip-flat-container-color: transparent;
}
html .mat-mdc-chip.nextech-badge-chip {
  --mdc-chip-label-text-line-height: var(
    --typography-label-small-line-height
  );
  --mdc-chip-label-text-size: var(--typography-label-small-font-size);
  --mdc-chip-label-text-tracking: var(
    --typography-label-small-letter-spacing
  );
  --mdc-chip-label-text-weight: var(--typography-label-small-font-weight);
  --_chip-spacing: 4px;
  --mat-chip-border-radius: var(--shape-full);
  --mdc-chip-elevated-container-color: var(--success);
  --mdc-chip-label-text-color: var(--on-success);
  height: 16px;
  min-width: 16px;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
html .mat-mdc-chip.nextech-badge-chip .mdc-evolution-chip__text-label {
  text-align: center;
  display: inline-block;
  max-width: 100%;
}
html .mat-mdc-chip.nextech-badge-chip .mdc-evolution-chip__action--primary {
  width: 100%;
}
html .mat-mdc-chip.nextech-badge-chip .mat-mdc-chip-focus-overlay,
html .mat-mdc-chip.nextech-badge-chip .mat-mdc-chip-ripple {
  display: none;
}
html .mat-mdc-chip.nextech-badge-chip.nextech-badge-chip--success {
  --mdc-chip-elevated-container-color: var(--success);
  --mdc-chip-label-text-color: var(--on-success);
}
html .mat-mdc-chip.nextech-badge-chip.nextech-badge-chip--info {
  --mdc-chip-elevated-container-color: var(--info);
  --mdc-chip-label-text-color: var(--on-info);
}
html .mat-mdc-chip.nextech-badge-chip.nextech-badge-chip--caution {
  --mdc-chip-elevated-container-color: var(--caution);
  --mdc-chip-label-text-color: var(--on-caution);
}
html .mat-mdc-chip.nextech-badge-chip.nextech-badge-chip--error {
  --mdc-chip-elevated-container-color: var(--error);
  --mdc-chip-label-text-color: var(--on-error);
}
html .mat-mdc-chip.nextech-badge-chip.nextech-badge-chip--sm {
  min-width: 8px;
  max-width: 8px;
  max-height: 8px;
  width: 8px;
  height: 8px;
  padding: 0;
}
html .mat-mdc-chip.nextech-badge-chip.nextech-badge-chip--sm .mdc-evolution-chip__text-label {
  display: none;
}
html .nextech-mobile-navbar .mat-mdc-chip.nextech-badge-chip {
  --mdc-chip-elevated-container-color: var(--navigation-badge-success);
  --mdc-chip-label-text-color: var(--navigation-on-badge-success);
}
html .nextech-mobile-navbar .mat-mdc-chip.nextech-badge-chip.nextech-badge-chip--success {
  --mdc-chip-elevated-container-color: var(--navigation-badge-success);
  --mdc-chip-label-text-color: var(--navigation-on-badge-success);
}
html .nextech-mobile-navbar .mat-mdc-chip.nextech-badge-chip.nextech-badge-chip--info {
  --mdc-chip-elevated-container-color: var(--navigation-badge-info);
  --mdc-chip-label-text-color: var(--navigation-on-badge-info);
}
html .nextech-mobile-navbar .mat-mdc-chip.nextech-badge-chip.nextech-badge-chip--caution {
  --mdc-chip-elevated-container-color: var(--navigation-badge-caution);
  --mdc-chip-label-text-color: var(--navigation-on-badge-caution);
}
html .nextech-mobile-navbar .mat-mdc-chip.nextech-badge-chip.nextech-badge-chip--error {
  --mdc-chip-elevated-container-color: var(--navigation-badge-error);
  --mdc-chip-label-text-color: var(--navigation-on-badge-error);
}
html .mat-datepicker-content {
  background-color: var(--surface);
}
html .mat-calendar-body-in-range .mat-calendar-body-cell-content {
  --mat-datepicker-calendar-date-text-color: var(
    --nextech-datepicker-calendar-date-in-range-state-text-color
  );
}
html .mat-datepicker-content .mat-datepicker-content-container .mat-calendar {
  height: min-content;
}
html .mat-datepicker-content:has(.nextech-relative-date-suggestion-list).mat-datepicker-content-touch,
html .mat-datepicker-content:has(.nextech-relative-date-range-suggestion-list).mat-datepicker-content-touch {
  /** The default max-height of the touchUI overlay is 80vh.
  Increasing this max-height on handsets to 100vh when there is a suggestion list
  to allow the overlay to try to expand and fit all content */
}
@media (max-width: 599.98px) and (orientation: portrait), (max-width: 959.98px) and (orientation: landscape) {
  html .mat-datepicker-content:has(.nextech-relative-date-suggestion-list).mat-datepicker-content-touch,
  html .mat-datepicker-content:has(.nextech-relative-date-range-suggestion-list).mat-datepicker-content-touch {
    height: -moz-fit-content;
    height: fit-content;
    max-height: 100vh;
  }
  html .mat-datepicker-content:has(.nextech-relative-date-suggestion-list).mat-datepicker-content-touch .mat-datepicker-content-container,
  html .mat-datepicker-content:has(.nextech-relative-date-range-suggestion-list).mat-datepicker-content-touch .mat-datepicker-content-container {
    height: 100%;
  }
}
html .mat-datepicker-content:has(.nextech-relative-date-suggestion-list) .mat-datepicker-content-container.mat-datepicker-content-container-with-actions,
html .mat-datepicker-content:has(.nextech-relative-date-range-suggestion-list) .mat-datepicker-content-container.mat-datepicker-content-container-with-actions {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  grid-template-areas: "suggestions" "calendar" "footer";
}
html .mat-datepicker-content:has(.nextech-relative-date-suggestion-list) .mat-datepicker-content-container.mat-datepicker-content-container-with-actions .mat-datepicker-actions,
html .mat-datepicker-content:has(.nextech-relative-date-range-suggestion-list) .mat-datepicker-content-container.mat-datepicker-content-container-with-actions .mat-datepicker-actions {
  display: contents; /* This allows the children to participate in the grid layout */
}
html .mat-datepicker-content:has(.nextech-relative-date-suggestion-list) .mat-datepicker-content-container.mat-datepicker-content-container-with-actions .mat-calendar,
html .mat-datepicker-content:has(.nextech-relative-date-range-suggestion-list) .mat-datepicker-content-container.mat-datepicker-content-container-with-actions .mat-calendar {
  grid-area: calendar;
}
html .mat-datepicker-content:has(.nextech-relative-date-suggestion-list) .mat-datepicker-content-container.mat-datepicker-content-container-with-actions .nextech-relative-date-suggestion-list,
html .mat-datepicker-content:has(.nextech-relative-date-suggestion-list) .mat-datepicker-content-container.mat-datepicker-content-container-with-actions .nextech-relative-date-range-suggestion-list,
html .mat-datepicker-content:has(.nextech-relative-date-range-suggestion-list) .mat-datepicker-content-container.mat-datepicker-content-container-with-actions .nextech-relative-date-suggestion-list,
html .mat-datepicker-content:has(.nextech-relative-date-range-suggestion-list) .mat-datepicker-content-container.mat-datepicker-content-container-with-actions .nextech-relative-date-range-suggestion-list {
  grid-area: suggestions;
}
html .mat-datepicker-content:has(.nextech-relative-date-suggestion-list) .mat-datepicker-content-container.mat-datepicker-content-container-with-actions .nextech-datepicker-footer,
html .mat-datepicker-content:has(.nextech-relative-date-range-suggestion-list) .mat-datepicker-content-container.mat-datepicker-content-container-with-actions .nextech-datepicker-footer {
  grid-area: footer;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: var(--spacing-2) var(--spacing-4) var(--spacing-4) var(--spacing-4);
}
@media (min-width: 600px) and (orientation: portrait), (min-width: 960px) and (orientation: landscape) {
  html .mat-datepicker-content:has(.nextech-relative-date-suggestion-list) .mat-datepicker-content-container.mat-datepicker-content-container-with-actions,
  html .mat-datepicker-content:has(.nextech-relative-date-range-suggestion-list) .mat-datepicker-content-container.mat-datepicker-content-container-with-actions {
    grid-template-columns: 135px 1fr;
    grid-template-rows: min-content auto;
    grid-template-areas: "suggestions calendar" "suggestions footer";
  }
  html .mat-datepicker-content:has(.nextech-relative-date-suggestion-list) .mat-datepicker-content-container.mat-datepicker-content-container-with-actions .nextech-relative-date-suggestion-list,
  html .mat-datepicker-content:has(.nextech-relative-date-suggestion-list) .mat-datepicker-content-container.mat-datepicker-content-container-with-actions .nextech-relative-date-range-suggestion-list,
  html .mat-datepicker-content:has(.nextech-relative-date-range-suggestion-list) .mat-datepicker-content-container.mat-datepicker-content-container-with-actions .nextech-relative-date-suggestion-list,
  html .mat-datepicker-content:has(.nextech-relative-date-range-suggestion-list) .mat-datepicker-content-container.mat-datepicker-content-container-with-actions .nextech-relative-date-range-suggestion-list {
    grid-area: calendar;
    position: absolute;
    max-height: 100%;
    height: 100%;
  }
}
html .mat-mdc-dialog-container {
  --mdc-dialog-container-color: var(--surface);
  --mdc-dialog-container-elevation-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15),
    0px 1px 3px rgba(0, 0, 0, 0.3);
  --mdc-dialog-container-shape: var(--shape-medium);
  --mdc-dialog-subhead-color: var(--on-surface);
  --mdc-dialog-subhead-line-height: var(
    --typography-headline-small-line-height
  );
  --mdc-dialog-subhead-size: var(--typography-headline-small-font-size);
  --mdc-dialog-subhead-weight: var(--typography-headline-small-font-weight);
  --mdc-dialog-subhead-tracking: var(
    --typography-headline-small-letter-spacing
  );
  --mdc-dialog-supporting-text-color: var(--on-surface-variant);
  --mdc-dialog-supporting-line-height: var(
    --typography-body-medium-line-height
  );
  --mdc-dialog-supporting-size: var(--typography-body-medium-font-size);
  --mdc-dialog-supporting-weight: var(--typography-body-medium-font-weight);
  --mdc-dialog-supporting-tracking: var(
    --typography-body-medium-letter-spacing
  );
}
html .mat-mdc-dialog-container .mdc-dialog__actions {
  border-top-width: 0;
  min-height: -moz-fit-content;
  min-height: fit-content;
  gap: 8px;
}
html .mat-mdc-dialog-container .mdc-dialog__actions .mat-button-base + .mat-button-base,
html .mat-mdc-dialog-container .mdc-dialog__actions .mat-mdc-button-base + .mat-mdc-button-base {
  margin: 0;
}
html .mat-mdc-dialog-container .mdc-dialog__surface {
  width: min(var(--nextech-dialog-width), 80vw);
}
html .mat-mdc-dialog-container .mdc-dialog__title {
  margin: 0;
}
html .mat-mdc-dialog-container .mdc-dialog__title::before {
  content: none;
}
html .nextech-dialog--sm {
  --nextech-dialog-width: 280px;
}
html .nextech-dialog--md {
  --nextech-dialog-width: 560px;
}
html .nextech-dialog--lg {
  --nextech-dialog-width: 840px;
}
html .mdc-dialog__title.nextech-dialog-title--flush {
  --mat-dialog-headline-padding: var(--spacing-4)
    var(--nextech-dialog-spacing);
  margin-bottom: var(--spacing-2);
}
html span.nextech-error--align {
  display: inline-flex;
  width: 100%;
}
html span.nextech-error--align > [align=end] {
  text-align: end;
  flex-grow: 1;
}
html .mat-mdc-form-field {
  --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;
  --_form-field-input-width: 180px;
  --mat-form-field-focus-state-layer-opacity: 0;
  --mdc-filled-text-field-active-indicator-color: var(--on-surface-variant);
  --mdc-filled-text-field-container-color: var(--surface-container-low);
  --mdc-filled-text-field-disabled-active-indicator-color: var(
    --on-disabled-surface
  );
  --mdc-filled-text-field-disabled-container-color: var(
    --disabled-surface-variant
  );
  --mdc-filled-text-field-disabled-input-text-color: var(
    --on-disabled-surface
  );
  --mdc-filled-text-field-disabled-label-text-color: var(
    --on-disabled-surface
  );
  --mdc-filled-text-field-label-text-color: var(--on-surface-variant);
  --mdc-outlined-text-field-disabled-input-text-color: var(
    --on-disabled-surface
  );
  --mdc-outlined-text-field-disabled-label-text-color: var(
    --on-disabled-surface
  );
  --mdc-outlined-text-field-disabled-outline-color: var(--disabled-surface);
  --mdc-outlined-text-field-hover-label-text-color: var(--on-surface);
  --mdc-outlined-text-field-hover-outline-color: var(--on-surface);
  --mdc-outlined-text-field-label-text-color: var(--on-surface-variant);
  --mdc-outlined-text-field-outline-color: var(--outline);
  --mdc-typography-subtitle1-font-size: 14px;
}
html .mat-form-field-disabled {
  color: var(--on-disabled-surface);
}
html .mat-form-field-disabled .mat-mdc-form-field-hint {
  color: var(--on-disabled-surface);
}
html .mat-mdc-form-field-hint {
  color: var(--on-surface-variant);
}
html .mat-mdc-form-field-infix {
  width: var(--_form-field-input-width, 180px);
}
html .mat-mdc-form-field-required-marker {
  color: var(--error);
}
html .mat-mdc-form-field-icon-prefix > .mat-icon,
html .mat-mdc-form-field-icon-suffix > .mat-icon {
  padding: 0 8px;
}
html .mat-mdc-form-field-subscript-wrapper:not(:has(.mat-mdc-form-field-hint)):not(:has(.mat-mdc-form-field-error)) {
  display: grid;
}
html .mdc-form-field:not(:has(.mdc-switch)) > label {
  padding-left: 0;
}
html .nextech-form-field--contrast {
  --mdc-filled-text-field-container-color: var(--surface-container-lowest);
}
html .nextech-form-field--lg,
html .mat-mdc-form-field[size=lg] {
  --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 .nextech-form-field--sm,
html .mat-mdc-form-field[size=sm] {
  --mat-form-field-container-height: 40px;
  --mat-form-field-filled-label-display: none;
  --mat-form-field-container-vertical-padding: 8px;
  --mat-form-field-filled-with-label-container-padding-top: 8px;
  --mat-form-field-filled-with-label-container-padding-bottom: 8px;
}
html .nextech-form-field--sm .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix,
html .mat-mdc-form-field[size=sm] .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix {
  padding-top: 16px;
  padding-bottom: 0px;
}
html .nextech-form-field--sm .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix .mat-mdc-floating-label,
html .mat-mdc-form-field[size=sm] .mat-mdc-text-field-wrapper:not(.mdc-text-field--outlined) .mat-mdc-form-field-infix .mat-mdc-floating-label {
  display: block;
}
html .nextech-form-field--w-full {
  --_form-field-input-width: 0;
  width: 100%;
}
html .nextech-html-viewer blockquote {
  border-left: 4px solid var(--outline);
  margin-left: 0;
  padding-left: 1rem;
}
html .nextech-html-viewer blockquote,
html .nextech-html-viewer li,
html .nextech-html-viewer p {
  white-space: pre-wrap;
}
html .nextech-html-viewer li {
  list-style-type: none;
}
html .nextech-html-viewer ol,
html .nextech-html-viewer ul {
  counter-reset: count 1;
}
html .nextech-html-viewer ol > li.bullet:first-child,
html .nextech-html-viewer ul > li.bullet:first-child {
  counter-increment: count -1;
}
html .nextech-html-viewer ol > li.ordered:not(.indent):not(:first-child),
html .nextech-html-viewer ul > li.ordered:not(.indent):not(:first-child) {
  counter-increment: count 1;
}
html .nextech-html-viewer ol > li.ordered:not(.indent)::marker,
html .nextech-html-viewer ul > li.ordered:not(.indent)::marker {
  content: counter(count, decimal) ". ";
}
html .nextech-html-viewer ol > li li.indent,
html .nextech-html-viewer ul > li li.indent {
  counter-increment: count -1;
}
html .nextech-html-viewer ol > li > ol > li.ordered:not(.indent)::marker,
html .nextech-html-viewer ol > li li li li > ol > li.ordered:not(.indent)::marker,
html .nextech-html-viewer ol > li li li li li li li > ol > li.ordered:not(.indent)::marker,
html .nextech-html-viewer ul > li > ol > li.ordered:not(.indent)::marker,
html .nextech-html-viewer ul > li li li li > ol > li.ordered:not(.indent)::marker,
html .nextech-html-viewer ul > li li li li li li li > ol > li.ordered:not(.indent)::marker {
  content: counter(count, lower-alpha) ". ";
}
html .nextech-html-viewer ol > li li > ol > li.ordered:not(.indent)::marker,
html .nextech-html-viewer ol > li li li li li > ol > li.ordered:not(.indent)::marker,
html .nextech-html-viewer ol > li li li li li li li li > ol > li.ordered:not(.indent)::marker,
html .nextech-html-viewer ul > li li > ol > li.ordered:not(.indent)::marker,
html .nextech-html-viewer ul > li li li li li > ol > li.ordered:not(.indent)::marker,
html .nextech-html-viewer ul > li li li li li li li li > ol > li.ordered:not(.indent)::marker {
  content: counter(count, lower-roman) ". ";
}
html .nextech-html-viewer ol > li li li > ol > li.ordered:not(.indent)::marker,
html .nextech-html-viewer ol > li li li li li li > ol > li.ordered:not(.indent)::marker,
html .nextech-html-viewer ol > li li li li li li li li li > ol > li.ordered:not(.indent)::marker,
html .nextech-html-viewer ul > li li li > ol > li.ordered:not(.indent)::marker,
html .nextech-html-viewer ul > li li li li li li > ol > li.ordered:not(.indent)::marker,
html .nextech-html-viewer ul > li li li li li li li li li > ol > li.ordered:not(.indent)::marker {
  content: counter(count, decimal) ". ";
}
html .nextech-html-viewer ol:has(+ ol), html .nextech-html-viewer ol:has(+ ul),
html .nextech-html-viewer ol + ol,
html .nextech-html-viewer ol + ul,
html .nextech-html-viewer ul:has(+ ol),
html .nextech-html-viewer ul:has(+ ul),
html .nextech-html-viewer ul + ol,
html .nextech-html-viewer ul + ul {
  margin: 0;
}
html .nextech-html-viewer ol li.bullet:not(.indent)::marker,
html .nextech-html-viewer ul li:not(.indent)::marker {
  content: "•  ";
}
html .nextech-html-viewer .ql-indent-1 {
  padding-left: 3em;
}
html .nextech-html-viewer .ql-indent-2 {
  padding-left: 6em;
}
html .nextech-html-viewer .ql-indent-3 {
  padding-left: 9em;
}
html .nextech-html-viewer .ql-indent-4 {
  padding-left: 12em;
}
html .nextech-html-viewer .ql-indent-5 {
  padding-left: 15em;
}
html .nextech-html-viewer .ql-indent-6 {
  padding-left: 18em;
}
html .nextech-html-viewer .ql-indent-7 {
  padding-left: 21em;
}
html .nextech-html-viewer .ql-indent-8 {
  padding-left: 24em;
}
html a {
  color: var(--nextech-hyperlink-color, var(--primary));
  text-decoration-color: var(--nextech-hyperlink-underline-color, transparent);
  text-decoration-line: underline;
  text-decoration-thickness: var(--nextech-hyperlink-underline-width, 1px);
  text-underline-offset: 0.125em;
}
html a:focus-visible {
  background-color: var(--nextech-hyperlink-focused-state-color, var(--primary-focused));
  outline: none;
}
html .mat-icon {
  font-family: "Material Symbols Outlined", "Material Icons";
  -webkit-font-smoothing: antialiased;
  direction: ltr;
  font-size: var(--icon-size);
  font-variation-settings: "FILL" var(--icon-font-variation-fill);
  font-weight: var(--icon-font-weight);
  height: var(--icon-size);
  line-height: 1;
  white-space: nowrap;
  width: var(--icon-size);
  word-wrap: normal;
}
html .mat-icon:not([svgicon]) {
  height: 1em;
  width: 1em;
}
html .mat-icon[filled]:not([filled=false]), html .mat-icon.nextech-icon--filled {
  --icon-font-variation-fill: 1;
}
html .mat-icon[outlined]:not([outlined=false]), html .mat-icon.nextech-icon--outlined {
  --icon-font-variation-fill: 0;
}
html .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 .mdc-icon-button {
  --icon-size: var(--mdc-icon-button-icon-size);
}
html .mdc-icon-button,
html .mdc-icon-button .mat-mdc-button-persistent-ripple {
  border-radius: var(--nextech-icon-button-container-shape);
}
html .mdc-icon-button[disabled]:disabled {
  --mdc-icon-button-disabled-icon-color: var(--on-disabled-surface);
}
html .mdc-icon-button.nextech-icon-button--lg, html .mdc-icon-button.nextech-icon-button--large {
  --mdc-icon-button-icon-size: 32px;
  --mdc-icon-button-state-layer-size: 48px;
}
html .mdc-icon-button.nextech-icon-button--sm, html .mdc-icon-button.nextech-icon-button--small {
  --mdc-icon-button-icon-size: 24px;
  --mdc-icon-button-state-layer-size: 32px;
  padding: 4px;
}
html .mdc-icon-button.nextech-icon-button--xs, html .mdc-icon-button.nextech-icon-button--xsmall {
  --mdc-icon-button-icon-size: 20px;
  --mdc-icon-button-state-layer-size: 28px;
  padding: 4px;
}
html .mdc-icon-button[size=lg], html .mdc-icon-button[size=large] {
  --mdc-icon-button-icon-size: 32px;
  --mdc-icon-button-state-layer-size: 48px;
}
html .mdc-icon-button[size=sm], html .mdc-icon-button[size=small] {
  --mdc-icon-button-icon-size: 24px;
  --mdc-icon-button-state-layer-size: 32px;
  padding: 4px;
}
html .mdc-icon-button[size=xs], html .mdc-icon-button[size=xsmall] {
  --mdc-icon-button-icon-size: 20px;
  --mdc-icon-button-state-layer-size: 28px;
  padding: 4px;
}
html .nextech-icon-button--outlined,
html .mdc-icon-button[appearance=outlined] {
  box-shadow: inset 0 0 0 var(--nextech-icon-button-outline-width) var(--nextech-icon-button-outline-color);
}
html .nextech-icon-button--outlined[disabled]:disabled,
html .mdc-icon-button[appearance=outlined][disabled]:disabled {
  --nextech-icon-button-outline-color: var(--disabled-surface);
}
html .nextech-icon-button--outlined.mat-primary, html .nextech-icon-button--outlined.mat-accent, html .nextech-icon-button--outlined.mat-warn,
html .mdc-icon-button[appearance=outlined].mat-primary,
html .mdc-icon-button[appearance=outlined].mat-accent,
html .mdc-icon-button[appearance=outlined].mat-warn {
  --nextech-icon-button-outline-color: var(--mdc-icon-button-icon-color);
}
html .nextech-icon-button--filled,
html .mdc-icon-button[appearance=filled] {
  background-color: var(--mdc-icon-button-icon-color);
}
html .nextech-icon-button--filled[disabled]:disabled,
html .mdc-icon-button[appearance=filled][disabled]:disabled {
  --mdc-icon-button-icon-color: var(--disabled-surface);
}
html .nextech-icon-button--filled[disabled]:disabled .mat-icon,
html .mdc-icon-button[appearance=filled][disabled]:disabled .mat-icon {
  --mat-icon-color: var(--on-disabled-surface);
}
html .nextech-icon-button--filled.mat-unthemed,
html .mdc-icon-button[appearance=filled].mat-unthemed {
  --mdc-icon-button-icon-color: var(--surface);
}
html .nextech-icon-button--filled.mat-unthemed .mat-icon,
html .mdc-icon-button[appearance=filled].mat-unthemed .mat-icon {
  --mat-icon-color: var(--on-surface);
}
html .nextech-icon-button--filled.mat-primary,
html .mdc-icon-button[appearance=filled].mat-primary {
  --mat-mdc-button-persistent-ripple-color: var(--on-primary);
}
html .nextech-icon-button--filled.mat-primary .mat-icon,
html .mdc-icon-button[appearance=filled].mat-primary .mat-icon {
  --mat-icon-color: var(--on-primary);
}
html .nextech-icon-button--filled.mat-accent,
html .mdc-icon-button[appearance=filled].mat-accent {
  --mat-mdc-button-persistent-ripple-color: var(--on-secondary);
}
html .nextech-icon-button--filled.mat-accent .mat-icon,
html .mdc-icon-button[appearance=filled].mat-accent .mat-icon {
  --mat-icon-color: var(--on-secondary);
}
html .nextech-icon-button--filled.mat-warn,
html .mdc-icon-button[appearance=filled].mat-warn {
  --mat-mdc-button-persistent-ripple-color: var(--on-error);
}
html .nextech-icon-button--filled.mat-warn .mat-icon,
html .mdc-icon-button[appearance=filled].mat-warn .mat-icon {
  --mat-icon-color: var(--on-error);
}
html .mat-mdc-menu-panel {
  --mat-menu-container-color: var(--surface);
}
html .mat-mdc-menu-panel.nextech-subnav-menu {
  background-color: var(--navigation-container);
  color-scheme: dark;
  margin-left: 84px;
  width: 280px;
}
html .mat-mdc-menu-panel.nextech-subnav-menu.nextech-subnav-menu--dark {
  color-scheme: dark;
}
html .mat-mdc-menu-panel.nextech-subnav-menu.nextech-subnav-menu--light {
  color-scheme: light;
}
html .mat-mdc-menu-panel.nextech-subnav-menu.mat-menu-above {
  margin-bottom: -64px;
}
html .mat-mdc-menu-panel.nextech-subnav-menu .mat-mdc-menu-item-text {
  color: var(--on-navigation-container);
}
html .mat-mdc-menu-panel.nextech-subnav-menu .mat-mdc-menu-item {
  background-color: var(--navigation-container);
}
html .mat-mdc-menu-panel.nextech-subnav-menu .mat-mdc-menu-item:hover,
html .mat-mdc-menu-panel.nextech-subnav-menu .mat-mdc-menu-item.cdk-keyboard-focused,
html .mat-mdc-menu-panel.nextech-subnav-menu .mat-mdc-menu-item.nextech-subnav-menu-item--active {
  background-color: var(--navigation-container-active);
  color: var(--on-navigation-container-active);
}
html .mat-mdc-menu-panel.nextech-subnav-menu .mat-mdc-menu-item:hover .mat-mdc-menu-item-text,
html .mat-mdc-menu-panel.nextech-subnav-menu .mat-mdc-menu-item.cdk-keyboard-focused .mat-mdc-menu-item-text,
html .mat-mdc-menu-panel.nextech-subnav-menu .mat-mdc-menu-item.nextech-subnav-menu-item--active .mat-mdc-menu-item-text {
  color: var(--on-navigation-container-hovered);
}
html .mat-mdc-menu-panel.nextech-subnav-menu .mat-mdc-menu-item.nextech-subnav-menu-item--active {
  border-width: 0px 0px 0px 2px;
  border-style: solid;
  border-color: var(--on-navigation-container-active);
}
html .mat-mdc-menu-panel.nextech-subnav-menu .mat-mdc-menu-item.nextech-subnav-menu-item--active .mat-mdc-menu-item-text {
  color: var(--on-navigation-container-active);
}
html .mat-mdc-option {
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: var(
    --on-primary-container
  );
  --mdc-list-list-item-focus-state-layer-color: var(--on-primary-container);
  --mdc-list-list-item-focus-state-layer-opacity: var(--state-focused);
  --mdc-list-list-item-hover-state-layer-color: var(--on-primary-container);
  --mdc-list-list-item-hover-state-layer-opacity: var(--state-hovered);
}
html .cdk-overlay-dark-backdrop {
  background: var(--scrim);
}
html .mat-mdc-paginator {
  --mat-icon-button-touch-target-display: none;
  --mat-form-field-container-height: 40px;
  --mat-form-field-filled-label-display: none;
  --mat-form-field-container-vertical-padding: 8px;
  --mat-form-field-filled-with-label-container-padding-top: 8px;
  --mat-form-field-filled-with-label-container-padding-bottom: 8px;
  --mat-paginator-container-background-color: var(--surface);
  --mat-paginator-container-text-color: var(--on-surface);
}
html .mat-mdc-paginator .mat-mdc-icon-button.mat-mdc-button-base {
  --mdc-icon-button-state-layer-size: 28px;
  width: var(--mdc-icon-button-state-layer-size);
  height: var(--mdc-icon-button-state-layer-size);
  padding: 2px;
}
html .mat-mdc-paginator .mat-mdc-form-field-subscript-wrapper.mat-mdc-form-field-bottom-align {
  display: none;
}
html .mat-mdc-paginator-page-size {
  align-items: center;
}
html .mat-mdc-paginator-range-actions {
  gap: var(--spacing-2);
}
html .mat-mdc-progress-bar {
  --mdc-linear-progress-track-shape: var(--shape-small);
  --mdc-linear-progress-track-color: var(--surface-container-highest);
  border-radius: var(--mdc-linear-progress-track-shape);
}
html .mat-mdc-radio-button {
  --mdc-radio-disabled-selected-icon-opacity: 1;
  --mdc-radio-disabled-unselected-icon-opacity: 1;
}
html .mat-mdc-radio-button.mat-accent,
html .mat-mdc-radio-button.mat-primary {
  --mdc-radio-disabled-selected-icon-color: var(--on-disabled-surface);
  --mdc-radio-disabled-unselected-icon-color: var(--on-disabled-surface);
  --mdc-radio-unselected-icon-color: var(--on-surface-variant);
}
html .mat-mdc-select-panel {
  --mat-select-panel-background-color: var(--surface);
}
html .mdc-snackbar__surface:not(:has([class*=nextech-snackbar--])) {
  --mat-snack-bar-button-color: var(--inverse-primary);
  --mdc-snackbar-container-color: var(--inverse-surface);
  --mdc-snackbar-supporting-text-color: var(--on-inverse-surface);
}
html .mdc-snackbar__surface:has([class*=nextech-snackbar--]) {
  --mdc-snackbar-container-color: var(--surface);
  --mdc-snackbar-supporting-text-color: var(--on-surface);
  --mat-snack-bar-button-color: var(--primary);
}
html .mat-mdc-snack-bar-container {
  margin: 40px;
}
html .mdc-snackbar__surface:has(.nextech-snackbar) {
  padding-right: 0;
}
html [class*=nextech-snackbar--] .mdc-snackbar__surface {
  --mdc-snackbar-container-color: var(--surface);
  --mdc-snackbar-supporting-text-color: var(--on-surface);
  --mat-snack-bar-button-color: var(--primary);
  background-image: linear-gradient(to right, var(--nextech-snackbar-severity-color) 0, var(--nextech-snackbar-severity-color) 56px, transparent 56px);
  min-height: 56px;
  padding-left: 56px;
}
html [class*=nextech-snackbar--] .mdc-snackbar__surface::before {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  align-items: center;
  color: var(--nextech-snackbar-on-severity-color);
  content: var(--nextech-snackbar-icon);
  display: flex;
  font: 24px/1 "Material Symbols Outlined", "Material Icons";
  font-variation-settings: "FILL" 1;
  height: 100%;
  justify-content: center;
  width: 56px;
}
html [class*=nextech-snackbar--] .mat-mdc-simple-snack-bar .mat-mdc-snack-bar-label {
  display: flex;
  align-items: center;
  padding-bottom: 8px;
  padding-top: 8px;
}
html [class*=nextech-snackbar--] .mat-mdc-simple-snack-bar .mat-mdc-snack-bar-actions {
  padding: 8px 0;
}
html .nextech-snackbar--success {
  --nextech-snackbar-severity-color: var(--success);
  --nextech-snackbar-on-severity-color: var(--on-success);
  --nextech-snackbar-icon: "check_circle";
}
html .nextech-snackbar--caution {
  --nextech-snackbar-severity-color: var(--caution);
  --nextech-snackbar-on-severity-color: var(--on-caution);
  --nextech-snackbar-icon: "warning";
}
html .nextech-snackbar--info {
  --nextech-snackbar-severity-color: var(--info);
  --nextech-snackbar-on-severity-color: var(--on-info);
  --nextech-snackbar-icon: "info";
}
html .nextech-snackbar--error, html .nextech-snackbar--warn {
  --nextech-snackbar-severity-color: var(--error);
  --nextech-snackbar-on-severity-color: var(--on-error);
  --nextech-snackbar-icon: "error";
}
html .mat-mdc-slide-toggle {
  --mat-switch-disabled-selected-handle-opacity: 1;
  --mat-switch-disabled-unselected-handle-opacity: 1;
  --mdc-switch-disabled-handle-elevation-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15), 0px 1px 2px rgba(0, 0, 0, 0.3);
  --mdc-switch-disabled-handle-opacity: 1;
  --mdc-switch-disabled-selected-handle-color: var(--disabled-surface);
  --mdc-switch-disabled-selected-icon-color: var(--on-disabled-surface);
  --mdc-switch-disabled-selected-icon-opacity: 1;
  --mdc-switch-disabled-selected-track-color: var(--disabled-surface);
  --mdc-switch-disabled-track-opacity: 1;
  --mdc-switch-disabled-unselected-handle-color: var(--disabled-surface);
  --mdc-switch-disabled-unselected-handle-color: var(--disabled-surface);
  --mdc-switch-disabled-unselected-handle-opacity: 1;
  --mdc-switch-disabled-unselected-icon-color: var(--on-disabled-surface);
  --mdc-switch-disabled-unselected-icon-opacity: 1;
  --mdc-switch-disabled-unselected-track-color: var(--disabled-surface);
  --mdc-switch-handle-surface-color: var(--surface);
  --mdc-switch-unselected-focus-track-color: var(--surface-container-highest);
  --mdc-switch-unselected-hover-track-color: var(--surface-container-highest);
  --mdc-switch-unselected-pressed-track-color: var(--surface-container-highest);
  --mdc-switch-unselected-track-color: var(--surface-container-highest);
}
html .mat-mdc-slide-toggle .mdc-switch {
  --mdc-switch-disabled-track-opacity: 1;
  --mdc-switch-disabled-handle-opacity: 1;
  --mat-switch-disabled-selected-handle-opacity: 1;
  --mat-switch-disabled-unselected-handle-opacity: 1;
  --mdc-switch-disabled-handle-elevation-shadow: 0px 1px 3px rgba(0, 0, 0, 0.15), 0px 1px 2px rgba(0, 0, 0, 0.3);
}
html .mat-mdc-slide-toggle:not(.nextech-switch--m2) .mdc-form-field {
  gap: 4px;
}
html .mat-mdc-slide-toggle:not(.nextech-switch--m2) .mdc-switch {
  --mat-switch-track-outline-width: var(
    --nextech-switch-track-outline-width,
    2px
  );
  --mat-switch-track-outline-color: var(
    --nextech-switch-track-outline-color,
    var(--outline)
  );
  --mat-switch-with-icon-handle-size: var(--mdc-switch-handle-height);
  --mat-switch-pressed-handle-size: calc(
    var(--mat-switch-with-icon-handle-size) + 4px
  );
  --mdc-switch-handle-height: var(--nextech-switch-handle-size, 24px);
  --mdc-switch-handle-shape: var(--shape-full);
  --mdc-switch-handle-width: var(--mdc-switch-handle-height);
  --mdc-switch-track-height: var(--nextech-switch-track-height, 32px);
  --mdc-switch-track-shape: var(--shape-full);
  --mdc-switch-track-width: var(--nextech-switch-track-width, 52px);
  --mdc-switch-handle-surface-color: transparent;
  --mdc-switch-handle-elevation-shadow: none;
  --mdc-switch-state-layer-size: var(--nextech-switch-state-layer-size, 40px);
  --mdc-switch-unselected-handle-color: var(
    --nextech-switch-unselected-handle-color,
    var(--outline)
  );
  --mdc-switch-unselected-hover-handle-color: var(
    --nextech-switch-unselected-state-handle-color,
    var(--on-surface-variant)
  );
  --mdc-switch-unselected-focus-handle-color: var(
    --nextech-switch-unselected-state-handle-color,
    var(--on-surface-variant)
  );
  --mdc-switch-unselected-pressed-handle-color: var(
    --nextech-switch-unselected-state-handle-color,
    var(--on-surface-variant)
  );
  --mdc-switch-unselected-hover-state-layer-color: var(--on-surface-hovered);
  --mdc-switch-unselected-focus-state-layer-color: var(--on-surface-focused);
  --mdc-switch-unselected-pressed-state-layer-color: var(
    --on-surface-pressed
  );
  --mdc-switch-unselected-pressed-state-layer-opacity: 1;
  --mdc-switch-unselected-track-color: var(
    --nextech-switch-unselected-track-color,
    var(--surface-container-highest)
  );
  --mdc-switch-unselected-hover-track-color: var(
    --mdc-switch-unselected-track-color
  );
  --mdc-switch-unselected-pressed-track-color: var(
    --mdc-switch-unselected-track-color
  );
  --mdc-switch-unselected-focus-track-color: var(
    --mdc-switch-unselected-track-color
  );
  --mdc-switch-unselected-icon-color: var(
    --mdc-switch-unselected-track-color
  );
  --mdc-switch-unselected-icon-size: var(--nextech-switch-icon-size, 16px);
  --mdc-switch-selected-handle-color: var(
    --nextech-switch-selected-handle-color,
    var(--on-primary)
  );
  --mdc-switch-selected-hover-handle-color: var(
    --nextech-switch-selected-state-handle-color,
    var(--primary-container)
  );
  --mdc-switch-selected-focus-handle-color: var(
    --nextech-switch-selected-state-handle-color,
    var(--primary-container)
  );
  --mdc-switch-selected-pressed-handle-color: var(
    --nextech-switch-selected-state-handle-color,
    var(--primary-container)
  );
  --mdc-switch-selected-hover-state-layer-color: var(--primary-hovered);
  --mdc-switch-selected-focus-state-layer-color: var(--primary-focused);
  --mdc-switch-selected-pressed-state-layer-color: var(--primary-pressed);
  --mdc-switch-selected-pressed-state-layer-opacity: 1;
  --mdc-switch-selected-track-color: var(
    --nextech-switch-selected-track-color,
    var(--primary)
  );
  --mdc-switch-selected-hover-track-color: var(
    --mdc-switch-selected-track-color
  );
  --mdc-switch-selected-focus-track-color: var(
    --mdc-switch-selected-track-color
  );
  --mdc-switch-selected-pressed-track-color: var(
    --mdc-switch-selected-track-color
  );
  --mdc-switch-selected-icon-color: var(
    --nextech-switch-selected-icon-color,
    var(--on-primary-container)
  );
  --mdc-switch-selected-icon-size: var(--nextech-switch-icon-size, 16px);
  --mdc-switch-disabled-handle-elevation-shadow: none;
  --mdc-switch-disabled-handle-opacity: 1;
  --mdc-switch-disabled-track-opacity: 1;
  --mat-switch-disabled-unselected-handle-opacity: 1;
  --mat-switch-disabled-unselected-track-outline-width: var(
    --mat-switch-track-outline-width
  );
  --mdc-switch-disabled-unselected-handle-color: var(--on-disabled-surface);
  --mdc-switch-disabled-unselected-track-color: var(--disabled-surface);
  --mat-switch-disabled-unselected-track-outline-color: var(
    --disabled-surface
  );
  --mdc-switch-disabled-unselected-icon-color: var(
    --surface-container-highest
  );
  --mdc-switch-disabled-unselected-icon-opacity: 1;
  --mat-switch-disabled-selected-handle-opacity: 1;
  --mat-switch-disabled-selected-track-outline-color: transparent;
  --mdc-switch-disabled-selected-handle-color: var(--surface);
  --mdc-switch-disabled-selected-track-color: var(--disabled-surface);
  --mdc-switch-disabled-selected-icon-color: var(--on-disabled-surface);
  --mdc-switch-disabled-selected-icon-opacity: 1;
}
html .mat-mdc-slide-toggle:not(.nextech-switch--m2) .mdc-switch__handle-track {
  left: 4px;
  transition-property: transform, left, width, height, color, border-color, background-color;
}
html .mat-mdc-slide-toggle:not(.nextech-switch--m2) .mdc-switch__ripple {
  z-index: 1;
}
html .mat-mdc-slide-toggle:not(.nextech-switch--m2) .mdc-switch--disabled.mdc-switch--selected {
  --mat-switch-track-outline-color: transparent;
  --mat-switch-disabled-unselected-track-outline-color: transparent;
}
html .mat-mdc-slide-toggle:not(.nextech-switch--m2) .mdc-switch:active .mdc-switch__handle-track {
  left: 2px;
}
html .mat-mdc-slide-toggle:not(.nextech-switch--m2) .mdc-switch--selected .mdc-switch__handle-track {
  left: -4px;
}
html .mat-mdc-slide-toggle:not(.nextech-switch--m2) .mdc-switch--selected:active .mdc-switch__handle-track {
  left: -6px;
}
html .mat-mdc-slide-toggle:not(.nextech-switch--m2) .mdc-switch--selected:not(html .mat-mdc-slide-toggle:not(.nextech-switch--m2) .mdc-switch--disabled) {
  --mat-switch-track-outline-color: var(--mdc-switch-selected-track-color);
}
html .mat-mdc-slide-toggle:not(.nextech-switch--m2) .mdc-switch:not(html .mat-mdc-slide-toggle:not(.nextech-switch--m2) .mdc-switch--selected) .mdc-switch__icons .mdc-switch__icon--off {
  display: none;
}
html .mat-mdc-slide-toggle:not(.nextech-switch--m2) .mdc-switch:not(html .mat-mdc-slide-toggle:not(.nextech-switch--m2) .mdc-switch--selected) .mdc-switch__icons::after {
  bottom: 0;
  color: var(--mdc-switch-unselected-icon-color);
  content: "close";
  display: grid;
  font-family: "Material Symbols Outlined", "Material Icons";
  font-size: var(--mdc-switch-unselected-icon-size);
  left: 0;
  line-height: 1;
  place-items: center;
  position: absolute;
  right: 0;
  top: 0;
}
html .mat-mdc-slide-toggle:not(.nextech-switch--m2) .mdc-switch .mdc-switch__ripple::after, html .mat-mdc-slide-toggle:not(.nextech-switch--m2).mat-mdc-slide-toggle-focused .mdc-switch .mdc-switch__ripple::after {
  opacity: 1;
}
html .mat-stepper-horizontal,
html .mat-stepper-vertical {
  --icon-size: 16px;
  --mat-stepper-container-color: var(--surface);
  --mat-stepper-header-done-state-icon-background-color: var(--success);
  --mat-stepper-header-done-state-icon-foreground-color: var(--on-success);
  --mat-stepper-header-hover-state-layer-color: var(--on-surface-hovered);
  --mat-stepper-header-icon-background-color: var(--inverse-surface-variant);
  --mat-stepper-header-icon-foreground-color: var(--on-inverse-surface);
  --mat-stepper-header-label-text-size: var(
    --typography-label-large-prominent-font-size
  );
  --mat-stepper-header-label-text-weight: var(
    --typography-label-large-prominent-font-weight
  );
  --mat-stepper-header-optional-label-text-color: var(--on-surface-variant);
  --mat-stepper-header-selected-state-label-text-color: var(--on-surface);
  --mat-stepper-header-selected-state-label-text-size: var(
    --mat-stepper-header-label-text-size
  );
  --mat-stepper-header-selected-state-label-text-weight: var(
    --mat-stepper-header-label-text-weight
  );
  --mat-stepper-line-color: var(--outline-variant);
  border-radius: var(--nextech-stepper-container-shape, var(--shape-large));
}
html .mat-stepper-horizontal .mat-step-icon-state-error .mat-icon,
html .mat-stepper-vertical .mat-step-icon-state-error .mat-icon {
  --icon-size: 28px;
}
html .mat-stepper-horizontal .mat-step-icon-state-error .mat-icon::before,
html .mat-stepper-vertical .mat-step-icon-state-error .mat-icon::before {
  content: "error";
}
html .mat-stepper-horizontal .mat-step-label,
html .mat-stepper-vertical .mat-step-label {
  letter-spacing: var(--typography-label-large-letter-spacing);
  line-height: var(--typography-label-large-line-height);
}
html .mat-stepper-horizontal .mat-step-optional,
html .mat-stepper-horizontal .mat-step-sub-label-error,
html .mat-stepper-vertical .mat-step-optional,
html .mat-stepper-vertical .mat-step-sub-label-error {
  letter-spacing: var(--typography-label-medium-letter-spacing);
  line-height: var(--typography-label-medium-line-height);
  font-size: var(--typography-label-medium-font-size);
  font-weight: var(--typography-label-medium-font-weight);
}
html .mat-stepper-label-position-bottom .mat-step-label {
  padding-top: 8px;
}
html mat-row,
html mat-footer-row {
  min-height: var(--mat-table-row-item-container-height);
}
html mat-header-row {
  min-height: var(--mat-table-header-container-height);
}
html mat-cell:first-of-type,
html mat-header-cell:first-of-type,
html mat-footer-cell:first-of-type {
  padding-left: var(--spacing-4);
}
html mat-cell:last-of-type,
html mat-header-cell:last-of-type,
html mat-footer-cell:last-of-type {
  padding-right: var(--spacing-4);
}
html [alignRight]:not([alignRight=false]).mat-mdc-header-cell, html [alignRight]:not([alignRight=false]).mat-mdc-cell,
html .nextech-table-cell--align-right.mat-mdc-header-cell,
html .nextech-table-cell--align-right.mat-mdc-cell,
html .nextech-table-cell--right.mat-mdc-header-cell,
html .nextech-table-cell--right.mat-mdc-cell {
  justify-content: end;
  text-align: right;
}
html [alignRight]:not([alignRight=false]) .mat-sort-header-container,
html .nextech-table-cell--align-right .mat-sort-header-container,
html .nextech-table-cell--right .mat-sort-header-container {
  justify-content: end;
  flex-direction: row-reverse;
  gap: 6px;
}
html th[column-fit],
html .nextech-table-column-fit {
  width: 1px;
}
html .mat-mdc-header-row {
  background-color: var(--nextech-table-header-background-color);
}
html .mat-mdc-table {
  --mat-icon-button-touch-target-display: none;
  --mat-form-field-container-height: 40px;
  --mat-form-field-filled-label-display: none;
  --mat-form-field-container-vertical-padding: 8px;
  --mat-form-field-filled-with-label-container-padding-top: 8px;
  --mat-form-field-filled-with-label-container-padding-bottom: 8px;
}
html .mat-mdc-table:not(:has(nextech-empty-state)) {
  --mdc-text-button-container-height: 32px;
  --mdc-filled-button-container-height: 32px;
  --mdc-outlined-button-container-height: 32px;
  --mdc-protected-button-container-height: 32px;
  --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;
  --mdc-typography-button-font-size: var(
    --typography-label-medium-prominent-font-size
  );
}
html .mat-mdc-table .mat-mdc-icon-button.mat-mdc-button-base {
  --mdc-icon-button-state-layer-size: 28px;
  width: var(--mdc-icon-button-state-layer-size);
  height: var(--mdc-icon-button-state-layer-size);
  padding: 2px;
}
html .mat-mdc-table[dense]:not([dense=false]), html .mat-mdc-table.nextech-table--dense {
  --mat-table-header-container-height: 44px;
  --mat-table-footer-container-height: 40px;
  --mat-table-row-item-container-height: 40px;
}
html .mat-sort-header-arrow {
  color: var(--on-surface-variant);
}
html .mat-sort-header-container {
  letter-spacing: inherit;
}
html .mat-mdc-footer-cell {
  border-top: var(--mat-table-row-item-outline-width) solid var(--mat-table-row-item-outline-color);
}
html .mat-mdc-tab-group,
html .mat-mdc-tab-nav-bar {
  --mat-tab-header-inactive-ripple-color: var(--on-surface);
}
html .mat-mdc-tab,
html .mat-mdc-tab-link {
  --mat-tab-header-inactive-label-text-color: var(--on-surface-variant);
}
html .mat-mdc-tab:hover .mdc-tab__ripple::before,
html .mat-mdc-tab-link:hover .mdc-tab__ripple::before {
  opacity: var(--state-hovered);
}
html .mat-mdc-tab:not(.mdc-tab--active),
html .mat-mdc-tab-link:not(.mdc-tab--active) {
  --mdc-tab-indicator-active-indicator-color: var(--outline-variant);
  --mdc-tab-indicator-active-indicator-height: 0;
}
html .mat-mdc-tab:not(.mdc-tab--active) .mdc-tab-indicator__content--underline,
html .mat-mdc-tab-link:not(.mdc-tab--active) .mdc-tab-indicator__content--underline {
  opacity: 1;
}
html .mat-mdc-tab.mat-mdc-tab-disabled,
html .mat-mdc-tab-link.mat-mdc-tab-disabled {
  --mat-tab-header-active-label-text-color: var(--on-disabled-surface);
  --mat-tab-header-inactive-label-text-color: var(--on-disabled-surface);
  --mdc-tab-indicator-active-indicator-color: var(
    --disabled-surface-variant
  );
  opacity: 1;
}
html .mat-mdc-tab.mat-mdc-tab-disabled.mdc-tab--active,
html .mat-mdc-tab-link.mat-mdc-tab-disabled.mdc-tab--active {
  --mdc-tab-indicator-active-indicator-color: var(--on-disabled-surface);
}
html .mat-mdc-tab-label-container,
html .mat-mdc-tab-link-container {
  border-bottom-style: solid;
  border-bottom-width: var(--mat-tab-header-divider-height, 1px);
  border-bottom-color: var(--mat-tab-header-divider-color, var(--outline-variant));
}
html .mat-mdc-tab-label-container:has(.mat-mdc-tab-labels:empty),
html .mat-mdc-tab-link-container:has(.mat-mdc-tab-labels:empty) {
  --mat-tab-header-divider-height: 0;
}
html .nextech-tabs--prominent.mat-primary {
  --mat-tab-header-active-focus-label-text-color: var(--on-primary);
  --mat-tab-header-active-hover-label-text-color: var(--on-primary);
  --mat-tab-header-active-label-text-color: var(--on-primary);
}
html .nextech-tabs--prominent.mat-accent {
  --mat-tab-header-active-focus-label-text-color: var(--on-secondary);
  --mat-tab-header-active-hover-label-text-color: var(--on-secondary);
  --mat-tab-header-active-label-text-color: var(--on-secondary);
}
html .nextech-tabs--prominent.mat-warn {
  --mat-tab-header-active-focus-label-text-color: var(--on-error);
  --mat-tab-header-active-hover-label-text-color: var(--on-error);
  --mat-tab-header-active-label-text-color: var(--on-error);
}
html .nextech-tabs--prominent .mdc-tab--active {
  background-color: var(--mdc-tab-indicator-active-indicator-color);
  transition: 150ms background-color linear;
}
html .nextech-tabs--prominent .mdc-tab--active.mat-mdc-tab-disabled {
  --mdc-tab-indicator-active-indicator-color: var(--disabled-surface);
  --mdc-tab-indicator-active-indicator-height: 0;
  --mat-tab-header-active-label-text-color: var(--on-secondary);
}
html .nextech-tab--prominent.mdc-tab--active {
  background-color: var(--mdc-tab-indicator-active-indicator-color);
  transition: 150ms background-color linear;
}
html .nextech-tab--prominent.mdc-tab--active.mat-mdc-tab-disabled {
  --mdc-tab-indicator-active-indicator-color: var(--disabled-surface);
  --mdc-tab-indicator-active-indicator-height: 0;
}
html .mat-primary .nextech-tab--prominent {
  --mat-tab-header-active-focus-label-text-color: var(--on-primary);
  --mat-tab-header-active-hover-label-text-color: var(--on-primary);
  --mat-tab-header-active-label-text-color: var(--on-primary);
}
html .mat-accent .nextech-tab--prominent {
  --mat-tab-header-active-focus-label-text-color: var(--on-secondary);
  --mat-tab-header-active-hover-label-text-color: var(--on-secondary);
  --mat-tab-header-active-label-text-color: var(--on-secondary);
}
html .mat-warn .nextech-tab--prominent {
  --mat-tab-header-active-focus-label-text-color: var(--on-error);
  --mat-tab-header-active-hover-label-text-color: var(--on-error);
  --mat-tab-header-active-label-text-color: var(--on-error);
}
html nextech-text-editor :has(.nextech-text-editor--focused) .nextech-text-editor__toolbar-container, html nextech-text-editor.nextech-text-editor--force-focus .nextech-text-editor__toolbar-container {
  display: block;
}
html nextech-text-editor .nextech-text-editor__toolbar-container {
  display: none;
}
html nextech-text-editor .ql-snow.ql-toolbar button, html nextech-text-editor .ql-snow .ql-toolbar button {
  width: unset;
}
html nextech-text-editor .ql-editor {
  padding: 0;
  min-height: var(--nextech-text-editor-min-height);
  height: 100%;
}
html nextech-text-editor .ql-editor p, html nextech-text-editor .ql-editor li, html nextech-text-editor .ql-editor ol, html nextech-text-editor .ql-editor s {
  font-family: var(--mat-form-field-container-text-font);
  line-height: var(--mat-form-field-container-text-line-height);
  font-size: var(--mat-form-field-container-text-size);
  letter-spacing: var(--mat-form-field-container-text-tracking);
  font-weight: var(--mat-form-field-container-text-weight);
  margin: 0px !important;
}
html nextech-text-editor .mat-form-field-hide-placeholder .ql-editor.ql-blank::before {
  display: none;
}
html nextech-text-editor .ql-editor.ql-blank::before {
  display: block;
  left: 0px;
  font-style: normal;
  font-family: var(--mat-form-field-container-text-font);
  line-height: var(--mat-form-field-container-text-line-height);
  font-size: var(--mat-form-field-container-text-size);
  letter-spacing: var(--mat-form-field-container-text-tracking);
  font-weight: var(--mat-form-field-container-text-weight);
  color: var(--on-surface-variant);
}
html nextech-text-editor .ql-disabled .ql-editor.ql-blank::before {
  color: var(--on-disabled-surface);
}
html nextech-text-editor .nextech-text-editor-input__editor-container.ql-container {
  border: none;
}
html nextech-text-editor .nextech-text-editor-input__editor-container.ql-container .ql-editor {
  padding: 0;
}
html .mat-mdc-tooltip {
  --mdc-plain-tooltip-container-color: var(--inverse-surface);
  --mdc-plain-tooltip-supporting-text-color: var(--on-inverse-surface);
}
html .nextech-gradient--avatar {
  background-image: radial-gradient(circle at -25% -25%, var(--gradient-avatar-start), var(--gradient-avatar-end));
}
html .nextech-gradient--banner {
  background-image: linear-gradient(to right, var(--gradient-banner-end) 25%, var(--gradient-banner-start));
}
html .nextech-navigation--background {
  background-color: var(--navigation-container);
}

:root {
  --nextech-primary-color: #155fc0;
  --nextech-secondary-color: #176e42;
  --nextech-warn-color: #ba1a1a;
  --nextech-primary-container-color: var(--primary-container);
  --nextech-outline-variant: var(--outline-variant);
  --nextech-surface-container: var(--surface-container);
  --nextech-background: var(--background);
}

.nextech-primary {
  color: #155fc0 !important;
}

.nextech-secondary {
  color: #176e42 !important;
}

.nextech-warn, .red, .error-text {
  color: #ba1a1a !important;
}

.nextech-on-surface-variant {
  color: var(--on-surface-variant) !important;
}

.loader-dialog-backdrop-class {
  background: rgba(0, 0, 0, 0.3);
}

.loader-dialog-panel-class {
  width: 30em;
}

.loading-center {
  position: absolute;
  top: 46%;
  left: 48.5%;
  transform: translateX(-50%) translateY(-50%);
}

.loading-overlay {
  height: 100%;
  width: 100%;
  background-color: white;
  opacity: 0.7;
  z-index: 9999;
  top: 0;
  left: 0;
  position: fixed;
}

.fill {
  flex: 1 1 auto;
}

.no-scrollbar-dialog-container .mat-mdc-dialog-container {
  overflow: visible;
}

@media screen and (orientation: landscape) {
  .no-scrollbar-dialog-container .mat-mdc-dialog-container {
    overflow: auto;
  }
}
/*Bootstrap sets the z-index of the nav menu to 1030 by default. In the event that a cdk container is needed (md-dialog, mat-select, etc) we want it
  to be above the nav menu so that it is clickable and viewable. 
*/
.cdk-overlay-container {
  z-index: 1031;
}

/* Ensure that the Angular [hidden] directive isn't over-written by any other CSS styles*/
[hidden] {
  display: none !important;
}

.container-edit-form {
  width: 970px !important;
}

/*BEGIN CUSTOM ANGULAR MATERIAL STYLING. This should all be removed once a custom MPV theme is established. */
.success-snackbar .mat-mdc-button.mat-mdc-snack-bar-action:not(:disabled) {
  color: #155fc0;
}

.mat-mdc-card:not([class*=mat-elevation-z]) {
  box-shadow: 0px 1.5px 5px 1px rgb(74, 74, 74);
}

#appointment-search-box .mat-expansion-panel-header-description {
  flex-direction: column-reverse;
  flex-grow: 0;
}

#appointment-search-box .mat-expansion-panel {
  margin-bottom: 1em;
  box-shadow: 0px 1.5px 5px 1px rgb(74, 74, 74);
}

.mat-mdc-radio-button {
  margin: 1em;
  max-width: 100%;
}

.mat-mdc-input-element:disabled {
  cursor: not-allowed !important;
}

.mat-form-field-disabled {
  cursor: not-allowed !important;
}

.mdc-list-item--disabled {
  cursor: not-allowed !important;
}

/* Show not-allowed red circle icon for disabled mat-chips' trailing icon */
.mat-mdc-standard-chip.mat-chip-disabled .mat-chip-remove, .mat-standard-chip.mat-chip-disabled .mat-chip-trailing-icon {
  cursor: not-allowed !important;
}

.mat-vertical-stepper-header {
  pointer-events: none !important;
}

.no-focus-overlay .mat-mdc-button-persistent-ripple {
  display: none;
}

/*TODO(mdc-migration): The following rule targets internal classes of button that may no longer apply for the MDC version. 
*/
.mat-mdc-icon-button.white-icon-button-background .mat-button-wrapper {
  background-color: white !important;
}

#bill-pay .mat-accordion {
  width: 100% !important;
}

#bill-pay-ccSelection {
  text-align: center;
}

/* Handle styling for when a form field contains disabled chips */
.mdc-text-field--outlined:has(.mdc-evolution-chip--disabled) {
  cursor: not-allowed;
}

mat-error {
  white-space: nowrap !important;
}

/* Don't show automatic Material required asterisk (should only be used if we are using a custom one) */
.no-required-marker .mat-mdc-form-field-required-marker {
  display: none;
}

/* Mat-icon sizing */
.mat-mdc-unelevated-button > .mat-icon, .mat-mdc-raised-button > .mat-icon, .mat-mdc-outlined-button > .mat-icon {
  height: 1.5rem !important;
  width: 1.5rem !important;
  font-size: 1.5rem !important;
}

/* Make sure all button text is aligned correctly */
.mdc-button .mdc-button__label {
  vertical-align: middle !important;
}

.mdc-text-field--filled {
  padding: 0 !important;
}

/* Coloring for outlined mat-form-field hovering/focusing */
.mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--invalid):hover .mdc-notched-outline__leading, .mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--invalid):hover .mdc-notched-outline__trailing,
.mdc-text-field--focused:not(.mdc-text-field--disabled):not(.mdc-text-field--invalid) .mdc-notched-outline__leading, .mdc-text-field--focused:not(.mdc-text-field--disabled):not(.mdc-text-field--invalid) .mdc-notched-outline__trailing {
  border-color: #155fc0 !important;
  border-width: 0.125rem !important;
}

/* Coloring for outlined mat-form-field hovering/focusing */
.mdc-text-field:not(.mdc-text-field--disabled):not(.mdc-text-field--invalid):hover .mdc-notched-outline__notch, .mdc-text-field--focused:not(.mdc-text-field--disabled):not(.mdc-text-field--invalid) .mdc-notched-outline__notch {
  border-width: 0.125rem !important;
  border-left: 0 !important;
  border-color: #155fc0 !important;
}

.mat-datepicker-toggle .mat-mdc-icon-button:not(.mat-mdc-button-disabled) {
  color: #155fc0 !important;
}

/* Makes it so that icons contained within a disabled form field also take on a disabled look,
    regardless of what color scheme they may be otherwise set to
*/
.mat-form-field-disabled .mat-icon {
  color: var(--mdc-theme-on-surface-disabled, rgba(0, 0, 0, 0.38));
}

/*END CUSTOM ANGULAR MATERIAL STYLING*/
.block-display {
  display: block !important;
}

.no-padding .mdc-text-field, .no-padding .mat-expansion-panel-body {
  padding: 0;
}

.text-align-right .mat-sort-header-container {
  text-align: right;
  justify-content: flex-end;
}

.header-hide thead {
  display: none !important;
}

.fill-available {
  height: 100%;
  min-height: 100%;
  min-width: 100%;
  width: 100%;
}

.show-on-print {
  display: none !important;
}

.half-width {
  width: 50%;
}

.full-width {
  width: 100%;
}

@media print {
  *, *:before, *:after {
    color: #000 !important;
    text-shadow: none !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  tr, img {
    page-break-inside: avoid;
  }
  .show-on-print {
    display: block !important;
  }
  .no-print, .no-print * {
    display: none !important;
  }
  /* Don't show any potentially visible Angular Material tooltips when printing */
  .mat-mdc-tooltip-panel {
    display: none !important;
  }
  /* Don't show any card container outline when printing */
  .mat-mdc-card-outlined {
    --mdc-outlined-card-outline-color: rgba(0, 0, 0, 0);
  }
  /* Don't show snackbar text when printing */
  simple-snack-bar {
    display: none !important;
  }
  /* When printing, don't show our main well's border, since that can look strange when printing bill pay receipts */
  .well {
    border-radius: 0 !important;
    border: 0 !important;
  }
  /* Needed for preventing extra blank pages appearing when printing */
  html, body {
    height: auto !important;
  }
}
/* Styling from main.css in the legacy AngularJS app */
@font-face {
  font-family: "FontAwesome";
  src: url('fontawesome-webfont.2eae7419dc5a6e3b.eot');
  src: url('fontawesome-webfont.2eae7419dc5a6e3b.eot') format("embedded-opentype"), url('fontawesome-webfont.282cb414a4fc326f.woff2') format("woff2"), url('fontawesome-webfont.e04f712019ffd08b.woff') format("woff"), url('fontawesome-webfont.d5f735041f7427c7.ttf') format("truetype"), url('fontawesome-webfont.a9837525fefc03cc.svg') format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url('Open-Sans-regular.2a6d4c1e670a6e9c.eot') format("embedded-opentype"), url('Open-Sans-regular.3ce6de97732b82eb.ttf') format("truetype"), url('Open-Sans-regular.d293011c3c85b0b0.svg') format("svg");
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome, "Open Sans", Roboto, "Helvetica Neue", sans-serif;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.fa-5x {
  font-size: 5em;
}

.fa-calendar:before {
  content: "\f073";
}

*, *:before, *:after {
  box-sizing: border-box;
}

html {
  background-color: #fff;
  width: 100%;
  height: 100vh;
  font-size: 1em;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  background-color: var(--primary-container) !important;
  background-attachment: fixed;
  font-weight: 300;
  font-family: "Open Sans", Roboto, "Helvetica Neue", sans-serif;
  color: #59595d;
  font-size: 16px;
  position: relative !important;
  z-index: 1;
  top: initial !important;
  overflow: initial !important;
  margin: 0;
}

body, html {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  min-height: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.white {
  background: #fff;
}

.container {
  max-width: 1200px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.well {
  min-height: 20px;
  padding: 1em;
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
@media (min-width: 992px) {
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
}
@media (min-width: 992px) {
  .col-md-8 {
    display: flex;
    width: 75%;
  }
}
@media (min-width: 992px) {
  .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
    float: left;
    display: flex;
  }
}
@media (min-width: 992px) {
  .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
    position: relative;
    min-height: 1px;
    display: flex;
  }
}
.container:before {
  display: table;
  content: " ";
}

.container:after {
  clear: both;
  display: table;
  content: " ";
}

@media screen and (min-width: 992px) {
  body.dashboard {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 991px) and (min-width: 768px) {
  body.dashboard {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) and (min-width: 424px) {
  body.dashboard {
    padding-bottom: 20px;
  }
  .pagination {
    margin-top: 5px;
  }
}
@media screen and (max-width: 599px) {
  .flex {
    -ms-flex: 1 0 auto;
  }
}
@media screen and (max-width: 423px) and (min-width: 366px) {
  body.dashboard {
    padding-bottom: 20px;
  }
  .pagination {
    margin-top: 5px;
  }
}
@media screen and (max-width: 365px) {
  body.dashboard {
    padding-bottom: 20px;
  }
  .pagination {
    margin-top: 5px;
  }
}
.dashboard:after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.5;
  background-color: var(--primary-container);
}

.dashboard .container.well {
  background: rgba(255, 255, 255, 0.92);
}

@media (min-width: 1025px) {
  #bodyContainer {
    height: 100%;
    width: 100%;
  }
}
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

h1, .h1, h2, .h2, h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

h2, .h2 {
  font-size: 30px;
}

h3, .h3 {
  font-size: 24px;
}

h4, .h4 {
  font-size: 18px;
}

h5, .h5 {
  font-size: 14px;
}

h2, h3, h4, h5, h6 {
  font-weight: 500;
}

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

img {
  border: 0;
  max-width: 100% !important;
  vertical-align: middle;
}

p {
  margin: 0 0 10px;
}

hr {
  border: 0;
  height: 0;
  box-sizing: content-box;
}

form {
  margin: -1em 0;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

form fieldset {
  margin-bottom: 1em;
}

sub, sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}

.alert-danger {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

.normal {
  font-weight: normal;
}

label {
  display: inline-block;
  max-width: 100%;
}

.layout, .layout-column, .layout-row {
  box-sizing: border-box;
  display: flex;
}

.layout-column {
  flex-direction: column;
}

.flex {
  flex: 1;
  box-sizing: border-box;
}

/* End Styling from main.css in the legacy AngularJS app */
@font-face {
  font-family: "Apple Chancery";
  font-style: normal;
  font-weight: normal;
  src: url('Apple-Chancery.eac40f9a7a02f0df.ttf') format("truetype");
}
/* BEGIN flexbox styles */
.gap-half {
  gap: 0.5rem;
}

.flex-row {
  display: flex;
  flex-direction: row;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.flex-100 {
  flex: 1 1 100%;
  box-sizing: border-box;
  max-height: 100%;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-align-center {
  justify-content: center;
  align-items: center;
  align-content: center;
}

/* END flexbox styles */
/* This canvas element can occasionally temporarily show as a black box at the bottom of the page
    when certain PDF-related actions are performed.
*/
canvas.hiddenCanvasElement {
  display: none;
}

/* This makes it so that all pages presented in our PDF viewer appears as one seamless page,
    without breaks in-between pages */
ngx-extended-pdf-viewer .pdfViewer.removePageBorders .page {
  margin: 0 !important;
}

/* There is a brief moment after a PDF has been signed where the PDF is re-loading
    and the previous PDF text is still visible on the screen, but off-center,
    so this styling just temporarily hides the text until the new PDF is fully loaded.
*/
ngx-extended-pdf-viewer.pdf-viewer-loading .pdfViewer.removePageBorders .page {
  visibility: hidden;
}

/* The below styling is needed to keep the PDF viewer pages centered
    specifically when the viewer is zoomed out on desktop-sized screens.
    For mobile users that are pinch-zooming, the viewer seems to always remain
    centered.
*/
ngx-extended-pdf-viewer.zoomed-out-desktop .pdfViewer.removePageBorders {
  margin-left: auto;
  margin-right: auto;
  width: -moz-fit-content;
  width: fit-content;
}

/* This is needed to fix some minor top and bottom spacing/appearance issues within our e-signature PDF viewer.
    Without these changes there is additional gray-looking space at the top and bottom of the viewer.
*/
ngx-extended-pdf-viewer #viewerContainer {
  top: 30px !important;
  background-color: white !important;
  overflow-y: hidden !important;
}

/*
    This makes it so that the red warning banner that's shown by our "ngx-extended-pdf-viewer" PDF viewer package
    to warn about unverified PDF signatures is hidden. We hide this warning because we only ever show empty signature
    form fields on MPV, nothing actually signed, which is what this warning seems to be concerned about.
*/
ngx-extended-pdf-viewer .html .unverified-signature-warning, ngx-extended-pdf-viewer .html .modified-background-warning {
  display: none;
}

/* Adapted from here in the underlying PDF.js library that our PDF viewer library is built on top of:
    https://github.com/mozilla/pdf.js/blob/f6b356eff753358bf3263d174dc0cf4852800edd/web/annotation_layer_builder.css#L172
    This makes it so that the checkmark shown within PDF checkbox form fields is larger and more visible than the default sizing,
    and adapts to the current zoom level of the PDF viewer.
*/
ngx-extended-pdf-viewer .annotationLayer .buttonWidgetAnnotation:is(.checkBox) input {
  font: calc(15px * var(--scale-factor)) sans-serif !important;
}

/* Adapted from here in the underlying PDF.js library that our PDF viewer library is built on top of:
    https://github.com/mozilla/pdf.js/blob/f6b356eff753358bf3263d174dc0cf4852800edd/web/annotation_layer_builder.css#L241
    This makes it so that a checkmark is shown within PDF checkbox form fields, when they're checked.
    For some reason, even though the PDFs are programmatically created to have the "check" style,
    this viewer package instead shows a "background" that looks like an X when the checkbox is checked,
    so here we instead hide that background, explicitly show a checkmark, and position it.
*/
ngx-extended-pdf-viewer .annotationLayer .buttonWidgetAnnotation.checkBox input:checked::before,
ngx-extended-pdf-viewer .annotationLayer .buttonWidgetAnnotation.checkBox input:checked::after {
  transform: none !important;
  background-color: transparent !important;
  content: "✓" !important;
  left: 13% !important;
  bottom: 41% !important;
}
