/* src/styles.scss */
:root {
  --ui-scale-factor: 0.9;
  --ui-base-font-size: calc(16px * var(--ui-scale-factor));
  --body-font-family:
    "Roboto",
    "Helvetica Neue Light",
    "Helvetica Neue",
    Helvetica,
    Arial,
    "Lucida Grande",
    sans-serif;
  --code-font-family: "Roboto Mono", monospace;
  --gutter: 1rem;
  --sidenav-width: 15rem;
  --sidenav-collapsed-width: 4rem;
  --body-background-color: var(--app-color-background);
  --link-color: var(--app-color-primary);
  --link-hover-color: var(--app-color-primary);
  --code-border-color: light-dark(rgba(19, 28, 43, .08), rgba(218, 226, 249, .08));
  --code-background-color: light-dark(rgba(19, 28, 43, .04), rgba(218, 226, 249, .04));
  --header-background-color: light-dark(rgba(239, 237, 240, .8), rgba(31, 32, 34, .8));
  --accent-primary: var(--app-color-primary);
  --accent-secondary: var(--app-color-primary-container);
  --user-panel-background-color: var(--app-color-surface-container);
  --user-panel-hover-background-color: var(--app-color-surface-variant);
  --sidemenu-heading-hover-background-color: var(--app-color-surface-container-highest);
  --sidemenu-active-heading-text-color: var(--app-color-primary);
  --sidemenu-active-heading-background-color: var(--app-color-primary-container);
  --sidemenu-active-heading-hover-background-color: var(--app-color-primary-container);
  --sidemenu-expanded-background-color: var(--app-color-surface-container);
  --sidemenu-expanded-border-color: var(--app-color-primary-container);
  --topmenu-text-color: var(--app-color-on-background);
  --topmenu-background-color: var(--header-background-color);
  --topmenu-item-active-background-color: var(--app-color-primary);
  --topmenu-dropdown-item-active-text-color: var(--app-color-on-primary);
  --mat-toolbar-standard-height: 60px;
  --mat-toolbar-mobile-height: 2.25rem;
}
.theme-dark {
  --sidemenu-expanded-border-color: var(--app-color-primary);
  --topmenu-item-active-background-color: var(--app-color-primary);
  --topmenu-dropdown-item-active-text-color: var(--app-color-on-primary);
}
html {
  font-size: var(--ui-base-font-size);
}
*,
::after,
::before {
  box-sizing: border-box;
}
html,
body {
  position: relative;
  height: 100%;
  overflow: auto;
  background-color: var(--body-background-color) !important;
}
body {
  margin: 0;
  font-family: var(--body-font-family);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 1rem;
}
code,
kbd,
pre,
samp {
  font-family: var(--code-font-family);
}
code {
  padding: 0.125rem 0.25rem;
  font-size: 80%;
  overflow-wrap: break-word;
  background-color: var(--code-background-color);
  border: 1px solid var(--code-border-color);
  border-radius: 0.25rem;
}
a {
  color: var(--link-color);
}
a:hover {
  color: var(--link-hover-color);
}
mat-icon,
.mat-icon {
  overflow: hidden;
}
mat-icon:not(.mat-icon-no-color),
.mat-icon:not(.mat-icon-no-color) {
  font-display: block;
}
html:not(.fonts-loaded) mat-icon,
html:not(.fonts-loaded) .mat-icon {
  color: transparent !important;
}
@media (width <= 720px) {
  .hide-small {
    display: none !important;
  }
  .show-small {
    display: block !important;
  }
}
html {
  color-scheme: light;
  --foreground-color: #faf9fd;
  --mat-app-background-color: #faf9fd;
  --mat-app-text-color: #1a1b1f;
  --mat-app-elevation-shadow-level-0:
    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-app-elevation-shadow-level-1:
    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-app-elevation-shadow-level-2:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-3:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-4:
    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-app-elevation-shadow-level-5:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 5px 8px 0px rgba(0, 0, 0, 0.14),
    0px 1px 14px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-6:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-7:
    0px 4px 5px -2px rgba(0, 0, 0, 0.2),
    0px 7px 10px 1px rgba(0, 0, 0, 0.14),
    0px 2px 16px 1px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-8:
    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-app-elevation-shadow-level-9:
    0px 5px 6px -3px rgba(0, 0, 0, 0.2),
    0px 9px 12px 1px rgba(0, 0, 0, 0.14),
    0px 3px 16px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-10:
    0px 6px 6px -3px rgba(0, 0, 0, 0.2),
    0px 10px 14px 1px rgba(0, 0, 0, 0.14),
    0px 4px 18px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-11:
    0px 6px 7px -4px rgba(0, 0, 0, 0.2),
    0px 11px 15px 1px rgba(0, 0, 0, 0.14),
    0px 4px 20px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-12:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-13:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 13px 19px 2px rgba(0, 0, 0, 0.14),
    0px 5px 24px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-14:
    0px 7px 9px -4px rgba(0, 0, 0, 0.2),
    0px 14px 21px 2px rgba(0, 0, 0, 0.14),
    0px 5px 26px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-15:
    0px 8px 9px -5px rgba(0, 0, 0, 0.2),
    0px 15px 22px 2px rgba(0, 0, 0, 0.14),
    0px 6px 28px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-16:
    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-app-elevation-shadow-level-17:
    0px 8px 11px -5px rgba(0, 0, 0, 0.2),
    0px 17px 26px 2px rgba(0, 0, 0, 0.14),
    0px 6px 32px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-18:
    0px 9px 11px -5px rgba(0, 0, 0, 0.2),
    0px 18px 28px 2px rgba(0, 0, 0, 0.14),
    0px 7px 34px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-19:
    0px 9px 12px -6px rgba(0, 0, 0, 0.2),
    0px 19px 29px 2px rgba(0, 0, 0, 0.14),
    0px 7px 36px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-20:
    0px 10px 13px -6px rgba(0, 0, 0, 0.2),
    0px 20px 31px 3px rgba(0, 0, 0, 0.14),
    0px 8px 38px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-21:
    0px 10px 13px -6px rgba(0, 0, 0, 0.2),
    0px 21px 33px 3px rgba(0, 0, 0, 0.14),
    0px 8px 40px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-22:
    0px 10px 14px -6px rgba(0, 0, 0, 0.2),
    0px 22px 35px 3px rgba(0, 0, 0, 0.14),
    0px 8px 42px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-23:
    0px 11px 14px -7px rgba(0, 0, 0, 0.2),
    0px 23px 36px 3px rgba(0, 0, 0, 0.14),
    0px 9px 44px 8px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-24:
    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-ripple-color: color-mix(in srgb, #1a1b1f 10%, transparent);
  --mat-option-focus-state-layer-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-option-hover-state-layer-color: color-mix(in srgb, #1a1b1f 8%, transparent);
  --mat-option-label-text-color: #1a1b1f;
  --mat-option-selected-state-label-text-color: #3e4759;
  --mat-option-selected-state-layer-color: #dae2f9;
  --mat-optgroup-label-text-color: #44474e;
  --mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #faf9fd;
  --mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-pseudo-checkbox-full-selected-checkmark-color: #ffffff;
  --mat-pseudo-checkbox-full-selected-icon-color: #005cbb;
  --mat-pseudo-checkbox-full-unselected-icon-color: #44474e;
  --mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-pseudo-checkbox-minimal-selected-checkmark-color: #005cbb;
  --mat-option-label-text-size: 1rem;
  --mat-option-label-text-weight: 400;
  --mat-option-label-text-font: Roboto, sans-serif;
  --mat-option-label-text-line-height: 1.25rem;
  --mat-option-label-text-tracking: 0.006rem;
  --mat-optgroup-label-text-font: Roboto, sans-serif;
  --mat-optgroup-label-text-line-height: 1.25rem;
  --mat-optgroup-label-text-size: 0.875rem;
  --mat-optgroup-label-text-tracking: 0.006rem;
  --mat-optgroup-label-text-weight: 500;
  --mat-card-elevated-container-shape: 12px;
  --mat-card-filled-container-shape: 12px;
  --mat-card-outlined-container-shape: 12px;
  --mat-card-outlined-outline-width: 1px;
  --mat-card-elevated-container-color: #f4f3f6;
  --mat-card-elevated-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);
  --mat-card-filled-container-color: #e3e2e6;
  --mat-card-filled-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-outlined-container-color: #faf9fd;
  --mat-card-outlined-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-outlined-outline-color: #c4c6d0;
  --mat-card-subtitle-text-color: #1a1b1f;
  --mat-card-subtitle-text-font: Roboto, sans-serif;
  --mat-card-subtitle-text-line-height: 1.5rem;
  --mat-card-subtitle-text-size: 1rem;
  --mat-card-subtitle-text-tracking: 0.009rem;
  --mat-card-subtitle-text-weight: 500;
  --mat-card-title-text-font: Roboto, sans-serif;
  --mat-card-title-text-line-height: 1.75rem;
  --mat-card-title-text-size: 1.375rem;
  --mat-card-title-text-tracking: 0;
  --mat-card-title-text-weight: 400;
  --mat-progress-bar-active-indicator-height: 4px;
  --mat-progress-bar-track-height: 4px;
  --mat-progress-bar-track-shape: 0;
  --mat-progress-bar-active-indicator-color: #005cbb;
  --mat-progress-bar-track-color: #e0e2ec;
  --mat-tooltip-container-color: #2f3033;
  --mat-tooltip-container-shape: 4px;
  --mat-tooltip-supporting-text-color: #f2f0f4;
  --mat-tooltip-supporting-text-font: Roboto, sans-serif;
  --mat-tooltip-supporting-text-line-height: 1rem;
  --mat-tooltip-supporting-text-size: 0.75rem;
  --mat-tooltip-supporting-text-tracking: 0.025rem;
  --mat-tooltip-supporting-text-weight: 400;
  --mat-form-field-filled-active-indicator-height: 1px;
  --mat-form-field-filled-focus-active-indicator-height: 2px;
  --mat-form-field-filled-container-shape: 4px;
  --mat-form-field-outlined-outline-width: 1px;
  --mat-form-field-outlined-focus-outline-width: 2px;
  --mat-form-field-outlined-container-shape: 4px;
  --mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-disabled-leading-icon-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-disabled-select-arrow-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-disabled-trailing-icon-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-enabled-select-arrow-color: #44474e;
  --mat-form-field-error-focus-trailing-icon-color: #ba1a1a;
  --mat-form-field-error-hover-trailing-icon-color: #93000a;
  --mat-form-field-error-text-color: #ba1a1a;
  --mat-form-field-error-trailing-icon-color: #ba1a1a;
  --mat-form-field-filled-active-indicator-color: #44474e;
  --mat-form-field-filled-caret-color: #005cbb;
  --mat-form-field-filled-container-color: #e0e2ec;
  --mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-filled-disabled-container-color: color-mix(in srgb, #1a1b1f 4%, transparent);
  --mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-filled-error-active-indicator-color: #ba1a1a;
  --mat-form-field-filled-error-caret-color: #ba1a1a;
  --mat-form-field-filled-error-focus-active-indicator-color: #ba1a1a;
  --mat-form-field-filled-error-focus-label-text-color: #ba1a1a;
  --mat-form-field-filled-error-hover-active-indicator-color: #93000a;
  --mat-form-field-filled-error-hover-label-text-color: #93000a;
  --mat-form-field-filled-error-label-text-color: #ba1a1a;
  --mat-form-field-filled-focus-active-indicator-color: #005cbb;
  --mat-form-field-filled-focus-label-text-color: #005cbb;
  --mat-form-field-filled-hover-active-indicator-color: #1a1b1f;
  --mat-form-field-filled-hover-label-text-color: #44474e;
  --mat-form-field-filled-input-text-color: #1a1b1f;
  --mat-form-field-filled-input-text-placeholder-color: #44474e;
  --mat-form-field-filled-label-text-color: #44474e;
  --mat-form-field-focus-select-arrow-color: #005cbb;
  --mat-form-field-focus-state-layer-opacity: 0;
  --mat-form-field-hover-state-layer-opacity: 0.08;
  --mat-form-field-leading-icon-color: #44474e;
  --mat-form-field-outlined-caret-color: #005cbb;
  --mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-form-field-outlined-error-caret-color: #ba1a1a;
  --mat-form-field-outlined-error-focus-label-text-color: #ba1a1a;
  --mat-form-field-outlined-error-focus-outline-color: #ba1a1a;
  --mat-form-field-outlined-error-hover-label-text-color: #93000a;
  --mat-form-field-outlined-error-hover-outline-color: #93000a;
  --mat-form-field-outlined-error-label-text-color: #ba1a1a;
  --mat-form-field-outlined-error-outline-color: #ba1a1a;
  --mat-form-field-outlined-focus-label-text-color: #005cbb;
  --mat-form-field-outlined-focus-outline-color: #005cbb;
  --mat-form-field-outlined-hover-label-text-color: #1a1b1f;
  --mat-form-field-outlined-hover-outline-color: #1a1b1f;
  --mat-form-field-outlined-input-text-color: #1a1b1f;
  --mat-form-field-outlined-input-text-placeholder-color: #44474e;
  --mat-form-field-outlined-label-text-color: #44474e;
  --mat-form-field-outlined-outline-color: #74777f;
  --mat-form-field-select-disabled-option-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-select-option-text-color: #1a1b1f;
  --mat-form-field-state-layer-color: #1a1b1f;
  --mat-form-field-trailing-icon-color: #44474e;
  --mat-form-field-container-height: 52px;
  --mat-form-field-filled-label-display: block;
  --mat-form-field-container-vertical-padding: 14px;
  --mat-form-field-filled-with-label-container-padding-top: 22px;
  --mat-form-field-filled-with-label-container-padding-bottom: 6px;
  --mat-form-field-container-text-font: Roboto, sans-serif;
  --mat-form-field-container-text-line-height: 1.5rem;
  --mat-form-field-container-text-size: 1rem;
  --mat-form-field-container-text-tracking: 0.031rem;
  --mat-form-field-container-text-weight: 400;
  --mat-form-field-subscript-text-font: Roboto, sans-serif;
  --mat-form-field-subscript-text-line-height: 1rem;
  --mat-form-field-subscript-text-size: 0.75rem;
  --mat-form-field-subscript-text-tracking: 0.025rem;
  --mat-form-field-subscript-text-weight: 400;
  --mat-form-field-outlined-label-text-font: Roboto, sans-serif;
  --mat-form-field-outlined-label-text-size: 1rem;
  --mat-form-field-outlined-label-text-tracking: 0.031rem;
  --mat-form-field-outlined-label-text-weight: 400;
  --mat-form-field-filled-label-text-font: Roboto, sans-serif;
  --mat-form-field-filled-label-text-size: 1rem;
  --mat-form-field-filled-label-text-tracking: 0.031rem;
  --mat-form-field-filled-label-text-weight: 400;
  --mat-select-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);
  --mat-select-panel-background-color: #efedf0;
  --mat-select-enabled-trigger-text-color: #1a1b1f;
  --mat-select-disabled-trigger-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-select-placeholder-text-color: #44474e;
  --mat-select-enabled-arrow-color: #44474e;
  --mat-select-disabled-arrow-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-select-focused-arrow-color: #005cbb;
  --mat-select-invalid-arrow-color: #ba1a1a;
  --mat-select-arrow-transform: translateY(-8px);
  --mat-select-trigger-text-font: Roboto, sans-serif;
  --mat-select-trigger-text-line-height: 1.5rem;
  --mat-select-trigger-text-size: 1rem;
  --mat-select-trigger-text-tracking: 0.031rem;
  --mat-select-trigger-text-weight: 400;
  --mat-autocomplete-container-shape: 4px;
  --mat-autocomplete-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);
  --mat-autocomplete-background-color: #efedf0;
  --mat-dialog-actions-alignment: flex-end;
  --mat-dialog-actions-padding: 16px 24px;
  --mat-dialog-container-elevation-shadow: none;
  --mat-dialog-container-max-width: 560px;
  --mat-dialog-container-min-width: 280px;
  --mat-dialog-container-shape: 28px;
  --mat-dialog-container-small-max-width: calc(100vw - 32px);
  --mat-dialog-content-padding: 20px 24px;
  --mat-dialog-headline-padding: 6px 24px 13px;
  --mat-dialog-with-actions-content-padding: 20px 24px 0;
  --mat-dialog-container-color: #faf9fd;
  --mat-dialog-subhead-color: #1a1b1f;
  --mat-dialog-supporting-text-color: #44474e;
  --mat-dialog-subhead-font: Roboto, sans-serif;
  --mat-dialog-subhead-line-height: 2rem;
  --mat-dialog-subhead-size: 1.5rem;
  --mat-dialog-subhead-tracking: 0;
  --mat-dialog-subhead-weight: 400;
  --mat-dialog-supporting-text-font: Roboto, sans-serif;
  --mat-dialog-supporting-text-line-height: 1.25rem;
  --mat-dialog-supporting-text-size: 0.875rem;
  --mat-dialog-supporting-text-tracking: 0.016rem;
  --mat-dialog-supporting-text-weight: 400;
  --mat-chip-container-shape-radius: 8px;
  --mat-chip-disabled-container-opacity: 1;
  --mat-chip-elevated-container-color: transparent;
  --mat-chip-flat-selected-outline-width: 0;
  --mat-chip-outline-width: 1px;
  --mat-chip-trailing-action-focus-opacity: 1;
  --mat-chip-trailing-action-opacity: 1;
  --mat-chip-with-avatar-avatar-shape-radius: 24px;
  --mat-chip-with-avatar-avatar-size: 24px;
  --mat-chip-with-avatar-disabled-avatar-opacity: 0.38;
  --mat-chip-with-icon-disabled-icon-opacity: 0.38;
  --mat-chip-with-icon-icon-size: 18px;
  --mat-chip-with-trailing-icon-disabled-trailing-icon-opacity: 0.38;
  --mat-chip-disabled-label-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-chip-disabled-outline-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-chip-elevated-selected-container-color: #dae2f9;
  --mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-chip-focus-outline-color: #44474e;
  --mat-chip-focus-state-layer-color: #44474e;
  --mat-chip-focus-state-layer-opacity: 0.12;
  --mat-chip-hover-state-layer-color: #44474e;
  --mat-chip-hover-state-layer-opacity: 0.08;
  --mat-chip-label-text-color: #44474e;
  --mat-chip-outline-color: #74777f;
  --mat-chip-selected-disabled-trailing-icon-color: #1a1b1f;
  --mat-chip-selected-focus-state-layer-color: #3e4759;
  --mat-chip-selected-focus-state-layer-opacity: 0.12;
  --mat-chip-selected-hover-state-layer-color: #3e4759;
  --mat-chip-selected-hover-state-layer-opacity: 0.08;
  --mat-chip-selected-label-text-color: #3e4759;
  --mat-chip-selected-trailing-action-state-layer-color: #3e4759;
  --mat-chip-selected-trailing-icon-color: #3e4759;
  --mat-chip-trailing-action-focus-state-layer-opacity: 0.12;
  --mat-chip-trailing-action-hover-state-layer-opacity: 0.08;
  --mat-chip-trailing-action-state-layer-color: #44474e;
  --mat-chip-with-icon-disabled-icon-color: #1a1b1f;
  --mat-chip-with-icon-icon-color: #44474e;
  --mat-chip-with-icon-selected-icon-color: #3e4759;
  --mat-chip-with-trailing-icon-disabled-trailing-icon-color: #1a1b1f;
  --mat-chip-with-trailing-icon-trailing-icon-color: #44474e;
  --mat-chip-container-height: 28px;
  --mat-chip-label-text-font: Roboto, sans-serif;
  --mat-chip-label-text-line-height: 1.25rem;
  --mat-chip-label-text-size: 0.875rem;
  --mat-chip-label-text-tracking: 0.006rem;
  --mat-chip-label-text-weight: 500;
  --mat-slide-toggle-disabled-selected-handle-opacity: 1;
  --mat-slide-toggle-disabled-selected-icon-opacity: 0.38;
  --mat-slide-toggle-disabled-track-opacity: 0.12;
  --mat-slide-toggle-disabled-unselected-handle-opacity: 0.38;
  --mat-slide-toggle-disabled-unselected-icon-opacity: 0.38;
  --mat-slide-toggle-disabled-unselected-track-outline-width: 2px;
  --mat-slide-toggle-handle-shape: 9999px;
  --mat-slide-toggle-hidden-track-opacity: 0;
  --mat-slide-toggle-hidden-track-transition: opacity 75ms;
  --mat-slide-toggle-pressed-handle-size: 28px;
  --mat-slide-toggle-selected-handle-horizontal-margin: 0 24px;
  --mat-slide-toggle-selected-handle-size: 24px;
  --mat-slide-toggle-selected-icon-size: 16px;
  --mat-slide-toggle-selected-pressed-handle-horizontal-margin: 0 22px;
  --mat-slide-toggle-selected-track-outline-color: transparent;
  --mat-slide-toggle-selected-track-outline-width: 2px;
  --mat-slide-toggle-selected-with-icon-handle-horizontal-margin: 0 24px;
  --mat-slide-toggle-state-layer-size: 40px;
  --mat-slide-toggle-track-height: 32px;
  --mat-slide-toggle-track-outline-width: 2px;
  --mat-slide-toggle-track-shape: 9999px;
  --mat-slide-toggle-track-width: 52px;
  --mat-slide-toggle-unselected-handle-horizontal-margin: 0 8px;
  --mat-slide-toggle-unselected-handle-size: 16px;
  --mat-slide-toggle-unselected-icon-size: 16px;
  --mat-slide-toggle-unselected-pressed-handle-horizontal-margin: 0 2px;
  --mat-slide-toggle-unselected-with-icon-handle-horizontal-margin: 0 4px;
  --mat-slide-toggle-visible-track-opacity: 1;
  --mat-slide-toggle-visible-track-transition: opacity 75ms;
  --mat-slide-toggle-with-icon-handle-size: 24px;
  --mat-slide-toggle-touch-target-size: 48px;
  --mat-slide-toggle-disabled-label-text-color: #1a1b1f;
  --mat-slide-toggle-disabled-selected-handle-color: #faf9fd;
  --mat-slide-toggle-disabled-selected-icon-color: #1a1b1f;
  --mat-slide-toggle-disabled-selected-track-color: #1a1b1f;
  --mat-slide-toggle-disabled-unselected-handle-color: #1a1b1f;
  --mat-slide-toggle-disabled-unselected-icon-color: #e0e2ec;
  --mat-slide-toggle-disabled-unselected-track-color: #e0e2ec;
  --mat-slide-toggle-disabled-unselected-track-outline-color: #1a1b1f;
  --mat-slide-toggle-label-text-color: #1a1b1f;
  --mat-slide-toggle-selected-focus-handle-color: #d7e3ff;
  --mat-slide-toggle-selected-focus-state-layer-color: #005cbb;
  --mat-slide-toggle-selected-focus-state-layer-opacity: 0.12;
  --mat-slide-toggle-selected-focus-track-color: #005cbb;
  --mat-slide-toggle-selected-handle-color: #ffffff;
  --mat-slide-toggle-selected-hover-handle-color: #d7e3ff;
  --mat-slide-toggle-selected-hover-state-layer-color: #005cbb;
  --mat-slide-toggle-selected-hover-state-layer-opacity: 0.08;
  --mat-slide-toggle-selected-hover-track-color: #005cbb;
  --mat-slide-toggle-selected-icon-color: #00458f;
  --mat-slide-toggle-selected-pressed-handle-color: #d7e3ff;
  --mat-slide-toggle-selected-pressed-state-layer-color: #005cbb;
  --mat-slide-toggle-selected-pressed-state-layer-opacity: 0.12;
  --mat-slide-toggle-selected-pressed-track-color: #005cbb;
  --mat-slide-toggle-selected-track-color: #005cbb;
  --mat-slide-toggle-track-outline-color: #74777f;
  --mat-slide-toggle-unselected-focus-handle-color: #44474e;
  --mat-slide-toggle-unselected-focus-state-layer-color: #1a1b1f;
  --mat-slide-toggle-unselected-focus-state-layer-opacity: 0.12;
  --mat-slide-toggle-unselected-focus-track-color: #e0e2ec;
  --mat-slide-toggle-unselected-handle-color: #74777f;
  --mat-slide-toggle-unselected-hover-handle-color: #44474e;
  --mat-slide-toggle-unselected-hover-state-layer-color: #1a1b1f;
  --mat-slide-toggle-unselected-hover-state-layer-opacity: 0.08;
  --mat-slide-toggle-unselected-hover-track-color: #e0e2ec;
  --mat-slide-toggle-unselected-icon-color: #e0e2ec;
  --mat-slide-toggle-unselected-pressed-handle-color: #44474e;
  --mat-slide-toggle-unselected-pressed-state-layer-color: #1a1b1f;
  --mat-slide-toggle-unselected-pressed-state-layer-opacity: 0.12;
  --mat-slide-toggle-unselected-pressed-track-color: #e0e2ec;
  --mat-slide-toggle-unselected-track-color: #e0e2ec;
  --mat-slide-toggle-touch-target-display: block;
  --mat-slide-toggle-label-text-font: Roboto, sans-serif;
  --mat-slide-toggle-label-text-line-height: 1.25rem;
  --mat-slide-toggle-label-text-size: 0.875rem;
  --mat-slide-toggle-label-text-tracking: 0.016rem;
  --mat-slide-toggle-label-text-weight: 400;
  --mat-radio-disabled-unselected-icon-opacity: 0.38;
  --mat-radio-disabled-selected-icon-opacity: 0.38;
  --mat-radio-touch-target-size: 48px;
  --mat-radio-checked-ripple-color: #005cbb;
  --mat-radio-disabled-label-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-radio-disabled-selected-icon-color: #1a1b1f;
  --mat-radio-disabled-unselected-icon-color: #1a1b1f;
  --mat-radio-label-text-color: #1a1b1f;
  --mat-radio-ripple-color: #1a1b1f;
  --mat-radio-selected-focus-icon-color: #005cbb;
  --mat-radio-selected-hover-icon-color: #005cbb;
  --mat-radio-selected-icon-color: #005cbb;
  --mat-radio-selected-pressed-icon-color: #005cbb;
  --mat-radio-unselected-focus-icon-color: #1a1b1f;
  --mat-radio-unselected-hover-icon-color: #1a1b1f;
  --mat-radio-unselected-icon-color: #44474e;
  --mat-radio-unselected-pressed-icon-color: #1a1b1f;
  --mat-radio-touch-target-display: block;
  --mat-radio-state-layer-size: 36px;
  --mat-radio-label-text-font: Roboto, sans-serif;
  --mat-radio-label-text-line-height: 1.25rem;
  --mat-radio-label-text-size: 0.875rem;
  --mat-radio-label-text-tracking: 0.016rem;
  --mat-radio-label-text-weight: 400;
  --mat-slider-value-indicator-opacity: 1;
  --mat-slider-value-indicator-padding: 0;
  --mat-slider-value-indicator-width: 28px;
  --mat-slider-value-indicator-height: 28px;
  --mat-slider-value-indicator-caret-display: none;
  --mat-slider-value-indicator-border-radius: 50% 50% 50% 0;
  --mat-slider-value-indicator-text-transform: rotate(45deg);
  --mat-slider-value-indicator-container-transform: translateX(-50%) rotate(-45deg);
  --mat-slider-active-track-height: 4px;
  --mat-slider-handle-height: 20px;
  --mat-slider-handle-width: 20px;
  --mat-slider-inactive-track-height: 4px;
  --mat-slider-with-overlap-handle-outline-width: 1px;
  --mat-slider-with-tick-marks-active-container-opacity: 0.38;
  --mat-slider-with-tick-marks-container-size: 2px;
  --mat-slider-with-tick-marks-inactive-container-opacity: 0.38;
  --mat-slider-value-indicator-transform-origin: 0 28px;
  --mat-slider-active-track-color: #005cbb;
  --mat-slider-active-track-shape: 9999px;
  --mat-slider-disabled-active-track-color: #1a1b1f;
  --mat-slider-disabled-handle-color: #1a1b1f;
  --mat-slider-disabled-inactive-track-color: #1a1b1f;
  --mat-slider-focus-handle-color: #005cbb;
  --mat-slider-focus-state-layer-color: color-mix(in srgb, #005cbb 20%, transparent);
  --mat-slider-handle-color: #005cbb;
  --mat-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-handle-shape: 9999px;
  --mat-slider-hover-handle-color: #005cbb;
  --mat-slider-hover-state-layer-color: color-mix(in srgb, #005cbb 5%, transparent);
  --mat-slider-inactive-track-color: #e0e2ec;
  --mat-slider-inactive-track-shape: 9999px;
  --mat-slider-label-container-color: #005cbb;
  --mat-slider-label-label-text-color: #ffffff;
  --mat-slider-ripple-color: #005cbb;
  --mat-slider-with-overlap-handle-outline-color: #ffffff;
  --mat-slider-with-tick-marks-active-container-color: #ffffff;
  --mat-slider-with-tick-marks-container-shape: 9999px;
  --mat-slider-with-tick-marks-disabled-container-color: #1a1b1f;
  --mat-slider-with-tick-marks-inactive-container-color: #44474e;
  --mat-slider-label-label-text-font: Roboto, sans-serif;
  --mat-slider-label-label-text-line-height: 1rem;
  --mat-slider-label-label-text-size: 0.75rem;
  --mat-slider-label-label-text-tracking: 0.031rem;
  --mat-slider-label-label-text-weight: 500;
  --mat-menu-divider-bottom-spacing: 8px;
  --mat-menu-divider-top-spacing: 8px;
  --mat-menu-item-icon-size: 24px;
  --mat-menu-item-spacing: 12px;
  --mat-menu-item-leading-spacing: 12px;
  --mat-menu-item-trailing-spacing: 12px;
  --mat-menu-item-with-icon-leading-spacing: 12px;
  --mat-menu-item-with-icon-trailing-spacing: 12px;
  --mat-menu-container-shape: 4px;
  --mat-menu-divider-color: #e0e2ec;
  --mat-menu-item-label-text-color: #1a1b1f;
  --mat-menu-item-icon-color: #44474e;
  --mat-menu-item-hover-state-layer-color: color-mix(in srgb, #1a1b1f 8%, transparent);
  --mat-menu-item-focus-state-layer-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-menu-container-color: #efedf0;
  --mat-menu-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);
  --mat-menu-item-label-text-font: Roboto, sans-serif;
  --mat-menu-item-label-text-line-height: 1.25rem;
  --mat-menu-item-label-text-size: 0.875rem;
  --mat-menu-item-label-text-tracking: 0.006rem;
  --mat-menu-item-label-text-weight: 500;
  --mat-list-active-indicator-color: #dae2f9;
  --mat-list-active-indicator-shape: 9999px;
  --mat-list-list-item-container-color: transparent;
  --mat-list-list-item-container-shape: 0;
  --mat-list-list-item-disabled-label-text-color: #1a1b1f;
  --mat-list-list-item-disabled-label-text-opacity: 0.3;
  --mat-list-list-item-disabled-leading-icon-color: #1a1b1f;
  --mat-list-list-item-disabled-leading-icon-opacity: 0.38;
  --mat-list-list-item-disabled-state-layer-color: #1a1b1f;
  --mat-list-list-item-disabled-state-layer-opacity: 0.12;
  --mat-list-list-item-disabled-trailing-icon-color: #1a1b1f;
  --mat-list-list-item-disabled-trailing-icon-opacity: 0.38;
  --mat-list-list-item-focus-label-text-color: #1a1b1f;
  --mat-list-list-item-focus-state-layer-color: #1a1b1f;
  --mat-list-list-item-focus-state-layer-opacity: 0.12;
  --mat-list-list-item-hover-label-text-color: #1a1b1f;
  --mat-list-list-item-hover-state-layer-color: #1a1b1f;
  --mat-list-list-item-hover-state-layer-opacity: 0.08;
  --mat-list-list-item-label-text-color: #1a1b1f;
  --mat-list-list-item-leading-avatar-color: #d7e3ff;
  --mat-list-list-item-leading-avatar-shape: 9999px;
  --mat-list-list-item-leading-avatar-size: 40px;
  --mat-list-list-item-leading-icon-color: #44474e;
  --mat-list-list-item-leading-icon-size: 24px;
  --mat-list-list-item-selected-trailing-icon-color: #005cbb;
  --mat-list-list-item-supporting-text-color: #44474e;
  --mat-list-list-item-trailing-icon-color: #44474e;
  --mat-list-list-item-trailing-icon-size: 24px;
  --mat-list-list-item-trailing-supporting-text-color: #44474e;
  --mat-list-list-item-leading-icon-start-space: 12px;
  --mat-list-list-item-leading-icon-end-space: 12px;
  --mat-list-list-item-one-line-container-height: 44px;
  --mat-list-list-item-two-line-container-height: 60px;
  --mat-list-list-item-three-line-container-height: 84px;
  --mat-list-list-item-label-text-font: Roboto, sans-serif;
  --mat-list-list-item-label-text-line-height: 1.5rem;
  --mat-list-list-item-label-text-size: 1rem;
  --mat-list-list-item-label-text-tracking: 0.031rem;
  --mat-list-list-item-label-text-weight: 400;
  --mat-list-list-item-supporting-text-font: Roboto, sans-serif;
  --mat-list-list-item-supporting-text-line-height: 1.25rem;
  --mat-list-list-item-supporting-text-size: 0.875rem;
  --mat-list-list-item-supporting-text-tracking: 0.016rem;
  --mat-list-list-item-supporting-text-weight: 400;
  --mat-list-list-item-trailing-supporting-text-font: Roboto, sans-serif;
  --mat-list-list-item-trailing-supporting-text-line-height: 1rem;
  --mat-list-list-item-trailing-supporting-text-size: 0.688rem;
  --mat-list-list-item-trailing-supporting-text-tracking: 0.031rem;
  --mat-list-list-item-trailing-supporting-text-weight: 500;
  --mat-paginator-page-size-select-width: 84px;
  --mat-paginator-page-size-select-touch-target-height: 48px;
  --mat-paginator-container-text-color: #1a1b1f;
  --mat-paginator-container-background-color: #faf9fd;
  --mat-paginator-disabled-icon-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-paginator-enabled-icon-color: #44474e;
  --mat-paginator-container-size: 52px;
  --mat-paginator-form-field-container-height: 40px;
  --mat-paginator-form-field-container-vertical-padding: 8px;
  --mat-paginator-touch-target-display: block;
  --mat-paginator-container-text-font: Roboto, sans-serif;
  --mat-paginator-container-text-line-height: 1rem;
  --mat-paginator-container-text-size: 0.75rem;
  --mat-paginator-container-text-tracking: 0.025rem;
  --mat-paginator-container-text-weight: 400;
  --mat-paginator-select-trigger-text-size: 0.75rem;
  --mat-tab-active-indicator-height: 2px;
  --mat-tab-active-indicator-shape: 0;
  --mat-tab-divider-height: 1px;
  --mat-tab-active-focus-indicator-color: #005cbb;
  --mat-tab-active-focus-label-text-color: #1a1b1f;
  --mat-tab-active-hover-indicator-color: #005cbb;
  --mat-tab-active-hover-label-text-color: #1a1b1f;
  --mat-tab-active-indicator-color: #005cbb;
  --mat-tab-active-label-text-color: #1a1b1f;
  --mat-tab-active-ripple-color: #1a1b1f;
  --mat-tab-divider-color: #e0e2ec;
  --mat-tab-inactive-focus-label-text-color: #1a1b1f;
  --mat-tab-inactive-hover-label-text-color: #1a1b1f;
  --mat-tab-inactive-label-text-color: #1a1b1f;
  --mat-tab-inactive-ripple-color: #1a1b1f;
  --mat-tab-pagination-icon-color: #1a1b1f;
  --mat-tab-disabled-ripple-color: #44474e;
  --mat-tab-container-height: 44px;
  --mat-tab-label-text-font: Roboto, sans-serif;
  --mat-tab-label-text-line-height: 1.25rem;
  --mat-tab-label-text-size: 0.875rem;
  --mat-tab-label-text-tracking: 0.006rem;
  --mat-tab-label-text-weight: 500;
  --mat-checkbox-selected-focus-state-layer-opacity: 0.12;
  --mat-checkbox-selected-hover-state-layer-opacity: 0.08;
  --mat-checkbox-selected-pressed-state-layer-opacity: 0.12;
  --mat-checkbox-unselected-focus-state-layer-opacity: 0.12;
  --mat-checkbox-unselected-hover-state-layer-opacity: 0.08;
  --mat-checkbox-unselected-pressed-state-layer-opacity: 0.12;
  --mat-checkbox-touch-target-size: 48px;
  --mat-checkbox-disabled-label-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-checkbox-disabled-selected-checkmark-color: #faf9fd;
  --mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-checkbox-label-text-color: #1a1b1f;
  --mat-checkbox-selected-checkmark-color: #ffffff;
  --mat-checkbox-selected-focus-icon-color: #005cbb;
  --mat-checkbox-selected-focus-state-layer-color: #005cbb;
  --mat-checkbox-selected-hover-icon-color: #005cbb;
  --mat-checkbox-selected-hover-state-layer-color: #005cbb;
  --mat-checkbox-selected-icon-color: #005cbb;
  --mat-checkbox-selected-pressed-icon-color: #005cbb;
  --mat-checkbox-selected-pressed-state-layer-color: #1a1b1f;
  --mat-checkbox-unselected-focus-icon-color: #1a1b1f;
  --mat-checkbox-unselected-focus-state-layer-color: #1a1b1f;
  --mat-checkbox-unselected-hover-icon-color: #1a1b1f;
  --mat-checkbox-unselected-hover-state-layer-color: #1a1b1f;
  --mat-checkbox-unselected-icon-color: #44474e;
  --mat-checkbox-unselected-pressed-state-layer-color: #005cbb;
  --mat-checkbox-touch-target-display: block;
  --mat-checkbox-state-layer-size: 36px;
  --mat-checkbox-label-text-font: Roboto, sans-serif;
  --mat-checkbox-label-text-line-height: 1.25rem;
  --mat-checkbox-label-text-size: 0.875rem;
  --mat-checkbox-label-text-tracking: 0.016rem;
  --mat-checkbox-label-text-weight: 400;
  --mat-button-filled-container-shape: 9999px;
  --mat-button-filled-horizontal-padding: 24px;
  --mat-button-filled-icon-offset: -8px;
  --mat-button-filled-icon-spacing: 8px;
  --mat-button-filled-touch-target-size: 48px;
  --mat-button-outlined-container-shape: 9999px;
  --mat-button-outlined-horizontal-padding: 24px;
  --mat-button-outlined-icon-offset: -8px;
  --mat-button-outlined-icon-spacing: 8px;
  --mat-button-outlined-outline-width: 1px;
  --mat-button-outlined-touch-target-size: 48px;
  --mat-button-protected-container-shape: 9999px;
  --mat-button-protected-horizontal-padding: 24px;
  --mat-button-protected-icon-offset: -8px;
  --mat-button-protected-icon-spacing: 8px;
  --mat-button-protected-touch-target-size: 48px;
  --mat-button-text-container-shape: 9999px;
  --mat-button-text-horizontal-padding: 12px;
  --mat-button-text-icon-offset: -4px;
  --mat-button-text-icon-spacing: 8px;
  --mat-button-text-with-icon-horizontal-padding: 16px;
  --mat-button-text-touch-target-size: 48px;
  --mat-button-tonal-container-shape: 9999px;
  --mat-button-tonal-horizontal-padding: 24px;
  --mat-button-tonal-icon-offset: -8px;
  --mat-button-tonal-icon-spacing: 8px;
  --mat-button-tonal-touch-target-size: 48px;
  --mat-button-filled-container-color: #005cbb;
  --mat-button-filled-disabled-container-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-button-filled-disabled-label-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-button-filled-disabled-state-layer-color: #44474e;
  --mat-button-filled-focus-state-layer-opacity: 0.12;
  --mat-button-filled-hover-state-layer-opacity: 0.08;
  --mat-button-filled-label-text-color: #ffffff;
  --mat-button-filled-pressed-state-layer-opacity: 0.12;
  --mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);
  --mat-button-filled-state-layer-color: #ffffff;
  --mat-button-outlined-disabled-label-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-button-outlined-disabled-outline-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-button-outlined-disabled-state-layer-color: #44474e;
  --mat-button-outlined-focus-state-layer-opacity: 0.12;
  --mat-button-outlined-hover-state-layer-opacity: 0.08;
  --mat-button-outlined-label-text-color: #005cbb;
  --mat-button-outlined-outline-color: #74777f;
  --mat-button-outlined-pressed-state-layer-opacity: 0.12;
  --mat-button-outlined-ripple-color: color-mix(in srgb, #005cbb 12%, transparent);
  --mat-button-outlined-state-layer-color: #005cbb;
  --mat-button-protected-container-color: #faf9fd;
  --mat-button-protected-container-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);
  --mat-button-protected-disabled-container-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-button-protected-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);
  --mat-button-protected-disabled-label-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-button-protected-disabled-state-layer-color: #44474e;
  --mat-button-protected-focus-container-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);
  --mat-button-protected-focus-state-layer-opacity: 0.12;
  --mat-button-protected-hover-container-elevation-shadow:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-button-protected-hover-state-layer-opacity: 0.08;
  --mat-button-protected-label-text-color: #005cbb;
  --mat-button-protected-pressed-container-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);
  --mat-button-protected-pressed-state-layer-opacity: 0.12;
  --mat-button-protected-ripple-color: color-mix(in srgb, #005cbb 12%, transparent);
  --mat-button-protected-state-layer-color: #005cbb;
  --mat-button-text-disabled-label-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-button-text-disabled-state-layer-color: #44474e;
  --mat-button-text-focus-state-layer-opacity: 0.12;
  --mat-button-text-hover-state-layer-opacity: 0.08;
  --mat-button-text-label-text-color: #005cbb;
  --mat-button-text-pressed-state-layer-opacity: 0.12;
  --mat-button-text-ripple-color: color-mix(in srgb, #005cbb 12%, transparent);
  --mat-button-text-state-layer-color: #005cbb;
  --mat-button-tonal-container-color: #dae2f9;
  --mat-button-tonal-disabled-container-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-button-tonal-disabled-label-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-button-tonal-disabled-state-layer-color: #44474e;
  --mat-button-tonal-focus-state-layer-opacity: 0.12;
  --mat-button-tonal-hover-state-layer-opacity: 0.08;
  --mat-button-tonal-label-text-color: #3e4759;
  --mat-button-tonal-pressed-state-layer-opacity: 0.12;
  --mat-button-tonal-ripple-color: color-mix(in srgb, #3e4759 12%, transparent);
  --mat-button-tonal-state-layer-color: #3e4759;
  --mat-button-filled-touch-target-display: block;
  --mat-button-filled-container-height: 36px;
  --mat-button-outlined-container-height: 36px;
  --mat-button-outlined-touch-target-display: block;
  --mat-button-protected-touch-target-display: block;
  --mat-button-protected-container-height: 36px;
  --mat-button-text-touch-target-display: block;
  --mat-button-text-container-height: 36px;
  --mat-button-tonal-container-height: 36px;
  --mat-button-tonal-touch-target-display: block;
  --mat-button-filled-label-text-font: Roboto, sans-serif;
  --mat-button-filled-label-text-size: 0.875rem;
  --mat-button-filled-label-text-tracking: 0.006rem;
  --mat-button-filled-label-text-weight: 500;
  --mat-button-outlined-label-text-font: Roboto, sans-serif;
  --mat-button-outlined-label-text-size: 0.875rem;
  --mat-button-outlined-label-text-tracking: 0.006rem;
  --mat-button-outlined-label-text-weight: 500;
  --mat-button-protected-label-text-font: Roboto, sans-serif;
  --mat-button-protected-label-text-size: 0.875rem;
  --mat-button-protected-label-text-tracking: 0.006rem;
  --mat-button-protected-label-text-weight: 500;
  --mat-button-text-label-text-font: Roboto, sans-serif;
  --mat-button-text-label-text-size: 0.875rem;
  --mat-button-text-label-text-tracking: 0.006rem;
  --mat-button-text-label-text-weight: 500;
  --mat-button-tonal-label-text-font: Roboto, sans-serif;
  --mat-button-tonal-label-text-size: 0.875rem;
  --mat-button-tonal-label-text-tracking: 0.006rem;
  --mat-button-tonal-label-text-weight: 500;
  --mat-icon-button-icon-size: 24px;
  --mat-icon-button-container-shape: 9999px;
  --mat-icon-button-touch-target-size: 48px;
  --mat-icon-button-disabled-icon-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-icon-button-disabled-state-layer-color: #44474e;
  --mat-icon-button-focus-state-layer-opacity: 0.12;
  --mat-icon-button-hover-state-layer-opacity: 0.08;
  --mat-icon-button-icon-color: #44474e;
  --mat-icon-button-pressed-state-layer-opacity: 0.12;
  --mat-icon-button-ripple-color: color-mix(in srgb, #44474e 12%, transparent);
  --mat-icon-button-state-layer-color: #44474e;
  --mat-icon-button-touch-target-display: block;
  --mat-icon-button-state-layer-size: 36px;
  --mat-fab-container-shape: 16px;
  --mat-fab-extended-container-height: 56px;
  --mat-fab-extended-container-shape: 16px;
  --mat-fab-small-container-shape: 12px;
  --mat-fab-touch-target-size: 48px;
  --mat-fab-small-touch-target-size: 48px;
  --mat-fab-container-color: #d7e3ff;
  --mat-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);
  --mat-fab-disabled-state-container-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-fab-disabled-state-foreground-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-fab-extended-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);
  --mat-fab-extended-focus-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);
  --mat-fab-extended-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);
  --mat-fab-extended-pressed-container-elevation-shadow: 6;
  --mat-fab-focus-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);
  --mat-fab-focus-state-layer-opacity: 0.12;
  --mat-fab-foreground-color: #00458f;
  --mat-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);
  --mat-fab-hover-state-layer-opacity: 0.08;
  --mat-fab-pressed-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);
  --mat-fab-pressed-state-layer-opacity: 0.12;
  --mat-fab-ripple-color: color-mix(in srgb, #00458f 12%, transparent);
  --mat-fab-small-container-color: #d7e3ff;
  --mat-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);
  --mat-fab-small-disabled-state-container-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-fab-small-focus-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);
  --mat-fab-small-focus-state-layer-opacity: 0.12;
  --mat-fab-small-foreground-color: #00458f;
  --mat-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);
  --mat-fab-small-hover-state-layer-opacity: 0.08;
  --mat-fab-small-pressed-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);
  --mat-fab-small-pressed-state-layer-opacity: 0.12;
  --mat-fab-small-ripple-color: color-mix(in srgb, #00458f 12%, transparent);
  --mat-fab-small-state-layer-color: #00458f;
  --mat-fab-state-layer-color: #00458f;
  --mat-fab-touch-target-display: block;
  --mat-fab-extended-label-text-font: Roboto, sans-serif;
  --mat-fab-extended-label-text-size: 0.875rem;
  --mat-fab-extended-label-text-tracking: 0.006rem;
  --mat-fab-extended-label-text-weight: 500;
  --mat-snack-bar-container-shape: 4px;
  --mat-snack-bar-button-color: #abc7ff;
  --mat-snack-bar-container-color: #2f3033;
  --mat-snack-bar-supporting-text-color: #f2f0f4;
  --mat-snack-bar-supporting-text-font: Roboto, sans-serif;
  --mat-snack-bar-supporting-text-line-height: 1.25rem;
  --mat-snack-bar-supporting-text-size: 0.875rem;
  --mat-snack-bar-supporting-text-weight: 400;
  --mat-table-row-item-outline-width: 1px;
  --mat-table-background-color: #faf9fd;
  --mat-table-header-headline-color: #1a1b1f;
  --mat-table-row-item-label-text-color: #1a1b1f;
  --mat-table-row-item-outline-color: #74777f;
  --mat-table-header-container-height: 52px;
  --mat-table-footer-container-height: 48px;
  --mat-table-row-item-container-height: 48px;
  --mat-table-header-headline-font: Roboto, sans-serif;
  --mat-table-header-headline-line-height: 1.25rem;
  --mat-table-header-headline-size: 0.875rem;
  --mat-table-header-headline-tracking: 0.006rem;
  --mat-table-header-headline-weight: 500;
  --mat-table-row-item-label-text-font: Roboto, sans-serif;
  --mat-table-row-item-label-text-line-height: 1.25rem;
  --mat-table-row-item-label-text-size: 0.875rem;
  --mat-table-row-item-label-text-tracking: 0.016rem;
  --mat-table-row-item-label-text-weight: 400;
  --mat-table-footer-supporting-text-font: Roboto, sans-serif;
  --mat-table-footer-supporting-text-line-height: 1.25rem;
  --mat-table-footer-supporting-text-size: 0.875rem;
  --mat-table-footer-supporting-text-tracking: 0.016rem;
  --mat-table-footer-supporting-text-weight: 400;
  --mat-progress-spinner-size: 48px;
  --mat-progress-spinner-active-indicator-width: 4px;
  --mat-progress-spinner-active-indicator-color: #005cbb;
  --mat-badge-container-offset: -12px 0;
  --mat-badge-container-overlap-offset: -12px;
  --mat-badge-container-padding: 0 4px;
  --mat-badge-container-shape: 9999px;
  --mat-badge-container-size: 16px;
  --mat-badge-large-size-container-offset: -12px 0;
  --mat-badge-large-size-container-overlap-offset: -12px;
  --mat-badge-large-size-container-padding: 0 4px;
  --mat-badge-large-size-container-size: 16px;
  --mat-badge-legacy-container-size: unset;
  --mat-badge-legacy-large-size-container-size: unset;
  --mat-badge-legacy-small-size-container-size: unset;
  --mat-badge-small-size-container-offset: -6px 0;
  --mat-badge-small-size-container-overlap-offset: -6px;
  --mat-badge-small-size-container-padding: 0;
  --mat-badge-small-size-container-size: 6px;
  --mat-badge-background-color: #ba1a1a;
  --mat-badge-disabled-state-background-color: color-mix(in srgb, #ba1a1a 38%, transparent);
  --mat-badge-disabled-state-text-color: #ffffff;
  --mat-badge-text-color: #ffffff;
  --mat-badge-large-size-line-height: 16px;
  --mat-badge-large-size-text-size: 0.688rem;
  --mat-badge-line-height: 16px;
  --mat-badge-small-size-line-height: 6px;
  --mat-badge-small-size-text-size: 0;
  --mat-badge-text-font: Roboto, sans-serif;
  --mat-badge-text-size: 0.688rem;
  --mat-badge-text-weight: 500;
  --mat-bottom-sheet-container-shape: 28px;
  --mat-bottom-sheet-container-text-color: #1a1b1f;
  --mat-bottom-sheet-container-background-color: #f4f3f6;
  --mat-bottom-sheet-container-text-font: Roboto, sans-serif;
  --mat-bottom-sheet-container-text-line-height: 1.5rem;
  --mat-bottom-sheet-container-text-size: 1rem;
  --mat-bottom-sheet-container-text-tracking: 0.031rem;
  --mat-bottom-sheet-container-text-weight: 400;
  --mat-button-toggle-focus-state-layer-opacity: 0.12;
  --mat-button-toggle-hover-state-layer-opacity: 0.08;
  --mat-button-toggle-shape: 28px;
  --mat-button-toggle-background-color: transparent;
  --mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-button-toggle-disabled-state-background-color: transparent;
  --mat-button-toggle-disabled-state-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-button-toggle-divider-color: #74777f;
  --mat-button-toggle-selected-state-background-color: #dae2f9;
  --mat-button-toggle-selected-state-text-color: #3e4759;
  --mat-button-toggle-state-layer-color: #1a1b1f;
  --mat-button-toggle-text-color: #1a1b1f;
  --mat-button-toggle-height: 40px;
  --mat-button-toggle-label-text-font: Roboto, sans-serif;
  --mat-button-toggle-label-text-line-height: 1.25rem;
  --mat-button-toggle-label-text-size: 0.875rem;
  --mat-button-toggle-label-text-tracking: 0.006rem;
  --mat-button-toggle-label-text-weight: 500;
  --mat-datepicker-calendar-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);
  --mat-datepicker-calendar-container-shape: 16px;
  --mat-datepicker-calendar-container-touch-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);
  --mat-datepicker-calendar-container-touch-shape: 28px;
  --mat-datepicker-calendar-body-label-text-color: #1a1b1f;
  --mat-datepicker-calendar-container-background-color: #e9e7eb;
  --mat-datepicker-calendar-container-text-color: #1a1b1f;
  --mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #1a1b1f 8%, transparent);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: #e0e0ff;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #565e71;
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #dae2f9;
  --mat-datepicker-calendar-date-in-range-state-background-color: #d7e3ff;
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-preview-state-outline-color: #005cbb;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-datepicker-calendar-date-selected-state-background-color: #005cbb;
  --mat-datepicker-calendar-date-selected-state-text-color: #ffffff;
  --mat-datepicker-calendar-date-text-color: #1a1b1f;
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-datepicker-calendar-date-today-outline-color: #005cbb;
  --mat-datepicker-calendar-date-today-selected-state-outline-color: #005cbb;
  --mat-datepicker-calendar-header-divider-color: transparent;
  --mat-datepicker-calendar-header-text-color: #44474e;
  --mat-datepicker-calendar-navigation-button-icon-color: #44474e;
  --mat-datepicker-calendar-period-button-icon-color: #44474e;
  --mat-datepicker-calendar-period-button-text-color: #44474e;
  --mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-datepicker-range-input-separator-color: #1a1b1f;
  --mat-datepicker-toggle-active-state-icon-color: #005cbb;
  --mat-datepicker-toggle-icon-color: #44474e;
  --mat-datepicker-calendar-body-label-text-size: 0.875rem;
  --mat-datepicker-calendar-body-label-text-weight: 500;
  --mat-datepicker-calendar-header-text-size: 0.875rem;
  --mat-datepicker-calendar-header-text-weight: 500;
  --mat-datepicker-calendar-period-button-text-size: 0.875rem;
  --mat-datepicker-calendar-period-button-text-weight: 500;
  --mat-datepicker-calendar-text-font: Roboto, sans-serif;
  --mat-datepicker-calendar-text-size: 0.875rem;
  --mat-divider-width: 1px;
  --mat-divider-color: #c4c6d0;
  --mat-expansion-container-shape: 12px;
  --mat-expansion-header-indicator-display: inline-block;
  --mat-expansion-legacy-header-indicator-display: none;
  --mat-expansion-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);
  --mat-expansion-actions-divider-color: #74777f;
  --mat-expansion-container-background-color: #faf9fd;
  --mat-expansion-container-text-color: #1a1b1f;
  --mat-expansion-header-description-color: #44474e;
  --mat-expansion-header-disabled-state-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-expansion-header-focus-state-layer-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-expansion-header-hover-state-layer-color: color-mix(in srgb, #1a1b1f 8%, transparent);
  --mat-expansion-header-indicator-color: #44474e;
  --mat-expansion-header-text-color: #1a1b1f;
  --mat-expansion-header-collapsed-state-height: 44px;
  --mat-expansion-header-expanded-state-height: 60px;
  --mat-expansion-container-text-font: Roboto, sans-serif;
  --mat-expansion-container-text-line-height: 1.5rem;
  --mat-expansion-container-text-size: 1rem;
  --mat-expansion-container-text-tracking: 0.031rem;
  --mat-expansion-container-text-weight: 400;
  --mat-expansion-header-text-font: Roboto, sans-serif;
  --mat-expansion-header-text-line-height: 1.5rem;
  --mat-expansion-header-text-size: 1rem;
  --mat-expansion-header-text-tracking: 0.009rem;
  --mat-expansion-header-text-weight: 500;
  --mat-grid-list-tile-header-primary-text-size: 400 1rem / 1.5rem Roboto, sans-serif;
  --mat-grid-list-tile-header-secondary-text-size: 400 0.875rem / 1.25rem Roboto, sans-serif;
  --mat-grid-list-tile-footer-primary-text-size: 400 1rem / 1.5rem Roboto, sans-serif;
  --mat-grid-list-tile-footer-secondary-text-size: 400 0.875rem / 1.25rem Roboto, sans-serif;
  --mat-icon-color: inherit;
  --mat-sidenav-container-shape: 16px;
  --mat-sidenav-container-elevation-shadow: none;
  --mat-sidenav-container-width: 360px;
  --mat-sidenav-container-divider-color: transparent;
  --mat-sidenav-container-background-color: #faf9fd;
  --mat-sidenav-container-text-color: #44474e;
  --mat-sidenav-content-background-color: #faf9fd;
  --mat-sidenav-content-text-color: #1a1b1f;
  --mat-sidenav-scrim-color: color-mix(in srgb, #2d3038 40%, transparent);
  --mat-stepper-header-error-state-icon-background-color: transparent;
  --mat-stepper-header-focus-state-layer-shape: 12px;
  --mat-stepper-header-hover-state-layer-shape: 12px;
  --mat-stepper-container-color: #faf9fd;
  --mat-stepper-header-done-state-icon-background-color: #005cbb;
  --mat-stepper-header-done-state-icon-foreground-color: #ffffff;
  --mat-stepper-header-edit-state-icon-background-color: #005cbb;
  --mat-stepper-header-edit-state-icon-foreground-color: #ffffff;
  --mat-stepper-header-error-state-icon-foreground-color: #ba1a1a;
  --mat-stepper-header-error-state-label-text-color: #ba1a1a;
  --mat-stepper-header-focus-state-layer-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-stepper-header-hover-state-layer-color: color-mix(in srgb, #1a1b1f 8%, transparent);
  --mat-stepper-header-icon-background-color: #44474e;
  --mat-stepper-header-icon-foreground-color: #faf9fd;
  --mat-stepper-header-label-text-color: #44474e;
  --mat-stepper-header-optional-label-text-color: #44474e;
  --mat-stepper-header-selected-state-icon-background-color: #005cbb;
  --mat-stepper-header-selected-state-icon-foreground-color: #ffffff;
  --mat-stepper-header-selected-state-label-text-color: #44474e;
  --mat-stepper-line-color: #74777f;
  --mat-stepper-header-height: 68px;
  --mat-stepper-container-text-font: Roboto, sans-serif;
  --mat-stepper-header-label-text-font: Roboto, sans-serif;
  --mat-stepper-header-label-text-size: 0.875rem;
  --mat-stepper-header-label-text-weight: 500;
  --mat-stepper-header-error-state-label-text-size: 0.875rem;
  --mat-stepper-header-selected-state-label-text-size: 0.875rem;
  --mat-stepper-header-selected-state-label-text-weight: 500;
  --mat-stepper-header-height: 68px;
  --mat-sort-arrow-color: #1a1b1f;
  --mat-toolbar-container-background-color: #faf9fd;
  --mat-toolbar-container-text-color: #1a1b1f;
  --mat-toolbar-standard-height: 60px;
  --mat-toolbar-mobile-height: 52px;
  --mat-toolbar-title-text-font: Roboto, sans-serif;
  --mat-toolbar-title-text-line-height: 1.75rem;
  --mat-toolbar-title-text-size: 1.375rem;
  --mat-toolbar-title-text-tracking: 0;
  --mat-toolbar-title-text-weight: 400;
  --mat-tree-container-background-color: #faf9fd;
  --mat-tree-node-text-color: #1a1b1f;
  --mat-tree-node-min-height: 44px;
  --mat-tree-node-text-font: Roboto, sans-serif;
  --mat-tree-node-text-size: 1rem;
  --mat-tree-node-text-weight: 400;
  --mat-timepicker-container-shape: 4px;
  --mat-timepicker-container-background-color: #efedf0;
  --mat-timepicker-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);
  --mat-sys-background: #faf9fd;
  --mat-sys-error: #ba1a1a;
  --mat-sys-error-container: #ffdad6;
  --mat-sys-inverse-on-surface: #f2f0f4;
  --mat-sys-inverse-primary: #abc7ff;
  --mat-sys-inverse-surface: #2f3033;
  --mat-sys-on-background: #1a1b1f;
  --mat-sys-on-error: #ffffff;
  --mat-sys-on-error-container: #93000a;
  --mat-sys-on-primary: #ffffff;
  --mat-sys-on-primary-container: #00458f;
  --mat-sys-on-primary-fixed: #001b3f;
  --mat-sys-on-primary-fixed-variant: #00458f;
  --mat-sys-on-secondary: #ffffff;
  --mat-sys-on-secondary-container: #3e4759;
  --mat-sys-on-secondary-fixed: #131c2b;
  --mat-sys-on-secondary-fixed-variant: #3e4759;
  --mat-sys-on-surface: #1a1b1f;
  --mat-sys-on-surface-variant: #44474e;
  --mat-sys-on-tertiary: #ffffff;
  --mat-sys-on-tertiary-container: #0000ef;
  --mat-sys-on-tertiary-fixed: #00006e;
  --mat-sys-on-tertiary-fixed-variant: #0000ef;
  --mat-sys-outline: #74777f;
  --mat-sys-outline-variant: #c4c6d0;
  --mat-sys-primary: #005cbb;
  --mat-sys-primary-container: #d7e3ff;
  --mat-sys-primary-fixed: #d7e3ff;
  --mat-sys-primary-fixed-dim: #abc7ff;
  --mat-sys-scrim: #000000;
  --mat-sys-secondary: #565e71;
  --mat-sys-secondary-container: #dae2f9;
  --mat-sys-secondary-fixed: #dae2f9;
  --mat-sys-secondary-fixed-dim: #bec6dc;
  --mat-sys-shadow: #000000;
  --mat-sys-surface: #faf9fd;
  --mat-sys-surface-bright: #faf9fd;
  --mat-sys-surface-container: #efedf0;
  --mat-sys-surface-container-high: #e9e7eb;
  --mat-sys-surface-container-highest: #e3e2e6;
  --mat-sys-surface-container-low: #f4f3f6;
  --mat-sys-surface-container-lowest: #ffffff;
  --mat-sys-surface-dim: #dbd9dd;
  --mat-sys-surface-tint: #005cbb;
  --mat-sys-surface-variant: #e0e2ec;
  --mat-sys-tertiary: #343dff;
  --mat-sys-tertiary-container: #e0e0ff;
  --mat-sys-tertiary-fixed: #e0e0ff;
  --mat-sys-tertiary-fixed-dim: #bec2ff;
  --mat-sys-neutral-variant20: #2d3038;
  --mat-sys-neutral10: #1a1b1f;
  --mat-sys-body-large: 400 1rem / 1.5rem Roboto, sans-serif;
  --mat-sys-body-large-font: Roboto, sans-serif;
  --mat-sys-body-large-line-height: 1.5rem;
  --mat-sys-body-large-size: 1rem;
  --mat-sys-body-large-tracking: 0.031rem;
  --mat-sys-body-large-weight: 400;
  --mat-sys-body-medium: 400 0.875rem / 1.25rem Roboto, sans-serif;
  --mat-sys-body-medium-font: Roboto, sans-serif;
  --mat-sys-body-medium-line-height: 1.25rem;
  --mat-sys-body-medium-size: 0.875rem;
  --mat-sys-body-medium-tracking: 0.016rem;
  --mat-sys-body-medium-weight: 400;
  --mat-sys-body-small: 400 0.75rem / 1rem Roboto, sans-serif;
  --mat-sys-body-small-font: Roboto, sans-serif;
  --mat-sys-body-small-line-height: 1rem;
  --mat-sys-body-small-size: 0.75rem;
  --mat-sys-body-small-tracking: 0.025rem;
  --mat-sys-body-small-weight: 400;
  --mat-sys-display-large: 400 3.562rem / 4rem Roboto, sans-serif;
  --mat-sys-display-large-font: Roboto, sans-serif;
  --mat-sys-display-large-line-height: 4rem;
  --mat-sys-display-large-size: 3.562rem;
  --mat-sys-display-large-tracking: -0.016rem;
  --mat-sys-display-large-weight: 400;
  --mat-sys-display-medium: 400 2.812rem / 3.25rem Roboto, sans-serif;
  --mat-sys-display-medium-font: Roboto, sans-serif;
  --mat-sys-display-medium-line-height: 3.25rem;
  --mat-sys-display-medium-size: 2.812rem;
  --mat-sys-display-medium-tracking: 0;
  --mat-sys-display-medium-weight: 400;
  --mat-sys-display-small: 400 2.25rem / 2.75rem Roboto, sans-serif;
  --mat-sys-display-small-font: Roboto, sans-serif;
  --mat-sys-display-small-line-height: 2.75rem;
  --mat-sys-display-small-size: 2.25rem;
  --mat-sys-display-small-tracking: 0;
  --mat-sys-display-small-weight: 400;
  --mat-sys-headline-large: 400 2rem / 2.5rem Roboto, sans-serif;
  --mat-sys-headline-large-font: Roboto, sans-serif;
  --mat-sys-headline-large-line-height: 2.5rem;
  --mat-sys-headline-large-size: 2rem;
  --mat-sys-headline-large-tracking: 0;
  --mat-sys-headline-large-weight: 400;
  --mat-sys-headline-medium: 400 1.75rem / 2.25rem Roboto, sans-serif;
  --mat-sys-headline-medium-font: Roboto, sans-serif;
  --mat-sys-headline-medium-line-height: 2.25rem;
  --mat-sys-headline-medium-size: 1.75rem;
  --mat-sys-headline-medium-tracking: 0;
  --mat-sys-headline-medium-weight: 400;
  --mat-sys-headline-small: 400 1.5rem / 2rem Roboto, sans-serif;
  --mat-sys-headline-small-font: Roboto, sans-serif;
  --mat-sys-headline-small-line-height: 2rem;
  --mat-sys-headline-small-size: 1.5rem;
  --mat-sys-headline-small-tracking: 0;
  --mat-sys-headline-small-weight: 400;
  --mat-sys-label-large: 500 0.875rem / 1.25rem Roboto, sans-serif;
  --mat-sys-label-large-font: Roboto, sans-serif;
  --mat-sys-label-large-line-height: 1.25rem;
  --mat-sys-label-large-size: 0.875rem;
  --mat-sys-label-large-tracking: 0.006rem;
  --mat-sys-label-large-weight: 500;
  --mat-sys-label-large-weight-prominent: 700;
  --mat-sys-label-medium: 500 0.75rem / 1rem Roboto, sans-serif;
  --mat-sys-label-medium-font: Roboto, sans-serif;
  --mat-sys-label-medium-line-height: 1rem;
  --mat-sys-label-medium-size: 0.75rem;
  --mat-sys-label-medium-tracking: 0.031rem;
  --mat-sys-label-medium-weight: 500;
  --mat-sys-label-medium-weight-prominent: 700;
  --mat-sys-label-small: 500 0.688rem / 1rem Roboto, sans-serif;
  --mat-sys-label-small-font: Roboto, sans-serif;
  --mat-sys-label-small-line-height: 1rem;
  --mat-sys-label-small-size: 0.688rem;
  --mat-sys-label-small-tracking: 0.031rem;
  --mat-sys-label-small-weight: 500;
  --mat-sys-title-large: 400 1.375rem / 1.75rem Roboto, sans-serif;
  --mat-sys-title-large-font: Roboto, sans-serif;
  --mat-sys-title-large-line-height: 1.75rem;
  --mat-sys-title-large-size: 1.375rem;
  --mat-sys-title-large-tracking: 0;
  --mat-sys-title-large-weight: 400;
  --mat-sys-title-medium: 500 1rem / 1.5rem Roboto, sans-serif;
  --mat-sys-title-medium-font: Roboto, sans-serif;
  --mat-sys-title-medium-line-height: 1.5rem;
  --mat-sys-title-medium-size: 1rem;
  --mat-sys-title-medium-tracking: 0.009rem;
  --mat-sys-title-medium-weight: 500;
  --mat-sys-title-small: 500 0.875rem / 1.25rem Roboto, sans-serif;
  --mat-sys-title-small-font: Roboto, sans-serif;
  --mat-sys-title-small-line-height: 1.25rem;
  --mat-sys-title-small-size: 0.875rem;
  --mat-sys-title-small-tracking: 0.006rem;
  --mat-sys-title-small-weight: 500;
  --mat-sys-corner-extra-large: 28px;
  --mat-sys-corner-extra-large-top: 28px 28px 0 0;
  --mat-sys-corner-extra-small: 4px;
  --mat-sys-corner-extra-small-top: 4px 4px 0 0;
  --mat-sys-corner-full: 9999px;
  --mat-sys-corner-large: 16px;
  --mat-sys-corner-large-end: 0 16px 16px 0;
  --mat-sys-corner-large-start: 16px 0 0 16px;
  --mat-sys-corner-large-top: 16px 16px 0 0;
  --mat-sys-corner-medium: 12px;
  --mat-sys-corner-none: 0;
  --mat-sys-corner-small: 8px;
  --mat-sys-level0:
    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-sys-level1:
    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-sys-level2:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level3:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level4:
    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-sys-level5:
    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);
  --app-spacing-xs: 4px;
  --app-spacing-sm: 8px;
  --app-spacing-base: 12px;
  --app-spacing-md: 16px;
  --app-spacing-lg: 24px;
  --app-spacing-xl: 32px;
  --app-spacing-xxl: 48px;
  --app-shape-small: var(--md-sys-shape-corner-small, 4px);
  --app-shape-medium: var(--md-sys-shape-corner-medium, 8px);
  --app-shape-large: var(--md-sys-shape-corner-large, 12px);
  --app-shape-xlarge: var(--md-sys-shape-corner-xlarge, 16px);
  --app-shape-xxlarge: 20px;
  --app-shape-full: 9999px;
  --app-color-primary: #005cbb;
  --app-color-on-primary: #ffffff;
  --app-color-primary-container: #d7e3ff;
  --app-color-on-primary-container: #00458f;
  --app-color-secondary: #565e71;
  --app-color-on-secondary: #ffffff;
  --app-color-tertiary: #343dff;
  --app-color-on-tertiary: #ffffff;
  --app-color-error: #ba1a1a;
  --app-color-on-error: #ffffff;
  --app-color-surface: #faf9fd;
  --app-color-on-surface: #1a1b1f;
  --app-color-surface-variant: #e0e2ec;
  --app-color-on-surface-variant: #44474e;
  --app-color-surface-container: #efedf0;
  --app-color-surface-container-low: #f4f3f6;
  --app-color-surface-container-lowest: #ffffff;
  --app-color-surface-container-high: #e9e7eb;
  --app-color-surface-container-highest: #e3e2e6;
  --app-color-inverse-surface: #2f3033;
  --app-color-inverse-on-surface: #f2f0f4;
  --app-color-text-strong: #000000;
  --app-color-editor-surface: #ffffff;
  --app-color-background: #e9e7eb;
  --app-color-on-background: #1a1b1f;
  --app-color-outline: #74777f;
  --app-color-outline-variant: #c4c6d0;
}
.theme-dark {
  color-scheme: dark;
  --foreground-color: #121316;
  --mat-app-background-color: #121316;
  --mat-app-text-color: #e3e2e6;
  --mat-app-elevation-shadow-level-0:
    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-app-elevation-shadow-level-1:
    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-app-elevation-shadow-level-2:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-3:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-4:
    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-app-elevation-shadow-level-5:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 5px 8px 0px rgba(0, 0, 0, 0.14),
    0px 1px 14px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-6:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-7:
    0px 4px 5px -2px rgba(0, 0, 0, 0.2),
    0px 7px 10px 1px rgba(0, 0, 0, 0.14),
    0px 2px 16px 1px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-8:
    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-app-elevation-shadow-level-9:
    0px 5px 6px -3px rgba(0, 0, 0, 0.2),
    0px 9px 12px 1px rgba(0, 0, 0, 0.14),
    0px 3px 16px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-10:
    0px 6px 6px -3px rgba(0, 0, 0, 0.2),
    0px 10px 14px 1px rgba(0, 0, 0, 0.14),
    0px 4px 18px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-11:
    0px 6px 7px -4px rgba(0, 0, 0, 0.2),
    0px 11px 15px 1px rgba(0, 0, 0, 0.14),
    0px 4px 20px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-12:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-13:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 13px 19px 2px rgba(0, 0, 0, 0.14),
    0px 5px 24px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-14:
    0px 7px 9px -4px rgba(0, 0, 0, 0.2),
    0px 14px 21px 2px rgba(0, 0, 0, 0.14),
    0px 5px 26px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-15:
    0px 8px 9px -5px rgba(0, 0, 0, 0.2),
    0px 15px 22px 2px rgba(0, 0, 0, 0.14),
    0px 6px 28px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-16:
    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-app-elevation-shadow-level-17:
    0px 8px 11px -5px rgba(0, 0, 0, 0.2),
    0px 17px 26px 2px rgba(0, 0, 0, 0.14),
    0px 6px 32px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-18:
    0px 9px 11px -5px rgba(0, 0, 0, 0.2),
    0px 18px 28px 2px rgba(0, 0, 0, 0.14),
    0px 7px 34px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-19:
    0px 9px 12px -6px rgba(0, 0, 0, 0.2),
    0px 19px 29px 2px rgba(0, 0, 0, 0.14),
    0px 7px 36px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-20:
    0px 10px 13px -6px rgba(0, 0, 0, 0.2),
    0px 20px 31px 3px rgba(0, 0, 0, 0.14),
    0px 8px 38px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-21:
    0px 10px 13px -6px rgba(0, 0, 0, 0.2),
    0px 21px 33px 3px rgba(0, 0, 0, 0.14),
    0px 8px 40px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-22:
    0px 10px 14px -6px rgba(0, 0, 0, 0.2),
    0px 22px 35px 3px rgba(0, 0, 0, 0.14),
    0px 8px 42px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-23:
    0px 11px 14px -7px rgba(0, 0, 0, 0.2),
    0px 23px 36px 3px rgba(0, 0, 0, 0.14),
    0px 9px 44px 8px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-24:
    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-ripple-color: color-mix(in srgb, #e3e2e6 10%, transparent);
  --mat-option-focus-state-layer-color: color-mix(in srgb, #e3e2e6 12%, transparent);
  --mat-option-hover-state-layer-color: color-mix(in srgb, #e3e2e6 8%, transparent);
  --mat-option-label-text-color: #e3e2e6;
  --mat-option-selected-state-label-text-color: #dae2f9;
  --mat-option-selected-state-layer-color: #3e4759;
  --mat-optgroup-label-text-color: #e0e2ec;
  --mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #121316;
  --mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-pseudo-checkbox-full-selected-checkmark-color: #002f65;
  --mat-pseudo-checkbox-full-selected-icon-color: #abc7ff;
  --mat-pseudo-checkbox-full-unselected-icon-color: #e0e2ec;
  --mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-pseudo-checkbox-minimal-selected-checkmark-color: #abc7ff;
  --mat-option-label-text-size: 1rem;
  --mat-option-label-text-weight: 400;
  --mat-option-label-text-font: Roboto, sans-serif;
  --mat-option-label-text-line-height: 1.25rem;
  --mat-option-label-text-tracking: 0.006rem;
  --mat-optgroup-label-text-font: Roboto, sans-serif;
  --mat-optgroup-label-text-line-height: 1.25rem;
  --mat-optgroup-label-text-size: 0.875rem;
  --mat-optgroup-label-text-tracking: 0.006rem;
  --mat-optgroup-label-text-weight: 500;
  --mat-card-elevated-container-shape: 12px;
  --mat-card-filled-container-shape: 12px;
  --mat-card-outlined-container-shape: 12px;
  --mat-card-outlined-outline-width: 1px;
  --mat-card-elevated-container-color: #1a1b1f;
  --mat-card-elevated-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);
  --mat-card-filled-container-color: #343537;
  --mat-card-filled-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-outlined-container-color: #121316;
  --mat-card-outlined-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-outlined-outline-color: #44474e;
  --mat-card-subtitle-text-color: #e3e2e6;
  --mat-card-subtitle-text-font: Roboto, sans-serif;
  --mat-card-subtitle-text-line-height: 1.5rem;
  --mat-card-subtitle-text-size: 1rem;
  --mat-card-subtitle-text-tracking: 0.009rem;
  --mat-card-subtitle-text-weight: 500;
  --mat-card-title-text-font: Roboto, sans-serif;
  --mat-card-title-text-line-height: 1.75rem;
  --mat-card-title-text-size: 1.375rem;
  --mat-card-title-text-tracking: 0;
  --mat-card-title-text-weight: 400;
  --mat-progress-bar-active-indicator-height: 4px;
  --mat-progress-bar-track-height: 4px;
  --mat-progress-bar-track-shape: 0;
  --mat-progress-bar-active-indicator-color: #abc7ff;
  --mat-progress-bar-track-color: #44474e;
  --mat-tooltip-container-color: #e3e2e6;
  --mat-tooltip-container-shape: 4px;
  --mat-tooltip-supporting-text-color: #2f3033;
  --mat-tooltip-supporting-text-font: Roboto, sans-serif;
  --mat-tooltip-supporting-text-line-height: 1rem;
  --mat-tooltip-supporting-text-size: 0.75rem;
  --mat-tooltip-supporting-text-tracking: 0.025rem;
  --mat-tooltip-supporting-text-weight: 400;
  --mat-form-field-filled-active-indicator-height: 1px;
  --mat-form-field-filled-focus-active-indicator-height: 2px;
  --mat-form-field-filled-container-shape: 4px;
  --mat-form-field-outlined-outline-width: 1px;
  --mat-form-field-outlined-focus-outline-width: 2px;
  --mat-form-field-outlined-container-shape: 4px;
  --mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-form-field-disabled-leading-icon-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-form-field-disabled-select-arrow-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-form-field-disabled-trailing-icon-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-form-field-enabled-select-arrow-color: #e0e2ec;
  --mat-form-field-error-focus-trailing-icon-color: #ffb4ab;
  --mat-form-field-error-hover-trailing-icon-color: #ffdad6;
  --mat-form-field-error-text-color: #ffb4ab;
  --mat-form-field-error-trailing-icon-color: #ffb4ab;
  --mat-form-field-filled-active-indicator-color: #e0e2ec;
  --mat-form-field-filled-caret-color: #abc7ff;
  --mat-form-field-filled-container-color: #44474e;
  --mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-form-field-filled-disabled-container-color: color-mix(in srgb, #e3e2e6 4%, transparent);
  --mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-form-field-filled-error-active-indicator-color: #ffb4ab;
  --mat-form-field-filled-error-caret-color: #ffb4ab;
  --mat-form-field-filled-error-focus-active-indicator-color: #ffb4ab;
  --mat-form-field-filled-error-focus-label-text-color: #ffb4ab;
  --mat-form-field-filled-error-hover-active-indicator-color: #ffdad6;
  --mat-form-field-filled-error-hover-label-text-color: #ffdad6;
  --mat-form-field-filled-error-label-text-color: #ffb4ab;
  --mat-form-field-filled-focus-active-indicator-color: #abc7ff;
  --mat-form-field-filled-focus-label-text-color: #abc7ff;
  --mat-form-field-filled-hover-active-indicator-color: #e3e2e6;
  --mat-form-field-filled-hover-label-text-color: #e0e2ec;
  --mat-form-field-filled-input-text-color: #e3e2e6;
  --mat-form-field-filled-input-text-placeholder-color: #e0e2ec;
  --mat-form-field-filled-label-text-color: #e0e2ec;
  --mat-form-field-focus-select-arrow-color: #abc7ff;
  --mat-form-field-focus-state-layer-opacity: 0;
  --mat-form-field-hover-state-layer-opacity: 0.08;
  --mat-form-field-leading-icon-color: #e0e2ec;
  --mat-form-field-outlined-caret-color: #abc7ff;
  --mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, #e3e2e6 12%, transparent);
  --mat-form-field-outlined-error-caret-color: #ffb4ab;
  --mat-form-field-outlined-error-focus-label-text-color: #ffb4ab;
  --mat-form-field-outlined-error-focus-outline-color: #ffb4ab;
  --mat-form-field-outlined-error-hover-label-text-color: #ffdad6;
  --mat-form-field-outlined-error-hover-outline-color: #ffdad6;
  --mat-form-field-outlined-error-label-text-color: #ffb4ab;
  --mat-form-field-outlined-error-outline-color: #ffb4ab;
  --mat-form-field-outlined-focus-label-text-color: #abc7ff;
  --mat-form-field-outlined-focus-outline-color: #abc7ff;
  --mat-form-field-outlined-hover-label-text-color: #e3e2e6;
  --mat-form-field-outlined-hover-outline-color: #e3e2e6;
  --mat-form-field-outlined-input-text-color: #e3e2e6;
  --mat-form-field-outlined-input-text-placeholder-color: #e0e2ec;
  --mat-form-field-outlined-label-text-color: #e0e2ec;
  --mat-form-field-outlined-outline-color: #8e9099;
  --mat-form-field-select-disabled-option-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-select-option-text-color: #1a1b1f;
  --mat-form-field-state-layer-color: #e3e2e6;
  --mat-form-field-trailing-icon-color: #e0e2ec;
  --mat-form-field-container-height: 52px;
  --mat-form-field-filled-label-display: block;
  --mat-form-field-container-vertical-padding: 14px;
  --mat-form-field-filled-with-label-container-padding-top: 22px;
  --mat-form-field-filled-with-label-container-padding-bottom: 6px;
  --mat-form-field-container-text-font: Roboto, sans-serif;
  --mat-form-field-container-text-line-height: 1.5rem;
  --mat-form-field-container-text-size: 1rem;
  --mat-form-field-container-text-tracking: 0.031rem;
  --mat-form-field-container-text-weight: 400;
  --mat-form-field-subscript-text-font: Roboto, sans-serif;
  --mat-form-field-subscript-text-line-height: 1rem;
  --mat-form-field-subscript-text-size: 0.75rem;
  --mat-form-field-subscript-text-tracking: 0.025rem;
  --mat-form-field-subscript-text-weight: 400;
  --mat-form-field-outlined-label-text-font: Roboto, sans-serif;
  --mat-form-field-outlined-label-text-size: 1rem;
  --mat-form-field-outlined-label-text-tracking: 0.031rem;
  --mat-form-field-outlined-label-text-weight: 400;
  --mat-form-field-filled-label-text-font: Roboto, sans-serif;
  --mat-form-field-filled-label-text-size: 1rem;
  --mat-form-field-filled-label-text-tracking: 0.031rem;
  --mat-form-field-filled-label-text-weight: 400;
  --mat-select-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);
  --mat-select-panel-background-color: #1f2022;
  --mat-select-enabled-trigger-text-color: #e3e2e6;
  --mat-select-disabled-trigger-text-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-select-placeholder-text-color: #e0e2ec;
  --mat-select-enabled-arrow-color: #e0e2ec;
  --mat-select-disabled-arrow-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-select-focused-arrow-color: #abc7ff;
  --mat-select-invalid-arrow-color: #ffb4ab;
  --mat-select-arrow-transform: translateY(-8px);
  --mat-select-trigger-text-font: Roboto, sans-serif;
  --mat-select-trigger-text-line-height: 1.5rem;
  --mat-select-trigger-text-size: 1rem;
  --mat-select-trigger-text-tracking: 0.031rem;
  --mat-select-trigger-text-weight: 400;
  --mat-autocomplete-container-shape: 4px;
  --mat-autocomplete-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);
  --mat-autocomplete-background-color: #1f2022;
  --mat-dialog-actions-alignment: flex-end;
  --mat-dialog-actions-padding: 16px 24px;
  --mat-dialog-container-elevation-shadow: none;
  --mat-dialog-container-max-width: 560px;
  --mat-dialog-container-min-width: 280px;
  --mat-dialog-container-shape: 28px;
  --mat-dialog-container-small-max-width: calc(100vw - 32px);
  --mat-dialog-content-padding: 20px 24px;
  --mat-dialog-headline-padding: 6px 24px 13px;
  --mat-dialog-with-actions-content-padding: 20px 24px 0;
  --mat-dialog-container-color: #121316;
  --mat-dialog-subhead-color: #e3e2e6;
  --mat-dialog-supporting-text-color: #e0e2ec;
  --mat-dialog-subhead-font: Roboto, sans-serif;
  --mat-dialog-subhead-line-height: 2rem;
  --mat-dialog-subhead-size: 1.5rem;
  --mat-dialog-subhead-tracking: 0;
  --mat-dialog-subhead-weight: 400;
  --mat-dialog-supporting-text-font: Roboto, sans-serif;
  --mat-dialog-supporting-text-line-height: 1.25rem;
  --mat-dialog-supporting-text-size: 0.875rem;
  --mat-dialog-supporting-text-tracking: 0.016rem;
  --mat-dialog-supporting-text-weight: 400;
  --mat-chip-container-shape-radius: 8px;
  --mat-chip-disabled-container-opacity: 1;
  --mat-chip-elevated-container-color: transparent;
  --mat-chip-flat-selected-outline-width: 0;
  --mat-chip-outline-width: 1px;
  --mat-chip-trailing-action-focus-opacity: 1;
  --mat-chip-trailing-action-opacity: 1;
  --mat-chip-with-avatar-avatar-shape-radius: 24px;
  --mat-chip-with-avatar-avatar-size: 24px;
  --mat-chip-with-avatar-disabled-avatar-opacity: 0.38;
  --mat-chip-with-icon-disabled-icon-opacity: 0.38;
  --mat-chip-with-icon-icon-size: 18px;
  --mat-chip-with-trailing-icon-disabled-trailing-icon-opacity: 0.38;
  --mat-chip-disabled-label-text-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-chip-disabled-outline-color: color-mix(in srgb, #e3e2e6 12%, transparent);
  --mat-chip-elevated-selected-container-color: #3e4759;
  --mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, #e3e2e6 12%, transparent);
  --mat-chip-focus-outline-color: #e0e2ec;
  --mat-chip-focus-state-layer-color: #e0e2ec;
  --mat-chip-focus-state-layer-opacity: 0.12;
  --mat-chip-hover-state-layer-color: #e0e2ec;
  --mat-chip-hover-state-layer-opacity: 0.08;
  --mat-chip-label-text-color: #e0e2ec;
  --mat-chip-outline-color: #8e9099;
  --mat-chip-selected-disabled-trailing-icon-color: #e3e2e6;
  --mat-chip-selected-focus-state-layer-color: #dae2f9;
  --mat-chip-selected-focus-state-layer-opacity: 0.12;
  --mat-chip-selected-hover-state-layer-color: #dae2f9;
  --mat-chip-selected-hover-state-layer-opacity: 0.08;
  --mat-chip-selected-label-text-color: #dae2f9;
  --mat-chip-selected-trailing-action-state-layer-color: #dae2f9;
  --mat-chip-selected-trailing-icon-color: #dae2f9;
  --mat-chip-trailing-action-focus-state-layer-opacity: 0.12;
  --mat-chip-trailing-action-hover-state-layer-opacity: 0.08;
  --mat-chip-trailing-action-state-layer-color: #e0e2ec;
  --mat-chip-with-icon-disabled-icon-color: #e3e2e6;
  --mat-chip-with-icon-icon-color: #e0e2ec;
  --mat-chip-with-icon-selected-icon-color: #dae2f9;
  --mat-chip-with-trailing-icon-disabled-trailing-icon-color: #e3e2e6;
  --mat-chip-with-trailing-icon-trailing-icon-color: #e0e2ec;
  --mat-chip-container-height: 28px;
  --mat-chip-label-text-font: Roboto, sans-serif;
  --mat-chip-label-text-line-height: 1.25rem;
  --mat-chip-label-text-size: 0.875rem;
  --mat-chip-label-text-tracking: 0.006rem;
  --mat-chip-label-text-weight: 500;
  --mat-slide-toggle-disabled-selected-handle-opacity: 1;
  --mat-slide-toggle-disabled-selected-icon-opacity: 0.38;
  --mat-slide-toggle-disabled-track-opacity: 0.12;
  --mat-slide-toggle-disabled-unselected-handle-opacity: 0.38;
  --mat-slide-toggle-disabled-unselected-icon-opacity: 0.38;
  --mat-slide-toggle-disabled-unselected-track-outline-width: 2px;
  --mat-slide-toggle-handle-shape: 9999px;
  --mat-slide-toggle-hidden-track-opacity: 0;
  --mat-slide-toggle-hidden-track-transition: opacity 75ms;
  --mat-slide-toggle-pressed-handle-size: 28px;
  --mat-slide-toggle-selected-handle-horizontal-margin: 0 24px;
  --mat-slide-toggle-selected-handle-size: 24px;
  --mat-slide-toggle-selected-icon-size: 16px;
  --mat-slide-toggle-selected-pressed-handle-horizontal-margin: 0 22px;
  --mat-slide-toggle-selected-track-outline-color: transparent;
  --mat-slide-toggle-selected-track-outline-width: 2px;
  --mat-slide-toggle-selected-with-icon-handle-horizontal-margin: 0 24px;
  --mat-slide-toggle-state-layer-size: 40px;
  --mat-slide-toggle-track-height: 32px;
  --mat-slide-toggle-track-outline-width: 2px;
  --mat-slide-toggle-track-shape: 9999px;
  --mat-slide-toggle-track-width: 52px;
  --mat-slide-toggle-unselected-handle-horizontal-margin: 0 8px;
  --mat-slide-toggle-unselected-handle-size: 16px;
  --mat-slide-toggle-unselected-icon-size: 16px;
  --mat-slide-toggle-unselected-pressed-handle-horizontal-margin: 0 2px;
  --mat-slide-toggle-unselected-with-icon-handle-horizontal-margin: 0 4px;
  --mat-slide-toggle-visible-track-opacity: 1;
  --mat-slide-toggle-visible-track-transition: opacity 75ms;
  --mat-slide-toggle-with-icon-handle-size: 24px;
  --mat-slide-toggle-touch-target-size: 48px;
  --mat-slide-toggle-disabled-label-text-color: #e3e2e6;
  --mat-slide-toggle-disabled-selected-handle-color: #121316;
  --mat-slide-toggle-disabled-selected-icon-color: #e3e2e6;
  --mat-slide-toggle-disabled-selected-track-color: #e3e2e6;
  --mat-slide-toggle-disabled-unselected-handle-color: #e3e2e6;
  --mat-slide-toggle-disabled-unselected-icon-color: #44474e;
  --mat-slide-toggle-disabled-unselected-track-color: #44474e;
  --mat-slide-toggle-disabled-unselected-track-outline-color: #e3e2e6;
  --mat-slide-toggle-label-text-color: #e3e2e6;
  --mat-slide-toggle-selected-focus-handle-color: #00458f;
  --mat-slide-toggle-selected-focus-state-layer-color: #abc7ff;
  --mat-slide-toggle-selected-focus-state-layer-opacity: 0.12;
  --mat-slide-toggle-selected-focus-track-color: #abc7ff;
  --mat-slide-toggle-selected-handle-color: #002f65;
  --mat-slide-toggle-selected-hover-handle-color: #00458f;
  --mat-slide-toggle-selected-hover-state-layer-color: #abc7ff;
  --mat-slide-toggle-selected-hover-state-layer-opacity: 0.08;
  --mat-slide-toggle-selected-hover-track-color: #abc7ff;
  --mat-slide-toggle-selected-icon-color: #d7e3ff;
  --mat-slide-toggle-selected-pressed-handle-color: #00458f;
  --mat-slide-toggle-selected-pressed-state-layer-color: #abc7ff;
  --mat-slide-toggle-selected-pressed-state-layer-opacity: 0.12;
  --mat-slide-toggle-selected-pressed-track-color: #abc7ff;
  --mat-slide-toggle-selected-track-color: #abc7ff;
  --mat-slide-toggle-track-outline-color: #8e9099;
  --mat-slide-toggle-unselected-focus-handle-color: #e0e2ec;
  --mat-slide-toggle-unselected-focus-state-layer-color: #e3e2e6;
  --mat-slide-toggle-unselected-focus-state-layer-opacity: 0.12;
  --mat-slide-toggle-unselected-focus-track-color: #44474e;
  --mat-slide-toggle-unselected-handle-color: #8e9099;
  --mat-slide-toggle-unselected-hover-handle-color: #e0e2ec;
  --mat-slide-toggle-unselected-hover-state-layer-color: #e3e2e6;
  --mat-slide-toggle-unselected-hover-state-layer-opacity: 0.08;
  --mat-slide-toggle-unselected-hover-track-color: #44474e;
  --mat-slide-toggle-unselected-icon-color: #44474e;
  --mat-slide-toggle-unselected-pressed-handle-color: #e0e2ec;
  --mat-slide-toggle-unselected-pressed-state-layer-color: #e3e2e6;
  --mat-slide-toggle-unselected-pressed-state-layer-opacity: 0.12;
  --mat-slide-toggle-unselected-pressed-track-color: #44474e;
  --mat-slide-toggle-unselected-track-color: #44474e;
  --mat-slide-toggle-touch-target-display: block;
  --mat-slide-toggle-label-text-font: Roboto, sans-serif;
  --mat-slide-toggle-label-text-line-height: 1.25rem;
  --mat-slide-toggle-label-text-size: 0.875rem;
  --mat-slide-toggle-label-text-tracking: 0.016rem;
  --mat-slide-toggle-label-text-weight: 400;
  --mat-radio-disabled-unselected-icon-opacity: 0.38;
  --mat-radio-disabled-selected-icon-opacity: 0.38;
  --mat-radio-touch-target-size: 48px;
  --mat-radio-checked-ripple-color: #abc7ff;
  --mat-radio-disabled-label-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-radio-disabled-selected-icon-color: #e3e2e6;
  --mat-radio-disabled-unselected-icon-color: #e3e2e6;
  --mat-radio-label-text-color: #e3e2e6;
  --mat-radio-ripple-color: #e3e2e6;
  --mat-radio-selected-focus-icon-color: #abc7ff;
  --mat-radio-selected-hover-icon-color: #abc7ff;
  --mat-radio-selected-icon-color: #abc7ff;
  --mat-radio-selected-pressed-icon-color: #abc7ff;
  --mat-radio-unselected-focus-icon-color: #e3e2e6;
  --mat-radio-unselected-hover-icon-color: #e3e2e6;
  --mat-radio-unselected-icon-color: #e0e2ec;
  --mat-radio-unselected-pressed-icon-color: #e3e2e6;
  --mat-radio-touch-target-display: block;
  --mat-radio-state-layer-size: 36px;
  --mat-radio-label-text-font: Roboto, sans-serif;
  --mat-radio-label-text-line-height: 1.25rem;
  --mat-radio-label-text-size: 0.875rem;
  --mat-radio-label-text-tracking: 0.016rem;
  --mat-radio-label-text-weight: 400;
  --mat-slider-value-indicator-opacity: 1;
  --mat-slider-value-indicator-padding: 0;
  --mat-slider-value-indicator-width: 28px;
  --mat-slider-value-indicator-height: 28px;
  --mat-slider-value-indicator-caret-display: none;
  --mat-slider-value-indicator-border-radius: 50% 50% 50% 0;
  --mat-slider-value-indicator-text-transform: rotate(45deg);
  --mat-slider-value-indicator-container-transform: translateX(-50%) rotate(-45deg);
  --mat-slider-active-track-height: 4px;
  --mat-slider-handle-height: 20px;
  --mat-slider-handle-width: 20px;
  --mat-slider-inactive-track-height: 4px;
  --mat-slider-with-overlap-handle-outline-width: 1px;
  --mat-slider-with-tick-marks-active-container-opacity: 0.38;
  --mat-slider-with-tick-marks-container-size: 2px;
  --mat-slider-with-tick-marks-inactive-container-opacity: 0.38;
  --mat-slider-value-indicator-transform-origin: 0 28px;
  --mat-slider-active-track-color: #abc7ff;
  --mat-slider-active-track-shape: 9999px;
  --mat-slider-disabled-active-track-color: #e3e2e6;
  --mat-slider-disabled-handle-color: #e3e2e6;
  --mat-slider-disabled-inactive-track-color: #e3e2e6;
  --mat-slider-focus-handle-color: #abc7ff;
  --mat-slider-focus-state-layer-color: color-mix(in srgb, #abc7ff 20%, transparent);
  --mat-slider-handle-color: #abc7ff;
  --mat-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-handle-shape: 9999px;
  --mat-slider-hover-handle-color: #abc7ff;
  --mat-slider-hover-state-layer-color: color-mix(in srgb, #abc7ff 5%, transparent);
  --mat-slider-inactive-track-color: #44474e;
  --mat-slider-inactive-track-shape: 9999px;
  --mat-slider-label-container-color: #abc7ff;
  --mat-slider-label-label-text-color: #002f65;
  --mat-slider-ripple-color: #abc7ff;
  --mat-slider-with-overlap-handle-outline-color: #002f65;
  --mat-slider-with-tick-marks-active-container-color: #002f65;
  --mat-slider-with-tick-marks-container-shape: 9999px;
  --mat-slider-with-tick-marks-disabled-container-color: #e3e2e6;
  --mat-slider-with-tick-marks-inactive-container-color: #e0e2ec;
  --mat-slider-label-label-text-font: Roboto, sans-serif;
  --mat-slider-label-label-text-line-height: 1rem;
  --mat-slider-label-label-text-size: 0.75rem;
  --mat-slider-label-label-text-tracking: 0.031rem;
  --mat-slider-label-label-text-weight: 500;
  --mat-menu-divider-bottom-spacing: 8px;
  --mat-menu-divider-top-spacing: 8px;
  --mat-menu-item-icon-size: 24px;
  --mat-menu-item-spacing: 12px;
  --mat-menu-item-leading-spacing: 12px;
  --mat-menu-item-trailing-spacing: 12px;
  --mat-menu-item-with-icon-leading-spacing: 12px;
  --mat-menu-item-with-icon-trailing-spacing: 12px;
  --mat-menu-container-shape: 4px;
  --mat-menu-divider-color: #44474e;
  --mat-menu-item-label-text-color: #e3e2e6;
  --mat-menu-item-icon-color: #e0e2ec;
  --mat-menu-item-hover-state-layer-color: color-mix(in srgb, #e3e2e6 8%, transparent);
  --mat-menu-item-focus-state-layer-color: color-mix(in srgb, #e3e2e6 12%, transparent);
  --mat-menu-container-color: #1f2022;
  --mat-menu-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);
  --mat-menu-item-label-text-font: Roboto, sans-serif;
  --mat-menu-item-label-text-line-height: 1.25rem;
  --mat-menu-item-label-text-size: 0.875rem;
  --mat-menu-item-label-text-tracking: 0.006rem;
  --mat-menu-item-label-text-weight: 500;
  --mat-list-active-indicator-color: #3e4759;
  --mat-list-active-indicator-shape: 9999px;
  --mat-list-list-item-container-color: transparent;
  --mat-list-list-item-container-shape: 0;
  --mat-list-list-item-disabled-label-text-color: #e3e2e6;
  --mat-list-list-item-disabled-label-text-opacity: 0.3;
  --mat-list-list-item-disabled-leading-icon-color: #e3e2e6;
  --mat-list-list-item-disabled-leading-icon-opacity: 0.38;
  --mat-list-list-item-disabled-state-layer-color: #e3e2e6;
  --mat-list-list-item-disabled-state-layer-opacity: 0.12;
  --mat-list-list-item-disabled-trailing-icon-color: #e3e2e6;
  --mat-list-list-item-disabled-trailing-icon-opacity: 0.38;
  --mat-list-list-item-focus-label-text-color: #e3e2e6;
  --mat-list-list-item-focus-state-layer-color: #e3e2e6;
  --mat-list-list-item-focus-state-layer-opacity: 0.12;
  --mat-list-list-item-hover-label-text-color: #e3e2e6;
  --mat-list-list-item-hover-state-layer-color: #e3e2e6;
  --mat-list-list-item-hover-state-layer-opacity: 0.08;
  --mat-list-list-item-label-text-color: #e3e2e6;
  --mat-list-list-item-leading-avatar-color: #00458f;
  --mat-list-list-item-leading-avatar-shape: 9999px;
  --mat-list-list-item-leading-avatar-size: 40px;
  --mat-list-list-item-leading-icon-color: #e0e2ec;
  --mat-list-list-item-leading-icon-size: 24px;
  --mat-list-list-item-selected-trailing-icon-color: #abc7ff;
  --mat-list-list-item-supporting-text-color: #e0e2ec;
  --mat-list-list-item-trailing-icon-color: #e0e2ec;
  --mat-list-list-item-trailing-icon-size: 24px;
  --mat-list-list-item-trailing-supporting-text-color: #e0e2ec;
  --mat-list-list-item-leading-icon-start-space: 12px;
  --mat-list-list-item-leading-icon-end-space: 12px;
  --mat-list-list-item-one-line-container-height: 44px;
  --mat-list-list-item-two-line-container-height: 60px;
  --mat-list-list-item-three-line-container-height: 84px;
  --mat-list-list-item-label-text-font: Roboto, sans-serif;
  --mat-list-list-item-label-text-line-height: 1.5rem;
  --mat-list-list-item-label-text-size: 1rem;
  --mat-list-list-item-label-text-tracking: 0.031rem;
  --mat-list-list-item-label-text-weight: 400;
  --mat-list-list-item-supporting-text-font: Roboto, sans-serif;
  --mat-list-list-item-supporting-text-line-height: 1.25rem;
  --mat-list-list-item-supporting-text-size: 0.875rem;
  --mat-list-list-item-supporting-text-tracking: 0.016rem;
  --mat-list-list-item-supporting-text-weight: 400;
  --mat-list-list-item-trailing-supporting-text-font: Roboto, sans-serif;
  --mat-list-list-item-trailing-supporting-text-line-height: 1rem;
  --mat-list-list-item-trailing-supporting-text-size: 0.688rem;
  --mat-list-list-item-trailing-supporting-text-tracking: 0.031rem;
  --mat-list-list-item-trailing-supporting-text-weight: 500;
  --mat-paginator-page-size-select-width: 84px;
  --mat-paginator-page-size-select-touch-target-height: 48px;
  --mat-paginator-container-text-color: #e3e2e6;
  --mat-paginator-container-background-color: #121316;
  --mat-paginator-disabled-icon-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-paginator-enabled-icon-color: #e0e2ec;
  --mat-paginator-container-size: 52px;
  --mat-paginator-form-field-container-height: 40px;
  --mat-paginator-form-field-container-vertical-padding: 8px;
  --mat-paginator-touch-target-display: block;
  --mat-paginator-container-text-font: Roboto, sans-serif;
  --mat-paginator-container-text-line-height: 1rem;
  --mat-paginator-container-text-size: 0.75rem;
  --mat-paginator-container-text-tracking: 0.025rem;
  --mat-paginator-container-text-weight: 400;
  --mat-paginator-select-trigger-text-size: 0.75rem;
  --mat-tab-active-indicator-height: 2px;
  --mat-tab-active-indicator-shape: 0;
  --mat-tab-divider-height: 1px;
  --mat-tab-active-focus-indicator-color: #abc7ff;
  --mat-tab-active-focus-label-text-color: #e3e2e6;
  --mat-tab-active-hover-indicator-color: #abc7ff;
  --mat-tab-active-hover-label-text-color: #e3e2e6;
  --mat-tab-active-indicator-color: #abc7ff;
  --mat-tab-active-label-text-color: #e3e2e6;
  --mat-tab-active-ripple-color: #e3e2e6;
  --mat-tab-divider-color: #44474e;
  --mat-tab-inactive-focus-label-text-color: #e3e2e6;
  --mat-tab-inactive-hover-label-text-color: #e3e2e6;
  --mat-tab-inactive-label-text-color: #e3e2e6;
  --mat-tab-inactive-ripple-color: #e3e2e6;
  --mat-tab-pagination-icon-color: #e3e2e6;
  --mat-tab-disabled-ripple-color: #e0e2ec;
  --mat-tab-container-height: 44px;
  --mat-tab-label-text-font: Roboto, sans-serif;
  --mat-tab-label-text-line-height: 1.25rem;
  --mat-tab-label-text-size: 0.875rem;
  --mat-tab-label-text-tracking: 0.006rem;
  --mat-tab-label-text-weight: 500;
  --mat-checkbox-selected-focus-state-layer-opacity: 0.12;
  --mat-checkbox-selected-hover-state-layer-opacity: 0.08;
  --mat-checkbox-selected-pressed-state-layer-opacity: 0.12;
  --mat-checkbox-unselected-focus-state-layer-opacity: 0.12;
  --mat-checkbox-unselected-hover-state-layer-opacity: 0.08;
  --mat-checkbox-unselected-pressed-state-layer-opacity: 0.12;
  --mat-checkbox-touch-target-size: 48px;
  --mat-checkbox-disabled-label-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-checkbox-disabled-selected-checkmark-color: #121316;
  --mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-checkbox-label-text-color: #e3e2e6;
  --mat-checkbox-selected-checkmark-color: #002f65;
  --mat-checkbox-selected-focus-icon-color: #abc7ff;
  --mat-checkbox-selected-focus-state-layer-color: #abc7ff;
  --mat-checkbox-selected-hover-icon-color: #abc7ff;
  --mat-checkbox-selected-hover-state-layer-color: #abc7ff;
  --mat-checkbox-selected-icon-color: #abc7ff;
  --mat-checkbox-selected-pressed-icon-color: #abc7ff;
  --mat-checkbox-selected-pressed-state-layer-color: #e3e2e6;
  --mat-checkbox-unselected-focus-icon-color: #e3e2e6;
  --mat-checkbox-unselected-focus-state-layer-color: #e3e2e6;
  --mat-checkbox-unselected-hover-icon-color: #e3e2e6;
  --mat-checkbox-unselected-hover-state-layer-color: #e3e2e6;
  --mat-checkbox-unselected-icon-color: #e0e2ec;
  --mat-checkbox-unselected-pressed-state-layer-color: #abc7ff;
  --mat-checkbox-touch-target-display: block;
  --mat-checkbox-state-layer-size: 36px;
  --mat-checkbox-label-text-font: Roboto, sans-serif;
  --mat-checkbox-label-text-line-height: 1.25rem;
  --mat-checkbox-label-text-size: 0.875rem;
  --mat-checkbox-label-text-tracking: 0.016rem;
  --mat-checkbox-label-text-weight: 400;
  --mat-button-filled-container-shape: 9999px;
  --mat-button-filled-horizontal-padding: 24px;
  --mat-button-filled-icon-offset: -8px;
  --mat-button-filled-icon-spacing: 8px;
  --mat-button-filled-touch-target-size: 48px;
  --mat-button-outlined-container-shape: 9999px;
  --mat-button-outlined-horizontal-padding: 24px;
  --mat-button-outlined-icon-offset: -8px;
  --mat-button-outlined-icon-spacing: 8px;
  --mat-button-outlined-outline-width: 1px;
  --mat-button-outlined-touch-target-size: 48px;
  --mat-button-protected-container-shape: 9999px;
  --mat-button-protected-horizontal-padding: 24px;
  --mat-button-protected-icon-offset: -8px;
  --mat-button-protected-icon-spacing: 8px;
  --mat-button-protected-touch-target-size: 48px;
  --mat-button-text-container-shape: 9999px;
  --mat-button-text-horizontal-padding: 12px;
  --mat-button-text-icon-offset: -4px;
  --mat-button-text-icon-spacing: 8px;
  --mat-button-text-with-icon-horizontal-padding: 16px;
  --mat-button-text-touch-target-size: 48px;
  --mat-button-tonal-container-shape: 9999px;
  --mat-button-tonal-horizontal-padding: 24px;
  --mat-button-tonal-icon-offset: -8px;
  --mat-button-tonal-icon-spacing: 8px;
  --mat-button-tonal-touch-target-size: 48px;
  --mat-button-filled-container-color: #abc7ff;
  --mat-button-filled-disabled-container-color: color-mix(in srgb, #e3e2e6 12%, transparent);
  --mat-button-filled-disabled-label-text-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-button-filled-disabled-state-layer-color: #e0e2ec;
  --mat-button-filled-focus-state-layer-opacity: 0.12;
  --mat-button-filled-hover-state-layer-opacity: 0.08;
  --mat-button-filled-label-text-color: #002f65;
  --mat-button-filled-pressed-state-layer-opacity: 0.12;
  --mat-button-filled-ripple-color: color-mix(in srgb, #002f65 12%, transparent);
  --mat-button-filled-state-layer-color: #002f65;
  --mat-button-outlined-disabled-label-text-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-button-outlined-disabled-outline-color: color-mix(in srgb, #e3e2e6 12%, transparent);
  --mat-button-outlined-disabled-state-layer-color: #e0e2ec;
  --mat-button-outlined-focus-state-layer-opacity: 0.12;
  --mat-button-outlined-hover-state-layer-opacity: 0.08;
  --mat-button-outlined-label-text-color: #abc7ff;
  --mat-button-outlined-outline-color: #8e9099;
  --mat-button-outlined-pressed-state-layer-opacity: 0.12;
  --mat-button-outlined-ripple-color: color-mix(in srgb, #abc7ff 12%, transparent);
  --mat-button-outlined-state-layer-color: #abc7ff;
  --mat-button-protected-container-color: #121316;
  --mat-button-protected-container-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);
  --mat-button-protected-disabled-container-color: color-mix(in srgb, #e3e2e6 12%, transparent);
  --mat-button-protected-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);
  --mat-button-protected-disabled-label-text-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-button-protected-disabled-state-layer-color: #e0e2ec;
  --mat-button-protected-focus-container-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);
  --mat-button-protected-focus-state-layer-opacity: 0.12;
  --mat-button-protected-hover-container-elevation-shadow:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-button-protected-hover-state-layer-opacity: 0.08;
  --mat-button-protected-label-text-color: #abc7ff;
  --mat-button-protected-pressed-container-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);
  --mat-button-protected-pressed-state-layer-opacity: 0.12;
  --mat-button-protected-ripple-color: color-mix(in srgb, #abc7ff 12%, transparent);
  --mat-button-protected-state-layer-color: #abc7ff;
  --mat-button-text-disabled-label-text-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-button-text-disabled-state-layer-color: #e0e2ec;
  --mat-button-text-focus-state-layer-opacity: 0.12;
  --mat-button-text-hover-state-layer-opacity: 0.08;
  --mat-button-text-label-text-color: #abc7ff;
  --mat-button-text-pressed-state-layer-opacity: 0.12;
  --mat-button-text-ripple-color: color-mix(in srgb, #abc7ff 12%, transparent);
  --mat-button-text-state-layer-color: #abc7ff;
  --mat-button-tonal-container-color: #3e4759;
  --mat-button-tonal-disabled-container-color: color-mix(in srgb, #e3e2e6 12%, transparent);
  --mat-button-tonal-disabled-label-text-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-button-tonal-disabled-state-layer-color: #e0e2ec;
  --mat-button-tonal-focus-state-layer-opacity: 0.12;
  --mat-button-tonal-hover-state-layer-opacity: 0.08;
  --mat-button-tonal-label-text-color: #dae2f9;
  --mat-button-tonal-pressed-state-layer-opacity: 0.12;
  --mat-button-tonal-ripple-color: color-mix(in srgb, #dae2f9 12%, transparent);
  --mat-button-tonal-state-layer-color: #dae2f9;
  --mat-button-filled-touch-target-display: block;
  --mat-button-filled-container-height: 36px;
  --mat-button-outlined-container-height: 36px;
  --mat-button-outlined-touch-target-display: block;
  --mat-button-protected-touch-target-display: block;
  --mat-button-protected-container-height: 36px;
  --mat-button-text-touch-target-display: block;
  --mat-button-text-container-height: 36px;
  --mat-button-tonal-container-height: 36px;
  --mat-button-tonal-touch-target-display: block;
  --mat-button-filled-label-text-font: Roboto, sans-serif;
  --mat-button-filled-label-text-size: 0.875rem;
  --mat-button-filled-label-text-tracking: 0.006rem;
  --mat-button-filled-label-text-weight: 500;
  --mat-button-outlined-label-text-font: Roboto, sans-serif;
  --mat-button-outlined-label-text-size: 0.875rem;
  --mat-button-outlined-label-text-tracking: 0.006rem;
  --mat-button-outlined-label-text-weight: 500;
  --mat-button-protected-label-text-font: Roboto, sans-serif;
  --mat-button-protected-label-text-size: 0.875rem;
  --mat-button-protected-label-text-tracking: 0.006rem;
  --mat-button-protected-label-text-weight: 500;
  --mat-button-text-label-text-font: Roboto, sans-serif;
  --mat-button-text-label-text-size: 0.875rem;
  --mat-button-text-label-text-tracking: 0.006rem;
  --mat-button-text-label-text-weight: 500;
  --mat-button-tonal-label-text-font: Roboto, sans-serif;
  --mat-button-tonal-label-text-size: 0.875rem;
  --mat-button-tonal-label-text-tracking: 0.006rem;
  --mat-button-tonal-label-text-weight: 500;
  --mat-icon-button-icon-size: 24px;
  --mat-icon-button-container-shape: 9999px;
  --mat-icon-button-touch-target-size: 48px;
  --mat-icon-button-disabled-icon-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-icon-button-disabled-state-layer-color: #e0e2ec;
  --mat-icon-button-focus-state-layer-opacity: 0.12;
  --mat-icon-button-hover-state-layer-opacity: 0.08;
  --mat-icon-button-icon-color: #e0e2ec;
  --mat-icon-button-pressed-state-layer-opacity: 0.12;
  --mat-icon-button-ripple-color: color-mix(in srgb, #e0e2ec 12%, transparent);
  --mat-icon-button-state-layer-color: #e0e2ec;
  --mat-icon-button-touch-target-display: block;
  --mat-icon-button-state-layer-size: 36px;
  --mat-fab-container-shape: 16px;
  --mat-fab-extended-container-height: 56px;
  --mat-fab-extended-container-shape: 16px;
  --mat-fab-small-container-shape: 12px;
  --mat-fab-touch-target-size: 48px;
  --mat-fab-small-touch-target-size: 48px;
  --mat-fab-container-color: #00458f;
  --mat-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);
  --mat-fab-disabled-state-container-color: color-mix(in srgb, #e3e2e6 12%, transparent);
  --mat-fab-disabled-state-foreground-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-fab-extended-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);
  --mat-fab-extended-focus-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);
  --mat-fab-extended-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);
  --mat-fab-extended-pressed-container-elevation-shadow: 6;
  --mat-fab-focus-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);
  --mat-fab-focus-state-layer-opacity: 0.12;
  --mat-fab-foreground-color: #d7e3ff;
  --mat-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);
  --mat-fab-hover-state-layer-opacity: 0.08;
  --mat-fab-pressed-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);
  --mat-fab-pressed-state-layer-opacity: 0.12;
  --mat-fab-ripple-color: color-mix(in srgb, #d7e3ff 12%, transparent);
  --mat-fab-small-container-color: #00458f;
  --mat-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);
  --mat-fab-small-disabled-state-container-color: color-mix(in srgb, #e3e2e6 12%, transparent);
  --mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-fab-small-focus-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);
  --mat-fab-small-focus-state-layer-opacity: 0.12;
  --mat-fab-small-foreground-color: #d7e3ff;
  --mat-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);
  --mat-fab-small-hover-state-layer-opacity: 0.08;
  --mat-fab-small-pressed-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);
  --mat-fab-small-pressed-state-layer-opacity: 0.12;
  --mat-fab-small-ripple-color: color-mix(in srgb, #d7e3ff 12%, transparent);
  --mat-fab-small-state-layer-color: #d7e3ff;
  --mat-fab-state-layer-color: #d7e3ff;
  --mat-fab-touch-target-display: block;
  --mat-fab-extended-label-text-font: Roboto, sans-serif;
  --mat-fab-extended-label-text-size: 0.875rem;
  --mat-fab-extended-label-text-tracking: 0.006rem;
  --mat-fab-extended-label-text-weight: 500;
  --mat-snack-bar-container-shape: 4px;
  --mat-snack-bar-button-color: #005cbb;
  --mat-snack-bar-container-color: #e3e2e6;
  --mat-snack-bar-supporting-text-color: #2f3033;
  --mat-snack-bar-supporting-text-font: Roboto, sans-serif;
  --mat-snack-bar-supporting-text-line-height: 1.25rem;
  --mat-snack-bar-supporting-text-size: 0.875rem;
  --mat-snack-bar-supporting-text-weight: 400;
  --mat-table-row-item-outline-width: 1px;
  --mat-table-background-color: #121316;
  --mat-table-header-headline-color: #e3e2e6;
  --mat-table-row-item-label-text-color: #e3e2e6;
  --mat-table-row-item-outline-color: #8e9099;
  --mat-table-header-container-height: 52px;
  --mat-table-footer-container-height: 48px;
  --mat-table-row-item-container-height: 48px;
  --mat-table-header-headline-font: Roboto, sans-serif;
  --mat-table-header-headline-line-height: 1.25rem;
  --mat-table-header-headline-size: 0.875rem;
  --mat-table-header-headline-tracking: 0.006rem;
  --mat-table-header-headline-weight: 500;
  --mat-table-row-item-label-text-font: Roboto, sans-serif;
  --mat-table-row-item-label-text-line-height: 1.25rem;
  --mat-table-row-item-label-text-size: 0.875rem;
  --mat-table-row-item-label-text-tracking: 0.016rem;
  --mat-table-row-item-label-text-weight: 400;
  --mat-table-footer-supporting-text-font: Roboto, sans-serif;
  --mat-table-footer-supporting-text-line-height: 1.25rem;
  --mat-table-footer-supporting-text-size: 0.875rem;
  --mat-table-footer-supporting-text-tracking: 0.016rem;
  --mat-table-footer-supporting-text-weight: 400;
  --mat-progress-spinner-size: 48px;
  --mat-progress-spinner-active-indicator-width: 4px;
  --mat-progress-spinner-active-indicator-color: #abc7ff;
  --mat-badge-container-offset: -12px 0;
  --mat-badge-container-overlap-offset: -12px;
  --mat-badge-container-padding: 0 4px;
  --mat-badge-container-shape: 9999px;
  --mat-badge-container-size: 16px;
  --mat-badge-large-size-container-offset: -12px 0;
  --mat-badge-large-size-container-overlap-offset: -12px;
  --mat-badge-large-size-container-padding: 0 4px;
  --mat-badge-large-size-container-size: 16px;
  --mat-badge-legacy-container-size: unset;
  --mat-badge-legacy-large-size-container-size: unset;
  --mat-badge-legacy-small-size-container-size: unset;
  --mat-badge-small-size-container-offset: -6px 0;
  --mat-badge-small-size-container-overlap-offset: -6px;
  --mat-badge-small-size-container-padding: 0;
  --mat-badge-small-size-container-size: 6px;
  --mat-badge-background-color: #ffb4ab;
  --mat-badge-disabled-state-background-color: color-mix(in srgb, #ffb4ab 38%, transparent);
  --mat-badge-disabled-state-text-color: #690005;
  --mat-badge-text-color: #690005;
  --mat-badge-large-size-line-height: 16px;
  --mat-badge-large-size-text-size: 0.688rem;
  --mat-badge-line-height: 16px;
  --mat-badge-small-size-line-height: 6px;
  --mat-badge-small-size-text-size: 0;
  --mat-badge-text-font: Roboto, sans-serif;
  --mat-badge-text-size: 0.688rem;
  --mat-badge-text-weight: 500;
  --mat-bottom-sheet-container-shape: 28px;
  --mat-bottom-sheet-container-text-color: #e3e2e6;
  --mat-bottom-sheet-container-background-color: #1a1b1f;
  --mat-bottom-sheet-container-text-font: Roboto, sans-serif;
  --mat-bottom-sheet-container-text-line-height: 1.5rem;
  --mat-bottom-sheet-container-text-size: 1rem;
  --mat-bottom-sheet-container-text-tracking: 0.031rem;
  --mat-bottom-sheet-container-text-weight: 400;
  --mat-button-toggle-focus-state-layer-opacity: 0.12;
  --mat-button-toggle-hover-state-layer-opacity: 0.08;
  --mat-button-toggle-shape: 28px;
  --mat-button-toggle-background-color: transparent;
  --mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, #e3e2e6 12%, transparent);
  --mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-button-toggle-disabled-state-background-color: transparent;
  --mat-button-toggle-disabled-state-text-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-button-toggle-divider-color: #8e9099;
  --mat-button-toggle-selected-state-background-color: #3e4759;
  --mat-button-toggle-selected-state-text-color: #dae2f9;
  --mat-button-toggle-state-layer-color: #e3e2e6;
  --mat-button-toggle-text-color: #e3e2e6;
  --mat-button-toggle-height: 40px;
  --mat-button-toggle-label-text-font: Roboto, sans-serif;
  --mat-button-toggle-label-text-line-height: 1.25rem;
  --mat-button-toggle-label-text-size: 0.875rem;
  --mat-button-toggle-label-text-tracking: 0.006rem;
  --mat-button-toggle-label-text-weight: 500;
  --mat-datepicker-calendar-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);
  --mat-datepicker-calendar-container-shape: 16px;
  --mat-datepicker-calendar-container-touch-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);
  --mat-datepicker-calendar-container-touch-shape: 28px;
  --mat-datepicker-calendar-body-label-text-color: #e3e2e6;
  --mat-datepicker-calendar-container-background-color: #292a2c;
  --mat-datepicker-calendar-container-text-color: #e3e2e6;
  --mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #e3e2e6 12%, transparent);
  --mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #e3e2e6 8%, transparent);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: #0000ef;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #bec6dc;
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #3e4759;
  --mat-datepicker-calendar-date-in-range-state-background-color: #00458f;
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-preview-state-outline-color: #abc7ff;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-datepicker-calendar-date-selected-state-background-color: #abc7ff;
  --mat-datepicker-calendar-date-selected-state-text-color: #002f65;
  --mat-datepicker-calendar-date-text-color: #e3e2e6;
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-datepicker-calendar-date-today-outline-color: #abc7ff;
  --mat-datepicker-calendar-date-today-selected-state-outline-color: #abc7ff;
  --mat-datepicker-calendar-header-divider-color: transparent;
  --mat-datepicker-calendar-header-text-color: #e0e2ec;
  --mat-datepicker-calendar-navigation-button-icon-color: #e0e2ec;
  --mat-datepicker-calendar-period-button-icon-color: #e0e2ec;
  --mat-datepicker-calendar-period-button-text-color: #e0e2ec;
  --mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-datepicker-range-input-separator-color: #e3e2e6;
  --mat-datepicker-toggle-active-state-icon-color: #abc7ff;
  --mat-datepicker-toggle-icon-color: #e0e2ec;
  --mat-datepicker-calendar-body-label-text-size: 0.875rem;
  --mat-datepicker-calendar-body-label-text-weight: 500;
  --mat-datepicker-calendar-header-text-size: 0.875rem;
  --mat-datepicker-calendar-header-text-weight: 500;
  --mat-datepicker-calendar-period-button-text-size: 0.875rem;
  --mat-datepicker-calendar-period-button-text-weight: 500;
  --mat-datepicker-calendar-text-font: Roboto, sans-serif;
  --mat-datepicker-calendar-text-size: 0.875rem;
  --mat-divider-width: 1px;
  --mat-divider-color: #44474e;
  --mat-expansion-container-shape: 12px;
  --mat-expansion-header-indicator-display: inline-block;
  --mat-expansion-legacy-header-indicator-display: none;
  --mat-expansion-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);
  --mat-expansion-actions-divider-color: #8e9099;
  --mat-expansion-container-background-color: #121316;
  --mat-expansion-container-text-color: #e3e2e6;
  --mat-expansion-header-description-color: #e0e2ec;
  --mat-expansion-header-disabled-state-text-color: color-mix(in srgb, #e3e2e6 38%, transparent);
  --mat-expansion-header-focus-state-layer-color: color-mix(in srgb, #e3e2e6 12%, transparent);
  --mat-expansion-header-hover-state-layer-color: color-mix(in srgb, #e3e2e6 8%, transparent);
  --mat-expansion-header-indicator-color: #e0e2ec;
  --mat-expansion-header-text-color: #e3e2e6;
  --mat-expansion-header-collapsed-state-height: 44px;
  --mat-expansion-header-expanded-state-height: 60px;
  --mat-expansion-container-text-font: Roboto, sans-serif;
  --mat-expansion-container-text-line-height: 1.5rem;
  --mat-expansion-container-text-size: 1rem;
  --mat-expansion-container-text-tracking: 0.031rem;
  --mat-expansion-container-text-weight: 400;
  --mat-expansion-header-text-font: Roboto, sans-serif;
  --mat-expansion-header-text-line-height: 1.5rem;
  --mat-expansion-header-text-size: 1rem;
  --mat-expansion-header-text-tracking: 0.009rem;
  --mat-expansion-header-text-weight: 500;
  --mat-grid-list-tile-header-primary-text-size: 400 1rem / 1.5rem Roboto, sans-serif;
  --mat-grid-list-tile-header-secondary-text-size: 400 0.875rem / 1.25rem Roboto, sans-serif;
  --mat-grid-list-tile-footer-primary-text-size: 400 1rem / 1.5rem Roboto, sans-serif;
  --mat-grid-list-tile-footer-secondary-text-size: 400 0.875rem / 1.25rem Roboto, sans-serif;
  --mat-icon-color: inherit;
  --mat-sidenav-container-shape: 16px;
  --mat-sidenav-container-elevation-shadow: none;
  --mat-sidenav-container-width: 360px;
  --mat-sidenav-container-divider-color: transparent;
  --mat-sidenav-container-background-color: #121316;
  --mat-sidenav-container-text-color: #e0e2ec;
  --mat-sidenav-content-background-color: #121316;
  --mat-sidenav-content-text-color: #e3e2e6;
  --mat-sidenav-scrim-color: color-mix(in srgb, #2d3038 40%, transparent);
  --mat-stepper-header-error-state-icon-background-color: transparent;
  --mat-stepper-header-focus-state-layer-shape: 12px;
  --mat-stepper-header-hover-state-layer-shape: 12px;
  --mat-stepper-container-color: #121316;
  --mat-stepper-header-done-state-icon-background-color: #abc7ff;
  --mat-stepper-header-done-state-icon-foreground-color: #002f65;
  --mat-stepper-header-edit-state-icon-background-color: #abc7ff;
  --mat-stepper-header-edit-state-icon-foreground-color: #002f65;
  --mat-stepper-header-error-state-icon-foreground-color: #ffb4ab;
  --mat-stepper-header-error-state-label-text-color: #ffb4ab;
  --mat-stepper-header-focus-state-layer-color: color-mix(in srgb, #e3e2e6 12%, transparent);
  --mat-stepper-header-hover-state-layer-color: color-mix(in srgb, #e3e2e6 8%, transparent);
  --mat-stepper-header-icon-background-color: #e0e2ec;
  --mat-stepper-header-icon-foreground-color: #121316;
  --mat-stepper-header-label-text-color: #e0e2ec;
  --mat-stepper-header-optional-label-text-color: #e0e2ec;
  --mat-stepper-header-selected-state-icon-background-color: #abc7ff;
  --mat-stepper-header-selected-state-icon-foreground-color: #002f65;
  --mat-stepper-header-selected-state-label-text-color: #e0e2ec;
  --mat-stepper-line-color: #8e9099;
  --mat-stepper-header-height: 68px;
  --mat-stepper-container-text-font: Roboto, sans-serif;
  --mat-stepper-header-label-text-font: Roboto, sans-serif;
  --mat-stepper-header-label-text-size: 0.875rem;
  --mat-stepper-header-label-text-weight: 500;
  --mat-stepper-header-error-state-label-text-size: 0.875rem;
  --mat-stepper-header-selected-state-label-text-size: 0.875rem;
  --mat-stepper-header-selected-state-label-text-weight: 500;
  --mat-stepper-header-height: 68px;
  --mat-sort-arrow-color: #e3e2e6;
  --mat-toolbar-container-background-color: #121316;
  --mat-toolbar-container-text-color: #e3e2e6;
  --mat-toolbar-standard-height: 60px;
  --mat-toolbar-mobile-height: 52px;
  --mat-toolbar-title-text-font: Roboto, sans-serif;
  --mat-toolbar-title-text-line-height: 1.75rem;
  --mat-toolbar-title-text-size: 1.375rem;
  --mat-toolbar-title-text-tracking: 0;
  --mat-toolbar-title-text-weight: 400;
  --mat-tree-container-background-color: #121316;
  --mat-tree-node-text-color: #e3e2e6;
  --mat-tree-node-min-height: 44px;
  --mat-tree-node-text-font: Roboto, sans-serif;
  --mat-tree-node-text-size: 1rem;
  --mat-tree-node-text-weight: 400;
  --mat-timepicker-container-shape: 4px;
  --mat-timepicker-container-background-color: #1f2022;
  --mat-timepicker-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);
  --mat-sys-background: #121316;
  --mat-sys-error: #ffb4ab;
  --mat-sys-error-container: #93000a;
  --mat-sys-inverse-on-surface: #2f3033;
  --mat-sys-inverse-primary: #005cbb;
  --mat-sys-inverse-surface: #e3e2e6;
  --mat-sys-on-background: #e3e2e6;
  --mat-sys-on-error: #690005;
  --mat-sys-on-error-container: #ffdad6;
  --mat-sys-on-primary: #002f65;
  --mat-sys-on-primary-container: #d7e3ff;
  --mat-sys-on-primary-fixed: #001b3f;
  --mat-sys-on-primary-fixed-variant: #00458f;
  --mat-sys-on-secondary: #283041;
  --mat-sys-on-secondary-container: #dae2f9;
  --mat-sys-on-secondary-fixed: #131c2b;
  --mat-sys-on-secondary-fixed-variant: #3e4759;
  --mat-sys-on-surface: #e3e2e6;
  --mat-sys-on-surface-variant: #e0e2ec;
  --mat-sys-on-tertiary: #0001ac;
  --mat-sys-on-tertiary-container: #e0e0ff;
  --mat-sys-on-tertiary-fixed: #00006e;
  --mat-sys-on-tertiary-fixed-variant: #0000ef;
  --mat-sys-outline: #8e9099;
  --mat-sys-outline-variant: #44474e;
  --mat-sys-primary: #abc7ff;
  --mat-sys-primary-container: #00458f;
  --mat-sys-primary-fixed: #d7e3ff;
  --mat-sys-primary-fixed-dim: #abc7ff;
  --mat-sys-scrim: #000000;
  --mat-sys-secondary: #bec6dc;
  --mat-sys-secondary-container: #3e4759;
  --mat-sys-secondary-fixed: #dae2f9;
  --mat-sys-secondary-fixed-dim: #bec6dc;
  --mat-sys-shadow: #000000;
  --mat-sys-surface: #121316;
  --mat-sys-surface-bright: #38393c;
  --mat-sys-surface-container: #1f2022;
  --mat-sys-surface-container-high: #292a2c;
  --mat-sys-surface-container-highest: #343537;
  --mat-sys-surface-container-low: #1a1b1f;
  --mat-sys-surface-container-lowest: #0d0e11;
  --mat-sys-surface-dim: #121316;
  --mat-sys-surface-tint: #abc7ff;
  --mat-sys-surface-variant: #44474e;
  --mat-sys-tertiary: #bec2ff;
  --mat-sys-tertiary-container: #0000ef;
  --mat-sys-tertiary-fixed: #e0e0ff;
  --mat-sys-tertiary-fixed-dim: #bec2ff;
  --mat-sys-neutral-variant20: #2d3038;
  --mat-sys-neutral10: #1a1b1f;
  --mat-sys-body-large: 400 1rem / 1.5rem Roboto, sans-serif;
  --mat-sys-body-large-font: Roboto, sans-serif;
  --mat-sys-body-large-line-height: 1.5rem;
  --mat-sys-body-large-size: 1rem;
  --mat-sys-body-large-tracking: 0.031rem;
  --mat-sys-body-large-weight: 400;
  --mat-sys-body-medium: 400 0.875rem / 1.25rem Roboto, sans-serif;
  --mat-sys-body-medium-font: Roboto, sans-serif;
  --mat-sys-body-medium-line-height: 1.25rem;
  --mat-sys-body-medium-size: 0.875rem;
  --mat-sys-body-medium-tracking: 0.016rem;
  --mat-sys-body-medium-weight: 400;
  --mat-sys-body-small: 400 0.75rem / 1rem Roboto, sans-serif;
  --mat-sys-body-small-font: Roboto, sans-serif;
  --mat-sys-body-small-line-height: 1rem;
  --mat-sys-body-small-size: 0.75rem;
  --mat-sys-body-small-tracking: 0.025rem;
  --mat-sys-body-small-weight: 400;
  --mat-sys-display-large: 400 3.562rem / 4rem Roboto, sans-serif;
  --mat-sys-display-large-font: Roboto, sans-serif;
  --mat-sys-display-large-line-height: 4rem;
  --mat-sys-display-large-size: 3.562rem;
  --mat-sys-display-large-tracking: -0.016rem;
  --mat-sys-display-large-weight: 400;
  --mat-sys-display-medium: 400 2.812rem / 3.25rem Roboto, sans-serif;
  --mat-sys-display-medium-font: Roboto, sans-serif;
  --mat-sys-display-medium-line-height: 3.25rem;
  --mat-sys-display-medium-size: 2.812rem;
  --mat-sys-display-medium-tracking: 0;
  --mat-sys-display-medium-weight: 400;
  --mat-sys-display-small: 400 2.25rem / 2.75rem Roboto, sans-serif;
  --mat-sys-display-small-font: Roboto, sans-serif;
  --mat-sys-display-small-line-height: 2.75rem;
  --mat-sys-display-small-size: 2.25rem;
  --mat-sys-display-small-tracking: 0;
  --mat-sys-display-small-weight: 400;
  --mat-sys-headline-large: 400 2rem / 2.5rem Roboto, sans-serif;
  --mat-sys-headline-large-font: Roboto, sans-serif;
  --mat-sys-headline-large-line-height: 2.5rem;
  --mat-sys-headline-large-size: 2rem;
  --mat-sys-headline-large-tracking: 0;
  --mat-sys-headline-large-weight: 400;
  --mat-sys-headline-medium: 400 1.75rem / 2.25rem Roboto, sans-serif;
  --mat-sys-headline-medium-font: Roboto, sans-serif;
  --mat-sys-headline-medium-line-height: 2.25rem;
  --mat-sys-headline-medium-size: 1.75rem;
  --mat-sys-headline-medium-tracking: 0;
  --mat-sys-headline-medium-weight: 400;
  --mat-sys-headline-small: 400 1.5rem / 2rem Roboto, sans-serif;
  --mat-sys-headline-small-font: Roboto, sans-serif;
  --mat-sys-headline-small-line-height: 2rem;
  --mat-sys-headline-small-size: 1.5rem;
  --mat-sys-headline-small-tracking: 0;
  --mat-sys-headline-small-weight: 400;
  --mat-sys-label-large: 500 0.875rem / 1.25rem Roboto, sans-serif;
  --mat-sys-label-large-font: Roboto, sans-serif;
  --mat-sys-label-large-line-height: 1.25rem;
  --mat-sys-label-large-size: 0.875rem;
  --mat-sys-label-large-tracking: 0.006rem;
  --mat-sys-label-large-weight: 500;
  --mat-sys-label-large-weight-prominent: 700;
  --mat-sys-label-medium: 500 0.75rem / 1rem Roboto, sans-serif;
  --mat-sys-label-medium-font: Roboto, sans-serif;
  --mat-sys-label-medium-line-height: 1rem;
  --mat-sys-label-medium-size: 0.75rem;
  --mat-sys-label-medium-tracking: 0.031rem;
  --mat-sys-label-medium-weight: 500;
  --mat-sys-label-medium-weight-prominent: 700;
  --mat-sys-label-small: 500 0.688rem / 1rem Roboto, sans-serif;
  --mat-sys-label-small-font: Roboto, sans-serif;
  --mat-sys-label-small-line-height: 1rem;
  --mat-sys-label-small-size: 0.688rem;
  --mat-sys-label-small-tracking: 0.031rem;
  --mat-sys-label-small-weight: 500;
  --mat-sys-title-large: 400 1.375rem / 1.75rem Roboto, sans-serif;
  --mat-sys-title-large-font: Roboto, sans-serif;
  --mat-sys-title-large-line-height: 1.75rem;
  --mat-sys-title-large-size: 1.375rem;
  --mat-sys-title-large-tracking: 0;
  --mat-sys-title-large-weight: 400;
  --mat-sys-title-medium: 500 1rem / 1.5rem Roboto, sans-serif;
  --mat-sys-title-medium-font: Roboto, sans-serif;
  --mat-sys-title-medium-line-height: 1.5rem;
  --mat-sys-title-medium-size: 1rem;
  --mat-sys-title-medium-tracking: 0.009rem;
  --mat-sys-title-medium-weight: 500;
  --mat-sys-title-small: 500 0.875rem / 1.25rem Roboto, sans-serif;
  --mat-sys-title-small-font: Roboto, sans-serif;
  --mat-sys-title-small-line-height: 1.25rem;
  --mat-sys-title-small-size: 0.875rem;
  --mat-sys-title-small-tracking: 0.006rem;
  --mat-sys-title-small-weight: 500;
  --mat-sys-corner-extra-large: 28px;
  --mat-sys-corner-extra-large-top: 28px 28px 0 0;
  --mat-sys-corner-extra-small: 4px;
  --mat-sys-corner-extra-small-top: 4px 4px 0 0;
  --mat-sys-corner-full: 9999px;
  --mat-sys-corner-large: 16px;
  --mat-sys-corner-large-end: 0 16px 16px 0;
  --mat-sys-corner-large-start: 16px 0 0 16px;
  --mat-sys-corner-large-top: 16px 16px 0 0;
  --mat-sys-corner-medium: 12px;
  --mat-sys-corner-none: 0;
  --mat-sys-corner-small: 8px;
  --mat-sys-level0:
    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-sys-level1:
    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-sys-level2:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level3:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level4:
    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-sys-level5:
    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);
  --app-spacing-xs: 4px;
  --app-spacing-sm: 8px;
  --app-spacing-base: 12px;
  --app-spacing-md: 16px;
  --app-spacing-lg: 24px;
  --app-spacing-xl: 32px;
  --app-spacing-xxl: 48px;
  --app-shape-small: var(--md-sys-shape-corner-small, 4px);
  --app-shape-medium: var(--md-sys-shape-corner-medium, 8px);
  --app-shape-large: var(--md-sys-shape-corner-large, 12px);
  --app-shape-xlarge: var(--md-sys-shape-corner-xlarge, 16px);
  --app-shape-xxlarge: 20px;
  --app-shape-full: 9999px;
  --app-color-primary: #abc7ff;
  --app-color-on-primary: #002f65;
  --app-color-primary-container: #00458f;
  --app-color-on-primary-container: #d7e3ff;
  --app-color-secondary: #bec6dc;
  --app-color-on-secondary: #283041;
  --app-color-tertiary: #bec2ff;
  --app-color-on-tertiary: #0001ac;
  --app-color-error: #ffb4ab;
  --app-color-on-error: #690005;
  --app-color-surface: #121316;
  --app-color-on-surface: #e3e2e6;
  --app-color-surface-variant: #44474e;
  --app-color-on-surface-variant: #e0e2ec;
  --app-color-surface-container: #1f2022;
  --app-color-surface-container-low: #1a1b1f;
  --app-color-surface-container-lowest: #0d0e11;
  --app-color-surface-container-high: #292a2c;
  --app-color-surface-container-highest: #343537;
  --app-color-inverse-surface: #e3e2e6;
  --app-color-inverse-on-surface: #2f3033;
  --app-color-text-strong: #000000;
  --app-color-editor-surface: #ffffff;
  --app-color-background: #292a2c;
  --app-color-on-background: #e3e2e6;
  --app-color-outline: #8e9099;
  --app-color-outline-variant: #44474e;
}
.text-red-0 {
  color: #000000 !important;
}
.text-red-10 {
  color: #410000 !important;
}
.text-red-20 {
  color: #690100 !important;
}
.text-red-25 {
  color: #7e0100 !important;
}
.text-red-30 {
  color: #930100 !important;
}
.text-red-35 {
  color: #a90100 !important;
}
.text-red-40 {
  color: #c00100 !important;
}
.text-red-50 {
  color: #ef0000 !important;
}
.text-red-60 {
  color: #ff5540 !important;
}
.text-red-70 {
  color: #ff8a78 !important;
}
.text-red-80 {
  color: #ffb4a8 !important;
}
.text-red-90 {
  color: #ffdad4 !important;
}
.text-red-95 {
  color: #ffedea !important;
}
.text-red-98 {
  color: #fff8f6 !important;
}
.text-red-99 {
  color: #fffbff !important;
}
.text-red-100 {
  color: #ffffff !important;
}
.text-green-0 {
  color: #000000 !important;
}
.text-green-10 {
  color: #002200 !important;
}
.text-green-20 {
  color: #013a00 !important;
}
.text-green-25 {
  color: #014600 !important;
}
.text-green-30 {
  color: #015300 !important;
}
.text-green-35 {
  color: #026100 !important;
}
.text-green-40 {
  color: #026e00 !important;
}
.text-green-50 {
  color: #038b00 !important;
}
.text-green-60 {
  color: #03a800 !important;
}
.text-green-70 {
  color: #03c700 !important;
}
.text-green-80 {
  color: #02e600 !important;
}
.text-green-90 {
  color: #77ff61 !important;
}
.text-green-95 {
  color: #cbffb8 !important;
}
.text-green-98 {
  color: #edffe1 !important;
}
.text-green-99 {
  color: #f7ffee !important;
}
.text-green-100 {
  color: #ffffff !important;
}
.text-blue-0 {
  color: #000000 !important;
}
.text-blue-10 {
  color: #00006e !important;
}
.text-blue-20 {
  color: #0001ac !important;
}
.text-blue-25 {
  color: #0001cd !important;
}
.text-blue-30 {
  color: #0000ef !important;
}
.text-blue-35 {
  color: #1a21ff !important;
}
.text-blue-40 {
  color: #343dff !important;
}
.text-blue-50 {
  color: #5a64ff !important;
}
.text-blue-60 {
  color: #7c84ff !important;
}
.text-blue-70 {
  color: #9da3ff !important;
}
.text-blue-80 {
  color: #bec2ff !important;
}
.text-blue-90 {
  color: #e0e0ff !important;
}
.text-blue-95 {
  color: #f1efff !important;
}
.text-blue-98 {
  color: #fbf8ff !important;
}
.text-blue-99 {
  color: #fffbff !important;
}
.text-blue-100 {
  color: #ffffff !important;
}
.text-yellow-0 {
  color: #000000 !important;
}
.text-yellow-10 {
  color: #1d1d00 !important;
}
.text-yellow-20 {
  color: #323200 !important;
}
.text-yellow-25 {
  color: #3e3e00 !important;
}
.text-yellow-30 {
  color: #494900 !important;
}
.text-yellow-35 {
  color: #555500 !important;
}
.text-yellow-40 {
  color: #626200 !important;
}
.text-yellow-50 {
  color: #7b7b00 !important;
}
.text-yellow-60 {
  color: #969600 !important;
}
.text-yellow-70 {
  color: #b1b100 !important;
}
.text-yellow-80 {
  color: #cdcd00 !important;
}
.text-yellow-90 {
  color: #eaea00 !important;
}
.text-yellow-95 {
  color: #f9f900 !important;
}
.text-yellow-98 {
  color: #fffeac !important;
}
.text-yellow-99 {
  color: #fffbff !important;
}
.text-yellow-100 {
  color: #ffffff !important;
}
.text-cyan-0 {
  color: #000000 !important;
}
.text-cyan-10 {
  color: #002020 !important;
}
.text-cyan-20 {
  color: #003737 !important;
}
.text-cyan-25 {
  color: #004343 !important;
}
.text-cyan-30 {
  color: #004f4f !important;
}
.text-cyan-35 {
  color: #005c5c !important;
}
.text-cyan-40 {
  color: #006a6a !important;
}
.text-cyan-50 {
  color: #008585 !important;
}
.text-cyan-60 {
  color: #00a1a1 !important;
}
.text-cyan-70 {
  color: #00bebe !important;
}
.text-cyan-80 {
  color: #00dddd !important;
}
.text-cyan-90 {
  color: #00fbfb !important;
}
.text-cyan-95 {
  color: #adfffe !important;
}
.text-cyan-98 {
  color: #e2fffe !important;
}
.text-cyan-99 {
  color: #f1fffe !important;
}
.text-cyan-100 {
  color: #ffffff !important;
}
.text-magenta-0 {
  color: #000000 !important;
}
.text-magenta-10 {
  color: #380038 !important;
}
.text-magenta-20 {
  color: #5b005b !important;
}
.text-magenta-25 {
  color: #6e006e !important;
}
.text-magenta-30 {
  color: #810081 !important;
}
.text-magenta-35 {
  color: #950094 !important;
}
.text-magenta-40 {
  color: #a900a9 !important;
}
.text-magenta-50 {
  color: #d200d2 !important;
}
.text-magenta-60 {
  color: #fe00fe !important;
}
.text-magenta-70 {
  color: #ff76f6 !important;
}
.text-magenta-80 {
  color: #ffabf3 !important;
}
.text-magenta-90 {
  color: #ffd7f5 !important;
}
.text-magenta-95 {
  color: #ffebf8 !important;
}
.text-magenta-98 {
  color: #fff7f9 !important;
}
.text-magenta-99 {
  color: #fffbff !important;
}
.text-magenta-100 {
  color: #ffffff !important;
}
.text-orange-0 {
  color: #000000 !important;
}
.text-orange-10 {
  color: #311300 !important;
}
.text-orange-20 {
  color: #502400 !important;
}
.text-orange-25 {
  color: #612d00 !important;
}
.text-orange-30 {
  color: #723600 !important;
}
.text-orange-35 {
  color: #843f00 !important;
}
.text-orange-40 {
  color: #964900 !important;
}
.text-orange-50 {
  color: #bc5d00 !important;
}
.text-orange-60 {
  color: #e37100 !important;
}
.text-orange-70 {
  color: #ff8e36 !important;
}
.text-orange-80 {
  color: #ffb787 !important;
}
.text-orange-90 {
  color: #ffdcc7 !important;
}
.text-orange-95 {
  color: #ffede4 !important;
}
.text-orange-98 {
  color: #fff8f5 !important;
}
.text-orange-99 {
  color: #fffbff !important;
}
.text-orange-100 {
  color: #ffffff !important;
}
.text-chartreuse-0 {
  color: #000000 !important;
}
.text-chartreuse-10 {
  color: #0b2000 !important;
}
.text-chartreuse-20 {
  color: #173800 !important;
}
.text-chartreuse-25 {
  color: #1e4400 !important;
}
.text-chartreuse-30 {
  color: #245100 !important;
}
.text-chartreuse-35 {
  color: #2b5e00 !important;
}
.text-chartreuse-40 {
  color: #326b00 !important;
}
.text-chartreuse-50 {
  color: #418700 !important;
}
.text-chartreuse-60 {
  color: #50a400 !important;
}
.text-chartreuse-70 {
  color: #60c100 !important;
}
.text-chartreuse-80 {
  color: #70e000 !important;
}
.text-chartreuse-90 {
  color: #82ff10 !important;
}
.text-chartreuse-95 {
  color: #cfffa9 !important;
}
.text-chartreuse-98 {
  color: #eeffdc !important;
}
.text-chartreuse-99 {
  color: #f8ffeb !important;
}
.text-chartreuse-100 {
  color: #ffffff !important;
}
.text-spring-green-0 {
  color: #000000 !important;
}
.text-spring-green-10 {
  color: #00210b !important;
}
.text-spring-green-20 {
  color: #003917 !important;
}
.text-spring-green-25 {
  color: #00461e !important;
}
.text-spring-green-30 {
  color: #005225 !important;
}
.text-spring-green-35 {
  color: #00602c !important;
}
.text-spring-green-40 {
  color: #006d33 !important;
}
.text-spring-green-50 {
  color: #008942 !important;
}
.text-spring-green-60 {
  color: #00a751 !important;
}
.text-spring-green-70 {
  color: #00c561 !important;
}
.text-spring-green-80 {
  color: #00e472 !important;
}
.text-spring-green-90 {
  color: #63ff94 !important;
}
.text-spring-green-95 {
  color: #c4ffcb !important;
}
.text-spring-green-98 {
  color: #eaffe9 !important;
}
.text-spring-green-99 {
  color: #f5fff2 !important;
}
.text-spring-green-100 {
  color: #ffffff !important;
}
.text-azure-0 {
  color: #000000 !important;
}
.text-azure-10 {
  color: #001b3f !important;
}
.text-azure-20 {
  color: #002f65 !important;
}
.text-azure-25 {
  color: #003a7a !important;
}
.text-azure-30 {
  color: #00458f !important;
}
.text-azure-35 {
  color: #0050a5 !important;
}
.text-azure-40 {
  color: #005cbb !important;
}
.text-azure-50 {
  color: #0074e9 !important;
}
.text-azure-60 {
  color: #438fff !important;
}
.text-azure-70 {
  color: #7cabff !important;
}
.text-azure-80 {
  color: #abc7ff !important;
}
.text-azure-90 {
  color: #d7e3ff !important;
}
.text-azure-95 {
  color: #ecf0ff !important;
}
.text-azure-98 {
  color: #f9f9ff !important;
}
.text-azure-99 {
  color: #fdfbff !important;
}
.text-azure-100 {
  color: #ffffff !important;
}
.text-violet-0 {
  color: #000000 !important;
}
.text-violet-10 {
  color: #270057 !important;
}
.text-violet-20 {
  color: #42008a !important;
}
.text-violet-25 {
  color: #5000a4 !important;
}
.text-violet-30 {
  color: #5f00c0 !important;
}
.text-violet-35 {
  color: #6e00dc !important;
}
.text-violet-40 {
  color: #7d00fa !important;
}
.text-violet-50 {
  color: #944aff !important;
}
.text-violet-60 {
  color: #a974ff !important;
}
.text-violet-70 {
  color: #bf98ff !important;
}
.text-violet-80 {
  color: #d5baff !important;
}
.text-violet-90 {
  color: #ecdcff !important;
}
.text-violet-95 {
  color: #f7edff !important;
}
.text-violet-98 {
  color: #fef7ff !important;
}
.text-violet-99 {
  color: #fffbff !important;
}
.text-violet-100 {
  color: #ffffff !important;
}
.text-rose-0 {
  color: #000000 !important;
}
.text-rose-10 {
  color: #3f001b !important;
}
.text-rose-20 {
  color: #65002f !important;
}
.text-rose-25 {
  color: #7a003a !important;
}
.text-rose-30 {
  color: #8f0045 !important;
}
.text-rose-35 {
  color: #a40050 !important;
}
.text-rose-40 {
  color: #ba005c !important;
}
.text-rose-50 {
  color: #e80074 !important;
}
.text-rose-60 {
  color: #ff4a8e !important;
}
.text-rose-70 {
  color: #ff84a9 !important;
}
.text-rose-80 {
  color: #ffb1c5 !important;
}
.text-rose-90 {
  color: #ffd9e1 !important;
}
.text-rose-95 {
  color: #ffecef !important;
}
.text-rose-98 {
  color: #fff8f8 !important;
}
.text-rose-99 {
  color: #fffbff !important;
}
.text-rose-100 {
  color: #ffffff !important;
}
.text-white {
  color: white !important;
}
.text-black {
  color: black !important;
}
.text-light {
  color: rgba(255, 255, 255, 0.87) !important;
}
.text-dark {
  color: rgba(0, 0, 0, 0.87) !important;
}
.bg-red-0 {
  background-color: #000000 !important;
}
.bg-red-10 {
  background-color: #410000 !important;
}
.bg-red-20 {
  background-color: #690100 !important;
}
.bg-red-25 {
  background-color: #7e0100 !important;
}
.bg-red-30 {
  background-color: #930100 !important;
}
.bg-red-35 {
  background-color: #a90100 !important;
}
.bg-red-40 {
  background-color: #c00100 !important;
}
.bg-red-50 {
  background-color: #ef0000 !important;
}
.bg-red-60 {
  background-color: #ff5540 !important;
}
.bg-red-70 {
  background-color: #ff8a78 !important;
}
.bg-red-80 {
  background-color: #ffb4a8 !important;
}
.bg-red-90 {
  background-color: #ffdad4 !important;
}
.bg-red-95 {
  background-color: #ffedea !important;
}
.bg-red-98 {
  background-color: #fff8f6 !important;
}
.bg-red-99 {
  background-color: #fffbff !important;
}
.bg-red-100 {
  background-color: #ffffff !important;
}
.bg-green-0 {
  background-color: #000000 !important;
}
.bg-green-10 {
  background-color: #002200 !important;
}
.bg-green-20 {
  background-color: #013a00 !important;
}
.bg-green-25 {
  background-color: #014600 !important;
}
.bg-green-30 {
  background-color: #015300 !important;
}
.bg-green-35 {
  background-color: #026100 !important;
}
.bg-green-40 {
  background-color: #026e00 !important;
}
.bg-green-50 {
  background-color: #038b00 !important;
}
.bg-green-60 {
  background-color: #03a800 !important;
}
.bg-green-70 {
  background-color: #03c700 !important;
}
.bg-green-80 {
  background-color: #02e600 !important;
}
.bg-green-90 {
  background-color: #77ff61 !important;
}
.bg-green-95 {
  background-color: #cbffb8 !important;
}
.bg-green-98 {
  background-color: #edffe1 !important;
}
.bg-green-99 {
  background-color: #f7ffee !important;
}
.bg-green-100 {
  background-color: #ffffff !important;
}
.bg-blue-0 {
  background-color: #000000 !important;
}
.bg-blue-10 {
  background-color: #00006e !important;
}
.bg-blue-20 {
  background-color: #0001ac !important;
}
.bg-blue-25 {
  background-color: #0001cd !important;
}
.bg-blue-30 {
  background-color: #0000ef !important;
}
.bg-blue-35 {
  background-color: #1a21ff !important;
}
.bg-blue-40 {
  background-color: #343dff !important;
}
.bg-blue-50 {
  background-color: #5a64ff !important;
}
.bg-blue-60 {
  background-color: #7c84ff !important;
}
.bg-blue-70 {
  background-color: #9da3ff !important;
}
.bg-blue-80 {
  background-color: #bec2ff !important;
}
.bg-blue-90 {
  background-color: #e0e0ff !important;
}
.bg-blue-95 {
  background-color: #f1efff !important;
}
.bg-blue-98 {
  background-color: #fbf8ff !important;
}
.bg-blue-99 {
  background-color: #fffbff !important;
}
.bg-blue-100 {
  background-color: #ffffff !important;
}
.bg-yellow-0 {
  background-color: #000000 !important;
}
.bg-yellow-10 {
  background-color: #1d1d00 !important;
}
.bg-yellow-20 {
  background-color: #323200 !important;
}
.bg-yellow-25 {
  background-color: #3e3e00 !important;
}
.bg-yellow-30 {
  background-color: #494900 !important;
}
.bg-yellow-35 {
  background-color: #555500 !important;
}
.bg-yellow-40 {
  background-color: #626200 !important;
}
.bg-yellow-50 {
  background-color: #7b7b00 !important;
}
.bg-yellow-60 {
  background-color: #969600 !important;
}
.bg-yellow-70 {
  background-color: #b1b100 !important;
}
.bg-yellow-80 {
  background-color: #cdcd00 !important;
}
.bg-yellow-90 {
  background-color: #eaea00 !important;
}
.bg-yellow-95 {
  background-color: #f9f900 !important;
}
.bg-yellow-98 {
  background-color: #fffeac !important;
}
.bg-yellow-99 {
  background-color: #fffbff !important;
}
.bg-yellow-100 {
  background-color: #ffffff !important;
}
.bg-cyan-0 {
  background-color: #000000 !important;
}
.bg-cyan-10 {
  background-color: #002020 !important;
}
.bg-cyan-20 {
  background-color: #003737 !important;
}
.bg-cyan-25 {
  background-color: #004343 !important;
}
.bg-cyan-30 {
  background-color: #004f4f !important;
}
.bg-cyan-35 {
  background-color: #005c5c !important;
}
.bg-cyan-40 {
  background-color: #006a6a !important;
}
.bg-cyan-50 {
  background-color: #008585 !important;
}
.bg-cyan-60 {
  background-color: #00a1a1 !important;
}
.bg-cyan-70 {
  background-color: #00bebe !important;
}
.bg-cyan-80 {
  background-color: #00dddd !important;
}
.bg-cyan-90 {
  background-color: #00fbfb !important;
}
.bg-cyan-95 {
  background-color: #adfffe !important;
}
.bg-cyan-98 {
  background-color: #e2fffe !important;
}
.bg-cyan-99 {
  background-color: #f1fffe !important;
}
.bg-cyan-100 {
  background-color: #ffffff !important;
}
.bg-magenta-0 {
  background-color: #000000 !important;
}
.bg-magenta-10 {
  background-color: #380038 !important;
}
.bg-magenta-20 {
  background-color: #5b005b !important;
}
.bg-magenta-25 {
  background-color: #6e006e !important;
}
.bg-magenta-30 {
  background-color: #810081 !important;
}
.bg-magenta-35 {
  background-color: #950094 !important;
}
.bg-magenta-40 {
  background-color: #a900a9 !important;
}
.bg-magenta-50 {
  background-color: #d200d2 !important;
}
.bg-magenta-60 {
  background-color: #fe00fe !important;
}
.bg-magenta-70 {
  background-color: #ff76f6 !important;
}
.bg-magenta-80 {
  background-color: #ffabf3 !important;
}
.bg-magenta-90 {
  background-color: #ffd7f5 !important;
}
.bg-magenta-95 {
  background-color: #ffebf8 !important;
}
.bg-magenta-98 {
  background-color: #fff7f9 !important;
}
.bg-magenta-99 {
  background-color: #fffbff !important;
}
.bg-magenta-100 {
  background-color: #ffffff !important;
}
.bg-orange-0 {
  background-color: #000000 !important;
}
.bg-orange-10 {
  background-color: #311300 !important;
}
.bg-orange-20 {
  background-color: #502400 !important;
}
.bg-orange-25 {
  background-color: #612d00 !important;
}
.bg-orange-30 {
  background-color: #723600 !important;
}
.bg-orange-35 {
  background-color: #843f00 !important;
}
.bg-orange-40 {
  background-color: #964900 !important;
}
.bg-orange-50 {
  background-color: #bc5d00 !important;
}
.bg-orange-60 {
  background-color: #e37100 !important;
}
.bg-orange-70 {
  background-color: #ff8e36 !important;
}
.bg-orange-80 {
  background-color: #ffb787 !important;
}
.bg-orange-90 {
  background-color: #ffdcc7 !important;
}
.bg-orange-95 {
  background-color: #ffede4 !important;
}
.bg-orange-98 {
  background-color: #fff8f5 !important;
}
.bg-orange-99 {
  background-color: #fffbff !important;
}
.bg-orange-100 {
  background-color: #ffffff !important;
}
.bg-chartreuse-0 {
  background-color: #000000 !important;
}
.bg-chartreuse-10 {
  background-color: #0b2000 !important;
}
.bg-chartreuse-20 {
  background-color: #173800 !important;
}
.bg-chartreuse-25 {
  background-color: #1e4400 !important;
}
.bg-chartreuse-30 {
  background-color: #245100 !important;
}
.bg-chartreuse-35 {
  background-color: #2b5e00 !important;
}
.bg-chartreuse-40 {
  background-color: #326b00 !important;
}
.bg-chartreuse-50 {
  background-color: #418700 !important;
}
.bg-chartreuse-60 {
  background-color: #50a400 !important;
}
.bg-chartreuse-70 {
  background-color: #60c100 !important;
}
.bg-chartreuse-80 {
  background-color: #70e000 !important;
}
.bg-chartreuse-90 {
  background-color: #82ff10 !important;
}
.bg-chartreuse-95 {
  background-color: #cfffa9 !important;
}
.bg-chartreuse-98 {
  background-color: #eeffdc !important;
}
.bg-chartreuse-99 {
  background-color: #f8ffeb !important;
}
.bg-chartreuse-100 {
  background-color: #ffffff !important;
}
.bg-spring-green-0 {
  background-color: #000000 !important;
}
.bg-spring-green-10 {
  background-color: #00210b !important;
}
.bg-spring-green-20 {
  background-color: #003917 !important;
}
.bg-spring-green-25 {
  background-color: #00461e !important;
}
.bg-spring-green-30 {
  background-color: #005225 !important;
}
.bg-spring-green-35 {
  background-color: #00602c !important;
}
.bg-spring-green-40 {
  background-color: #006d33 !important;
}
.bg-spring-green-50 {
  background-color: #008942 !important;
}
.bg-spring-green-60 {
  background-color: #00a751 !important;
}
.bg-spring-green-70 {
  background-color: #00c561 !important;
}
.bg-spring-green-80 {
  background-color: #00e472 !important;
}
.bg-spring-green-90 {
  background-color: #63ff94 !important;
}
.bg-spring-green-95 {
  background-color: #c4ffcb !important;
}
.bg-spring-green-98 {
  background-color: #eaffe9 !important;
}
.bg-spring-green-99 {
  background-color: #f5fff2 !important;
}
.bg-spring-green-100 {
  background-color: #ffffff !important;
}
.bg-azure-0 {
  background-color: #000000 !important;
}
.bg-azure-10 {
  background-color: #001b3f !important;
}
.bg-azure-20 {
  background-color: #002f65 !important;
}
.bg-azure-25 {
  background-color: #003a7a !important;
}
.bg-azure-30 {
  background-color: #00458f !important;
}
.bg-azure-35 {
  background-color: #0050a5 !important;
}
.bg-azure-40 {
  background-color: #005cbb !important;
}
.bg-azure-50 {
  background-color: #0074e9 !important;
}
.bg-azure-60 {
  background-color: #438fff !important;
}
.bg-azure-70 {
  background-color: #7cabff !important;
}
.bg-azure-80 {
  background-color: #abc7ff !important;
}
.bg-azure-90 {
  background-color: #d7e3ff !important;
}
.bg-azure-95 {
  background-color: #ecf0ff !important;
}
.bg-azure-98 {
  background-color: #f9f9ff !important;
}
.bg-azure-99 {
  background-color: #fdfbff !important;
}
.bg-azure-100 {
  background-color: #ffffff !important;
}
.bg-violet-0 {
  background-color: #000000 !important;
}
.bg-violet-10 {
  background-color: #270057 !important;
}
.bg-violet-20 {
  background-color: #42008a !important;
}
.bg-violet-25 {
  background-color: #5000a4 !important;
}
.bg-violet-30 {
  background-color: #5f00c0 !important;
}
.bg-violet-35 {
  background-color: #6e00dc !important;
}
.bg-violet-40 {
  background-color: #7d00fa !important;
}
.bg-violet-50 {
  background-color: #944aff !important;
}
.bg-violet-60 {
  background-color: #a974ff !important;
}
.bg-violet-70 {
  background-color: #bf98ff !important;
}
.bg-violet-80 {
  background-color: #d5baff !important;
}
.bg-violet-90 {
  background-color: #ecdcff !important;
}
.bg-violet-95 {
  background-color: #f7edff !important;
}
.bg-violet-98 {
  background-color: #fef7ff !important;
}
.bg-violet-99 {
  background-color: #fffbff !important;
}
.bg-violet-100 {
  background-color: #ffffff !important;
}
.bg-rose-0 {
  background-color: #000000 !important;
}
.bg-rose-10 {
  background-color: #3f001b !important;
}
.bg-rose-20 {
  background-color: #65002f !important;
}
.bg-rose-25 {
  background-color: #7a003a !important;
}
.bg-rose-30 {
  background-color: #8f0045 !important;
}
.bg-rose-35 {
  background-color: #a40050 !important;
}
.bg-rose-40 {
  background-color: #ba005c !important;
}
.bg-rose-50 {
  background-color: #e80074 !important;
}
.bg-rose-60 {
  background-color: #ff4a8e !important;
}
.bg-rose-70 {
  background-color: #ff84a9 !important;
}
.bg-rose-80 {
  background-color: #ffb1c5 !important;
}
.bg-rose-90 {
  background-color: #ffd9e1 !important;
}
.bg-rose-95 {
  background-color: #ffecef !important;
}
.bg-rose-98 {
  background-color: #fff8f8 !important;
}
.bg-rose-99 {
  background-color: #fffbff !important;
}
.bg-rose-100 {
  background-color: #ffffff !important;
}
.bg-white {
  background-color: white !important;
}
.bg-black {
  background-color: black !important;
}
.bg-light {
  background-color: rgba(255, 255, 255, 0.87) !important;
}
.bg-dark {
  background-color: rgba(0, 0, 0, 0.87) !important;
}
.border-red-0 {
  border-color: #000000 !important;
}
.border-red-10 {
  border-color: #410000 !important;
}
.border-red-20 {
  border-color: #690100 !important;
}
.border-red-25 {
  border-color: #7e0100 !important;
}
.border-red-30 {
  border-color: #930100 !important;
}
.border-red-35 {
  border-color: #a90100 !important;
}
.border-red-40 {
  border-color: #c00100 !important;
}
.border-red-50 {
  border-color: #ef0000 !important;
}
.border-red-60 {
  border-color: #ff5540 !important;
}
.border-red-70 {
  border-color: #ff8a78 !important;
}
.border-red-80 {
  border-color: #ffb4a8 !important;
}
.border-red-90 {
  border-color: #ffdad4 !important;
}
.border-red-95 {
  border-color: #ffedea !important;
}
.border-red-98 {
  border-color: #fff8f6 !important;
}
.border-red-99 {
  border-color: #fffbff !important;
}
.border-red-100 {
  border-color: #ffffff !important;
}
.border-green-0 {
  border-color: #000000 !important;
}
.border-green-10 {
  border-color: #002200 !important;
}
.border-green-20 {
  border-color: #013a00 !important;
}
.border-green-25 {
  border-color: #014600 !important;
}
.border-green-30 {
  border-color: #015300 !important;
}
.border-green-35 {
  border-color: #026100 !important;
}
.border-green-40 {
  border-color: #026e00 !important;
}
.border-green-50 {
  border-color: #038b00 !important;
}
.border-green-60 {
  border-color: #03a800 !important;
}
.border-green-70 {
  border-color: #03c700 !important;
}
.border-green-80 {
  border-color: #02e600 !important;
}
.border-green-90 {
  border-color: #77ff61 !important;
}
.border-green-95 {
  border-color: #cbffb8 !important;
}
.border-green-98 {
  border-color: #edffe1 !important;
}
.border-green-99 {
  border-color: #f7ffee !important;
}
.border-green-100 {
  border-color: #ffffff !important;
}
.border-blue-0 {
  border-color: #000000 !important;
}
.border-blue-10 {
  border-color: #00006e !important;
}
.border-blue-20 {
  border-color: #0001ac !important;
}
.border-blue-25 {
  border-color: #0001cd !important;
}
.border-blue-30 {
  border-color: #0000ef !important;
}
.border-blue-35 {
  border-color: #1a21ff !important;
}
.border-blue-40 {
  border-color: #343dff !important;
}
.border-blue-50 {
  border-color: #5a64ff !important;
}
.border-blue-60 {
  border-color: #7c84ff !important;
}
.border-blue-70 {
  border-color: #9da3ff !important;
}
.border-blue-80 {
  border-color: #bec2ff !important;
}
.border-blue-90 {
  border-color: #e0e0ff !important;
}
.border-blue-95 {
  border-color: #f1efff !important;
}
.border-blue-98 {
  border-color: #fbf8ff !important;
}
.border-blue-99 {
  border-color: #fffbff !important;
}
.border-blue-100 {
  border-color: #ffffff !important;
}
.border-yellow-0 {
  border-color: #000000 !important;
}
.border-yellow-10 {
  border-color: #1d1d00 !important;
}
.border-yellow-20 {
  border-color: #323200 !important;
}
.border-yellow-25 {
  border-color: #3e3e00 !important;
}
.border-yellow-30 {
  border-color: #494900 !important;
}
.border-yellow-35 {
  border-color: #555500 !important;
}
.border-yellow-40 {
  border-color: #626200 !important;
}
.border-yellow-50 {
  border-color: #7b7b00 !important;
}
.border-yellow-60 {
  border-color: #969600 !important;
}
.border-yellow-70 {
  border-color: #b1b100 !important;
}
.border-yellow-80 {
  border-color: #cdcd00 !important;
}
.border-yellow-90 {
  border-color: #eaea00 !important;
}
.border-yellow-95 {
  border-color: #f9f900 !important;
}
.border-yellow-98 {
  border-color: #fffeac !important;
}
.border-yellow-99 {
  border-color: #fffbff !important;
}
.border-yellow-100 {
  border-color: #ffffff !important;
}
.border-cyan-0 {
  border-color: #000000 !important;
}
.border-cyan-10 {
  border-color: #002020 !important;
}
.border-cyan-20 {
  border-color: #003737 !important;
}
.border-cyan-25 {
  border-color: #004343 !important;
}
.border-cyan-30 {
  border-color: #004f4f !important;
}
.border-cyan-35 {
  border-color: #005c5c !important;
}
.border-cyan-40 {
  border-color: #006a6a !important;
}
.border-cyan-50 {
  border-color: #008585 !important;
}
.border-cyan-60 {
  border-color: #00a1a1 !important;
}
.border-cyan-70 {
  border-color: #00bebe !important;
}
.border-cyan-80 {
  border-color: #00dddd !important;
}
.border-cyan-90 {
  border-color: #00fbfb !important;
}
.border-cyan-95 {
  border-color: #adfffe !important;
}
.border-cyan-98 {
  border-color: #e2fffe !important;
}
.border-cyan-99 {
  border-color: #f1fffe !important;
}
.border-cyan-100 {
  border-color: #ffffff !important;
}
.border-magenta-0 {
  border-color: #000000 !important;
}
.border-magenta-10 {
  border-color: #380038 !important;
}
.border-magenta-20 {
  border-color: #5b005b !important;
}
.border-magenta-25 {
  border-color: #6e006e !important;
}
.border-magenta-30 {
  border-color: #810081 !important;
}
.border-magenta-35 {
  border-color: #950094 !important;
}
.border-magenta-40 {
  border-color: #a900a9 !important;
}
.border-magenta-50 {
  border-color: #d200d2 !important;
}
.border-magenta-60 {
  border-color: #fe00fe !important;
}
.border-magenta-70 {
  border-color: #ff76f6 !important;
}
.border-magenta-80 {
  border-color: #ffabf3 !important;
}
.border-magenta-90 {
  border-color: #ffd7f5 !important;
}
.border-magenta-95 {
  border-color: #ffebf8 !important;
}
.border-magenta-98 {
  border-color: #fff7f9 !important;
}
.border-magenta-99 {
  border-color: #fffbff !important;
}
.border-magenta-100 {
  border-color: #ffffff !important;
}
.border-orange-0 {
  border-color: #000000 !important;
}
.border-orange-10 {
  border-color: #311300 !important;
}
.border-orange-20 {
  border-color: #502400 !important;
}
.border-orange-25 {
  border-color: #612d00 !important;
}
.border-orange-30 {
  border-color: #723600 !important;
}
.border-orange-35 {
  border-color: #843f00 !important;
}
.border-orange-40 {
  border-color: #964900 !important;
}
.border-orange-50 {
  border-color: #bc5d00 !important;
}
.border-orange-60 {
  border-color: #e37100 !important;
}
.border-orange-70 {
  border-color: #ff8e36 !important;
}
.border-orange-80 {
  border-color: #ffb787 !important;
}
.border-orange-90 {
  border-color: #ffdcc7 !important;
}
.border-orange-95 {
  border-color: #ffede4 !important;
}
.border-orange-98 {
  border-color: #fff8f5 !important;
}
.border-orange-99 {
  border-color: #fffbff !important;
}
.border-orange-100 {
  border-color: #ffffff !important;
}
.border-chartreuse-0 {
  border-color: #000000 !important;
}
.border-chartreuse-10 {
  border-color: #0b2000 !important;
}
.border-chartreuse-20 {
  border-color: #173800 !important;
}
.border-chartreuse-25 {
  border-color: #1e4400 !important;
}
.border-chartreuse-30 {
  border-color: #245100 !important;
}
.border-chartreuse-35 {
  border-color: #2b5e00 !important;
}
.border-chartreuse-40 {
  border-color: #326b00 !important;
}
.border-chartreuse-50 {
  border-color: #418700 !important;
}
.border-chartreuse-60 {
  border-color: #50a400 !important;
}
.border-chartreuse-70 {
  border-color: #60c100 !important;
}
.border-chartreuse-80 {
  border-color: #70e000 !important;
}
.border-chartreuse-90 {
  border-color: #82ff10 !important;
}
.border-chartreuse-95 {
  border-color: #cfffa9 !important;
}
.border-chartreuse-98 {
  border-color: #eeffdc !important;
}
.border-chartreuse-99 {
  border-color: #f8ffeb !important;
}
.border-chartreuse-100 {
  border-color: #ffffff !important;
}
.border-spring-green-0 {
  border-color: #000000 !important;
}
.border-spring-green-10 {
  border-color: #00210b !important;
}
.border-spring-green-20 {
  border-color: #003917 !important;
}
.border-spring-green-25 {
  border-color: #00461e !important;
}
.border-spring-green-30 {
  border-color: #005225 !important;
}
.border-spring-green-35 {
  border-color: #00602c !important;
}
.border-spring-green-40 {
  border-color: #006d33 !important;
}
.border-spring-green-50 {
  border-color: #008942 !important;
}
.border-spring-green-60 {
  border-color: #00a751 !important;
}
.border-spring-green-70 {
  border-color: #00c561 !important;
}
.border-spring-green-80 {
  border-color: #00e472 !important;
}
.border-spring-green-90 {
  border-color: #63ff94 !important;
}
.border-spring-green-95 {
  border-color: #c4ffcb !important;
}
.border-spring-green-98 {
  border-color: #eaffe9 !important;
}
.border-spring-green-99 {
  border-color: #f5fff2 !important;
}
.border-spring-green-100 {
  border-color: #ffffff !important;
}
.border-azure-0 {
  border-color: #000000 !important;
}
.border-azure-10 {
  border-color: #001b3f !important;
}
.border-azure-20 {
  border-color: #002f65 !important;
}
.border-azure-25 {
  border-color: #003a7a !important;
}
.border-azure-30 {
  border-color: #00458f !important;
}
.border-azure-35 {
  border-color: #0050a5 !important;
}
.border-azure-40 {
  border-color: #005cbb !important;
}
.border-azure-50 {
  border-color: #0074e9 !important;
}
.border-azure-60 {
  border-color: #438fff !important;
}
.border-azure-70 {
  border-color: #7cabff !important;
}
.border-azure-80 {
  border-color: #abc7ff !important;
}
.border-azure-90 {
  border-color: #d7e3ff !important;
}
.border-azure-95 {
  border-color: #ecf0ff !important;
}
.border-azure-98 {
  border-color: #f9f9ff !important;
}
.border-azure-99 {
  border-color: #fdfbff !important;
}
.border-azure-100 {
  border-color: #ffffff !important;
}
.border-violet-0 {
  border-color: #000000 !important;
}
.border-violet-10 {
  border-color: #270057 !important;
}
.border-violet-20 {
  border-color: #42008a !important;
}
.border-violet-25 {
  border-color: #5000a4 !important;
}
.border-violet-30 {
  border-color: #5f00c0 !important;
}
.border-violet-35 {
  border-color: #6e00dc !important;
}
.border-violet-40 {
  border-color: #7d00fa !important;
}
.border-violet-50 {
  border-color: #944aff !important;
}
.border-violet-60 {
  border-color: #a974ff !important;
}
.border-violet-70 {
  border-color: #bf98ff !important;
}
.border-violet-80 {
  border-color: #d5baff !important;
}
.border-violet-90 {
  border-color: #ecdcff !important;
}
.border-violet-95 {
  border-color: #f7edff !important;
}
.border-violet-98 {
  border-color: #fef7ff !important;
}
.border-violet-99 {
  border-color: #fffbff !important;
}
.border-violet-100 {
  border-color: #ffffff !important;
}
.border-rose-0 {
  border-color: #000000 !important;
}
.border-rose-10 {
  border-color: #3f001b !important;
}
.border-rose-20 {
  border-color: #65002f !important;
}
.border-rose-25 {
  border-color: #7a003a !important;
}
.border-rose-30 {
  border-color: #8f0045 !important;
}
.border-rose-35 {
  border-color: #a40050 !important;
}
.border-rose-40 {
  border-color: #ba005c !important;
}
.border-rose-50 {
  border-color: #e80074 !important;
}
.border-rose-60 {
  border-color: #ff4a8e !important;
}
.border-rose-70 {
  border-color: #ff84a9 !important;
}
.border-rose-80 {
  border-color: #ffb1c5 !important;
}
.border-rose-90 {
  border-color: #ffd9e1 !important;
}
.border-rose-95 {
  border-color: #ffecef !important;
}
.border-rose-98 {
  border-color: #fff8f8 !important;
}
.border-rose-99 {
  border-color: #fffbff !important;
}
.border-rose-100 {
  border-color: #ffffff !important;
}
.border-white {
  border-color: white !important;
}
.border-black {
  border-color: black !important;
}
.border-light {
  border-color: rgba(255, 255, 255, 0.87) !important;
}
.border-dark {
  border-color: rgba(0, 0, 0, 0.87) !important;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: calc(var(--gutter) * -0.5);
  margin-left: calc(var(--gutter) * -0.5);
}
.no-gutters {
  --gutter: 0;
}
.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-sm,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-md,
.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,
.col-lg,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-xl,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12 {
  position: relative;
  width: 100%;
  padding-right: calc(var(--gutter) * 0.5);
  padding-left: calc(var(--gutter) * 0.5);
}
.col {
  flex-grow: 1;
  flex-basis: 0;
  max-width: 100%;
}
.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}
.offset-1 {
  margin-left: 8.3333333333%;
}
.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}
.offset-2 {
  margin-left: 16.6666666667%;
}
.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
.offset-3 {
  margin-left: 25%;
}
.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}
.offset-4 {
  margin-left: 33.3333333333%;
}
.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}
.offset-5 {
  margin-left: 41.6666666667%;
}
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.offset-6 {
  margin-left: 50%;
}
.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}
.offset-7 {
  margin-left: 58.3333333333%;
}
.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}
.offset-8 {
  margin-left: 66.6666666667%;
}
.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}
.offset-9 {
  margin-left: 75%;
}
.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}
.offset-10 {
  margin-left: 83.3333333333%;
}
.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}
.offset-11 {
  margin-left: 91.6666666667%;
}
.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.offset-12 {
  margin-left: 100%;
}
@media (min-width: 600px) {
  .col-sm {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-sm-12 {
    margin-left: 100%;
  }
}
@media (min-width: 960px) {
  .col-md {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-md-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1280px) {
  .col-lg {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-lg-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1920px) {
  .col-xl {
    flex-grow: 1;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-xl-12 {
    margin-left: 100%;
  }
}
.static {
  position: static !important;
}
.fixed {
  position: fixed !important;
}
.absolute {
  position: absolute !important;
}
.relative {
  position: relative !important;
}
.sticky {
  position: sticky !important;
}
.d-inline {
  display: inline !important;
}
.d-inline-block {
  display: inline-block !important;
}
.d-block {
  display: block !important;
}
.d-grid {
  display: grid !important;
}
.d-table {
  display: table !important;
}
.d-table-row {
  display: table-row !important;
}
.d-table-cell {
  display: table-cell !important;
}
.d-flex {
  display: flex !important;
}
.d-inline-flex {
  display: inline-flex !important;
}
.d-none {
  display: none !important;
}
.flex-fill {
  flex: 1 1 auto !important;
}
.flex-row {
  flex-direction: row !important;
}
.flex-row-reverse {
  flex-direction: row-reverse !important;
}
.flex-col {
  flex-direction: column !important;
}
.flex-col-reverse {
  flex-direction: column-reverse !important;
}
.flex-grow-0 {
  flex-grow: 0 !important;
}
.flex-grow-1 {
  flex-grow: 1 !important;
}
.flex-shrink-0 {
  flex-shrink: 0 !important;
}
.flex-shrink-1 {
  flex-shrink: 1 !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.flex-nowrap {
  flex-wrap: nowrap !important;
}
.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}
.justify-content-start {
  justify-content: flex-start !important;
}
.justify-content-end {
  justify-content: flex-end !important;
}
.justify-content-center {
  justify-content: center !important;
}
.justify-content-between {
  justify-content: space-between !important;
}
.justify-content-around {
  justify-content: space-around !important;
}
.align-content-start {
  align-content: flex-start !important;
}
.align-content-end {
  align-content: flex-end !important;
}
.align-content-center {
  align-content: center !important;
}
.align-content-between {
  align-content: space-between !important;
}
.align-content-around {
  align-content: space-around !important;
}
.align-content-stretch {
  align-content: stretch !important;
}
.align-items-start {
  align-items: flex-start !important;
}
.align-items-end {
  align-items: flex-end !important;
}
.align-items-center {
  align-items: center !important;
}
.align-items-baseline {
  align-items: baseline !important;
}
.align-items-stretch {
  align-items: stretch !important;
}
.align-self-auto {
  align-self: auto !important;
}
.align-self-start {
  align-self: flex-start !important;
}
.align-self-end {
  align-self: flex-end !important;
}
.align-self-center {
  align-self: center !important;
}
.align-self-baseline {
  align-self: baseline !important;
}
.align-self-stretch {
  align-self: stretch !important;
}
.w-0 {
  width: 0 !important;
}
.w-20 {
  width: 20% !important;
}
.w-25 {
  width: 25% !important;
}
.w-40 {
  width: 40% !important;
}
.w-50 {
  width: 50% !important;
}
.w-60 {
  width: 60% !important;
}
.w-75 {
  width: 75% !important;
}
.w-80 {
  width: 80% !important;
}
.w-full {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}
.h-0 {
  height: 0 !important;
}
.h-20 {
  height: 20% !important;
}
.h-25 {
  height: 25% !important;
}
.h-40 {
  height: 40% !important;
}
.h-50 {
  height: 50% !important;
}
.h-60 {
  height: 60% !important;
}
.h-75 {
  height: 75% !important;
}
.h-80 {
  height: 80% !important;
}
.h-full {
  height: 100% !important;
}
.h-auto {
  height: auto !important;
}
.m-0 {
  margin: 0 !important;
}
.m-2 {
  margin: 0.125rem !important;
}
.m-4 {
  margin: 0.25rem !important;
}
.m-8 {
  margin: 0.5rem !important;
}
.m-12 {
  margin: 0.75rem !important;
}
.m-16 {
  margin: 1rem !important;
}
.m-24 {
  margin: 1.5rem !important;
}
.m-32 {
  margin: 2rem !important;
}
.m-48 {
  margin: 3rem !important;
}
.m-auto {
  margin: auto !important;
}
.m-x-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.m-x-2 {
  margin-left: 0.125rem !important;
  margin-right: 0.125rem !important;
}
.m-x-4 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}
.m-x-8 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}
.m-x-12 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}
.m-x-16 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
.m-x-24 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}
.m-x-32 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}
.m-x-48 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}
.m-x-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
.m-y-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.m-y-2 {
  margin-top: 0.125rem !important;
  margin-bottom: 0.125rem !important;
}
.m-y-4 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}
.m-y-8 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}
.m-y-12 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}
.m-y-16 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.m-y-24 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}
.m-y-32 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}
.m-y-48 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}
.m-y-auto {
  margin-top: auto !important;
  margin-bottom: auto !important;
}
.m-t-0 {
  margin-top: 0 !important;
}
.m-t-2 {
  margin-top: 0.125rem !important;
}
.m-t-4 {
  margin-top: 0.25rem !important;
}
.m-t-8 {
  margin-top: 0.5rem !important;
}
.m-t-12 {
  margin-top: 0.75rem !important;
}
.m-t-16 {
  margin-top: 1rem !important;
}
.m-t-24 {
  margin-top: 1.5rem !important;
}
.m-t-32 {
  margin-top: 2rem !important;
}
.m-t-48 {
  margin-top: 3rem !important;
}
.m-t-auto {
  margin-top: auto !important;
}
.m-r-0 {
  margin-right: 0 !important;
}
.m-r-2 {
  margin-right: 0.125rem !important;
}
.m-r-4 {
  margin-right: 0.25rem !important;
}
.m-r-8 {
  margin-right: 0.5rem !important;
}
.m-r-12 {
  margin-right: 0.75rem !important;
}
.m-r-16 {
  margin-right: 1rem !important;
}
.m-r-24 {
  margin-right: 1.5rem !important;
}
.m-r-32 {
  margin-right: 2rem !important;
}
.m-r-48 {
  margin-right: 3rem !important;
}
.m-r-auto {
  margin-right: auto !important;
}
.m-b-0 {
  margin-bottom: 0 !important;
}
.m-b-2 {
  margin-bottom: 0.125rem !important;
}
.m-b-4 {
  margin-bottom: 0.25rem !important;
}
.m-b-8 {
  margin-bottom: 0.5rem !important;
}
.m-b-12 {
  margin-bottom: 0.75rem !important;
}
.m-b-16 {
  margin-bottom: 1rem !important;
}
.m-b-24 {
  margin-bottom: 1.5rem !important;
}
.m-b-32 {
  margin-bottom: 2rem !important;
}
.m-b-48 {
  margin-bottom: 3rem !important;
}
.m-b-auto {
  margin-bottom: auto !important;
}
.m-l-0 {
  margin-left: 0 !important;
}
.m-l-2 {
  margin-left: 0.125rem !important;
}
.m-l-4 {
  margin-left: 0.25rem !important;
}
.m-l-8 {
  margin-left: 0.5rem !important;
}
.m-l-12 {
  margin-left: 0.75rem !important;
}
.m-l-16 {
  margin-left: 1rem !important;
}
.m-l-24 {
  margin-left: 1.5rem !important;
}
.m-l-32 {
  margin-left: 2rem !important;
}
.m-l-48 {
  margin-left: 3rem !important;
}
.m-l-auto {
  margin-left: auto !important;
}
.m--2 {
  margin: -0.125rem !important;
}
.m--4 {
  margin: -0.25rem !important;
}
.m--8 {
  margin: -0.5rem !important;
}
.m--12 {
  margin: -0.75rem !important;
}
.m--16 {
  margin: -1rem !important;
}
.m--24 {
  margin: -1.5rem !important;
}
.m--32 {
  margin: -2rem !important;
}
.m--48 {
  margin: -3rem !important;
}
.m-x--2 {
  margin-left: -0.125rem !important;
  margin-right: -0.125rem !important;
}
.m-x--4 {
  margin-left: -0.25rem !important;
  margin-right: -0.25rem !important;
}
.m-x--8 {
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important;
}
.m-x--12 {
  margin-left: -0.75rem !important;
  margin-right: -0.75rem !important;
}
.m-x--16 {
  margin-left: -1rem !important;
  margin-right: -1rem !important;
}
.m-x--24 {
  margin-left: -1.5rem !important;
  margin-right: -1.5rem !important;
}
.m-x--32 {
  margin-left: -2rem !important;
  margin-right: -2rem !important;
}
.m-x--48 {
  margin-left: -3rem !important;
  margin-right: -3rem !important;
}
.m-y--2 {
  margin-top: -0.125rem !important;
  margin-bottom: -0.125rem !important;
}
.m-y--4 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}
.m-y--8 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}
.m-y--12 {
  margin-top: -0.75rem !important;
  margin-bottom: -0.75rem !important;
}
.m-y--16 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}
.m-y--24 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}
.m-y--32 {
  margin-top: -2rem !important;
  margin-bottom: -2rem !important;
}
.m-y--48 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}
.m-t--2 {
  margin-top: -0.125rem !important;
}
.m-t--4 {
  margin-top: -0.25rem !important;
}
.m-t--8 {
  margin-top: -0.5rem !important;
}
.m-t--12 {
  margin-top: -0.75rem !important;
}
.m-t--16 {
  margin-top: -1rem !important;
}
.m-t--24 {
  margin-top: -1.5rem !important;
}
.m-t--32 {
  margin-top: -2rem !important;
}
.m-t--48 {
  margin-top: -3rem !important;
}
.m-r--2 {
  margin-right: -0.125rem !important;
}
.m-r--4 {
  margin-right: -0.25rem !important;
}
.m-r--8 {
  margin-right: -0.5rem !important;
}
.m-r--12 {
  margin-right: -0.75rem !important;
}
.m-r--16 {
  margin-right: -1rem !important;
}
.m-r--24 {
  margin-right: -1.5rem !important;
}
.m-r--32 {
  margin-right: -2rem !important;
}
.m-r--48 {
  margin-right: -3rem !important;
}
.m-b--2 {
  margin-bottom: -0.125rem !important;
}
.m-b--4 {
  margin-bottom: -0.25rem !important;
}
.m-b--8 {
  margin-bottom: -0.5rem !important;
}
.m-b--12 {
  margin-bottom: -0.75rem !important;
}
.m-b--16 {
  margin-bottom: -1rem !important;
}
.m-b--24 {
  margin-bottom: -1.5rem !important;
}
.m-b--32 {
  margin-bottom: -2rem !important;
}
.m-b--48 {
  margin-bottom: -3rem !important;
}
.m-l--2 {
  margin-left: -0.125rem !important;
}
.m-l--4 {
  margin-left: -0.25rem !important;
}
.m-l--8 {
  margin-left: -0.5rem !important;
}
.m-l--12 {
  margin-left: -0.75rem !important;
}
.m-l--16 {
  margin-left: -1rem !important;
}
.m-l--24 {
  margin-left: -1.5rem !important;
}
.m-l--32 {
  margin-left: -2rem !important;
}
.m-l--48 {
  margin-left: -3rem !important;
}
.p-0 {
  padding: 0 !important;
}
.p-2 {
  padding: 0.125rem !important;
}
.p-4 {
  padding: 0.25rem !important;
}
.p-8 {
  padding: 0.5rem !important;
}
.p-12 {
  padding: 0.75rem !important;
}
.p-16 {
  padding: 1rem !important;
}
.p-24 {
  padding: 1.5rem !important;
}
.p-32 {
  padding: 2rem !important;
}
.p-48 {
  padding: 3rem !important;
}
.p-x-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.p-x-2 {
  padding-left: 0.125rem !important;
  padding-right: 0.125rem !important;
}
.p-x-4 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}
.p-x-8 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.p-x-12 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}
.p-x-16 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.p-x-24 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.p-x-32 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}
.p-x-48 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}
.p-y-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.p-y-2 {
  padding-top: 0.125rem !important;
  padding-bottom: 0.125rem !important;
}
.p-y-4 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}
.p-y-8 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}
.p-y-12 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}
.p-y-16 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}
.p-y-24 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.p-y-32 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.p-y-48 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
.p-t-0 {
  padding-top: 0 !important;
}
.p-t-2 {
  padding-top: 0.125rem !important;
}
.p-t-4 {
  padding-top: 0.25rem !important;
}
.p-t-8 {
  padding-top: 0.5rem !important;
}
.p-t-12 {
  padding-top: 0.75rem !important;
}
.p-t-16 {
  padding-top: 1rem !important;
}
.p-t-24 {
  padding-top: 1.5rem !important;
}
.p-t-32 {
  padding-top: 2rem !important;
}
.p-t-48 {
  padding-top: 3rem !important;
}
.p-r-0 {
  padding-right: 0 !important;
}
.p-r-2 {
  padding-right: 0.125rem !important;
}
.p-r-4 {
  padding-right: 0.25rem !important;
}
.p-r-8 {
  padding-right: 0.5rem !important;
}
.p-r-12 {
  padding-right: 0.75rem !important;
}
.p-r-16 {
  padding-right: 1rem !important;
}
.p-r-24 {
  padding-right: 1.5rem !important;
}
.p-r-32 {
  padding-right: 2rem !important;
}
.p-r-48 {
  padding-right: 3rem !important;
}
.p-b-0 {
  padding-bottom: 0 !important;
}
.p-b-2 {
  padding-bottom: 0.125rem !important;
}
.p-b-4 {
  padding-bottom: 0.25rem !important;
}
.p-b-8 {
  padding-bottom: 0.5rem !important;
}
.p-b-12 {
  padding-bottom: 0.75rem !important;
}
.p-b-16 {
  padding-bottom: 1rem !important;
}
.p-b-24 {
  padding-bottom: 1.5rem !important;
}
.p-b-32 {
  padding-bottom: 2rem !important;
}
.p-b-48 {
  padding-bottom: 3rem !important;
}
.p-l-0 {
  padding-left: 0 !important;
}
.p-l-2 {
  padding-left: 0.125rem !important;
}
.p-l-4 {
  padding-left: 0.25rem !important;
}
.p-l-8 {
  padding-left: 0.5rem !important;
}
.p-l-12 {
  padding-left: 0.75rem !important;
}
.p-l-16 {
  padding-left: 1rem !important;
}
.p-l-24 {
  padding-left: 1.5rem !important;
}
.p-l-32 {
  padding-left: 2rem !important;
}
.p-l-48 {
  padding-left: 3rem !important;
}
.gap-0 {
  gap: 0 !important;
}
.gap-2 {
  gap: 0.125rem !important;
}
.gap-4 {
  gap: 0.25rem !important;
}
.gap-8 {
  gap: 0.5rem !important;
}
.gap-12 {
  gap: 0.75rem !important;
}
.gap-16 {
  gap: 1rem !important;
}
.gap-24 {
  gap: 1.5rem !important;
}
.gap-32 {
  gap: 2rem !important;
}
.gap-48 {
  gap: 3rem !important;
}
.b-0 {
  border: 0 !important;
}
.b-1 {
  border: 1px solid var(--app-color-outline) !important;
}
.b-2 {
  border: 2px solid var(--app-color-outline) !important;
}
.b-4 {
  border: 4px solid var(--app-color-outline) !important;
}
.b-8 {
  border: 8px solid var(--app-color-outline) !important;
}
.b-t-0 {
  border-top: 0 !important;
}
.b-t-1 {
  border-top: 1px solid var(--app-color-outline) !important;
}
.b-t-2 {
  border-top: 2px solid var(--app-color-outline) !important;
}
.b-t-4 {
  border-top: 4px solid var(--app-color-outline) !important;
}
.b-t-8 {
  border-top: 8px solid var(--app-color-outline) !important;
}
.b-b-0 {
  border-bottom: 0 !important;
}
.b-b-1 {
  border-bottom: 1px solid var(--app-color-outline) !important;
}
.b-b-2 {
  border-bottom: 2px solid var(--app-color-outline) !important;
}
.b-b-4 {
  border-bottom: 4px solid var(--app-color-outline) !important;
}
.b-b-8 {
  border-bottom: 8px solid var(--app-color-outline) !important;
}
.b-l-0 {
  border-left: 0 !important;
}
.b-l-1 {
  border-left: 1px solid var(--app-color-outline) !important;
}
.b-l-2 {
  border-left: 2px solid var(--app-color-outline) !important;
}
.b-l-4 {
  border-left: 4px solid var(--app-color-outline) !important;
}
.b-l-8 {
  border-left: 8px solid var(--app-color-outline) !important;
}
.b-r-0 {
  border-right: 0 !important;
}
.b-r-1 {
  border-right: 1px solid var(--app-color-outline) !important;
}
.b-r-2 {
  border-right: 2px solid var(--app-color-outline) !important;
}
.b-r-4 {
  border-right: 4px solid var(--app-color-outline) !important;
}
.b-r-8 {
  border-right: 8px solid var(--app-color-outline) !important;
}
.b-y-0 {
  border-top: 0 !important;
  border-bottom: 0 !important;
}
.b-y-1 {
  border-top: 1px solid var(--app-color-outline) !important;
  border-bottom: 1px solid var(--app-color-outline) !important;
}
.b-y-2 {
  border-top: 2px solid var(--app-color-outline) !important;
  border-bottom: 2px solid var(--app-color-outline) !important;
}
.b-y-4 {
  border-top: 4px solid var(--app-color-outline) !important;
  border-bottom: 4px solid var(--app-color-outline) !important;
}
.b-y-8 {
  border-top: 8px solid var(--app-color-outline) !important;
  border-bottom: 8px solid var(--app-color-outline) !important;
}
.b-x-0 {
  border-left: 0 !important;
  border-right: 0 !important;
}
.b-x-1 {
  border-left: 1px solid var(--app-color-outline) !important;
  border-right: 1px solid var(--app-color-outline) !important;
}
.b-x-2 {
  border-left: 2px solid var(--app-color-outline) !important;
  border-right: 2px solid var(--app-color-outline) !important;
}
.b-x-4 {
  border-left: 4px solid var(--app-color-outline) !important;
  border-right: 4px solid var(--app-color-outline) !important;
}
.b-x-8 {
  border-left: 8px solid var(--app-color-outline) !important;
  border-right: 8px solid var(--app-color-outline) !important;
}
.border-0 {
  border-width: 0 !important;
}
.border-1 {
  border-width: 1px !important;
}
.border-2 {
  border-width: 2px !important;
}
.border-4 {
  border-width: 4px !important;
}
.border-8 {
  border-width: 8px !important;
}
.border-t-0 {
  border-top-width: 0 !important;
}
.border-t-1 {
  border-top-width: 1px !important;
}
.border-t-2 {
  border-top-width: 2px !important;
}
.border-t-4 {
  border-top-width: 4px !important;
}
.border-t-8 {
  border-top-width: 8px !important;
}
.border-b-0 {
  border-bottom-width: 0 !important;
}
.border-b-1 {
  border-bottom-width: 1px !important;
}
.border-b-2 {
  border-bottom-width: 2px !important;
}
.border-b-4 {
  border-bottom-width: 4px !important;
}
.border-b-8 {
  border-bottom-width: 8px !important;
}
.border-l-0 {
  border-left-width: 0 !important;
}
.border-l-1 {
  border-left-width: 1px !important;
}
.border-l-2 {
  border-left-width: 2px !important;
}
.border-l-4 {
  border-left-width: 4px !important;
}
.border-l-8 {
  border-left-width: 8px !important;
}
.border-r-0 {
  border-right-width: 0 !important;
}
.border-r-1 {
  border-right-width: 1px !important;
}
.border-r-2 {
  border-right-width: 2px !important;
}
.border-r-4 {
  border-right-width: 4px !important;
}
.border-r-8 {
  border-right-width: 8px !important;
}
.border-y-0 {
  border-top-width: 0 !important;
  border-bottom-width: 0 !important;
}
.border-y-1 {
  border-top-width: 1px !important;
  border-bottom-width: 1px !important;
}
.border-y-2 {
  border-top-width: 2px !important;
  border-bottom-width: 2px !important;
}
.border-y-4 {
  border-top-width: 4px !important;
  border-bottom-width: 4px !important;
}
.border-y-8 {
  border-top-width: 8px !important;
  border-bottom-width: 8px !important;
}
.border-x-0 {
  border-left-width: 0 !important;
  border-right-width: 0 !important;
}
.border-x-1 {
  border-left-width: 1px !important;
  border-right-width: 1px !important;
}
.border-x-2 {
  border-left-width: 2px !important;
  border-right-width: 2px !important;
}
.border-x-4 {
  border-left-width: 4px !important;
  border-right-width: 4px !important;
}
.border-x-8 {
  border-left-width: 8px !important;
  border-right-width: 8px !important;
}
.border-solid {
  border-style: solid !important;
}
.border-dashed {
  border-style: dashed !important;
}
.border-dotted {
  border-style: dotted !important;
}
.border-double {
  border-style: double !important;
}
.border-hidden {
  border-style: hidden !important;
}
.border-none {
  border-style: none !important;
}
.border-t-solid {
  border-top-style: solid !important;
}
.border-t-dashed {
  border-top-style: dashed !important;
}
.border-t-dotted {
  border-top-style: dotted !important;
}
.border-t-double {
  border-top-style: double !important;
}
.border-t-hidden {
  border-top-style: hidden !important;
}
.border-t-none {
  border-top-style: none !important;
}
.border-b-solid {
  border-bottom-style: solid !important;
}
.border-b-dashed {
  border-bottom-style: dashed !important;
}
.border-b-dotted {
  border-bottom-style: dotted !important;
}
.border-b-double {
  border-bottom-style: double !important;
}
.border-b-hidden {
  border-bottom-style: hidden !important;
}
.border-b-none {
  border-bottom-style: none !important;
}
.border-l-solid {
  border-left-style: solid !important;
}
.border-l-dashed {
  border-left-style: dashed !important;
}
.border-l-dotted {
  border-left-style: dotted !important;
}
.border-l-double {
  border-left-style: double !important;
}
.border-l-hidden {
  border-left-style: hidden !important;
}
.border-l-none {
  border-left-style: none !important;
}
.border-r-solid {
  border-right-style: solid !important;
}
.border-r-dashed {
  border-right-style: dashed !important;
}
.border-r-dotted {
  border-right-style: dotted !important;
}
.border-r-double {
  border-right-style: double !important;
}
.border-r-hidden {
  border-right-style: hidden !important;
}
.border-r-none {
  border-right-style: none !important;
}
.border-y-solid {
  border-top-style: solid !important;
  border-bottom-style: solid !important;
}
.border-y-dashed {
  border-top-style: dashed !important;
  border-bottom-style: dashed !important;
}
.border-y-dotted {
  border-top-style: dotted !important;
  border-bottom-style: dotted !important;
}
.border-y-double {
  border-top-style: double !important;
  border-bottom-style: double !important;
}
.border-y-hidden {
  border-top-style: hidden !important;
  border-bottom-style: hidden !important;
}
.border-y-none {
  border-top-style: none !important;
  border-bottom-style: none !important;
}
.border-x-solid {
  border-left-style: solid !important;
  border-right-style: solid !important;
}
.border-x-dashed {
  border-left-style: dashed !important;
  border-right-style: dashed !important;
}
.border-x-dotted {
  border-left-style: dotted !important;
  border-right-style: dotted !important;
}
.border-x-double {
  border-left-style: double !important;
  border-right-style: double !important;
}
.border-x-hidden {
  border-left-style: hidden !important;
  border-right-style: hidden !important;
}
.border-x-none {
  border-left-style: none !important;
  border-right-style: none !important;
}
.r-0 {
  border-radius: 0 !important;
}
.r-4 {
  border-radius: 0.25rem !important;
}
.r-8 {
  border-radius: 0.5rem !important;
}
.r-12 {
  border-radius: 0.75rem !important;
}
.r-16 {
  border-radius: 1rem !important;
}
.r-full {
  border-radius: 9999px !important;
}
.r-t-l-0 {
  border-top-left-radius: 0 !important;
}
.r-t-l-4 {
  border-top-left-radius: 0.25rem !important;
}
.r-t-l-8 {
  border-top-left-radius: 0.5rem !important;
}
.r-t-l-12 {
  border-top-left-radius: 0.75rem !important;
}
.r-t-l-16 {
  border-top-left-radius: 1rem !important;
}
.r-t-l-full {
  border-top-left-radius: 9999px !important;
}
.r-t-r-0 {
  border-top-right-radius: 0 !important;
}
.r-t-r-4 {
  border-top-right-radius: 0.25rem !important;
}
.r-t-r-8 {
  border-top-right-radius: 0.5rem !important;
}
.r-t-r-12 {
  border-top-right-radius: 0.75rem !important;
}
.r-t-r-16 {
  border-top-right-radius: 1rem !important;
}
.r-t-r-full {
  border-top-right-radius: 9999px !important;
}
.r-b-r-0 {
  border-bottom-right-radius: 0 !important;
}
.r-b-r-4 {
  border-bottom-right-radius: 0.25rem !important;
}
.r-b-r-8 {
  border-bottom-right-radius: 0.5rem !important;
}
.r-b-r-12 {
  border-bottom-right-radius: 0.75rem !important;
}
.r-b-r-16 {
  border-bottom-right-radius: 1rem !important;
}
.r-b-r-full {
  border-bottom-right-radius: 9999px !important;
}
.r-b-l-0 {
  border-bottom-left-radius: 0 !important;
}
.r-b-l-4 {
  border-bottom-left-radius: 0.25rem !important;
}
.r-b-l-8 {
  border-bottom-left-radius: 0.5rem !important;
}
.r-b-l-12 {
  border-bottom-left-radius: 0.75rem !important;
}
.r-b-l-16 {
  border-bottom-left-radius: 1rem !important;
}
.r-b-l-full {
  border-bottom-left-radius: 9999px !important;
}
.r-t-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.r-t-4 {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}
.r-t-8 {
  border-top-left-radius: 0.5rem !important;
  border-top-right-radius: 0.5rem !important;
}
.r-t-12 {
  border-top-left-radius: 0.75rem !important;
  border-top-right-radius: 0.75rem !important;
}
.r-t-16 {
  border-top-left-radius: 1rem !important;
  border-top-right-radius: 1rem !important;
}
.r-t-full {
  border-top-left-radius: 9999px !important;
  border-top-right-radius: 9999px !important;
}
.r-b-0 {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.r-b-4 {
  border-bottom-left-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}
.r-b-8 {
  border-bottom-left-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
}
.r-b-12 {
  border-bottom-left-radius: 0.75rem !important;
  border-bottom-right-radius: 0.75rem !important;
}
.r-b-16 {
  border-bottom-left-radius: 1rem !important;
  border-bottom-right-radius: 1rem !important;
}
.r-b-full {
  border-bottom-left-radius: 9999px !important;
  border-bottom-right-radius: 9999px !important;
}
.r-l-0 {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.r-l-4 {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}
.r-l-8 {
  border-top-left-radius: 0.5rem !important;
  border-bottom-left-radius: 0.5rem !important;
}
.r-l-12 {
  border-top-left-radius: 0.75rem !important;
  border-bottom-left-radius: 0.75rem !important;
}
.r-l-16 {
  border-top-left-radius: 1rem !important;
  border-bottom-left-radius: 1rem !important;
}
.r-l-full {
  border-top-left-radius: 9999px !important;
  border-bottom-left-radius: 9999px !important;
}
.r-r-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.r-r-4 {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}
.r-r-8 {
  border-top-right-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
}
.r-r-12 {
  border-top-right-radius: 0.75rem !important;
  border-bottom-right-radius: 0.75rem !important;
}
.r-r-16 {
  border-top-right-radius: 1rem !important;
  border-bottom-right-radius: 1rem !important;
}
.r-r-full {
  border-top-right-radius: 9999px !important;
  border-bottom-right-radius: 9999px !important;
}
.f-s-0 {
  font-size: 0 !important;
}
.f-s-10 {
  font-size: 0.625rem !important;
}
.f-s-12 {
  font-size: 0.75rem !important;
}
.f-s-14 {
  font-size: 0.875rem !important;
}
.f-s-16 {
  font-size: 1rem !important;
}
.f-s-18 {
  font-size: 1.125rem !important;
}
.f-s-20 {
  font-size: 1.25rem !important;
}
.f-w-100 {
  font-weight: 100 !important;
}
.f-w-200 {
  font-weight: 200 !important;
}
.f-w-300 {
  font-weight: 300 !important;
}
.f-w-400 {
  font-weight: 400 !important;
}
.f-w-500 {
  font-weight: 500 !important;
}
.f-w-600 {
  font-weight: 600 !important;
}
.f-w-700 {
  font-weight: 700 !important;
}
.f-w-800 {
  font-weight: 800 !important;
}
.f-w-900 {
  font-weight: 900 !important;
}
.font-italic {
  font-style: italic !important;
}
.font-normal {
  font-style: normal !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
.text-left {
  text-align: left !important;
}
.text-none {
  text-decoration: none !important;
}
.text-underline {
  text-decoration: underline !important;
}
.text-line-through {
  text-decoration: line-through !important;
}
.text-capitalize {
  text-transform: capitalize !important;
}
.text-uppercase {
  text-transform: uppercase !important;
}
.text-lowercase {
  text-transform: lowercase !important;
}
.text-wrap {
  white-space: normal !important;
}
.text-nowrap {
  white-space: nowrap !important;
}
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}
.text-ellipsis {
  text-overflow: ellipsis !important;
}
.text-reset {
  color: inherit !important;
}
.text-current {
  color: currentColor !important;
}
.align-baseline {
  vertical-align: baseline !important;
}
.align-top {
  vertical-align: top !important;
}
.align-middle {
  vertical-align: middle !important;
}
.align-bottom {
  vertical-align: bottom !important;
}
.align-text-bottom {
  vertical-align: text-bottom !important;
}
.align-text-top {
  vertical-align: text-top !important;
}
.overflow-auto {
  overflow: auto !important;
}
.overflow-hidden {
  overflow: hidden !important;
}
.overflow-visible {
  overflow: visible !important;
}
.overflow-scroll {
  overflow: scroll !important;
}
.overflow-x-auto {
  overflow-x: auto !important;
}
.overflow-x-hidden {
  overflow-x: hidden !important;
}
.overflow-x-visible {
  overflow-x: visible !important;
}
.overflow-x-scroll {
  overflow-x: scroll !important;
}
.overflow-y-auto {
  overflow-y: auto !important;
}
.overflow-y-hidden {
  overflow-y: hidden !important;
}
.overflow-y-visible {
  overflow-y: visible !important;
}
.overflow-y-scroll {
  overflow-y: scroll !important;
}
.cursor-default {
  cursor: default !important;
}
.cursor-pointer {
  cursor: pointer !important;
}
.cursor-text {
  cursor: text !important;
}
.cursor-move {
  cursor: move !important;
}
.cursor-copy {
  cursor: copy !important;
}
.cursor-not-allowed {
  cursor: not-allowed !important;
}
.select-all {
  user-select: all !important;
}
.select-auto {
  user-select: auto !important;
}
.select-none {
  user-select: none !important;
}
.pointer-events-none {
  pointer-events: none !important;
}
.pointer-events-auto {
  pointer-events: auto !important;
}
.clear {
  clear: both !important;
}
.object-contain {
  object-fit: contain !important;
}
.object-cover {
  object-fit: cover !important;
}
.object-fill {
  object-fit: fill !important;
}
.object-none {
  object-fit: none !important;
}
.object-scale-down {
  object-fit: scale-down !important;
}
.object-top {
  object-position: top !important;
}
.object-bottom {
  object-position: bottom !important;
}
.object-center {
  object-position: center !important;
}
.object-left {
  object-position: left !important;
}
.object-left-top {
  object-position: left top !important;
}
.object-left-bottom {
  object-position: left bottom !important;
}
.object-right {
  object-position: right !important;
}
.object-right-top {
  object-position: right top !important;
}
.object-right-bottom {
  object-position: right bottom !important;
}
.photoviewer-modal {
  position: absolute;
  z-index: 1090;
  width: 320px;
  height: 320px;
  color: #333;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.6);
  border-radius: 6px;
  box-shadow: 0 2px 10px 2px rgba(0, 0, 0, 0.3);
  outline: none;
}
.photoviewer-modal:focus-visible {
  outline: thick solid rgba(0, 0, 0, 0.2);
}
.photoviewer-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.photoviewer-maximized {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto;
  height: auto;
}
.photoviewer-maximized.photoviewer-modal {
  border-width: 0;
  border-radius: 0;
}
.photoviewer-maximized .photoviewer-header {
  border-radius: 0;
}
.photoviewer-maximized .photoviewer-resizable-handle {
  display: none;
}
.photoviewer-button {
  display: inline-block;
  min-width: 40px;
  height: 40px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1;
  background: none;
  border-width: 0;
  color: inherit;
  cursor: pointer;
  outline: none;
}
.photoviewer-button:hover {
  color: #111;
}
.photoviewer-button:focus {
  background-color: rgba(0, 0, 0, 0.1);
}
.photoviewer-button svg {
  display: inline-block;
  font-size: inherit;
  width: 1em;
  height: 1em;
  overflow: visible;
  vertical-align: -0.125em;
}
.photoviewer-header {
  position: relative;
  z-index: 2;
  height: 30px;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
}
.photoviewer-header .photoviewer-toolbar {
  float: right;
}
[dir=rtl] .photoviewer-header .photoviewer-toolbar {
  float: left;
}
.photoviewer-header .photoviewer-button {
  height: 30px;
}
.photoviewer-header .photoviewer-button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.photoviewer-header .photoviewer-button-close:hover {
  color: #fff;
  background-color: #ff4545;
}
.photoviewer-title {
  padding: 8px 10px;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  user-select: none;
  overflow: hidden;
}
.photoviewer-stage {
  position: absolute;
  top: 30px;
  right: 0;
  bottom: 40px;
  left: 0;
  z-index: 1;
  border-top: 1px solid rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.6);
  background-color: #fff;
  overflow: hidden;
}
.photoviewer-image {
  position: absolute;
  display: inline-block;
  min-width: auto;
  max-width: none;
}
.photoviewer-footer {
  position: absolute;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 40px;
  text-align: center;
}
.photoviewer-align-center {
  text-align: center;
}
.photoviewer-align-center::before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  overflow: hidden;
}
.photoviewer-align-center .photoviewer-image {
  position: static;
  max-width: 100%;
  max-height: 100%;
  vertical-align: middle;
}
.photoviewer-image-error {
  display: none;
}
.photoviewer-error-msg {
  vertical-align: middle;
}
[dir=rtl] .photoviewer-button-prev,
[dir=rtl] .photoviewer-button-next {
  transform: rotate(180deg);
}
.photoviewer-resizable-handle {
  position: absolute;
  z-index: 10;
}
.photoviewer-resizable-handle-e {
  top: 0;
  right: -5px;
  bottom: 0;
  left: auto;
  width: 10px;
  cursor: e-resize;
}
.photoviewer-resizable-handle-s {
  top: auto;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 10px;
  cursor: s-resize;
}
.photoviewer-resizable-handle-w {
  top: 0;
  right: auto;
  bottom: 0;
  left: -5px;
  width: 10px;
  cursor: w-resize;
}
.photoviewer-resizable-handle-n {
  top: -5px;
  right: 0;
  bottom: auto;
  left: 0;
  height: 10px;
  cursor: n-resize;
}
.photoviewer-resizable-handle-se {
  top: auto;
  right: -5px;
  bottom: -5px;
  left: auto;
  width: 10px;
  height: 10px;
  cursor: se-resize;
}
.photoviewer-resizable-handle-sw {
  top: auto;
  right: auto;
  bottom: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  cursor: sw-resize;
}
.photoviewer-resizable-handle-nw {
  top: -5px;
  right: auto;
  bottom: auto;
  left: -5px;
  width: 10px;
  height: 10px;
  cursor: nw-resize;
}
.photoviewer-resizable-handle-ne {
  top: -5px;
  right: -5px;
  bottom: auto;
  left: auto;
  width: 10px;
  height: 10px;
  cursor: ne-resize;
}
.photoviewer-modal:fullscreen {
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: black;
  border-width: 0;
  border-radius: 0;
}
.photoviewer-modal:fullscreen .photoviewer-header,
.photoviewer-modal:fullscreen .photoviewer-footer,
.photoviewer-modal:fullscreen .photoviewer-resizable-handle {
  display: none;
}
.photoviewer-modal:fullscreen .photoviewer-stage {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-width: 0;
  background-color: transparent;
}
.is-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.is-grabbing {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.photoviewer-loader {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 2;
  text-align: center;
  color: #333;
}
.photoviewer-loader::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 36px;
  height: 36px;
  box-sizing: border-box;
  border-width: 5px;
  border-style: solid;
  border-color: rgba(0, 0, 0, 0.5) rgba(0, 0, 0, 0.5) rgba(0, 0, 0, 0.5) rgba(255, 255, 255, 0.5);
  border-radius: 100%;
  vertical-align: middle;
  animation: photoviewerLoading 1s infinite linear;
}
.photoviewer-loader::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  vertical-align: middle;
  overflow: hidden;
}
@keyframes photoviewerLoading {
  0% {
    transform: rotateZ(0deg) translate3d(0, 0, 0);
  }
  100% {
    transform: rotateZ(360deg) translate3d(0, 0, 0);
  }
}
@keyframes hotToastEnter {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.hot-toast-animated-icon {
  animation: var(--hot-toast-animated-icon-animation, hotToastEnter 0.3s ease-in-out forwards);
  position: var(--hot-toast-animated-icon-position, relative);
  transform: var(--hot-toast-animated-icon-transform, scale(0));
}
@media (prefers-reduced-motion: reduce) {
  .hot-toast-animated-icon {
    animation-duration: var(--hot-toast-animated-icon-reduced-motion-animation-duration, none);
    opacity: var(--hot-toast-animated-icon-reduced-motion-opacity, 1);
    transform: var(--hot-toast-animated-icon-reduced-motion-transform, scale(1));
  }
}
@keyframes hotToastCircleAnimation {
  from {
    opacity: 0;
    transform: scale(0) rotate(45deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(45deg);
  }
}
@keyframes hotToastCheckmarkAnimation {
  0% {
    height: 0;
    opacity: 0;
    width: 0;
  }
  40% {
    height: 0;
    opacity: 1;
    width: 6px;
  }
  100% {
    height: 10px;
    opacity: 1;
  }
}
.hot-toast-checkmark-icon {
  animation: var(--hot-toast-checkmark-icon-animation, hotToastCircleAnimation 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards);
  animation-delay: var(--hot-toast-checkmark-icon-animation-delay, 100ms);
  background-color: var(--hot-toast-checkmark-icon-background-color, var(--check-primary, #61d345));
  border-radius: var(--hot-toast-checkmark-icon-border-radius, 10px);
  height: var(--hot-toast-checkmark-icon-height, 20px);
  opacity: var(--hot-toast-checkmark-icon-opacity, 0);
  position: var(--hot-toast-checkmark-icon-position, relative);
  transform: var(--hot-toast-checkmark-icon-transform, rotate(45deg));
  width: var(--hot-toast-checkmark-icon-width, 20px);
}
@media (prefers-reduced-motion: reduce) {
  .hot-toast-checkmark-icon {
    animation-duration: var(--hot-toast-checkmark-icon-reduced-motion-animation-duration, 0ms);
  }
}
.hot-toast-checkmark-icon::after {
  animation: var(--hot-toast-checkmark-icon-after-animation, hotToastCheckmarkAnimation 0.2s ease-out forwards);
  animation-delay: var(--hot-toast-checkmark-icon-after-animation-delay, 200ms);
  border-bottom-style: solid;
  border-bottom-width: var(--hot-toast-checkmark-icon-after-border-bottom, 2px);
  border-color: var(--hot-toast-checkmark-icon-after-border-color, var(--check-secondary, #fff));
  border-right-style: solid;
  border-right-width: var(--hot-toast-checkmark-icon-after-border-right, 2px);
  bottom: var(--hot-toast-checkmark-icon-after-bottom, 6px);
  box-sizing: var(--hot-toast-checkmark-icon-after-box-sizing, border-box);
  content: var(--hot-toast-checkmark-icon-after-content, "");
  height: var(--hot-toast-checkmark-icon-after-height, 10px);
  left: var(--hot-toast-checkmark-icon-after-left, 6px);
  opacity: var(--hot-toast-checkmark-icon-after-opacity, 0);
  position: var(--hot-toast-checkmark-icon-after-position, absolute);
  width: var(--hot-toast-checkmark-icon-after-width, 6px);
}
@media (prefers-reduced-motion: reduce) {
  .hot-toast-checkmark-icon::after {
    animation-duration: var(--hot-toast-checkmark-icon-after-reduced-motion-animation-duration, 0ms);
  }
}
@keyframes hotToastErrorCircleAnimation {
  from {
    opacity: 0;
    transform: scale(0) rotate(45deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(45deg);
  }
}
@keyframes hotToastFirstLineAnimation {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes hotToastSecondLineAnimation {
  from {
    opacity: 0;
    transform: scale(0) rotate(90deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(90deg);
  }
}
.hot-toast-error-icon {
  animation: var(--hot-toast-error-icon-animation, hotToastErrorCircleAnimation 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards);
  animation-delay: var(--hot-toast-error-icon-animation-delay, 100ms);
  background: var(--hot-toast-error-icon-background, var(--error-primary, #ff4b4b));
  border-radius: var(--hot-toast-error-icon-border-radius, 10px);
  height: var(--hot-toast-error-icon-height, 20px);
  opacity: var(--hot-toast-error-icon-opacity, 0);
  position: var(--hot-toast-error-icon-position, relative);
  transform: var(--hot-toast-error-icon-transform, rotate(45deg));
  width: var(--hot-toast-error-icon-width, 20px);
}
@media (prefers-reduced-motion: reduce) {
  .hot-toast-error-icon {
    animation-duration: var(--hot-toast-error-icon-reduced-motion-animation-duration, 0ms);
  }
}
.hot-toast-error-icon::after,
.hot-toast-error-icon::before {
  animation: var(--hot-toast-error-icon-after-before-animation, hotToastFirstLineAnimation 0.15s ease-out forwards);
  animation-delay: var(--hot-toast-error-icon-after-before-animation-delay, 150ms);
  background: var(--hot-toast-error-icon-after-before-background, var(--error-secondary, #fff));
  border-radius: var(--hot-toast-error-icon-after-before-border-radius, 3px);
  bottom: var(--hot-toast-error-icon-after-before-bottom, 9px);
  content: var(--hot-toast-error-icon-after-before-content, "");
  height: var(--hot-toast-error-icon-after-before-height, 2px);
  left: var(--hot-toast-error-icon-after-before-left, 4px);
  opacity: var(--hot-toast-error-icon-after-before-opacity, 0);
  position: var(--hot-toast-error-icon-after-before-position, absolute);
  width: var(--hot-toast-error-icon-after-before-width, 12px);
}
@media (prefers-reduced-motion: reduce) {
  .hot-toast-error-icon::after,
  .hot-toast-error-icon::before {
    animation-duration: var(--hot-toast-error-icon-after-before-reduced-motion-animation-duration, 0ms);
  }
}
.hot-toast-error-icon::before {
  animation: var(--hot-toast-error-icon-before-animation, hotToastSecondLineAnimation 0.15s ease-out forwards);
  animation-delay: var(--hot-toast-error-icon-before-animation-delay, 180ms);
  transform: var(--hot-toast-error-icon-before-transform, rotate(90deg));
}
@media (prefers-reduced-motion: reduce) {
  .hot-toast-error-icon::before {
    animation-duration: var(--hot-toast-error-icon-before-reduced-motion-animation-duration, 0ms);
  }
}
.hot-toast-bar-base {
  align-items: var(--hot-toast-align-items, center);
  background-color: var(--hot-toast-bg, #fff);
  border-radius: var(--hot-toast-border-radius, 4px);
  box-shadow: var(--hot-toast-shadow, 0 3px 10px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.05));
  color: var(--hot-toast-color, #363636);
  display: var(--hot-toast-display, flex);
  line-height: var(--hot-toast-line, 1.3);
  margin: var(--hot-toast-margin, 16px);
  max-width: var(--hot-toast-max-width, 350px);
  padding: var(--hot-toast-padding, 8px 10px);
  pointer-events: var(--hot-toast-pointer-events, auto);
  width: var(--hot-toast-width, fit-content);
  transition-property: border-bottom-left-radius, border-bottom-right-radius;
  transition-duration: 230ms;
  transition-timing-function: ease-out;
}
.hot-toast-bar-base:hover,
.hot-toast-bar-base:focus {
  animation-play-state: var(--hot-toast-animation-state, paused) !important;
}
@media (prefers-reduced-motion: reduce) {
  .hot-toast-bar-base {
    animation-duration: var(--hot-toast-reduced-motion-animation-duration, 10ms) !important;
  }
}
.expanded .hot-toast-bar-base {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.hot-toast-message {
  color: var(--hot-toast-message-color, inherit);
  display: var(--hot-toast-message-display, flex);
  flex: var(--hot-toast-message-flex, 1);
  justify-content: var(--hot-toast-message-justify-content, center);
  margin: var(--hot-toast-message-margin, 4px 10px);
}
.hot-toast-bar-base-container {
  display: var(--hot-toast-container-display, flex);
  pointer-events: var(--hot-toast-container-pointer-events, none);
  position: var(--hot-toast-container-position, absolute);
  transition: var(--hot-toast-container-transition, transform 230ms cubic-bezier(0.21, 1.02, 0.73, 1));
}
@media (prefers-reduced-motion: reduce) {
  .hot-toast-bar-base-container {
    transition-duration: var(--hot-toast-container-reduced-motion-transition-duration, 10ms) !important;
  }
}
.hot-toast-bar-base-container.hot-toast-theme-snackbar .hot-toast-bar-base {
  background: var(--hot-toast-snackbar-bg, #323232);
  box-shadow: var(--hot-toast-snackbar-shadow, 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12));
  color: var(--hot-toast-snackbar-color, rgb(255, 255, 255));
}
.hot-toast-bar-base-container.hot-toast-theme-snackbar .hot-toast-close-btn {
  filter: var(--hot-toast-snackbar-close-btn-filter, invert(1) grayscale(100%) brightness(200%));
}
.hot-toast-close-btn {
  align-self: var(--hot-toast-close-btn-align-self, flex-start);
  background-color: var(--hot-toast-close-btn-background-color, transparent);
  background-image: var(--hot-toast-close-btn-background-image, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e"));
  background-position: var(--hot-toast-close-btn-background-position, center);
  background-repeat: var(--hot-toast-close-btn-background-repeat, no-repeat);
  background-size: var(--hot-toast-close-btn-background-size, 0.75em);
  border: var(--hot-toast-close-btn-border, 0);
  border-radius: var(--hot-toast-close-btn-border-radius, 0.25rem);
  box-sizing: var(--hot-toast-close-btn-box-sizing, content-box);
  display: var(--hot-toast-close-btn-display, flex);
  height: var(--hot-toast-close-btn-height, 0.8em);
  margin-top: var(--hot-toast-close-btn-margin-top, 0.25em);
  opacity: var(--hot-toast-close-btn-opacity, 0.5);
  padding: var(--hot-toast-close-btn-padding, 0.25em);
  width: var(--hot-toast-close-btn-width, 0.8em);
}
.hot-toast-close-btn:focus {
  box-shadow: var(--hot-toast-close-btn-box-shadow, 0 0 0 0.125rem rgba(13, 110, 253, 0.25));
  outline: var(--hot-toast-close-btn-outline, none);
}
.hot-toast-close-btn:hover,
.hot-toast-close-btn:focus {
  opacity: var(--hot-toast-close-btn-opacity, 0.75);
}
.hot-toast-group-btn {
  align-self: var(--hot-toast-group-btn-align-self, flex-start);
  background-color: var(--hot-toast-group-btn-background-color, transparent);
  background-image: var(--hot-toast-group-btn-background-image, url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.75745 10.5858L9.17166 9.17154L12.0001 12L14.8285 9.17157L16.2427 10.5858L12.0001 14.8284L7.75745 10.5858Z' fill='currentColor' /%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1 12C1 5.92487 5.92487 1 12 1C18.0751 1 23 5.92487 23 12C23 18.0751 18.0751 23 12 23C5.92487 23 1 18.0751 1 12ZM12 21C7.02944 21 3 16.9706 3 12C3 7.02944 7.02944 3 12 3C16.9706 3 21 7.02944 21 12C21 16.9706 16.9706 21 12 21Z' fill='currentColor' /%3E%3C/svg%3E"));
  background-position: var(--hot-toast-group-btn-background-position, center);
  background-repeat: var(--hot-toast-group-btn-background-repeat, no-repeat);
  background-size: var(--hot-toast-group-btn-background-size, 1.3em);
  border: var(--hot-toast-group-btn-border, 0);
  border-radius: var(--hot-toast-group-btn-border-radius, 0.25rem);
  box-sizing: var(--hot-toast-group-btn-box-sizing, content-box);
  display: var(--hot-toast-group-btn-display, flex);
  height: var(--hot-toast-group-btn-height, 0.8em);
  margin-top: var(--hot-toast-group-btn-margin-top, 0.25em);
  opacity: var(--hot-toast-group-btn-opacity, 0.5);
  padding: var(--hot-toast-group-btn-padding, 0.25em);
  width: var(--hot-toast-group-btn-width, 0.8em);
  will-change: var(--hot-toast-group-btn-will-change, transform);
  transition: var(--hot-toast-group-btn-transition, transform 230ms cubic-bezier(0.21, 1.02, 0.73, 1));
}
.hot-toast-group-btn:focus {
  box-shadow: var(--hot-toast-group-btn-box-shadow, 0 0 0 0.125rem rgba(13, 110, 253, 0.25));
  outline: var(--hot-toast-group-btn-outline, none);
}
.hot-toast-group-btn:hover,
.hot-toast-group-btn:focus {
  opacity: var(--hot-toast-group-btn-opacity, 0.75);
}
.expanded .hot-toast-group-btn {
  transform: rotate(var(--hot-toast-group-btn-expanded-rotate, 180deg));
}
.hot-toast-icon {
  align-self: var(--hot-toast-icon-align-self, flex-start);
  padding-top: var(--hot-toast-icon-padding-top, 0.25em);
}
.hot-toast-bar-base-wrapper {
  pointer-events: all;
}
.hot-toast-bar-base-group {
  --hot-toast-shadow: none;
  background-color: var(--hot-toast-group-bg, #fff);
  margin: var(--hot-toast-margin, 16px);
  margin-top: calc(-1 * var(--hot-toast-margin, 16px));
  border-bottom-left-radius: var(--hot-toast-border-radius, 4px);
  border-bottom-right-radius: var(--hot-toast-border-radius, 4px);
  height: 0;
  overflow: hidden;
  transition-property: height;
  transition-duration: 230ms;
  transition-timing-function: ease-in-out;
  position: relative;
  box-shadow: var(--hot-toast-group-after-shadow, 0 3px 10px rgba(0, 0, 0, 0.1), 0 3px 3px rgba(0, 0, 0, 0.05));
}
.expanded .hot-toast-bar-base-group {
  height: var(--hot-toast-group-height);
}
.hot-toast-bar-base-group .hot-toast-bar-base {
  margin: 0;
}
@keyframes hotToastEnterAnimationNegative {
  0% {
    opacity: 0.5;
    transform: translate3d(0, -80px, 0) scale(0.6);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes hotToastEnterAnimationPositive {
  0% {
    opacity: 0.5;
    transform: translate3d(0, 80px, 0) scale(0.6);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}
@keyframes hotToastExitAnimationPositive {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, -1px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, var(--hot-toast-exit-positive-y, 130px), -1px) scale(0.5);
  }
}
@keyframes hotToastExitAnimationNegative {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, -1px) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, var(--hot-toast-exit-negative-y, -130px), -1px) scale(0.5);
  }
}
@keyframes hotToastEnterSoftAnimationNegative {
  0% {
    opacity: 0.5;
    transform: translate3d(0, -14px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes hotToastEnterSoftAnimationPositive {
  0% {
    opacity: 0.5;
    transform: translate3d(0, 14px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes hotToastExitSoftAnimationPositive {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, -1px);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 14px, -1px);
  }
}
@keyframes hotToastExitSoftAnimationNegative {
  0% {
    opacity: 1;
    transform: translate3d(0, 0, -1px);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -14px, -1px);
  }
}
.hot-toast-indicator-wrapper {
  align-items: var(--hot-toast-indicator-wrapper-align-items, center);
  display: var(--hot-toast-indicator-wrapper-display, flex);
  justify-content: var(--hot-toast-indicator-wrapper-justify-content, center);
  min-height: var(--hot-toast-indicator-wrapper-min-height, 20px);
  min-width: var(--hot-toast-indicator-wrapper-min-width, 20px);
  position: var(--hot-toast-indicator-wrapper-position, relative);
}
.hot-toast-status-wrapper {
  position: var(--hot-toast-status-wrapper-position, absolute);
}
@keyframes animate-info-background {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes animate-info-line {
  0% {
    height: 0;
    opacity: 0;
  }
  40% {
    height: 4.8px;
    opacity: 1;
  }
  100% {
    height: 8px;
    opacity: 1;
  }
}
.hot-toast-info-icon {
  animation: var(--hot-toast-info-icon-animation, animate-info-background 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards);
  animation-delay: var(--hot-toast-info-icon-animation-delay, 100ms);
  background-color: var(--hot-toast-info-icon-background-color, var(--info-primary, #0d6efd));
  border-radius: var(--hot-toast-info-icon-border-radius, 50%);
  display: var(--hot-toast-info-icon-display, block);
  height: var(--hot-toast-info-icon-height, 20px);
  opacity: var(--hot-toast-info-icon-opacity, 0);
  position: var(--hot-toast-info-icon-position, relative);
  transform: var(--hot-toast-info-icon-transform, scale(0));
  width: var(--hot-toast-info-icon-width, 20px);
}
.hot-toast-info-icon::after,
.hot-toast-info-icon::before {
  background-color: var(--hot-toast-info-icon-after-before-background-color, var(--info-secondary, #fff));
  border-radius: var(--hot-toast-info-icon-after-before-border-radius, 3px);
  box-sizing: var(--hot-toast-info-icon-after-before-box-sizing, border-box);
  content: var(--hot-toast-info-icon-after-before-content, "");
  display: var(--hot-toast-info-icon-after-before-display, block);
  left: var(--hot-toast-info-icon-after-before-left, 8.5px);
  position: var(--hot-toast-info-icon-after-before-position, absolute);
  width: var(--hot-toast-info-icon-after-before-width, 2.5px);
}
.hot-toast-info-icon::after {
  animation: var(--hot-toast-info-icon-after-animation, animate-info-line 0.2s ease-out forwards);
  animation-delay: var(--hot-toast-info-icon-after-animation-delay, 200ms);
  height: var(--hot-toast-info-icon-after-height, 0);
  opacity: var(--hot-toast-info-icon-after-opacity, 0);
  top: var(--hot-toast-info-icon-after-bottom, 8px);
}
.hot-toast-info-icon::before {
  height: var(--hot-toast-info-icon-before-height, 2px);
  top: var(--hot-toast-info-icon-before-top, 4px);
}
@keyframes hotToastRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.hot-toast-loader-icon {
  animation: var(--hot-toast-loader-icon-animation, hotToastRotate 1s linear infinite);
  border: var(--hot-toast-loader-icon-border, 2px solid);
  border-bottom-color: var(--hot-toast-loader-icon-border-color, #e0e0e0);
  border-left-color: var(--hot-toast-loader-icon-border-color, #e0e0e0);
  border-radius: var(--hot-toast-loader-icon-border-radius, 100%);
  border-right-color: var(--hot-toast-loader-icon-border-right-color, #616161);
  border-top-color: var(--hot-toast-loader-icon-border-color, #e0e0e0);
  box-sizing: var(--hot-toast-loader-icon-box-sizing, border-box);
  height: var(--hot-toast-loader-icon-height, 18px);
  padding-top: var(--hot-toast-loader-icon-padding-top, 2px);
  width: var(--hot-toast-loader-icon-width, 18px);
}
@media (prefers-reduced-motion: reduce) {
  .hot-toast-loader-icon {
    animation-duration: var(--hot-toast-loader-icon-reduced-motion-animation-duration, 5s);
  }
}
@keyframes animate-warn-background {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes animate-warn-line {
  0% {
    height: 0;
    opacity: 0;
  }
  40% {
    height: 4.8px;
    opacity: 1;
  }
  100% {
    height: 8px;
    opacity: 1;
  }
}
.hot-toast-warning-icon {
  animation: var(--hot-toast-warning-icon-animation, animate-warn-background 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards);
  animation-delay: var(--hot-toast-warning-icon-animation-delay, 100ms);
  background-color: var(--hot-toast-warning-icon-background-color, var(--warn-primary, #ffab00));
  border-radius: var(--hot-toast-warning-icon-border-radius, 50%);
  display: var(--hot-toast-warning-icon-display, block);
  height: var(--hot-toast-warning-icon-height, 20px);
  opacity: var(--hot-toast-warning-icon-opacity, 0);
  position: var(--hot-toast-warning-icon-position, relative);
  transform: var(--hot-toast-warning-icon-transform, scale(0));
  width: var(--hot-toast-warning-icon-width, 20px);
}
.hot-toast-warning-icon::after,
.hot-toast-warning-icon::before {
  background-color: var(--hot-toast-warning-icon-after-before-background-color, var(--warn-secondary, #fff));
  border-radius: var(--hot-toast-warning-icon-after-before-border-radius, 3px);
  box-sizing: var(--hot-toast-warning-icon-after-before-box-sizing, border-box);
  content: var(--hot-toast-warning-icon-after-before-content, "");
  display: var(--hot-toast-warning-icon-after-before-display, block);
  left: var(--hot-toast-warning-icon-after-before-left, 8.5px);
  position: var(--hot-toast-warning-icon-after-before-position, absolute);
  width: var(--hot-toast-warning-icon-after-before-width, 2.5px);
}
.hot-toast-warning-icon::after {
  animation: var(--hot-toast-warning-icon-after-animation, animate-warn-line 0.2s ease-out forwards);
  animation-delay: var(--hot-toast-warning-icon-after-animation-delay, 200ms);
  height: var(--hot-toast-warning-icon-after-height, 0);
  opacity: var(--hot-toast-warning-icon-after-opacity, 0);
  top: var(--hot-toast-warning-icon-after-top, 4px);
}
.hot-toast-warning-icon::before {
  bottom: var(--hot-toast-warning-icon-before-bottom, 4px);
  height: var(--hot-toast-warning-icon-before-height, 2px);
}
.hot-toast-theme-toast {
  --hot-toast-padding: 6px 10px;
  --hot-toast-border-radius: 8px;
  --hot-toast-line: 1.25;
  --hot-toast-message-margin: 4px 8px;
  --hot-toast-icon-padding-top: 4px;
  --hot-toast-close-btn-width: 12px;
  --hot-toast-close-btn-height: 12px;
  --hot-toast-close-btn-padding: 4px;
  --hot-toast-close-btn-margin-top: 4px;
}
formly-wrapper-mat-form-field .mat-mdc-form-field {
  width: 100%;
}
mat-card {
  margin-bottom: var(--gutter);
}
mat-card-header + mat-card-content {
  margin-top: var(--gutter);
}
.form-field-full .mat-mdc-form-field {
  width: 100%;
}
body {
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: auto;
}
body::-webkit-scrollbar {
  width: 8px;
  height: 0;
}
body::-webkit-scrollbar:horizontal {
  display: none;
}
.password-dialog-panel .mat-mdc-dialog-surface {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28) !important;
  border-radius: var(--app-shape-large) !important;
  border: 2px solid var(--app-color-primary, #1976d2) !important;
}
.share-link-dialog-panel .mat-mdc-dialog-surface {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28) !important;
  border-radius: 12px !important;
  border: 2px solid var(--app-color-primary, #1976d2) !important;
}
mat-sidenav-content {
  overflow-y: scroll;
  overflow-x: hidden;
  background-color: var(--app-color-background) !important;
}
mat-sidenav-container {
  background-color: var(--app-color-background) !important;
}
.mat-mdc-tooltip-surface,
.mdc-tooltip__surface {
  background: var(--app-color-surface, #ffffff) !important;
  color: var(--app-color-on-surface, #1c1b1f) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
  border: 1px solid var(--app-color-outline-variant, rgba(0, 0, 0, 0.06)) !important;
  border-radius: var(--app-shape-small) !important;
}
.ngxsmk-popover-container.ngxsmk-popover-open {
  --viewport-width: 100vw;
  --popover-safe-margin: 16px;
  max-width: min(580px, 100vw - 32px) !important;
  transform: translateX(min(0px, 100vw - 100% - var(--popover-safe-margin) - var(--left-offset, 0px)));
}
.ngxsmk-datepicker-wrapper .ngxsmk-popover-container {
  max-width: clamp(280px, 90vw, 580px);
  transform: translateX(min(0px, 100vw - 100% - 16px));
}
.ngxsmk-select-panel,
.ngxsmk-options-panel {
  background: var(--app-color-surface) !important;
  scrollbar-width: thin !important;
  scrollbar-color: var(--app-color-outline) var(--app-color-surface) !important;
}
.ngxsmk-select-panel::-webkit-scrollbar,
.ngxsmk-options-panel::-webkit-scrollbar {
  width: 8px !important;
}
.ngxsmk-select-panel::-webkit-scrollbar-track,
.ngxsmk-options-panel::-webkit-scrollbar-track {
  background: var(--app-color-surface) !important;
}
.ngxsmk-select-panel::-webkit-scrollbar-thumb,
.ngxsmk-options-panel::-webkit-scrollbar-thumb {
  background: var(--app-color-outline) !important;
  border-radius: 4px !important;
}
.ngxsmk-select-panel::-webkit-scrollbar-thumb:hover,
.ngxsmk-options-panel::-webkit-scrollbar-thumb:hover {
  background: var(--app-color-on-surface-variant) !important;
}
.ngxsmk-select-panel .ngxsmk-select-option,
.ngxsmk-select-panel li[role=option],
.ngxsmk-options-panel .ngxsmk-select-option,
.ngxsmk-options-panel li[role=option] {
  color: var(--app-color-on-surface) !important;
  background: var(--app-color-surface) !important;
}
.ngxsmk-select-panel .ngxsmk-select-option:hover,
.ngxsmk-select-panel li[role=option]:hover,
.ngxsmk-options-panel .ngxsmk-select-option:hover,
.ngxsmk-options-panel li[role=option]:hover {
  background: var(--app-color-surface-container-high) !important;
  color: var(--app-color-on-surface) !important;
}
.ngxsmk-select-panel .ngxsmk-select-option.selected,
.ngxsmk-select-panel .ngxsmk-select-option.ngxsmk-selected,
.ngxsmk-select-panel .ngxsmk-select-option[aria-selected=true],
.ngxsmk-select-panel .ngxsmk-select-option[class*=selected],
.ngxsmk-select-panel li[role=option].selected,
.ngxsmk-select-panel li[role=option].ngxsmk-selected,
.ngxsmk-select-panel li[role=option][aria-selected=true],
.ngxsmk-select-panel li[role=option][class*=selected],
.ngxsmk-options-panel .ngxsmk-select-option.selected,
.ngxsmk-options-panel .ngxsmk-select-option.ngxsmk-selected,
.ngxsmk-options-panel .ngxsmk-select-option[aria-selected=true],
.ngxsmk-options-panel .ngxsmk-select-option[class*=selected],
.ngxsmk-options-panel li[role=option].selected,
.ngxsmk-options-panel li[role=option].ngxsmk-selected,
.ngxsmk-options-panel li[role=option][aria-selected=true],
.ngxsmk-options-panel li[role=option][class*=selected] {
  background: var(--app-color-primary-container) !important;
  color: var(--app-color-on-primary-container) !important;
}
.ngxsmk-select-panel ul,
.ngxsmk-options-panel ul {
  background: var(--app-color-surface) !important;
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
