/* src/styles.scss */
body:has(.default-theme) {
  --eule-status-bar-background: map.get($eeule-palette, 100);
  --eule-app-bar: white;
  --eule-background: map.get($eeule-palette, 50);
  --eule-secondary-background: map.get($eeule-palette, A50);
  --eule-tertiary-background: map.get($eeule-palette, 50);
  --eule-quaternary-background: map.get($eeule-palette, A100);
  --eule-differ-table-row: #31374205;
  --eule-table-row-hover: #558b2f11;
  --eule-hover: rgba(0, 0, 0, 0.04);
  --eule-tooltip: map.get($eeule-palette, 800);
  --eule-base: map.get($eeule-palette, 900);
  --eule-divider: map.get($eeule-palette, 100);
  --eule-dividers: map.get($eeule-palette, A75);
  --eule-disabled: map.get($eeule-palette, 300);
  --eule-disabled-button: map.get($eeule-palette, 200);
  --eule-disabled-text: map.get($eeule-palette, 200);
  --eule-disabled-form-field: map.get($eeule-palette, A200);
  --eule-hint-text: map.get($eeule-palette, 300);
  --eule-secondary-text: map.get($eeule-palette, 400);
  --eule-text: map.get($eeule-palette, 900);
  --eule-icon: map.get($eeule-palette, 700);
  --eule-icons: map.get($eeule-palette, 800);
  --eule-elevation: map.get($eeule-palette, 500);
  --eule-quaternary-background-hover: hsl(225, 34%, 96%);
}
body:has(.dark-theme) {
  --eule-status-bar: map.get($eeule-palette, 800);
  --eule-app-bar: map.get($eeule-palette, 500);
  --eule-background: map.get($eeule-palette, 600);
  --eule-secondary-background: map.get($eeule-palette, A200);
  --eule-tertiary-background: map.get($eeule-palette, 600);
  --eule-quaternary-background: map.get($eeule-palette, A300);
  --eule-differ-table-row: #edf1f605;
  --eule-table-row-hover: #64dd1733;
  --eule-hover: rgba(255, 255, 255, 0.04);
  --eule-card: map.get($eeule-palette, 700);
  --eule-dialog: map.get($eeule-palette, 700);
  --eule-tooltip: map.get($eeule-palette, 800);
  --eule-base: map.get($eeule-palette, 100);
  --eule-divider: map.get($eeule-palette, A400);
  --eule-dividers: map.get($eeule-palette, A350);
  --eule-disabled: map.get($eeule-palette, 300);
  --eule-disabled-button: map.get($eeule-palette, 200);
  --eule-disabled-text: map.get($eeule-palette, 300);
  --eule-disabled-form-field: map.get($eeule-palette, 400);
  --eule-hint-text: map.get($eeule-palette, 300);
  --eule-secondary-text: map.get($eeule-palette, 200);
  --eule-icon: map.get($eeule-palette, 200);
  --eule-icons: map.get($eeule-palette, 200);
  --eule-text: map.get($eeule-palette, 100);
  --eule-inverted-text: map.get($eeule-palette, 900);
  --eule-quaternary-background-hover: hsl(220, 14.4%, 32%);
}
.mat-ripple {
  overflow: hidden;
  position: relative;
}
.mat-ripple:not(:empty) {
  transform: translateZ(0);
}
.mat-ripple.mat-ripple-unbounded {
  overflow: visible;
}
.mat-ripple-element {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1);
  transform: scale3d(0, 0, 0);
  background-color: var(--mat-ripple-color, rgba(0, 0, 0, 0.1));
}
.cdk-high-contrast-active .mat-ripple-element {
  display: none;
}
.cdk-drag-preview .mat-ripple-element,
.cdk-drag-placeholder .mat-ripple-element {
  display: none;
}
.cdk-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  left: 0;
}
[dir=rtl] .cdk-visually-hidden {
  left: auto;
  right: 0;
}
.cdk-overlay-container,
.cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  display: none;
}
.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}
.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  z-index: 1000;
  display: flex;
  max-width: 100%;
  max-height: 100%;
}
.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 1;
}
.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0.6;
}
.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, 0.32);
}
.cdk-overlay-transparent-backdrop {
  transition: visibility 1ms linear, opacity 1ms linear;
  visibility: hidden;
  opacity: 1;
}
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0;
  visibility: visible;
}
.cdk-overlay-backdrop-noop-animation {
  transition: none;
}
.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
}
.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}
textarea.cdk-textarea-autosize {
  resize: none;
}
textarea.cdk-textarea-autosize-measuring {
  padding: 2px 0 !important;
  box-sizing: content-box !important;
  height: auto !important;
  overflow: hidden !important;
}
textarea.cdk-textarea-autosize-measuring-firefox {
  padding: 2px 0 !important;
  box-sizing: content-box !important;
  height: 0 !important;
}
@keyframes cdk-text-field-autofill-start {
}
@keyframes cdk-text-field-autofill-end {
}
.cdk-text-field-autofill-monitored:-webkit-autofill {
  animation: cdk-text-field-autofill-start 0s 1ms;
}
.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
  animation: cdk-text-field-autofill-end 0s 1ms;
}
.mat-focus-indicator {
  position: relative;
}
.mat-focus-indicator::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  box-sizing: border-box;
  pointer-events: none;
  display: var(--mat-focus-indicator-display, none);
  border: var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);
  border-radius: var(--mat-focus-indicator-border-radius, 4px);
}
.mat-focus-indicator:focus::before {
  content: "";
}
.cdk-high-contrast-active {
  --mat-focus-indicator-display: block;
}
.mat-mdc-focus-indicator {
  position: relative;
}
.mat-mdc-focus-indicator::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  box-sizing: border-box;
  pointer-events: none;
  display: var(--mat-mdc-focus-indicator-display, none);
  border: var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);
  border-radius: var(--mat-mdc-focus-indicator-border-radius, 4px);
}
.mat-mdc-focus-indicator:focus::before {
  content: "";
}
.cdk-high-contrast-active {
  --mat-mdc-focus-indicator-display: block;
}
.mat-app-background {
  background-color: var(--mat-app-background-color, var(--mat-app-background, transparent));
  color: var(--mat-app-text-color, var(--mat-app-on-background, inherit));
}
.mat-elevation-z0,
.mat-mdc-elevation-specific.mat-elevation-z0 {
  box-shadow: var(--mat-app-elevation-shadow-level-0, none);
}
.mat-elevation-z1,
.mat-mdc-elevation-specific.mat-elevation-z1 {
  box-shadow: var(--mat-app-elevation-shadow-level-1, none);
}
.mat-elevation-z2,
.mat-mdc-elevation-specific.mat-elevation-z2 {
  box-shadow: var(--mat-app-elevation-shadow-level-2, none);
}
.mat-elevation-z3,
.mat-mdc-elevation-specific.mat-elevation-z3 {
  box-shadow: var(--mat-app-elevation-shadow-level-3, none);
}
.mat-elevation-z4,
.mat-mdc-elevation-specific.mat-elevation-z4 {
  box-shadow: var(--mat-app-elevation-shadow-level-4, none);
}
.mat-elevation-z5,
.mat-mdc-elevation-specific.mat-elevation-z5 {
  box-shadow: var(--mat-app-elevation-shadow-level-5, none);
}
.mat-elevation-z6,
.mat-mdc-elevation-specific.mat-elevation-z6 {
  box-shadow: var(--mat-app-elevation-shadow-level-6, none);
}
.mat-elevation-z7,
.mat-mdc-elevation-specific.mat-elevation-z7 {
  box-shadow: var(--mat-app-elevation-shadow-level-7, none);
}
.mat-elevation-z8,
.mat-mdc-elevation-specific.mat-elevation-z8 {
  box-shadow: var(--mat-app-elevation-shadow-level-8, none);
}
.mat-elevation-z9,
.mat-mdc-elevation-specific.mat-elevation-z9 {
  box-shadow: var(--mat-app-elevation-shadow-level-9, none);
}
.mat-elevation-z10,
.mat-mdc-elevation-specific.mat-elevation-z10 {
  box-shadow: var(--mat-app-elevation-shadow-level-10, none);
}
.mat-elevation-z11,
.mat-mdc-elevation-specific.mat-elevation-z11 {
  box-shadow: var(--mat-app-elevation-shadow-level-11, none);
}
.mat-elevation-z12,
.mat-mdc-elevation-specific.mat-elevation-z12 {
  box-shadow: var(--mat-app-elevation-shadow-level-12, none);
}
.mat-elevation-z13,
.mat-mdc-elevation-specific.mat-elevation-z13 {
  box-shadow: var(--mat-app-elevation-shadow-level-13, none);
}
.mat-elevation-z14,
.mat-mdc-elevation-specific.mat-elevation-z14 {
  box-shadow: var(--mat-app-elevation-shadow-level-14, none);
}
.mat-elevation-z15,
.mat-mdc-elevation-specific.mat-elevation-z15 {
  box-shadow: var(--mat-app-elevation-shadow-level-15, none);
}
.mat-elevation-z16,
.mat-mdc-elevation-specific.mat-elevation-z16 {
  box-shadow: var(--mat-app-elevation-shadow-level-16, none);
}
.mat-elevation-z17,
.mat-mdc-elevation-specific.mat-elevation-z17 {
  box-shadow: var(--mat-app-elevation-shadow-level-17, none);
}
.mat-elevation-z18,
.mat-mdc-elevation-specific.mat-elevation-z18 {
  box-shadow: var(--mat-app-elevation-shadow-level-18, none);
}
.mat-elevation-z19,
.mat-mdc-elevation-specific.mat-elevation-z19 {
  box-shadow: var(--mat-app-elevation-shadow-level-19, none);
}
.mat-elevation-z20,
.mat-mdc-elevation-specific.mat-elevation-z20 {
  box-shadow: var(--mat-app-elevation-shadow-level-20, none);
}
.mat-elevation-z21,
.mat-mdc-elevation-specific.mat-elevation-z21 {
  box-shadow: var(--mat-app-elevation-shadow-level-21, none);
}
.mat-elevation-z22,
.mat-mdc-elevation-specific.mat-elevation-z22 {
  box-shadow: var(--mat-app-elevation-shadow-level-22, none);
}
.mat-elevation-z23,
.mat-mdc-elevation-specific.mat-elevation-z23 {
  box-shadow: var(--mat-app-elevation-shadow-level-23, none);
}
.mat-elevation-z24,
.mat-mdc-elevation-specific.mat-elevation-z24 {
  box-shadow: var(--mat-app-elevation-shadow-level-24, none);
}
.mat-theme-loaded-marker {
  display: none;
}
html {
  --mat-ripple-color: rgba(33, 38, 41, 0.1);
}
html {
  --mat-option-selected-state-label-text-color: #558b2f;
  --mat-option-label-text-color: #212629;
  --mat-option-hover-state-layer-color: rgba(33, 38, 41, 0.04);
  --mat-option-focus-state-layer-color: rgba(33, 38, 41, 0.04);
  --mat-option-selected-state-layer-color: rgba(33, 38, 41, 0.04);
}
.mat-accent {
  --mat-option-selected-state-label-text-color: #009688;
  --mat-option-label-text-color: #212629;
  --mat-option-hover-state-layer-color: rgba(33, 38, 41, 0.04);
  --mat-option-focus-state-layer-color: rgba(33, 38, 41, 0.04);
  --mat-option-selected-state-layer-color: rgba(33, 38, 41, 0.04);
}
.mat-warn {
  --mat-option-selected-state-label-text-color: #ff5722;
  --mat-option-label-text-color: #212629;
  --mat-option-hover-state-layer-color: rgba(33, 38, 41, 0.04);
  --mat-option-focus-state-layer-color: rgba(33, 38, 41, 0.04);
  --mat-option-selected-state-layer-color: rgba(33, 38, 41, 0.04);
}
html {
  --mat-optgroup-label-text-color: #212629;
}
.mat-primary {
  --mat-full-pseudo-checkbox-selected-icon-color: #558b2f;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #edf1f6;
  --mat-full-pseudo-checkbox-unselected-icon-color: #6c757c;
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #edf1f6;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #558b2f;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
html {
  --mat-full-pseudo-checkbox-selected-icon-color: #009688;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #edf1f6;
  --mat-full-pseudo-checkbox-unselected-icon-color: #6c757c;
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #edf1f6;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #009688;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
.mat-accent {
  --mat-full-pseudo-checkbox-selected-icon-color: #009688;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #edf1f6;
  --mat-full-pseudo-checkbox-unselected-icon-color: #6c757c;
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #edf1f6;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #009688;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
.mat-warn {
  --mat-full-pseudo-checkbox-selected-icon-color: #ff5722;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #edf1f6;
  --mat-full-pseudo-checkbox-unselected-icon-color: #6c757c;
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #edf1f6;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff5722;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
html {
  --mat-app-background-color: #edf1f6;
  --mat-app-text-color: #212629;
  --mat-app-elevation-shadow-level-0:
    0px 0px 0px 0px rgba(75, 85, 100, 0.2),
    0px 0px 0px 0px rgba(75, 85, 100, 0.14),
    0px 0px 0px 0px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-1:
    0px 2px 1px -1px rgba(75, 85, 100, 0.2),
    0px 1px 1px 0px rgba(75, 85, 100, 0.14),
    0px 1px 3px 0px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-2:
    0px 3px 1px -2px rgba(75, 85, 100, 0.2),
    0px 2px 2px 0px rgba(75, 85, 100, 0.14),
    0px 1px 5px 0px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-3:
    0px 3px 3px -2px rgba(75, 85, 100, 0.2),
    0px 3px 4px 0px rgba(75, 85, 100, 0.14),
    0px 1px 8px 0px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-4:
    0px 2px 4px -1px rgba(75, 85, 100, 0.2),
    0px 4px 5px 0px rgba(75, 85, 100, 0.14),
    0px 1px 10px 0px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-5:
    0px 3px 5px -1px rgba(75, 85, 100, 0.2),
    0px 5px 8px 0px rgba(75, 85, 100, 0.14),
    0px 1px 14px 0px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-6:
    0px 3px 5px -1px rgba(75, 85, 100, 0.2),
    0px 6px 10px 0px rgba(75, 85, 100, 0.14),
    0px 1px 18px 0px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-7:
    0px 4px 5px -2px rgba(75, 85, 100, 0.2),
    0px 7px 10px 1px rgba(75, 85, 100, 0.14),
    0px 2px 16px 1px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-8:
    0px 5px 5px -3px rgba(75, 85, 100, 0.2),
    0px 8px 10px 1px rgba(75, 85, 100, 0.14),
    0px 3px 14px 2px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-9:
    0px 5px 6px -3px rgba(75, 85, 100, 0.2),
    0px 9px 12px 1px rgba(75, 85, 100, 0.14),
    0px 3px 16px 2px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-10:
    0px 6px 6px -3px rgba(75, 85, 100, 0.2),
    0px 10px 14px 1px rgba(75, 85, 100, 0.14),
    0px 4px 18px 3px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-11:
    0px 6px 7px -4px rgba(75, 85, 100, 0.2),
    0px 11px 15px 1px rgba(75, 85, 100, 0.14),
    0px 4px 20px 3px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-12:
    0px 7px 8px -4px rgba(75, 85, 100, 0.2),
    0px 12px 17px 2px rgba(75, 85, 100, 0.14),
    0px 5px 22px 4px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-13:
    0px 7px 8px -4px rgba(75, 85, 100, 0.2),
    0px 13px 19px 2px rgba(75, 85, 100, 0.14),
    0px 5px 24px 4px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-14:
    0px 7px 9px -4px rgba(75, 85, 100, 0.2),
    0px 14px 21px 2px rgba(75, 85, 100, 0.14),
    0px 5px 26px 4px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-15:
    0px 8px 9px -5px rgba(75, 85, 100, 0.2),
    0px 15px 22px 2px rgba(75, 85, 100, 0.14),
    0px 6px 28px 5px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-16:
    0px 8px 10px -5px rgba(75, 85, 100, 0.2),
    0px 16px 24px 2px rgba(75, 85, 100, 0.14),
    0px 6px 30px 5px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-17:
    0px 8px 11px -5px rgba(75, 85, 100, 0.2),
    0px 17px 26px 2px rgba(75, 85, 100, 0.14),
    0px 6px 32px 5px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-18:
    0px 9px 11px -5px rgba(75, 85, 100, 0.2),
    0px 18px 28px 2px rgba(75, 85, 100, 0.14),
    0px 7px 34px 6px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-19:
    0px 9px 12px -6px rgba(75, 85, 100, 0.2),
    0px 19px 29px 2px rgba(75, 85, 100, 0.14),
    0px 7px 36px 6px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-20:
    0px 10px 13px -6px rgba(75, 85, 100, 0.2),
    0px 20px 31px 3px rgba(75, 85, 100, 0.14),
    0px 8px 38px 7px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-21:
    0px 10px 13px -6px rgba(75, 85, 100, 0.2),
    0px 21px 33px 3px rgba(75, 85, 100, 0.14),
    0px 8px 40px 7px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-22:
    0px 10px 14px -6px rgba(75, 85, 100, 0.2),
    0px 22px 35px 3px rgba(75, 85, 100, 0.14),
    0px 8px 42px 7px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-23:
    0px 11px 14px -7px rgba(75, 85, 100, 0.2),
    0px 23px 36px 3px rgba(75, 85, 100, 0.14),
    0px 9px 44px 8px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-24:
    0px 11px 15px -7px rgba(75, 85, 100, 0.2),
    0px 24px 38px 3px rgba(75, 85, 100, 0.14),
    0px 9px 46px 8px rgba(75, 85, 100, 0.12);
}
html {
  --mat-option-label-text-font: Roboto, sans-serif;
  --mat-option-label-text-line-height: 24px;
  --mat-option-label-text-size: 16px;
  --mat-option-label-text-tracking: 0.03125em;
  --mat-option-label-text-weight: 400;
}
html {
  --mat-optgroup-label-text-font: Roboto, sans-serif;
  --mat-optgroup-label-text-line-height: 24px;
  --mat-optgroup-label-text-size: 16px;
  --mat-optgroup-label-text-tracking: 0.03125em;
  --mat-optgroup-label-text-weight: 400;
}
html {
  --mat-ripple-color: rgba(33, 38, 41, 0.1);
}
html {
  --mat-option-selected-state-label-text-color: #558b2f;
  --mat-option-label-text-color: #212629;
  --mat-option-hover-state-layer-color: rgba(33, 38, 41, 0.04);
  --mat-option-focus-state-layer-color: rgba(33, 38, 41, 0.04);
  --mat-option-selected-state-layer-color: rgba(33, 38, 41, 0.04);
}
.mat-accent {
  --mat-option-selected-state-label-text-color: #009688;
  --mat-option-label-text-color: #212629;
  --mat-option-hover-state-layer-color: rgba(33, 38, 41, 0.04);
  --mat-option-focus-state-layer-color: rgba(33, 38, 41, 0.04);
  --mat-option-selected-state-layer-color: rgba(33, 38, 41, 0.04);
}
.mat-warn {
  --mat-option-selected-state-label-text-color: #ff5722;
  --mat-option-label-text-color: #212629;
  --mat-option-hover-state-layer-color: rgba(33, 38, 41, 0.04);
  --mat-option-focus-state-layer-color: rgba(33, 38, 41, 0.04);
  --mat-option-selected-state-layer-color: rgba(33, 38, 41, 0.04);
}
html {
  --mat-optgroup-label-text-color: #212629;
}
.mat-primary {
  --mat-full-pseudo-checkbox-selected-icon-color: #558b2f;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #edf1f6;
  --mat-full-pseudo-checkbox-unselected-icon-color: #6c757c;
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #edf1f6;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #558b2f;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
html {
  --mat-full-pseudo-checkbox-selected-icon-color: #009688;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #edf1f6;
  --mat-full-pseudo-checkbox-unselected-icon-color: #6c757c;
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #edf1f6;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #009688;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
.mat-accent {
  --mat-full-pseudo-checkbox-selected-icon-color: #009688;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #edf1f6;
  --mat-full-pseudo-checkbox-unselected-icon-color: #6c757c;
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #edf1f6;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #009688;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
.mat-warn {
  --mat-full-pseudo-checkbox-selected-icon-color: #ff5722;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #edf1f6;
  --mat-full-pseudo-checkbox-unselected-icon-color: #6c757c;
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #edf1f6;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #b0b0b0;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #b0b0b0;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff5722;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}
html {
  --mat-app-background-color: #edf1f6;
  --mat-app-text-color: #212629;
  --mat-app-elevation-shadow-level-0:
    0px 0px 0px 0px rgba(75, 85, 100, 0.2),
    0px 0px 0px 0px rgba(75, 85, 100, 0.14),
    0px 0px 0px 0px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-1:
    0px 2px 1px -1px rgba(75, 85, 100, 0.2),
    0px 1px 1px 0px rgba(75, 85, 100, 0.14),
    0px 1px 3px 0px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-2:
    0px 3px 1px -2px rgba(75, 85, 100, 0.2),
    0px 2px 2px 0px rgba(75, 85, 100, 0.14),
    0px 1px 5px 0px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-3:
    0px 3px 3px -2px rgba(75, 85, 100, 0.2),
    0px 3px 4px 0px rgba(75, 85, 100, 0.14),
    0px 1px 8px 0px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-4:
    0px 2px 4px -1px rgba(75, 85, 100, 0.2),
    0px 4px 5px 0px rgba(75, 85, 100, 0.14),
    0px 1px 10px 0px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-5:
    0px 3px 5px -1px rgba(75, 85, 100, 0.2),
    0px 5px 8px 0px rgba(75, 85, 100, 0.14),
    0px 1px 14px 0px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-6:
    0px 3px 5px -1px rgba(75, 85, 100, 0.2),
    0px 6px 10px 0px rgba(75, 85, 100, 0.14),
    0px 1px 18px 0px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-7:
    0px 4px 5px -2px rgba(75, 85, 100, 0.2),
    0px 7px 10px 1px rgba(75, 85, 100, 0.14),
    0px 2px 16px 1px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-8:
    0px 5px 5px -3px rgba(75, 85, 100, 0.2),
    0px 8px 10px 1px rgba(75, 85, 100, 0.14),
    0px 3px 14px 2px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-9:
    0px 5px 6px -3px rgba(75, 85, 100, 0.2),
    0px 9px 12px 1px rgba(75, 85, 100, 0.14),
    0px 3px 16px 2px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-10:
    0px 6px 6px -3px rgba(75, 85, 100, 0.2),
    0px 10px 14px 1px rgba(75, 85, 100, 0.14),
    0px 4px 18px 3px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-11:
    0px 6px 7px -4px rgba(75, 85, 100, 0.2),
    0px 11px 15px 1px rgba(75, 85, 100, 0.14),
    0px 4px 20px 3px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-12:
    0px 7px 8px -4px rgba(75, 85, 100, 0.2),
    0px 12px 17px 2px rgba(75, 85, 100, 0.14),
    0px 5px 22px 4px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-13:
    0px 7px 8px -4px rgba(75, 85, 100, 0.2),
    0px 13px 19px 2px rgba(75, 85, 100, 0.14),
    0px 5px 24px 4px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-14:
    0px 7px 9px -4px rgba(75, 85, 100, 0.2),
    0px 14px 21px 2px rgba(75, 85, 100, 0.14),
    0px 5px 26px 4px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-15:
    0px 8px 9px -5px rgba(75, 85, 100, 0.2),
    0px 15px 22px 2px rgba(75, 85, 100, 0.14),
    0px 6px 28px 5px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-16:
    0px 8px 10px -5px rgba(75, 85, 100, 0.2),
    0px 16px 24px 2px rgba(75, 85, 100, 0.14),
    0px 6px 30px 5px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-17:
    0px 8px 11px -5px rgba(75, 85, 100, 0.2),
    0px 17px 26px 2px rgba(75, 85, 100, 0.14),
    0px 6px 32px 5px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-18:
    0px 9px 11px -5px rgba(75, 85, 100, 0.2),
    0px 18px 28px 2px rgba(75, 85, 100, 0.14),
    0px 7px 34px 6px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-19:
    0px 9px 12px -6px rgba(75, 85, 100, 0.2),
    0px 19px 29px 2px rgba(75, 85, 100, 0.14),
    0px 7px 36px 6px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-20:
    0px 10px 13px -6px rgba(75, 85, 100, 0.2),
    0px 20px 31px 3px rgba(75, 85, 100, 0.14),
    0px 8px 38px 7px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-21:
    0px 10px 13px -6px rgba(75, 85, 100, 0.2),
    0px 21px 33px 3px rgba(75, 85, 100, 0.14),
    0px 8px 40px 7px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-22:
    0px 10px 14px -6px rgba(75, 85, 100, 0.2),
    0px 22px 35px 3px rgba(75, 85, 100, 0.14),
    0px 8px 42px 7px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-23:
    0px 11px 14px -7px rgba(75, 85, 100, 0.2),
    0px 23px 36px 3px rgba(75, 85, 100, 0.14),
    0px 9px 44px 8px rgba(75, 85, 100, 0.12);
  --mat-app-elevation-shadow-level-24:
    0px 11px 15px -7px rgba(75, 85, 100, 0.2),
    0px 24px 38px 3px rgba(75, 85, 100, 0.14),
    0px 9px 46px 8px rgba(75, 85, 100, 0.12);
}
html {
  --mat-option-label-text-font: Roboto, sans-serif;
  --mat-option-label-text-line-height: 24px;
  --mat-option-label-text-size: 16px;
  --mat-option-label-text-tracking: 0.03125em;
  --mat-option-label-text-weight: 400;
}
html {
  --mat-optgroup-label-text-font: Roboto, sans-serif;
  --mat-optgroup-label-text-line-height: 24px;
  --mat-optgroup-label-text-size: 16px;
  --mat-optgroup-label-text-tracking: 0.03125em;
  --mat-optgroup-label-text-weight: 400;
}
html {
  --mdc-elevated-card-container-shape: 4px;
  --mdc-outlined-card-container-shape: 4px;
  --mdc-outlined-card-outline-width: 1px;
}
html {
  --mdc-elevated-card-container-color: white;
  --mdc-elevated-card-container-elevation:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-outlined-card-container-color: white;
  --mdc-outlined-card-outline-color: rgba(33, 38, 41, 0.12);
  --mdc-outlined-card-container-elevation:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-card-subtitle-text-color: #6c757c;
}
html {
  --mat-card-title-text-font: Roboto, sans-serif;
  --mat-card-title-text-line-height: 32px;
  --mat-card-title-text-size: 20px;
  --mat-card-title-text-tracking: 0.0125em;
  --mat-card-title-text-weight: 500;
  --mat-card-subtitle-text-font: Roboto, sans-serif;
  --mat-card-subtitle-text-line-height: 22px;
  --mat-card-subtitle-text-size: 14px;
  --mat-card-subtitle-text-tracking: 0.0071428571em;
  --mat-card-subtitle-text-weight: 500;
}
html {
  --mdc-linear-progress-active-indicator-height: 4px;
  --mdc-linear-progress-track-height: 4px;
  --mdc-linear-progress-track-shape: 0;
}
.mat-mdc-progress-bar {
  --mdc-linear-progress-active-indicator-color: #558b2f;
  --mdc-linear-progress-track-color: rgba(85, 139, 47, 0.25);
}
.mat-mdc-progress-bar.mat-accent {
  --mdc-linear-progress-active-indicator-color: #009688;
  --mdc-linear-progress-track-color: rgba(0, 150, 136, 0.25);
}
.mat-mdc-progress-bar.mat-warn {
  --mdc-linear-progress-active-indicator-color: #ff5722;
  --mdc-linear-progress-track-color: rgba(255, 87, 34, 0.25);
}
html {
  --mdc-plain-tooltip-container-shape: 4px;
  --mdc-plain-tooltip-supporting-text-line-height: 16px;
}
html {
  --mdc-plain-tooltip-container-color: #313742;
  --mdc-plain-tooltip-supporting-text-color: #fff;
}
html {
  --mdc-plain-tooltip-supporting-text-font: Roboto, sans-serif;
  --mdc-plain-tooltip-supporting-text-size: 12px;
  --mdc-plain-tooltip-supporting-text-weight: 400;
  --mdc-plain-tooltip-supporting-text-tracking: 0.0333333333em;
}
html {
  --mdc-filled-text-field-active-indicator-height: 1px;
  --mdc-filled-text-field-focus-active-indicator-height: 2px;
  --mdc-filled-text-field-container-shape: 4px;
  --mdc-outlined-text-field-outline-width: 1px;
  --mdc-outlined-text-field-focus-outline-width: 2px;
  --mdc-outlined-text-field-container-shape: 4px;
}
html {
  --mdc-filled-text-field-caret-color: #558b2f;
  --mdc-filled-text-field-focus-active-indicator-color: #558b2f;
  --mdc-filled-text-field-focus-label-text-color: rgba(85, 139, 47, 0.87);
  --mdc-filled-text-field-container-color: whitesmoke;
  --mdc-filled-text-field-disabled-container-color: #fafafa;
  --mdc-filled-text-field-label-text-color: rgba(33, 38, 41, 0.6);
  --mdc-filled-text-field-hover-label-text-color: rgba(33, 38, 41, 0.6);
  --mdc-filled-text-field-disabled-label-text-color: rgba(163, 171, 189, 0.38);
  --mdc-filled-text-field-input-text-color: rgba(33, 38, 41, 0.87);
  --mdc-filled-text-field-disabled-input-text-color: rgba(163, 171, 189, 0.38);
  --mdc-filled-text-field-input-text-placeholder-color: rgba(33, 38, 41, 0.6);
  --mdc-filled-text-field-error-hover-label-text-color: #ff5722;
  --mdc-filled-text-field-error-focus-label-text-color: #ff5722;
  --mdc-filled-text-field-error-label-text-color: #ff5722;
  --mdc-filled-text-field-error-caret-color: #ff5722;
  --mdc-filled-text-field-active-indicator-color: rgba(206, 212, 220, 0.42);
  --mdc-filled-text-field-disabled-active-indicator-color: rgba(206, 212, 220, 0.06);
  --mdc-filled-text-field-hover-active-indicator-color: rgba(206, 212, 220, 0.87);
  --mdc-filled-text-field-error-active-indicator-color: #ff5722;
  --mdc-filled-text-field-error-focus-active-indicator-color: #ff5722;
  --mdc-filled-text-field-error-hover-active-indicator-color: #ff5722;
  --mdc-outlined-text-field-caret-color: #558b2f;
  --mdc-outlined-text-field-focus-outline-color: #558b2f;
  --mdc-outlined-text-field-focus-label-text-color: rgba(85, 139, 47, 0.87);
  --mdc-outlined-text-field-label-text-color: rgba(33, 38, 41, 0.6);
  --mdc-outlined-text-field-hover-label-text-color: rgba(33, 38, 41, 0.6);
  --mdc-outlined-text-field-disabled-label-text-color: rgba(163, 171, 189, 0.38);
  --mdc-outlined-text-field-input-text-color: rgba(33, 38, 41, 0.87);
  --mdc-outlined-text-field-disabled-input-text-color: rgba(163, 171, 189, 0.38);
  --mdc-outlined-text-field-input-text-placeholder-color: rgba(33, 38, 41, 0.6);
  --mdc-outlined-text-field-error-caret-color: #ff5722;
  --mdc-outlined-text-field-error-focus-label-text-color: #ff5722;
  --mdc-outlined-text-field-error-label-text-color: #ff5722;
  --mdc-outlined-text-field-error-hover-label-text-color: #ff5722;
  --mdc-outlined-text-field-outline-color: rgba(206, 212, 220, 0.38);
  --mdc-outlined-text-field-disabled-outline-color: rgba(206, 212, 220, 0.06);
  --mdc-outlined-text-field-hover-outline-color: rgba(206, 212, 220, 0.87);
  --mdc-outlined-text-field-error-focus-outline-color: #ff5722;
  --mdc-outlined-text-field-error-hover-outline-color: #ff5722;
  --mdc-outlined-text-field-error-outline-color: #ff5722;
  --mat-form-field-focus-select-arrow-color: rgba(85, 139, 47, 0.87);
  --mat-form-field-disabled-input-text-placeholder-color: rgba(53, 59, 71, 0.38);
  --mat-form-field-state-layer-color: rgba(33, 38, 41, 0.87);
  --mat-form-field-error-text-color: #ff5722;
  --mat-form-field-select-option-text-color: inherit;
  --mat-form-field-select-disabled-option-text-color: GrayText;
  --mat-form-field-leading-icon-color: unset;
  --mat-form-field-disabled-leading-icon-color: unset;
  --mat-form-field-trailing-icon-color: unset;
  --mat-form-field-disabled-trailing-icon-color: unset;
  --mat-form-field-error-focus-trailing-icon-color: unset;
  --mat-form-field-error-hover-trailing-icon-color: unset;
  --mat-form-field-error-trailing-icon-color: unset;
  --mat-form-field-enabled-select-arrow-color: rgba(53, 59, 71, 0.54);
  --mat-form-field-disabled-select-arrow-color: rgba(53, 59, 71, 0.38);
  --mat-form-field-hover-state-layer-opacity: 0.04;
  --mat-form-field-focus-state-layer-opacity: 0.08;
}
.mat-mdc-form-field.mat-accent {
  --mdc-filled-text-field-caret-color: #009688;
  --mdc-filled-text-field-focus-active-indicator-color: #009688;
  --mdc-filled-text-field-focus-label-text-color: rgba(0, 150, 136, 0.87);
  --mdc-outlined-text-field-caret-color: #009688;
  --mdc-outlined-text-field-focus-outline-color: #009688;
  --mdc-outlined-text-field-focus-label-text-color: rgba(0, 150, 136, 0.87);
  --mat-form-field-focus-select-arrow-color: rgba(0, 150, 136, 0.87);
}
.mat-mdc-form-field.mat-warn {
  --mdc-filled-text-field-caret-color: #ff5722;
  --mdc-filled-text-field-focus-active-indicator-color: #ff5722;
  --mdc-filled-text-field-focus-label-text-color: rgba(255, 87, 34, 0.87);
  --mdc-outlined-text-field-caret-color: #ff5722;
  --mdc-outlined-text-field-focus-outline-color: #ff5722;
  --mdc-outlined-text-field-focus-label-text-color: rgba(255, 87, 34, 0.87);
  --mat-form-field-focus-select-arrow-color: rgba(255, 87, 34, 0.87);
}
html {
  --mat-form-field-container-height: 56px;
  --mat-form-field-filled-label-display: block;
  --mat-form-field-container-vertical-padding: 16px;
  --mat-form-field-filled-with-label-container-padding-top: 24px;
  --mat-form-field-filled-with-label-container-padding-bottom: 8px;
}
html {
  --mdc-filled-text-field-label-text-font: Roboto, sans-serif;
  --mdc-filled-text-field-label-text-size: 16px;
  --mdc-filled-text-field-label-text-tracking: 0.03125em;
  --mdc-filled-text-field-label-text-weight: 400;
  --mdc-outlined-text-field-label-text-font: Roboto, sans-serif;
  --mdc-outlined-text-field-label-text-size: 16px;
  --mdc-outlined-text-field-label-text-tracking: 0.03125em;
  --mdc-outlined-text-field-label-text-weight: 400;
  --mat-form-field-container-text-font: Roboto, sans-serif;
  --mat-form-field-container-text-line-height: 24px;
  --mat-form-field-container-text-size: 16px;
  --mat-form-field-container-text-tracking: 0.03125em;
  --mat-form-field-container-text-weight: 400;
  --mat-form-field-outlined-label-text-populated-size: 16px;
  --mat-form-field-subscript-text-font: Roboto, sans-serif;
  --mat-form-field-subscript-text-line-height: 20px;
  --mat-form-field-subscript-text-size: 12px;
  --mat-form-field-subscript-text-tracking: 0.0333333333em;
  --mat-form-field-subscript-text-weight: 400;
}
html {
  --mat-select-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
html {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(33, 38, 41, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(163, 171, 189, 0.38);
  --mat-select-placeholder-text-color: rgba(33, 38, 41, 0.6);
  --mat-select-enabled-arrow-color: rgba(206, 212, 220, 0.54);
  --mat-select-disabled-arrow-color: rgba(33, 38, 41, 0.38);
  --mat-select-focused-arrow-color: rgba(85, 139, 47, 0.87);
  --mat-select-invalid-arrow-color: rgba(255, 87, 34, 0.87);
}
html .mat-mdc-form-field.mat-accent {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(33, 38, 41, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(163, 171, 189, 0.38);
  --mat-select-placeholder-text-color: rgba(33, 38, 41, 0.6);
  --mat-select-enabled-arrow-color: rgba(206, 212, 220, 0.54);
  --mat-select-disabled-arrow-color: rgba(33, 38, 41, 0.38);
  --mat-select-focused-arrow-color: rgba(0, 150, 136, 0.87);
  --mat-select-invalid-arrow-color: rgba(255, 87, 34, 0.87);
}
html .mat-mdc-form-field.mat-warn {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(33, 38, 41, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(163, 171, 189, 0.38);
  --mat-select-placeholder-text-color: rgba(33, 38, 41, 0.6);
  --mat-select-enabled-arrow-color: rgba(206, 212, 220, 0.54);
  --mat-select-disabled-arrow-color: rgba(33, 38, 41, 0.38);
  --mat-select-focused-arrow-color: rgba(255, 87, 34, 0.87);
  --mat-select-invalid-arrow-color: rgba(255, 87, 34, 0.87);
}
html {
  --mat-select-arrow-transform: translateY(-8px);
}
html {
  --mat-select-trigger-text-font: Roboto, sans-serif;
  --mat-select-trigger-text-line-height: 24px;
  --mat-select-trigger-text-size: 16px;
  --mat-select-trigger-text-tracking: 0.03125em;
  --mat-select-trigger-text-weight: 400;
}
html {
  --mat-autocomplete-container-shape: 4px;
  --mat-autocomplete-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
html {
  --mat-autocomplete-background-color: white;
}
html {
  --mdc-dialog-container-shape: 4px;
  --mat-dialog-container-elevation-shadow:
    0px 11px 15px -7px rgba(0, 0, 0, 0.2),
    0px 24px 38px 3px rgba(0, 0, 0, 0.14),
    0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mat-dialog-container-max-width: 80vw;
  --mat-dialog-container-small-max-width: 80vw;
  --mat-dialog-container-min-width: 0;
  --mat-dialog-actions-alignment: start;
  --mat-dialog-actions-padding: 8px;
  --mat-dialog-content-padding: 20px 24px;
  --mat-dialog-with-actions-content-padding: 20px 24px;
  --mat-dialog-headline-padding: 0 24px 9px;
}
html {
  --mdc-dialog-container-color: white;
  --mdc-dialog-subhead-color: rgba(33, 38, 41, 0.87);
  --mdc-dialog-supporting-text-color: rgba(33, 38, 41, 0.6);
}
html {
  --mdc-dialog-subhead-font: Roboto, sans-serif;
  --mdc-dialog-subhead-line-height: 32px;
  --mdc-dialog-subhead-size: 20px;
  --mdc-dialog-subhead-weight: 500;
  --mdc-dialog-subhead-tracking: 0.0125em;
  --mdc-dialog-supporting-text-font: Roboto, sans-serif;
  --mdc-dialog-supporting-text-line-height: 24px;
  --mdc-dialog-supporting-text-size: 16px;
  --mdc-dialog-supporting-text-weight: 400;
  --mdc-dialog-supporting-text-tracking: 0.03125em;
}
.mat-mdc-standard-chip {
  --mdc-chip-container-shape-radius: 16px;
  --mdc-chip-with-avatar-avatar-shape-radius: 14px;
  --mdc-chip-with-avatar-avatar-size: 28px;
  --mdc-chip-with-icon-icon-size: 18px;
  --mdc-chip-outline-width: 0;
  --mdc-chip-outline-color: transparent;
  --mdc-chip-disabled-outline-color: transparent;
  --mdc-chip-focus-outline-color: transparent;
  --mdc-chip-hover-state-layer-opacity: 0.04;
  --mdc-chip-with-avatar-disabled-avatar-opacity: 1;
  --mdc-chip-flat-selected-outline-width: 0;
  --mdc-chip-selected-hover-state-layer-opacity: 0.04;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;
  --mdc-chip-with-icon-disabled-icon-opacity: 1;
  --mat-chip-disabled-container-opacity: 0.4;
  --mat-chip-trailing-action-opacity: 0.54;
  --mat-chip-trailing-action-focus-opacity: 1;
  --mat-chip-trailing-action-state-layer-color: transparent;
  --mat-chip-selected-trailing-action-state-layer-color: transparent;
  --mat-chip-trailing-action-hover-state-layer-opacity: 0;
  --mat-chip-trailing-action-focus-state-layer-opacity: 0;
}
.mat-mdc-standard-chip {
  --mdc-chip-disabled-label-text-color: #212121;
  --mdc-chip-elevated-container-color: #e4e5e5;
  --mdc-chip-elevated-selected-container-color: #e4e5e5;
  --mdc-chip-elevated-disabled-container-color: #e4e5e5;
  --mdc-chip-flat-disabled-selected-container-color: #e4e5e5;
  --mdc-chip-focus-state-layer-color: #212629;
  --mdc-chip-hover-state-layer-color: #212629;
  --mdc-chip-selected-hover-state-layer-color: #212629;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: #212629;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: #212121;
  --mdc-chip-selected-label-text-color: #212121;
  --mdc-chip-with-icon-icon-color: #212121;
  --mdc-chip-with-icon-disabled-icon-color: #212121;
  --mdc-chip-with-icon-selected-icon-color: #212121;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #212121;
  --mdc-chip-with-trailing-icon-trailing-icon-color: #212121;
  --mat-chip-selected-disabled-trailing-icon-color: #212121;
  --mat-chip-selected-trailing-icon-color: #212121;
}
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,
.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #558b2f;
  --mdc-chip-elevated-selected-container-color: #558b2f;
  --mdc-chip-elevated-disabled-container-color: #558b2f;
  --mdc-chip-flat-disabled-selected-container-color: #558b2f;
  --mdc-chip-focus-state-layer-color: #212629;
  --mdc-chip-hover-state-layer-color: #212629;
  --mdc-chip-selected-hover-state-layer-color: #212629;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: #212629;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,
.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #009688;
  --mdc-chip-elevated-selected-container-color: #009688;
  --mdc-chip-elevated-disabled-container-color: #009688;
  --mdc-chip-flat-disabled-selected-container-color: #009688;
  --mdc-chip-focus-state-layer-color: #212629;
  --mdc-chip-hover-state-layer-color: #212629;
  --mdc-chip-selected-hover-state-layer-color: #212629;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: #212629;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
.mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,
.mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #ff5722;
  --mdc-chip-elevated-selected-container-color: #ff5722;
  --mdc-chip-elevated-disabled-container-color: #ff5722;
  --mdc-chip-flat-disabled-selected-container-color: #ff5722;
  --mdc-chip-focus-state-layer-color: #212629;
  --mdc-chip-hover-state-layer-color: #212629;
  --mdc-chip-selected-hover-state-layer-color: #212629;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: #212629;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
.mat-mdc-chip.mat-mdc-standard-chip {
  --mdc-chip-container-height: 32px;
}
.mat-mdc-standard-chip {
  --mdc-chip-label-text-font: Roboto, sans-serif;
  --mdc-chip-label-text-line-height: 20px;
  --mdc-chip-label-text-size: 14px;
  --mdc-chip-label-text-tracking: 0.0178571429em;
  --mdc-chip-label-text-weight: 400;
}
html {
  --mdc-switch-disabled-selected-icon-opacity: 0.38;
  --mdc-switch-disabled-track-opacity: 0.12;
  --mdc-switch-disabled-unselected-icon-opacity: 0.38;
  --mdc-switch-handle-height: 20px;
  --mdc-switch-handle-shape: 10px;
  --mdc-switch-handle-width: 20px;
  --mdc-switch-selected-icon-size: 18px;
  --mdc-switch-track-height: 14px;
  --mdc-switch-track-shape: 7px;
  --mdc-switch-track-width: 36px;
  --mdc-switch-unselected-icon-size: 18px;
  --mdc-switch-selected-focus-state-layer-opacity: 0.12;
  --mdc-switch-selected-hover-state-layer-opacity: 0.04;
  --mdc-switch-selected-pressed-state-layer-opacity: 0.1;
  --mdc-switch-unselected-focus-state-layer-opacity: 0.12;
  --mdc-switch-unselected-hover-state-layer-opacity: 0.04;
  --mdc-switch-unselected-pressed-state-layer-opacity: 0.1;
}
html .mat-mdc-slide-toggle {
  --mat-switch-disabled-selected-handle-opacity: 0.38;
  --mat-switch-disabled-unselected-handle-opacity: 0.38;
  --mat-switch-unselected-handle-size: 20px;
  --mat-switch-selected-handle-size: 20px;
  --mat-switch-pressed-handle-size: 20px;
  --mat-switch-with-icon-handle-size: 20px;
  --mat-switch-selected-handle-horizontal-margin: 0;
  --mat-switch-selected-with-icon-handle-horizontal-margin: 0;
  --mat-switch-selected-pressed-handle-horizontal-margin: 0;
  --mat-switch-unselected-handle-horizontal-margin: 0;
  --mat-switch-unselected-with-icon-handle-horizontal-margin: 0;
  --mat-switch-unselected-pressed-handle-horizontal-margin: 0;
  --mat-switch-visible-track-opacity: 1;
  --mat-switch-hidden-track-opacity: 1;
  --mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);
  --mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  --mat-switch-track-outline-width: 1px;
  --mat-switch-track-outline-color: transparent;
  --mat-switch-selected-track-outline-width: 1px;
  --mat-switch-selected-track-outline-color: transparent;
  --mat-switch-disabled-unselected-track-outline-width: 1px;
  --mat-switch-disabled-unselected-track-outline-color: transparent;
}
html {
  --mdc-switch-selected-focus-state-layer-color: #7cb342;
  --mdc-switch-selected-handle-color: #7cb342;
  --mdc-switch-selected-hover-state-layer-color: #7cb342;
  --mdc-switch-selected-pressed-state-layer-color: #7cb342;
  --mdc-switch-selected-focus-handle-color: #33691e;
  --mdc-switch-selected-hover-handle-color: #33691e;
  --mdc-switch-selected-pressed-handle-color: #33691e;
  --mdc-switch-selected-focus-track-color: #aed581;
  --mdc-switch-selected-hover-track-color: #aed581;
  --mdc-switch-selected-pressed-track-color: #aed581;
  --mdc-switch-selected-track-color: #aed581;
  --mdc-switch-disabled-selected-handle-color: #424242;
  --mdc-switch-disabled-selected-icon-color: #fff;
  --mdc-switch-disabled-selected-track-color: #424242;
  --mdc-switch-disabled-unselected-handle-color: #424242;
  --mdc-switch-disabled-unselected-icon-color: #fff;
  --mdc-switch-disabled-unselected-track-color: #424242;
  --mdc-switch-handle-surface-color: #fff;
  --mdc-switch-selected-icon-color: #fff;
  --mdc-switch-unselected-focus-handle-color: #212121;
  --mdc-switch-unselected-focus-state-layer-color: #424242;
  --mdc-switch-unselected-focus-track-color: #e0e0e0;
  --mdc-switch-unselected-handle-color: #616161;
  --mdc-switch-unselected-hover-handle-color: #212121;
  --mdc-switch-unselected-hover-state-layer-color: #424242;
  --mdc-switch-unselected-hover-track-color: #e0e0e0;
  --mdc-switch-unselected-icon-color: #fff;
  --mdc-switch-unselected-pressed-handle-color: #212121;
  --mdc-switch-unselected-pressed-state-layer-color: #424242;
  --mdc-switch-unselected-pressed-track-color: #e0e0e0;
  --mdc-switch-unselected-track-color: #e0e0e0;
  --mdc-switch-handle-elevation-shadow:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-disabled-handle-elevation-shadow:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-disabled-label-text-color: #a3abbd;
}
html .mat-mdc-slide-toggle {
  --mat-switch-label-text-color: #212629;
}
html .mat-mdc-slide-toggle.mat-accent {
  --mdc-switch-selected-focus-state-layer-color: #00897b;
  --mdc-switch-selected-handle-color: #00897b;
  --mdc-switch-selected-hover-state-layer-color: #00897b;
  --mdc-switch-selected-pressed-state-layer-color: #00897b;
  --mdc-switch-selected-focus-handle-color: #004d40;
  --mdc-switch-selected-hover-handle-color: #004d40;
  --mdc-switch-selected-pressed-handle-color: #004d40;
  --mdc-switch-selected-focus-track-color: #4db6ac;
  --mdc-switch-selected-hover-track-color: #4db6ac;
  --mdc-switch-selected-pressed-track-color: #4db6ac;
  --mdc-switch-selected-track-color: #4db6ac;
}
html .mat-mdc-slide-toggle.mat-warn {
  --mdc-switch-selected-focus-state-layer-color: #f4511e;
  --mdc-switch-selected-handle-color: #f4511e;
  --mdc-switch-selected-hover-state-layer-color: #f4511e;
  --mdc-switch-selected-pressed-state-layer-color: #f4511e;
  --mdc-switch-selected-focus-handle-color: #bf360c;
  --mdc-switch-selected-hover-handle-color: #bf360c;
  --mdc-switch-selected-pressed-handle-color: #bf360c;
  --mdc-switch-selected-focus-track-color: #ff8a65;
  --mdc-switch-selected-hover-track-color: #ff8a65;
  --mdc-switch-selected-pressed-track-color: #ff8a65;
  --mdc-switch-selected-track-color: #ff8a65;
}
html {
  --mdc-switch-state-layer-size: 40px;
}
html .mat-mdc-slide-toggle {
  --mat-switch-label-text-font: Roboto, sans-serif;
  --mat-switch-label-text-line-height: 20px;
  --mat-switch-label-text-size: 14px;
  --mat-switch-label-text-tracking: 0.0178571429em;
  --mat-switch-label-text-weight: 400;
}
html {
  --mdc-radio-disabled-selected-icon-opacity: 0.38;
  --mdc-radio-disabled-unselected-icon-opacity: 0.38;
  --mdc-radio-state-layer-size: 40px;
}
.mat-mdc-radio-button.mat-primary {
  --mdc-radio-disabled-selected-icon-color: #353b47;
  --mdc-radio-disabled-unselected-icon-color: #353b47;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(53, 59, 71, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(53, 59, 71, 0.54);
  --mdc-radio-selected-focus-icon-color: #558b2f;
  --mdc-radio-selected-hover-icon-color: #558b2f;
  --mdc-radio-selected-icon-color: #558b2f;
  --mdc-radio-selected-pressed-icon-color: #558b2f;
  --mat-radio-ripple-color: #212629;
  --mat-radio-checked-ripple-color: #558b2f;
  --mat-radio-disabled-label-color: #a3abbd;
  --mat-radio-label-text-color: #212629;
}
.mat-mdc-radio-button.mat-accent {
  --mdc-radio-disabled-selected-icon-color: #353b47;
  --mdc-radio-disabled-unselected-icon-color: #353b47;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(53, 59, 71, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(53, 59, 71, 0.54);
  --mdc-radio-selected-focus-icon-color: #009688;
  --mdc-radio-selected-hover-icon-color: #009688;
  --mdc-radio-selected-icon-color: #009688;
  --mdc-radio-selected-pressed-icon-color: #009688;
  --mat-radio-ripple-color: #212629;
  --mat-radio-checked-ripple-color: #009688;
  --mat-radio-disabled-label-color: #a3abbd;
  --mat-radio-label-text-color: #212629;
}
.mat-mdc-radio-button.mat-warn {
  --mdc-radio-disabled-selected-icon-color: #353b47;
  --mdc-radio-disabled-unselected-icon-color: #353b47;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(53, 59, 71, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(53, 59, 71, 0.54);
  --mdc-radio-selected-focus-icon-color: #ff5722;
  --mdc-radio-selected-hover-icon-color: #ff5722;
  --mdc-radio-selected-icon-color: #ff5722;
  --mdc-radio-selected-pressed-icon-color: #ff5722;
  --mat-radio-ripple-color: #212629;
  --mat-radio-checked-ripple-color: #ff5722;
  --mat-radio-disabled-label-color: #a3abbd;
  --mat-radio-label-text-color: #212629;
}
html {
  --mdc-radio-state-layer-size: 40px;
  --mat-radio-touch-target-display: block;
}
html {
  --mat-radio-label-text-font: Roboto, sans-serif;
  --mat-radio-label-text-line-height: 20px;
  --mat-radio-label-text-size: 14px;
  --mat-radio-label-text-tracking: 0.0178571429em;
  --mat-radio-label-text-weight: 400;
}
html {
  --mdc-slider-active-track-height: 6px;
  --mdc-slider-active-track-shape: 9999px;
  --mdc-slider-handle-height: 20px;
  --mdc-slider-handle-shape: 50%;
  --mdc-slider-handle-width: 20px;
  --mdc-slider-inactive-track-height: 4px;
  --mdc-slider-inactive-track-shape: 9999px;
  --mdc-slider-with-overlap-handle-outline-width: 1px;
  --mdc-slider-with-tick-marks-active-container-opacity: 0.6;
  --mdc-slider-with-tick-marks-container-shape: 50%;
  --mdc-slider-with-tick-marks-container-size: 2px;
  --mdc-slider-with-tick-marks-inactive-container-opacity: 0.6;
  --mdc-slider-handle-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-value-indicator-width: auto;
  --mat-slider-value-indicator-height: 32px;
  --mat-slider-value-indicator-caret-display: block;
  --mat-slider-value-indicator-border-radius: 4px;
  --mat-slider-value-indicator-padding: 0 12px;
  --mat-slider-value-indicator-text-transform: none;
  --mat-slider-value-indicator-container-transform: translateX(-50%);
}
html {
  --mdc-slider-handle-color: #558b2f;
  --mdc-slider-focus-handle-color: #558b2f;
  --mdc-slider-hover-handle-color: #558b2f;
  --mdc-slider-active-track-color: #558b2f;
  --mdc-slider-inactive-track-color: #558b2f;
  --mdc-slider-with-tick-marks-inactive-container-color: #558b2f;
  --mdc-slider-with-tick-marks-active-container-color: white;
  --mdc-slider-disabled-active-track-color: #000;
  --mdc-slider-disabled-handle-color: #000;
  --mdc-slider-disabled-inactive-track-color: #000;
  --mdc-slider-label-container-color: #000;
  --mdc-slider-label-label-text-color: #fff;
  --mdc-slider-with-overlap-handle-outline-color: #fff;
  --mdc-slider-with-tick-marks-disabled-container-color: #000;
  --mat-slider-ripple-color: #558b2f;
  --mat-slider-hover-state-layer-color: rgba(85, 139, 47, 0.05);
  --mat-slider-focus-state-layer-color: rgba(85, 139, 47, 0.2);
  --mat-slider-value-indicator-opacity: 0.6;
}
html .mat-accent {
  --mdc-slider-handle-color: #009688;
  --mdc-slider-focus-handle-color: #009688;
  --mdc-slider-hover-handle-color: #009688;
  --mdc-slider-active-track-color: #009688;
  --mdc-slider-inactive-track-color: #009688;
  --mdc-slider-with-tick-marks-inactive-container-color: #009688;
  --mdc-slider-with-tick-marks-active-container-color: white;
  --mat-slider-ripple-color: #009688;
  --mat-slider-hover-state-layer-color: rgba(0, 150, 136, 0.05);
  --mat-slider-focus-state-layer-color: rgba(0, 150, 136, 0.2);
}
html .mat-warn {
  --mdc-slider-handle-color: #ff5722;
  --mdc-slider-focus-handle-color: #ff5722;
  --mdc-slider-hover-handle-color: #ff5722;
  --mdc-slider-active-track-color: #ff5722;
  --mdc-slider-inactive-track-color: #ff5722;
  --mdc-slider-with-tick-marks-inactive-container-color: #ff5722;
  --mdc-slider-with-tick-marks-active-container-color: white;
  --mat-slider-ripple-color: #ff5722;
  --mat-slider-hover-state-layer-color: rgba(255, 87, 34, 0.05);
  --mat-slider-focus-state-layer-color: rgba(255, 87, 34, 0.2);
}
html {
  --mdc-slider-label-label-text-font: Roboto, sans-serif;
  --mdc-slider-label-label-text-size: 14px;
  --mdc-slider-label-label-text-line-height: 22px;
  --mdc-slider-label-label-text-tracking: 0.0071428571em;
  --mdc-slider-label-label-text-weight: 500;
}
html {
  --mat-menu-container-shape: 4px;
  --mat-menu-divider-bottom-spacing: 0;
  --mat-menu-divider-top-spacing: 0;
  --mat-menu-item-spacing: 16px;
  --mat-menu-item-icon-size: 24px;
  --mat-menu-item-leading-spacing: 16px;
  --mat-menu-item-trailing-spacing: 16px;
  --mat-menu-item-with-icon-leading-spacing: 16px;
  --mat-menu-item-with-icon-trailing-spacing: 16px;
  --mat-menu-base-elevation-level: 8;
}
html {
  --mat-menu-item-label-text-color: #212629;
  --mat-menu-item-icon-color: #212629;
  --mat-menu-item-hover-state-layer-color: rgba(33, 38, 41, 0.04);
  --mat-menu-item-focus-state-layer-color: rgba(33, 38, 41, 0.04);
  --mat-menu-container-color: white;
  --mat-menu-divider-color: #ced4dc;
}
html {
  --mat-menu-item-label-text-font: Roboto, sans-serif;
  --mat-menu-item-label-text-size: 16px;
  --mat-menu-item-label-text-tracking: 0.03125em;
  --mat-menu-item-label-text-line-height: 24px;
  --mat-menu-item-label-text-weight: 400;
}
html {
  --mdc-list-list-item-container-shape: 0;
  --mdc-list-list-item-leading-avatar-shape: 50%;
  --mdc-list-list-item-container-color: transparent;
  --mdc-list-list-item-selected-container-color: transparent;
  --mdc-list-list-item-leading-avatar-color: transparent;
  --mdc-list-list-item-leading-icon-size: 24px;
  --mdc-list-list-item-leading-avatar-size: 40px;
  --mdc-list-list-item-trailing-icon-size: 24px;
  --mdc-list-list-item-disabled-state-layer-color: transparent;
  --mdc-list-list-item-disabled-state-layer-opacity: 0;
  --mdc-list-list-item-disabled-label-text-opacity: 0.38;
  --mdc-list-list-item-disabled-leading-icon-opacity: 0.38;
  --mdc-list-list-item-disabled-trailing-icon-opacity: 0.38;
  --mat-list-active-indicator-color: transparent;
  --mat-list-active-indicator-shape: 4px;
}
html {
  --mdc-list-list-item-label-text-color: #212629;
  --mdc-list-list-item-supporting-text-color: #6c757c;
  --mdc-list-list-item-leading-icon-color: rgba(33, 38, 41, 0.38);
  --mdc-list-list-item-trailing-supporting-text-color: #8d97ac;
  --mdc-list-list-item-trailing-icon-color: rgba(33, 38, 41, 0.38);
  --mdc-list-list-item-selected-trailing-icon-color: rgba(33, 38, 41, 0.38);
  --mdc-list-list-item-disabled-label-text-color: #212629;
  --mdc-list-list-item-disabled-leading-icon-color: #212629;
  --mdc-list-list-item-disabled-trailing-icon-color: #212629;
  --mdc-list-list-item-hover-label-text-color: #212629;
  --mdc-list-list-item-hover-leading-icon-color: rgba(33, 38, 41, 0.38);
  --mdc-list-list-item-hover-trailing-icon-color: rgba(33, 38, 41, 0.38);
  --mdc-list-list-item-focus-label-text-color: #212629;
  --mdc-list-list-item-hover-state-layer-color: #212629;
  --mdc-list-list-item-hover-state-layer-opacity: 0.04;
  --mdc-list-list-item-focus-state-layer-color: #212629;
  --mdc-list-list-item-focus-state-layer-opacity: 0.12;
}
.mdc-list-item__start,
.mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: #353b47;
  --mdc-radio-disabled-unselected-icon-color: #353b47;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(53, 59, 71, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(53, 59, 71, 0.54);
  --mdc-radio-selected-focus-icon-color: #558b2f;
  --mdc-radio-selected-hover-icon-color: #558b2f;
  --mdc-radio-selected-icon-color: #558b2f;
  --mdc-radio-selected-pressed-icon-color: #558b2f;
}
.mat-accent .mdc-list-item__start,
.mat-accent .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: #353b47;
  --mdc-radio-disabled-unselected-icon-color: #353b47;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(53, 59, 71, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(53, 59, 71, 0.54);
  --mdc-radio-selected-focus-icon-color: #009688;
  --mdc-radio-selected-hover-icon-color: #009688;
  --mdc-radio-selected-icon-color: #009688;
  --mdc-radio-selected-pressed-icon-color: #009688;
}
.mat-warn .mdc-list-item__start,
.mat-warn .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: #353b47;
  --mdc-radio-disabled-unselected-icon-color: #353b47;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-focus-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(53, 59, 71, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(53, 59, 71, 0.54);
  --mdc-radio-selected-focus-icon-color: #ff5722;
  --mdc-radio-selected-hover-icon-color: #ff5722;
  --mdc-radio-selected-icon-color: #ff5722;
  --mdc-radio-selected-pressed-icon-color: #ff5722;
}
.mat-mdc-list-option {
  --mdc-checkbox-disabled-selected-icon-color: rgba(33, 38, 41, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(33, 38, 41, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #558b2f;
  --mdc-checkbox-selected-hover-icon-color: #558b2f;
  --mdc-checkbox-selected-icon-color: #558b2f;
  --mdc-checkbox-selected-pressed-icon-color: #558b2f;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(33, 38, 41, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #558b2f;
  --mdc-checkbox-selected-hover-state-layer-color: #558b2f;
  --mdc-checkbox-selected-pressed-state-layer-color: #558b2f;
  --mdc-checkbox-unselected-focus-state-layer-color: #212629;
  --mdc-checkbox-unselected-hover-state-layer-color: #212629;
  --mdc-checkbox-unselected-pressed-state-layer-color: #212629;
}
.mat-mdc-list-option.mat-accent {
  --mdc-checkbox-disabled-selected-icon-color: rgba(33, 38, 41, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(33, 38, 41, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #009688;
  --mdc-checkbox-selected-hover-icon-color: #009688;
  --mdc-checkbox-selected-icon-color: #009688;
  --mdc-checkbox-selected-pressed-icon-color: #009688;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(33, 38, 41, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #009688;
  --mdc-checkbox-selected-hover-state-layer-color: #009688;
  --mdc-checkbox-selected-pressed-state-layer-color: #009688;
  --mdc-checkbox-unselected-focus-state-layer-color: #212629;
  --mdc-checkbox-unselected-hover-state-layer-color: #212629;
  --mdc-checkbox-unselected-pressed-state-layer-color: #212629;
}
.mat-mdc-list-option.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(33, 38, 41, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(33, 38, 41, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #ff5722;
  --mdc-checkbox-selected-hover-icon-color: #ff5722;
  --mdc-checkbox-selected-icon-color: #ff5722;
  --mdc-checkbox-selected-pressed-icon-color: #ff5722;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(33, 38, 41, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #ff5722;
  --mdc-checkbox-selected-hover-state-layer-color: #ff5722;
  --mdc-checkbox-selected-pressed-state-layer-color: #ff5722;
  --mdc-checkbox-unselected-focus-state-layer-color: #212629;
  --mdc-checkbox-unselected-hover-state-layer-color: #212629;
  --mdc-checkbox-unselected-pressed-state-layer-color: #212629;
}
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,
.mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start {
  color: #558b2f;
}
.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,
.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
.mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {
  opacity: 1;
}
html {
  --mdc-list-list-item-one-line-container-height: 48px;
  --mdc-list-list-item-two-line-container-height: 64px;
  --mdc-list-list-item-three-line-container-height: 88px;
  --mat-list-list-item-leading-icon-start-space: 16px;
  --mat-list-list-item-leading-icon-end-space: 32px;
}
.mdc-list-item__start,
.mdc-list-item__end {
  --mdc-radio-state-layer-size: 40px;
}
.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-one-line,
.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-one-line,
.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-one-line {
  height: 56px;
}
.mat-mdc-list-item.mdc-list-item--with-leading-avatar.mdc-list-item--with-two-lines,
.mat-mdc-list-item.mdc-list-item--with-leading-checkbox.mdc-list-item--with-two-lines,
.mat-mdc-list-item.mdc-list-item--with-leading-icon.mdc-list-item--with-two-lines {
  height: 72px;
}
html {
  --mdc-list-list-item-label-text-font: Roboto, sans-serif;
  --mdc-list-list-item-label-text-line-height: 24px;
  --mdc-list-list-item-label-text-size: 16px;
  --mdc-list-list-item-label-text-tracking: 0.03125em;
  --mdc-list-list-item-label-text-weight: 400;
  --mdc-list-list-item-supporting-text-font: Roboto, sans-serif;
  --mdc-list-list-item-supporting-text-line-height: 20px;
  --mdc-list-list-item-supporting-text-size: 14px;
  --mdc-list-list-item-supporting-text-tracking: 0.0178571429em;
  --mdc-list-list-item-supporting-text-weight: 400;
  --mdc-list-list-item-trailing-supporting-text-font: Roboto, sans-serif;
  --mdc-list-list-item-trailing-supporting-text-line-height: 20px;
  --mdc-list-list-item-trailing-supporting-text-size: 12px;
  --mdc-list-list-item-trailing-supporting-text-tracking: 0.0333333333em;
  --mdc-list-list-item-trailing-supporting-text-weight: 400;
}
.mdc-list-group__subheader {
  font: 400 16px / 28px Roboto, sans-serif;
  letter-spacing: 0.009375em;
}
html {
  --mat-paginator-container-text-color: rgba(33, 38, 41, 0.87);
  --mat-paginator-container-background-color: white;
  --mat-paginator-enabled-icon-color: rgba(33, 38, 41, 0.54);
  --mat-paginator-disabled-icon-color: rgba(33, 38, 41, 0.12);
}
html {
  --mat-paginator-container-size: 56px;
  --mat-paginator-form-field-container-height: 40px;
  --mat-paginator-form-field-container-vertical-padding: 8px;
  --mat-paginator-touch-target-display: block;
}
html {
  --mat-paginator-container-text-font: Roboto, sans-serif;
  --mat-paginator-container-text-line-height: 20px;
  --mat-paginator-container-text-size: 12px;
  --mat-paginator-container-text-tracking: 0.0333333333em;
  --mat-paginator-container-text-weight: 400;
  --mat-paginator-select-trigger-text-size: 12px;
}
html {
  --mdc-secondary-navigation-tab-container-height: 48px;
  --mdc-tab-indicator-active-indicator-height: 2px;
  --mdc-tab-indicator-active-indicator-shape: 0;
  --mat-tab-header-divider-color: transparent;
  --mat-tab-header-divider-height: 0;
}
.mat-mdc-tab-group,
.mat-mdc-tab-nav-bar {
  --mdc-tab-indicator-active-indicator-color: #558b2f;
  --mat-tab-header-disabled-ripple-color: #8d97ac;
  --mat-tab-header-pagination-icon-color: #353b47;
  --mat-tab-header-inactive-label-text-color: rgba(33, 38, 41, 0.6);
  --mat-tab-header-active-label-text-color: #558b2f;
  --mat-tab-header-active-ripple-color: #558b2f;
  --mat-tab-header-inactive-ripple-color: #558b2f;
  --mat-tab-header-inactive-focus-label-text-color: rgba(33, 38, 41, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(33, 38, 41, 0.6);
  --mat-tab-header-active-focus-label-text-color: #558b2f;
  --mat-tab-header-active-hover-label-text-color: #558b2f;
  --mat-tab-header-active-focus-indicator-color: #558b2f;
  --mat-tab-header-active-hover-indicator-color: #558b2f;
}
.mat-mdc-tab-group.mat-accent,
.mat-mdc-tab-nav-bar.mat-accent {
  --mdc-tab-indicator-active-indicator-color: #009688;
  --mat-tab-header-disabled-ripple-color: #8d97ac;
  --mat-tab-header-pagination-icon-color: #353b47;
  --mat-tab-header-inactive-label-text-color: rgba(33, 38, 41, 0.6);
  --mat-tab-header-active-label-text-color: #009688;
  --mat-tab-header-active-ripple-color: #009688;
  --mat-tab-header-inactive-ripple-color: #009688;
  --mat-tab-header-inactive-focus-label-text-color: rgba(33, 38, 41, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(33, 38, 41, 0.6);
  --mat-tab-header-active-focus-label-text-color: #009688;
  --mat-tab-header-active-hover-label-text-color: #009688;
  --mat-tab-header-active-focus-indicator-color: #009688;
  --mat-tab-header-active-hover-indicator-color: #009688;
}
.mat-mdc-tab-group.mat-warn,
.mat-mdc-tab-nav-bar.mat-warn {
  --mdc-tab-indicator-active-indicator-color: #ff5722;
  --mat-tab-header-disabled-ripple-color: #8d97ac;
  --mat-tab-header-pagination-icon-color: #353b47;
  --mat-tab-header-inactive-label-text-color: rgba(33, 38, 41, 0.6);
  --mat-tab-header-active-label-text-color: #ff5722;
  --mat-tab-header-active-ripple-color: #ff5722;
  --mat-tab-header-inactive-ripple-color: #ff5722;
  --mat-tab-header-inactive-focus-label-text-color: rgba(33, 38, 41, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(33, 38, 41, 0.6);
  --mat-tab-header-active-focus-label-text-color: #ff5722;
  --mat-tab-header-active-hover-label-text-color: #ff5722;
  --mat-tab-header-active-focus-indicator-color: #ff5722;
  --mat-tab-header-active-hover-indicator-color: #ff5722;
}
.mat-mdc-tab-group.mat-background-primary,
.mat-mdc-tab-nav-bar.mat-background-primary {
  --mat-tab-header-with-background-background-color: #558b2f;
  --mat-tab-header-with-background-foreground-color: white;
}
.mat-mdc-tab-group.mat-background-accent,
.mat-mdc-tab-nav-bar.mat-background-accent {
  --mat-tab-header-with-background-background-color: #009688;
  --mat-tab-header-with-background-foreground-color: white;
}
.mat-mdc-tab-group.mat-background-warn,
.mat-mdc-tab-nav-bar.mat-background-warn {
  --mat-tab-header-with-background-background-color: #ff5722;
  --mat-tab-header-with-background-foreground-color: white;
}
.mat-mdc-tab-header {
  --mdc-secondary-navigation-tab-container-height: 48px;
}
.mat-mdc-tab-header {
  --mat-tab-header-label-text-font: Roboto, sans-serif;
  --mat-tab-header-label-text-size: 14px;
  --mat-tab-header-label-text-tracking: 0.0892857143em;
  --mat-tab-header-label-text-line-height: 36px;
  --mat-tab-header-label-text-weight: 500;
}
html {
  --mdc-checkbox-disabled-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-state-layer-opacity: 0.16;
  --mdc-checkbox-selected-hover-state-layer-opacity: 0.04;
  --mdc-checkbox-selected-pressed-state-layer-opacity: 0.16;
  --mdc-checkbox-unselected-focus-state-layer-opacity: 0.16;
  --mdc-checkbox-unselected-hover-state-layer-opacity: 0.04;
  --mdc-checkbox-unselected-pressed-state-layer-opacity: 0.16;
}
html {
  --mdc-checkbox-disabled-selected-icon-color: rgba(33, 38, 41, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(33, 38, 41, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #009688;
  --mdc-checkbox-selected-hover-icon-color: #009688;
  --mdc-checkbox-selected-icon-color: #009688;
  --mdc-checkbox-selected-pressed-icon-color: #009688;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(33, 38, 41, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #009688;
  --mdc-checkbox-selected-hover-state-layer-color: #009688;
  --mdc-checkbox-selected-pressed-state-layer-color: #009688;
  --mdc-checkbox-unselected-focus-state-layer-color: #212629;
  --mdc-checkbox-unselected-hover-state-layer-color: #212629;
  --mdc-checkbox-unselected-pressed-state-layer-color: #212629;
  --mat-checkbox-disabled-label-color: #a3abbd;
  --mat-checkbox-label-text-color: #212629;
}
.mat-mdc-checkbox.mat-primary {
  --mdc-checkbox-disabled-selected-icon-color: rgba(33, 38, 41, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(33, 38, 41, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #558b2f;
  --mdc-checkbox-selected-hover-icon-color: #558b2f;
  --mdc-checkbox-selected-icon-color: #558b2f;
  --mdc-checkbox-selected-pressed-icon-color: #558b2f;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(33, 38, 41, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #558b2f;
  --mdc-checkbox-selected-hover-state-layer-color: #558b2f;
  --mdc-checkbox-selected-pressed-state-layer-color: #558b2f;
  --mdc-checkbox-unselected-focus-state-layer-color: #212629;
  --mdc-checkbox-unselected-hover-state-layer-color: #212629;
  --mdc-checkbox-unselected-pressed-state-layer-color: #212629;
}
.mat-mdc-checkbox.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(33, 38, 41, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(33, 38, 41, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #ff5722;
  --mdc-checkbox-selected-hover-icon-color: #ff5722;
  --mdc-checkbox-selected-icon-color: #ff5722;
  --mdc-checkbox-selected-pressed-icon-color: #ff5722;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(33, 38, 41, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #ff5722;
  --mdc-checkbox-selected-hover-state-layer-color: #ff5722;
  --mdc-checkbox-selected-pressed-state-layer-color: #ff5722;
  --mdc-checkbox-unselected-focus-state-layer-color: #212629;
  --mdc-checkbox-unselected-hover-state-layer-color: #212629;
  --mdc-checkbox-unselected-pressed-state-layer-color: #212629;
}
html {
  --mdc-checkbox-state-layer-size: 40px;
  --mat-checkbox-touch-target-display: block;
}
html {
  --mat-checkbox-label-text-font: Roboto, sans-serif;
  --mat-checkbox-label-text-line-height: 20px;
  --mat-checkbox-label-text-size: 14px;
  --mat-checkbox-label-text-tracking: 0.0178571429em;
  --mat-checkbox-label-text-weight: 400;
}
html {
  --mdc-text-button-container-shape: 4px;
  --mdc-text-button-keep-touch-target: false;
  --mdc-filled-button-container-shape: 4px;
  --mdc-filled-button-keep-touch-target: false;
  --mdc-protected-button-container-shape: 4px;
  --mdc-protected-button-container-elevation-shadow:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-disabled-container-elevation-shadow:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-focus-container-elevation-shadow:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-hover-container-elevation-shadow:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-pressed-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-outlined-button-keep-touch-target: false;
  --mdc-outlined-button-outline-width: 1px;
  --mdc-outlined-button-container-shape: 4px;
  --mat-text-button-horizontal-padding: 8px;
  --mat-text-button-with-icon-horizontal-padding: 8px;
  --mat-text-button-icon-spacing: 8px;
  --mat-text-button-icon-offset: 0;
  --mat-filled-button-horizontal-padding: 16px;
  --mat-filled-button-icon-spacing: 8px;
  --mat-filled-button-icon-offset: -4px;
  --mat-protected-button-horizontal-padding: 16px;
  --mat-protected-button-icon-spacing: 8px;
  --mat-protected-button-icon-offset: -4px;
  --mat-outlined-button-horizontal-padding: 15px;
  --mat-outlined-button-icon-spacing: 8px;
  --mat-outlined-button-icon-offset: -4px;
}
html {
  --mdc-text-button-label-text-color: #212629;
  --mdc-text-button-disabled-label-text-color: rgba(163, 171, 189, 0.38);
  --mat-text-button-state-layer-color: #212629;
  --mat-text-button-disabled-state-layer-color: #212629;
  --mat-text-button-ripple-color: rgba(33, 38, 41, 0.1);
  --mat-text-button-hover-state-layer-opacity: 0.04;
  --mat-text-button-focus-state-layer-opacity: 0.12;
  --mat-text-button-pressed-state-layer-opacity: 0.12;
  --mdc-filled-button-container-color: white;
  --mdc-filled-button-label-text-color: #212629;
  --mdc-filled-button-disabled-container-color: rgba(163, 171, 189, 0.12);
  --mdc-filled-button-disabled-label-text-color: rgba(163, 171, 189, 0.38);
  --mat-filled-button-state-layer-color: #212629;
  --mat-filled-button-disabled-state-layer-color: #212629;
  --mat-filled-button-ripple-color: rgba(33, 38, 41, 0.1);
  --mat-filled-button-hover-state-layer-opacity: 0.04;
  --mat-filled-button-focus-state-layer-opacity: 0.12;
  --mat-filled-button-pressed-state-layer-opacity: 0.12;
  --mdc-protected-button-container-color: white;
  --mdc-protected-button-label-text-color: #212629;
  --mdc-protected-button-disabled-container-color: rgba(163, 171, 189, 0.12);
  --mdc-protected-button-disabled-label-text-color: rgba(163, 171, 189, 0.38);
  --mat-protected-button-state-layer-color: #212629;
  --mat-protected-button-disabled-state-layer-color: #212629;
  --mat-protected-button-ripple-color: rgba(33, 38, 41, 0.1);
  --mat-protected-button-hover-state-layer-opacity: 0.04;
  --mat-protected-button-focus-state-layer-opacity: 0.12;
  --mat-protected-button-pressed-state-layer-opacity: 0.12;
  --mdc-outlined-button-disabled-outline-color: #ced4dc;
  --mdc-outlined-button-disabled-label-text-color: rgba(163, 171, 189, 0.38);
  --mdc-outlined-button-label-text-color: #212629;
  --mdc-outlined-button-outline-color: #ced4dc;
  --mat-outlined-button-state-layer-color: #212629;
  --mat-outlined-button-disabled-state-layer-color: #212629;
  --mat-outlined-button-ripple-color: rgba(33, 38, 41, 0.1);
  --mat-outlined-button-hover-state-layer-opacity: 0.04;
  --mat-outlined-button-focus-state-layer-opacity: 0.12;
  --mat-outlined-button-pressed-state-layer-opacity: 0.12;
}
.mat-mdc-button.mat-primary {
  --mdc-text-button-label-text-color: #558b2f;
  --mat-text-button-state-layer-color: #558b2f;
  --mat-text-button-ripple-color: rgba(85, 139, 47, 0.1);
}
.mat-mdc-button.mat-accent {
  --mdc-text-button-label-text-color: #009688;
  --mat-text-button-state-layer-color: #009688;
  --mat-text-button-ripple-color: rgba(0, 150, 136, 0.1);
}
.mat-mdc-button.mat-warn {
  --mdc-text-button-label-text-color: #ff5722;
  --mat-text-button-state-layer-color: #ff5722;
  --mat-text-button-ripple-color: rgba(255, 87, 34, 0.1);
}
.mat-mdc-unelevated-button.mat-primary {
  --mdc-filled-button-container-color: #558b2f;
  --mdc-filled-button-label-text-color: white;
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-unelevated-button.mat-accent {
  --mdc-filled-button-container-color: #009688;
  --mdc-filled-button-label-text-color: white;
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-unelevated-button.mat-warn {
  --mdc-filled-button-container-color: #ff5722;
  --mdc-filled-button-label-text-color: white;
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-raised-button.mat-primary {
  --mdc-protected-button-container-color: #558b2f;
  --mdc-protected-button-label-text-color: white;
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-raised-button.mat-accent {
  --mdc-protected-button-container-color: #009688;
  --mdc-protected-button-label-text-color: white;
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-raised-button.mat-warn {
  --mdc-protected-button-container-color: #ff5722;
  --mdc-protected-button-label-text-color: white;
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
.mat-mdc-outlined-button.mat-primary {
  --mdc-outlined-button-label-text-color: #558b2f;
  --mdc-outlined-button-outline-color: #ced4dc;
  --mat-outlined-button-state-layer-color: #558b2f;
  --mat-outlined-button-ripple-color: rgba(85, 139, 47, 0.1);
}
.mat-mdc-outlined-button.mat-accent {
  --mdc-outlined-button-label-text-color: #009688;
  --mdc-outlined-button-outline-color: #ced4dc;
  --mat-outlined-button-state-layer-color: #009688;
  --mat-outlined-button-ripple-color: rgba(0, 150, 136, 0.1);
}
.mat-mdc-outlined-button.mat-warn {
  --mdc-outlined-button-label-text-color: #ff5722;
  --mdc-outlined-button-outline-color: #ced4dc;
  --mat-outlined-button-state-layer-color: #ff5722;
  --mat-outlined-button-ripple-color: rgba(255, 87, 34, 0.1);
}
html {
  --mdc-text-button-container-height: 36px;
  --mdc-filled-button-container-height: 36px;
  --mdc-protected-button-container-height: 36px;
  --mdc-outlined-button-container-height: 36px;
  --mat-text-button-touch-target-display: block;
  --mat-filled-button-touch-target-display: block;
  --mat-protected-button-touch-target-display: block;
  --mat-outlined-button-touch-target-display: block;
}
html {
  --mdc-text-button-label-text-font: Roboto, sans-serif;
  --mdc-text-button-label-text-size: 14px;
  --mdc-text-button-label-text-tracking: 0.0892857143em;
  --mdc-text-button-label-text-weight: 500;
  --mdc-text-button-label-text-transform: none;
  --mdc-filled-button-label-text-font: Roboto, sans-serif;
  --mdc-filled-button-label-text-size: 14px;
  --mdc-filled-button-label-text-tracking: 0.0892857143em;
  --mdc-filled-button-label-text-weight: 500;
  --mdc-filled-button-label-text-transform: none;
  --mdc-protected-button-label-text-font: Roboto, sans-serif;
  --mdc-protected-button-label-text-size: 14px;
  --mdc-protected-button-label-text-tracking: 0.0892857143em;
  --mdc-protected-button-label-text-weight: 500;
  --mdc-protected-button-label-text-transform: none;
  --mdc-outlined-button-label-text-font: Roboto, sans-serif;
  --mdc-outlined-button-label-text-size: 14px;
  --mdc-outlined-button-label-text-tracking: 0.0892857143em;
  --mdc-outlined-button-label-text-weight: 500;
  --mdc-outlined-button-label-text-transform: none;
}
html {
  --mdc-icon-button-icon-size: 24px;
}
html {
  --mdc-icon-button-icon-color: inherit;
  --mdc-icon-button-disabled-icon-color: rgba(0, 0, 0, 0.38);
  --mat-icon-button-state-layer-color: #212629;
  --mat-icon-button-disabled-state-layer-color: #212629;
  --mat-icon-button-ripple-color: rgba(33, 38, 41, 0.1);
  --mat-icon-button-hover-state-layer-opacity: 0.04;
  --mat-icon-button-focus-state-layer-opacity: 0.12;
  --mat-icon-button-pressed-state-layer-opacity: 0.12;
}
html .mat-mdc-icon-button.mat-primary {
  --mdc-icon-button-icon-color: #558b2f;
  --mat-icon-button-state-layer-color: #558b2f;
  --mat-icon-button-ripple-color: rgba(85, 139, 47, 0.1);
}
html .mat-mdc-icon-button.mat-accent {
  --mdc-icon-button-icon-color: #009688;
  --mat-icon-button-state-layer-color: #009688;
  --mat-icon-button-ripple-color: rgba(0, 150, 136, 0.1);
}
html .mat-mdc-icon-button.mat-warn {
  --mdc-icon-button-icon-color: #ff5722;
  --mat-icon-button-state-layer-color: #ff5722;
  --mat-icon-button-ripple-color: rgba(255, 87, 34, 0.1);
}
html {
  --mat-icon-button-touch-target-display: block;
}
.mat-mdc-icon-button.mat-mdc-button-base {
  --mdc-icon-button-state-layer-size: 48px;
  width: var(--mdc-icon-button-state-layer-size);
  height: var(--mdc-icon-button-state-layer-size);
  padding: 12px;
}
html {
  --mdc-fab-container-shape: 50%;
  --mdc-fab-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-focus-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-pressed-container-elevation-shadow:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-container-shape: 50%;
  --mdc-fab-small-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-focus-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-pressed-container-elevation-shadow:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-container-height: 48px;
  --mdc-extended-fab-container-shape: 24px;
  --mdc-extended-fab-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-focus-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-pressed-container-elevation-shadow:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
html {
  --mdc-fab-container-color: white;
  --mat-fab-foreground-color: #212629;
  --mat-fab-state-layer-color: #212629;
  --mat-fab-disabled-state-layer-color: #212629;
  --mat-fab-ripple-color: rgba(33, 38, 41, 0.1);
  --mat-fab-hover-state-layer-opacity: 0.04;
  --mat-fab-focus-state-layer-opacity: 0.12;
  --mat-fab-pressed-state-layer-opacity: 0.12;
  --mat-fab-disabled-state-foreground-color: rgba(163, 171, 189, 0.38);
  --mdc-fab-small-container-color: white;
  --mat-fab-small-foreground-color: #212629;
  --mat-fab-small-state-layer-color: #212629;
  --mat-fab-small-disabled-state-layer-color: #212629;
  --mat-fab-small-ripple-color: rgba(33, 38, 41, 0.1);
  --mat-fab-small-hover-state-layer-opacity: 0.04;
  --mat-fab-small-focus-state-layer-opacity: 0.12;
  --mat-fab-small-pressed-state-layer-opacity: 0.12;
  --mat-fab-small-disabled-state-foreground-color: rgba(163, 171, 189, 0.38);
}
html .mat-mdc-fab.mat-primary {
  --mdc-fab-container-color: #558b2f;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
html .mat-mdc-fab.mat-accent {
  --mdc-fab-container-color: #009688;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
html .mat-mdc-fab.mat-warn {
  --mdc-fab-container-color: #ff5722;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
html .mat-mdc-mini-fab.mat-primary {
  --mdc-fab-small-container-color: #558b2f;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
html .mat-mdc-mini-fab.mat-accent {
  --mdc-fab-small-container-color: #009688;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
html .mat-mdc-mini-fab.mat-warn {
  --mdc-fab-small-container-color: #ff5722;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
html {
  --mat-fab-touch-target-display: block;
  --mat-fab-small-touch-target-display: block;
}
html {
  --mdc-extended-fab-label-text-font: Roboto, sans-serif;
  --mdc-extended-fab-label-text-size: 14px;
  --mdc-extended-fab-label-text-tracking: 0.0892857143em;
  --mdc-extended-fab-label-text-weight: 500;
}
html {
  --mdc-snackbar-container-shape: 4px;
}
html {
  --mdc-snackbar-container-color: #333333;
  --mdc-snackbar-supporting-text-color: rgba(255, 255, 255, 0.87);
  --mat-snack-bar-button-color: #009688;
}
html {
  --mdc-snackbar-supporting-text-font: Roboto, sans-serif;
  --mdc-snackbar-supporting-text-line-height: 20px;
  --mdc-snackbar-supporting-text-size: 14px;
  --mdc-snackbar-supporting-text-weight: 400;
}
html {
  --mat-table-row-item-outline-width: 1px;
}
html {
  --mat-table-background-color: white;
  --mat-table-header-headline-color: #212629;
  --mat-table-row-item-label-text-color: #212629;
  --mat-table-row-item-outline-color: #ced4dc;
}
html {
  --mat-table-header-container-height: 56px;
  --mat-table-footer-container-height: 52px;
  --mat-table-row-item-container-height: 52px;
}
html {
  --mat-table-header-headline-font: Roboto, sans-serif;
  --mat-table-header-headline-line-height: 22px;
  --mat-table-header-headline-size: 14px;
  --mat-table-header-headline-weight: 500;
  --mat-table-header-headline-tracking: 0.0071428571em;
  --mat-table-row-item-label-text-font: Roboto, sans-serif;
  --mat-table-row-item-label-text-line-height: 20px;
  --mat-table-row-item-label-text-size: 14px;
  --mat-table-row-item-label-text-weight: 400;
  --mat-table-row-item-label-text-tracking: 0.0178571429em;
  --mat-table-footer-supporting-text-font: Roboto, sans-serif;
  --mat-table-footer-supporting-text-line-height: 20px;
  --mat-table-footer-supporting-text-size: 14px;
  --mat-table-footer-supporting-text-weight: 400;
  --mat-table-footer-supporting-text-tracking: 0.0178571429em;
}
html {
  --mdc-circular-progress-active-indicator-width: 4px;
  --mdc-circular-progress-size: 48px;
}
html {
  --mdc-circular-progress-active-indicator-color: #558b2f;
}
html .mat-accent {
  --mdc-circular-progress-active-indicator-color: #009688;
}
html .mat-warn {
  --mdc-circular-progress-active-indicator-color: #ff5722;
}
html {
  --mat-badge-container-shape: 50%;
  --mat-badge-container-size: unset;
  --mat-badge-small-size-container-size: unset;
  --mat-badge-large-size-container-size: unset;
  --mat-badge-legacy-container-size: 22px;
  --mat-badge-legacy-small-size-container-size: 16px;
  --mat-badge-legacy-large-size-container-size: 28px;
  --mat-badge-container-offset: -11px 0;
  --mat-badge-small-size-container-offset: -8px 0;
  --mat-badge-large-size-container-offset: -14px 0;
  --mat-badge-container-overlap-offset: -11px;
  --mat-badge-small-size-container-overlap-offset: -8px;
  --mat-badge-large-size-container-overlap-offset: -14px;
  --mat-badge-container-padding: 0;
  --mat-badge-small-size-container-padding: 0;
  --mat-badge-large-size-container-padding: 0;
}
html {
  --mat-badge-background-color: #558b2f;
  --mat-badge-text-color: white;
  --mat-badge-disabled-state-background-color: #a3abbd;
  --mat-badge-disabled-state-text-color: #a3abbd;
}
.mat-badge-accent {
  --mat-badge-background-color: #009688;
  --mat-badge-text-color: white;
}
.mat-badge-warn {
  --mat-badge-background-color: #ff5722;
  --mat-badge-text-color: white;
}
html {
  --mat-badge-text-font: Roboto, sans-serif;
  --mat-badge-line-height: 22px;
  --mat-badge-text-size: 12px;
  --mat-badge-text-weight: 600;
  --mat-badge-small-size-text-size: 9px;
  --mat-badge-small-size-line-height: 16px;
  --mat-badge-large-size-text-size: 24px;
  --mat-badge-large-size-line-height: 28px;
}
html {
  --mat-bottom-sheet-container-shape: 4px;
}
html {
  --mat-bottom-sheet-container-text-color: #212629;
  --mat-bottom-sheet-container-background-color: white;
}
html {
  --mat-bottom-sheet-container-text-font: Roboto, sans-serif;
  --mat-bottom-sheet-container-text-line-height: 20px;
  --mat-bottom-sheet-container-text-size: 14px;
  --mat-bottom-sheet-container-text-tracking: 0.0178571429em;
  --mat-bottom-sheet-container-text-weight: 400;
}
html {
  --mat-legacy-button-toggle-height: 36px;
  --mat-legacy-button-toggle-shape: 2px;
  --mat-legacy-button-toggle-focus-state-layer-opacity: 1;
  --mat-standard-button-toggle-shape: 4px;
  --mat-standard-button-toggle-hover-state-layer-opacity: 0.04;
  --mat-standard-button-toggle-focus-state-layer-opacity: 0.12;
}
html {
  --mat-legacy-button-toggle-text-color: #8d97ac;
  --mat-legacy-button-toggle-selected-state-text-color: #6c757c;
  --mat-legacy-button-toggle-disabled-state-text-color: #a3abbd;
  --mat-standard-button-toggle-text-color: #212629;
  --mat-standard-button-toggle-background-color: white;
  --mat-standard-button-toggle-selected-state-text-color: #212629;
  --mat-standard-button-toggle-disabled-state-text-color: #a3abbd;
  --mat-standard-button-toggle-disabled-state-background-color: white;
  --mat-standard-button-toggle-disabled-selected-state-text-color: #212629;
  --mat-standard-button-toggle-divider-color: #ced4dc;
}
html {
  --mat-standard-button-toggle-height: 48px;
}
html {
  --mat-legacy-button-toggle-label-text-font: Roboto, sans-serif;
  --mat-legacy-button-toggle-label-text-line-height: 24px;
  --mat-legacy-button-toggle-label-text-size: 16px;
  --mat-legacy-button-toggle-label-text-tracking: 0.03125em;
  --mat-legacy-button-toggle-label-text-weight: 400;
  --mat-standard-button-toggle-label-text-font: Roboto, sans-serif;
  --mat-standard-button-toggle-label-text-line-height: 24px;
  --mat-standard-button-toggle-label-text-size: 16px;
  --mat-standard-button-toggle-label-text-tracking: 0.03125em;
  --mat-standard-button-toggle-label-text-weight: 400;
}
html {
  --mat-datepicker-calendar-container-shape: 4px;
  --mat-datepicker-calendar-container-touch-shape: 4px;
  --mat-datepicker-calendar-container-elevation-shadow:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-container-touch-elevation-shadow:
    0px 11px 15px -7px rgba(0, 0, 0, 0.2),
    0px 24px 38px 3px rgba(0, 0, 0, 0.14),
    0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
html {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #558b2f;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(85, 139, 47, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(85, 139, 47, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(85, 139, 47, 0.3);
  --mat-datepicker-toggle-active-state-icon-color: #558b2f;
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(85, 139, 47, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
  --mat-datepicker-toggle-icon-color: #353b47;
  --mat-datepicker-calendar-body-label-text-color: #6c757c;
  --mat-datepicker-calendar-period-button-text-color: #212629;
  --mat-datepicker-calendar-period-button-icon-color: #353b47;
  --mat-datepicker-calendar-navigation-button-icon-color: #353b47;
  --mat-datepicker-calendar-header-divider-color: #ced4dc;
  --mat-datepicker-calendar-header-text-color: #6c757c;
  --mat-datepicker-calendar-date-today-outline-color: #8d97ac;
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(141, 151, 172, 0.8);
  --mat-datepicker-calendar-date-text-color: #212629;
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: #a3abbd;
  --mat-datepicker-calendar-date-preview-state-outline-color: #ced4dc;
  --mat-datepicker-range-input-separator-color: #212629;
  --mat-datepicker-range-input-disabled-state-separator-color: #a3abbd;
  --mat-datepicker-range-input-disabled-state-text-color: #a3abbd;
  --mat-datepicker-calendar-container-background-color: white;
  --mat-datepicker-calendar-container-text-color: #212629;
}
.mat-datepicker-content.mat-accent {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #009688;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(0, 150, 136, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(0, 150, 136, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(0, 150, 136, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(0, 150, 136, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
}
.mat-datepicker-content.mat-warn {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #ff5722;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 87, 34, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 87, 34, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 87, 34, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 87, 34, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
}
.mat-datepicker-toggle-active.mat-accent {
  --mat-datepicker-toggle-active-state-icon-color: #009688;
}
.mat-datepicker-toggle-active.mat-warn {
  --mat-datepicker-toggle-active-state-icon-color: #ff5722;
}
.mat-calendar-controls {
  --mat-icon-button-touch-target-display: none;
}
.mat-calendar-controls .mat-mdc-icon-button.mat-mdc-button-base {
  --mdc-icon-button-state-layer-size: 40px;
  width: var(--mdc-icon-button-state-layer-size);
  height: var(--mdc-icon-button-state-layer-size);
  padding: 8px;
}
html {
  --mat-datepicker-calendar-text-font: Roboto, sans-serif;
  --mat-datepicker-calendar-text-size: 13px;
  --mat-datepicker-calendar-body-label-text-size: 14px;
  --mat-datepicker-calendar-body-label-text-weight: 500;
  --mat-datepicker-calendar-period-button-text-size: 14px;
  --mat-datepicker-calendar-period-button-text-weight: 500;
  --mat-datepicker-calendar-header-text-size: 11px;
  --mat-datepicker-calendar-header-text-weight: 400;
}
html {
  --mat-divider-width: 1px;
}
html {
  --mat-divider-color: #ced4dc;
}
html {
  --mat-expansion-container-shape: 4px;
  --mat-expansion-legacy-header-indicator-display: inline-block;
  --mat-expansion-header-indicator-display: none;
}
html {
  --mat-expansion-container-background-color: white;
  --mat-expansion-container-text-color: #212629;
  --mat-expansion-actions-divider-color: #ced4dc;
  --mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-expansion-header-disabled-state-text-color: #a3abbd;
  --mat-expansion-header-text-color: #212629;
  --mat-expansion-header-description-color: #6c757c;
  --mat-expansion-header-indicator-color: #6c757c;
}
html {
  --mat-expansion-header-collapsed-state-height: 48px;
  --mat-expansion-header-expanded-state-height: 64px;
}
html {
  --mat-expansion-header-text-font: Roboto, sans-serif;
  --mat-expansion-header-text-size: 14px;
  --mat-expansion-header-text-weight: 500;
  --mat-expansion-header-text-line-height: inherit;
  --mat-expansion-header-text-tracking: inherit;
  --mat-expansion-container-text-font: Roboto, sans-serif;
  --mat-expansion-container-text-line-height: 20px;
  --mat-expansion-container-text-size: 14px;
  --mat-expansion-container-text-tracking: 0.0178571429em;
  --mat-expansion-container-text-weight: 400;
}
html {
  --mat-grid-list-tile-header-primary-text-size: 14px;
  --mat-grid-list-tile-header-secondary-text-size: 12px;
  --mat-grid-list-tile-footer-primary-text-size: 14px;
  --mat-grid-list-tile-footer-secondary-text-size: 12px;
}
html {
  --mat-icon-color: inherit;
}
.mat-icon.mat-primary {
  --mat-icon-color: #558b2f;
}
.mat-icon.mat-accent {
  --mat-icon-color: #009688;
}
.mat-icon.mat-warn {
  --mat-icon-color: #ff5722;
}
html {
  --mat-sidenav-container-shape: 0;
  --mat-sidenav-container-elevation-shadow:
    0px 8px 10px -5px rgba(0, 0, 0, 0.2),
    0px 16px 24px 2px rgba(0, 0, 0, 0.14),
    0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-sidenav-container-width: auto;
}
html {
  --mat-sidenav-container-divider-color: #ced4dc;
  --mat-sidenav-container-background-color: white;
  --mat-sidenav-container-text-color: #212629;
  --mat-sidenav-content-background-color: #edf1f6;
  --mat-sidenav-content-text-color: #212629;
  --mat-sidenav-scrim-color: rgba(0, 0, 0, 0.6);
}
html {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #558b2f;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #558b2f;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #558b2f;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
  --mat-stepper-container-color: white;
  --mat-stepper-line-color: #ced4dc;
  --mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-stepper-header-label-text-color: #6c757c;
  --mat-stepper-header-optional-label-text-color: #6c757c;
  --mat-stepper-header-selected-state-label-text-color: #212629;
  --mat-stepper-header-error-state-label-text-color: #ff5722;
  --mat-stepper-header-icon-background-color: #6c757c;
  --mat-stepper-header-error-state-icon-foreground-color: #ff5722;
  --mat-stepper-header-error-state-icon-background-color: transparent;
}
html .mat-step-header.mat-accent {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #009688;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #009688;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #009688;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
html .mat-step-header.mat-warn {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #ff5722;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #ff5722;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #ff5722;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
html {
  --mat-stepper-header-height: 72px;
}
html {
  --mat-stepper-container-text-font: Roboto, sans-serif;
  --mat-stepper-header-label-text-font: Roboto, sans-serif;
  --mat-stepper-header-label-text-size: 14px;
  --mat-stepper-header-label-text-weight: 400;
  --mat-stepper-header-error-state-label-text-size: 16px;
  --mat-stepper-header-selected-state-label-text-size: 16px;
  --mat-stepper-header-selected-state-label-text-weight: 400;
}
html {
  --mat-sort-arrow-color: #6c757c;
}
html {
  --mat-toolbar-container-background-color: white;
  --mat-toolbar-container-text-color: #212629;
}
.mat-toolbar.mat-primary {
  --mat-toolbar-container-background-color: #558b2f;
  --mat-toolbar-container-text-color: white;
}
.mat-toolbar.mat-accent {
  --mat-toolbar-container-background-color: #009688;
  --mat-toolbar-container-text-color: white;
}
.mat-toolbar.mat-warn {
  --mat-toolbar-container-background-color: #ff5722;
  --mat-toolbar-container-text-color: white;
}
html {
  --mat-toolbar-standard-height: 64px;
  --mat-toolbar-mobile-height: 56px;
}
html {
  --mat-toolbar-title-text-font: Roboto, sans-serif;
  --mat-toolbar-title-text-line-height: 32px;
  --mat-toolbar-title-text-size: 20px;
  --mat-toolbar-title-text-tracking: 0.0125em;
  --mat-toolbar-title-text-weight: 500;
}
html {
  --mat-tree-container-background-color: white;
  --mat-tree-node-text-color: #212629;
}
html {
  --mat-tree-node-min-height: 48px;
}
html {
  --mat-tree-node-text-font: Roboto, sans-serif;
  --mat-tree-node-text-size: 14px;
  --mat-tree-node-text-weight: 400;
}
.mat-mdc-snack-bar-label {
  text-align: center;
  color: #edf1f6 !important;
}
.mdc-snackbar.success > div {
  background-color: #4caf50;
}
.mdc-snackbar.warning > div {
  background-color: #ff5722;
}
.mdc-snackbar.error > div {
  background-color: #d50000;
}
.mdc-snackbar > div {
  color: white;
}
body:has(.default-theme) .page-header.mat-toolbar {
  font: 400 16px / 24px Roboto, sans-serif;
}
body:has(.default-theme) .sidenav .mat-mdc-list-item.is-active .mat-mdc-list-item-unscoped-content {
  color: #7cb342 !important;
}
body:has(.default-theme) .sidenav .mat-mdc-list-item.is-active:before {
  content: "";
  height: 100%;
  width: 2px;
  opacity: 1;
  background-color: #7cb342 !important;
}
body:has(.default-theme) .sidenav .mat-mdc-list-item .mat-mdc-list-item-unscoped-content {
  color: #a3abbd;
}
body:has(.default-theme) .sidenav .drawer-inner-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
body:has(.default-theme) .sidenav {
  background-color: #272c37;
}
body:has(.default-theme) .sidenav {
  color: #ced4dc !important;
}
body:has(.default-theme) .sidenav .mat-mdc-list-item:hover:before {
  background-color: #edf1f6;
}
body:has(.default-theme) .sidenav .mat-mdc-list-item:hover .mat-mdc-list-item-unscoped-content {
  color: unset;
}
body:has(.default-theme) .sidenav .mat-mdc-list-item .mat-mdc-list-item-unscoped-content:hover {
  color: unset;
}
body:has(.default-theme) .custom-card {
  border: 0 solid transparent;
  border-radius: 0;
  box-shadow: rgba(0, 0, 0, 0.05) 0 1px 2px 0;
}
body:has(.default-theme) .custom-card.smaller-header .mat-mdc-card-header {
  padding: 10px 16px 0;
}
body:has(.default-theme) .custom-card.full-width-header .mat-mdc-card-header {
  width: calc(100% - 2rem);
}
body:has(.default-theme) .custom-card.full-width-header .mat-mdc-card-header .mat-mdc-card-header-text {
  width: 100%;
}
body:has(.default-theme) .custom-card .mat-mdc-card-title {
  font-size: 16px;
  text-transform: uppercase;
}
body:has(.default-theme) .custom-card .mat-mdc-card-subtitle {
  font-size: 14px;
}
body:has(.default-theme) .custom-card .mat-mdc-card-content {
  font-size: 14px;
}
body:has(.default-theme) .custom-card.bordered {
  border: 1px solid rgba(206, 212, 220, 0.2666666667) !important;
}
body:has(.default-theme) .summary-card {
  height: 133px;
  width: 20%;
}
body:has(.default-theme) .summary-card .summary-card-header {
  overflow: hidden;
  height: 26px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
body:has(.default-theme) .summary-card .summary-card-header .summary-card-title {
  text-overflow: ellipsis;
  white-space: nowrap;
}
body:has(.default-theme) .summary-card .summary-card-content {
  height: 100px;
  overflow: hidden;
}
body:has(.default-theme) .summary-card .progress-bar {
  padding-bottom: 8px;
}
body:has(.default-theme) .summary-card .progress-bar .progress-percent {
  font-size: 30px;
}
body:has(.default-theme) .summary-card .award-icon {
  font-size: 60px;
  width: 60px;
  height: 60px;
}
body:has(.default-theme) .chart-card {
  height: 528px;
  min-height: 528px;
}
body:has(.default-theme) .chart-card .card-header {
  padding: 10px 16px 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
body:has(.default-theme) .primary {
  color: #558b2f;
}
body:has(.default-theme) .primary-background-color {
  background-color: #558b2f;
}
body:has(.default-theme) .accent {
  color: #009688;
}
body:has(.default-theme) .accent-background-color {
  background-color: #009688;
}
body:has(.default-theme) .secondary {
  color: #7cb342;
}
body:has(.default-theme) .primary-default {
  color: #558b2f;
}
body:has(.default-theme) .primary-dark {
  color: #64dd17;
}
body:has(.default-theme) .accent-default {
  color: #009688;
}
body:has(.default-theme) .accent-dark {
  color: #00bcd4;
}
body:has(.default-theme) .secondary-hl {
  color: #7cb342;
}
body:has(.default-theme) .secondary-background-color {
  background-color: #7cb342;
}
body:has(.default-theme) .accent-2 {
  color: #ff6e40;
}
body:has(.default-theme) .accent-2-background-color {
  background-color: #ff6e40;
}
body:has(.default-theme) .accent-3 {
  color: #5e35b1;
}
body:has(.default-theme) .accent-3-background-color {
  background-color: #5e35b1;
}
body:has(.default-theme) .accent-4 {
  color: #00b8d4;
}
body:has(.default-theme) .accent-4-background-color {
  background-color: #00b8d4;
}
body:has(.default-theme) .success {
  color: #4caf50;
}
body:has(.default-theme) .success-background-color {
  background-color: #4caf50;
}
body:has(.default-theme) .info {
  color: #ffc107;
}
body:has(.default-theme) .info-background-color {
  background-color: #ffc107;
}
body:has(.default-theme) .warn {
  color: #ff5722;
}
body:has(.default-theme) .warn-background-color {
  background-color: #ff5722;
}
body:has(.default-theme) .error {
  color: #d50000;
}
body:has(.default-theme) .error-background-color {
  background-color: #d50000;
}
body:has(.default-theme) .gold {
  color: gold;
}
body:has(.default-theme) .gold-background-color {
  background-color: gold;
}
body:has(.default-theme) .silver {
  color: silver;
}
body:has(.default-theme) .silver-background-color {
  background-color: silver;
}
body:has(.default-theme) .bronze {
  color: #cd7f32;
}
body:has(.default-theme) .bronze-background-color {
  background-color: #cd7f32;
}
body:has(.default-theme) .platinum {
  color: #b0bec5;
}
body:has(.default-theme) .inactive {
  color: #78909c;
}
body:has(.default-theme) .optional {
  color: #82b1ff;
}
body:has(.default-theme) .platinum-background-color {
  background-color: #b0bec5;
}
body:has(.default-theme).white-text {
  color: white;
}
body:has(.default-theme).light-text {
  color: #edf1f6;
}
body:has(.default-theme).dark-text {
  color: #212629;
}
body:has(.default-theme) .mat-mdc-menu-panel.sidebar {
  --mat-menu-item-label-text-color: #ced4dc;
  --mat-menu-item-icon-color: #ced4dc;
  --mat-menu-item-hover-state-layer-color: rgba(206, 212, 220, 0.08);
  --mat-menu-item-focus-state-layer-color: rgba(206, 212, 220, 0.08);
  --mat-menu-container-color: #353b47;
  --mat-menu-divider-color: #4e5467;
  box-shadow:
    0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14),
    0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
body:has(.default-theme) button.rounded {
  border-radius: 25px;
}
body:has(.default-theme) button.square {
  border-radius: 0;
}
body:has(.default-theme) button.small-button {
  width: 20px;
  height: 20px;
  padding: 2px;
}
body:has(.default-theme) button.small-button .mat-mdc-button-touch-target {
  width: 20px;
  height: 20px;
}
body:has(.default-theme) button.small-button .mat-icon {
  font-size: 14px !important;
  width: 14px !important;
  height: 14px !important;
}
body:has(.default-theme) button.smaller-button {
  width: 32px;
  height: 32px;
  padding: 4px;
}
body:has(.default-theme) button.smaller-button .mat-mdc-button-touch-target {
  width: 32px;
  height: 32px;
}
body:has(.default-theme) button.smaller-button.mdc-icon-button .mat-icon {
  font-size: 18px !important;
  width: 18px !important;
  height: 18px !important;
}
body:has(.default-theme) button.medium-button {
  width: 38px;
  height: 38px;
  padding: 7px;
}
body:has(.default-theme) button.medium-button .mat-mdc-button-touch-target {
  width: 38px;
  height: 38px;
}
body:has(.default-theme) button.medium-button.mdc-icon-button .mat-icon {
  font-size: 20px !important;
  width: 20px !important;
  height: 20px !important;
}
body:has(.default-theme) [mat-raised-button] .mdc-button__label,
body:has(.default-theme) [mat-flat-button] .mdc-button__label,
body:has(.default-theme) [mat-fab] .mdc-button__label,
body:has(.default-theme) [mat-mini-fab] .mdc-button__label {
  font-weight: 400 !important;
}
body:has(.default-theme) .no-outline .mdc-checkbox:hover .mdc-checkbox__ripple,
body:has(.default-theme) .no-outline .mdc-checkbox:focus .mdc-checkbox__ripple,
body:has(.default-theme) .no-outline .mdc-checkbox:active .mdc-checkbox__ripple {
  background: unset;
}
body:has(.default-theme) .no-outline .mdc-checkbox .mat-mdc-checkbox-ripple {
  display: none;
}
body:has(.default-theme) .mdc-text-field--filled.mdc-text-field--disabled .mdc-floating-label,
body:has(.default-theme) .mdc-text-field--filled.mdc-text-field--disabled .mdc-floating-label--float-above,
body:has(.default-theme) .mdc-text-field--filled.mdc-text-field--disabled .mdc-text-field__input,
body:has(.default-theme) .mat-mdc-select-disabled {
  color: rgba(59, 68, 83, 0.4666666667);
}
body:has(.default-theme) .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,
body:has(.default-theme) .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label--float-above {
  color: #6c757c;
}
body:has(.default-theme) .mat-mdc-form-field.smaller-font label,
body:has(.default-theme) .mat-mdc-form-field.smaller-font .mat-mdc-form-field-input-control,
body:has(.default-theme) .mat-mdc-form-field.smaller-font .mat-mdc-select {
  font-size: 14px !important;
}
body:has(.default-theme) .mat-mdc-form-field.smaller-font .mat-icon {
  font-size: 22px !important;
  width: 22px !important;
  height: 22px !important;
}
body:has(.default-theme) .mat-mdc-form-field.square .mdc-text-field--filled {
  border-radius: 0 !important;
}
body:has(.default-theme) .mat-mdc-form-field.rounded .mdc-text-field--filled.rounded {
  border-radius: 25px !important;
}
body:has(.default-theme) .mat-mdc-form-field.reduced .mat-mdc-form-field-subscript-wrapper {
  display: none;
}
body:has(.default-theme) .mat-mdc-form-field.smaller-shape .mdc-text-field--filled {
  height: 52px;
}
body:has(.default-theme) .mat-mdc-form-field.no-background .mat-mdc-form-field-focus-overlay {
  background-color: unset;
}
body:has(.default-theme) .mat-mdc-form-field.no-background .mdc-text-field--filled:not(.mdc-text-field--disabled) {
  background: unset !important;
}
body:has(.default-theme) .mat-mdc-form-field.no-background .mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--invalid) .mdc-line-ripple::before {
  border-bottom-color: #a3abbd;
}
body:has(.default-theme) .mat-mdc-form-field.custom-background .mat-mdc-form-field-focus-overlay {
  background-color: #f9fafd;
}
body:has(.default-theme) .mat-mdc-form-field.custom-background .mdc-text-field--filled:not(.mdc-text-field--disabled) {
  background: #f9fafd !important;
}
body:has(.default-theme) .mat-mdc-form-field.custom-background-alt .mat-mdc-form-field-focus-overlay {
  background-color: #edf1f6;
}
body:has(.default-theme) .mat-mdc-form-field.custom-background-alt .mdc-text-field--filled:not(.mdc-text-field--disabled) {
  background: #edf1f6 !important;
}
body:has(.default-theme) .mat-mdc-form-field.custom-background-alt2 .mat-mdc-form-field-focus-overlay {
  background-color: #f7f8fb;
}
body:has(.default-theme) .mat-mdc-form-field.custom-background-alt2 .mdc-text-field--filled:not(.mdc-text-field--disabled) {
  background: #f7f8fb !important;
}
body:has(.default-theme) .mat-mdc-form-field.disabled-transparent .mdc-text-field--filled.mdc-text-field--disabled {
  background-color: transparent !important;
}
body:has(.default-theme) .mat-mdc-form-field.rounded {
  border-radius: 25px;
}
body:has(.default-theme) .mat-mdc-form-field.rounded .mdc-text-field--outlined .mdc-notched-outline__leading {
  border-top-left-radius: 25px !important;
  border-bottom-left-radius: 25px !important;
  width: 25px;
}
body:has(.default-theme) .mat-mdc-form-field.rounded .mdc-text-field--outlined .mdc-notched-outline__trailing {
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
}
body:has(.default-theme) .mat-mdc-form-field.rounded.smaller-shape .mat-mdc-form-field-bottom-align {
  display: none;
}
body:has(.default-theme) .mat-mdc-form-field.rounded.smaller-shape .mat-mdc-form-field-flex {
  height: 36px;
}
body:has(.default-theme) .mat-mdc-form-field.rounded.smaller-shape .mat-mdc-form-field-infix {
  padding: 0;
  height: 36px;
  line-height: 36px;
  min-height: 0;
}
body:has(.default-theme) .mat-mdc-form-field.rounded.smaller-shape .mdc-floating-label:not(.mdc-floating-label--float-above) {
  transform: translateY(-18px) translateX(20px) !important;
}
body:has(.default-theme) .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-notched-outline .mdc-notched-outline__leading,
body:has(.default-theme) .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-notched-outline .mdc-notched-outline__notch,
body:has(.default-theme) .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-notched-outline .mdc-notched-outline__trailing {
  border-color: #ced4dc;
}
body:has(.default-theme) .mat-mdc-form-field-type-mat-select.mat-form-field-disabled .clear-selection .mat-icon {
  color: #a3abbd;
}
body:has(.default-theme) .mat-mdc-form-field-type-mat-select.clearable .mat-mdc-select-value {
  padding-right: 2.5rem;
}
body:has(.default-theme) .mat-mdc-form-field-type-mat-select .clear-selection {
  position: absolute;
  right: 0;
  margin-right: 18px;
  margin-top: -12px;
}
body:has(.default-theme) .mat-mdc-form-field-type-mat-select.no-padding .mdc-text-field {
  padding: 0;
}
body:has(.default-theme) .mat-mdc-select.background-divergence {
  color: white;
}
body:has(.default-theme) .mat-mdc-select.background-divergence .mat-mdc-select-arrow {
  color: white;
}
body:has(.default-theme) .mat-mdc-select.background-divergence.mat-mdc-select-disabled .mat-mdc-select-arrow {
  display: none;
}
body:has(.default-theme) .ql-toolbar button:hover,
body:has(.default-theme) .ql-toolbar button:focus {
  color: #558b2f;
}
body:has(.default-theme) .ql-toolbar button:hover .ql-stroke,
body:has(.default-theme) .ql-toolbar button:focus .ql-stroke {
  stroke: #558b2f;
}
body:has(.default-theme) .ql-toolbar .ql-picker-options {
  background-color: white;
}
body:has(.default-theme) .ql-toolbar .ql-picker-options .ql-picker-item:hover {
  color: #558b2f;
}
body:has(.default-theme) .ql-toolbar .ql-picker-options .ql-picker-item.ql-selected {
  color: #558b2f;
}
body:has(.default-theme) .ql-toolbar .ql-active {
  color: #558b2f !important;
}
body:has(.default-theme) .ql-toolbar .ql-active .ql-stroke {
  stroke: #558b2f !important;
}
body:has(.default-theme) .ql-toolbar .ql-active .ql-fill {
  fill: #558b2f !important;
}
body:has(.default-theme) .ql-toolbar button:hover .ql-fill {
  fill: #558b2f !important;
}
body:has(.default-theme) .ql-toolbar .ql-picker-label:hover {
  color: #558b2f !important;
}
body:has(.default-theme) .ql-toolbar .ql-picker-label:hover .ql-stroke {
  stroke: #558b2f !important;
}
body:has(.default-theme) .ql-toolbar .ql-picker-label:hover .ql-fill {
  fill: #558b2f !important;
}
body:has(.default-theme) .ql-toolbar .filled-text-field-background .ql-picker-options {
  background-color: var(--mdc-filled-text-field-container-color);
}
body:has(.default-theme) .filled-text-field-background .ql-container {
  background-color: var(--mdc-filled-text-field-container-color);
}
body:has(.default-theme) .ql-container {
  color: #212629;
}
body:has(.default-theme) .ql-editor {
  color: #212629;
}
body:has(.default-theme) .ql-tooltip {
  background-color: white !important;
  color: #212629 !important;
}
body:has(.default-theme) .filled-text-field-background .ql-tooltip {
  background-color: var(--mdc-filled-text-field-container-color) !important;
}
body:has(.default-theme) .ql-picker.ql-expanded .ql-picker-label,
body:has(.default-theme) .ql-picker-options,
body:has(.default-theme) .ql-tooltip,
body:has(.default-theme) .ql-toolbar,
body:has(.default-theme) .ql-container {
  border-color: var(--mdc-outlined-text-field-outline-color) !important;
}
body:has(.default-theme) .default-border-color .ql-picker.ql-expanded .ql-picker-label,
body:has(.default-theme) .default-border-color .ql-picker-options,
body:has(.default-theme) .default-border-color .ql-tooltip,
body:has(.default-theme) .default-border-color .ql-toolbar,
body:has(.default-theme) .default-border-color .ql-container {
  border-color: #ced4dc !important;
}
body:has(.default-theme) [disabled=disabled] .ql-toolbar,
body:has(.default-theme) [disabled=disabled] .ql-container {
  background-color: var(--mdc-filled-text-field-disabled-container-color);
}
body:has(.default-theme) [disabled=disabled] .ql-container,
body:has(.default-theme) [disabled=disabled] .ql-editor,
body:has(.default-theme) [disabled=disabled] .ql-tooltip {
  color: #a3abbd;
}
body:has(.default-theme) [disabled=disabled] .ql-formats > span {
  color: #a3abbd !important;
}
body:has(.default-theme) [disabled=disabled] .ql-stroke {
  stroke: #a3abbd !important;
}
body:has(.default-theme) [disabled=disabled] .ql-fill {
  fill: #a3abbd !important;
}
body:has(.default-theme) [disabled=disabled] .ql-picker-label:hover {
  color: #a3abbd !important;
}
body:has(.default-theme) [disabled=disabled] .ql-picker-label:hover .ql-stroke {
  stroke: #a3abbd !important;
}
body:has(.default-theme) [disabled=disabled] .ql-picker-label:hover .ql-fill {
  fill: #a3abbd !important;
}
body:has(.default-theme) [disabled=disabled] button:hover .ql-fill {
  fill: #a3abbd !important;
}
body:has(.default-theme) .mat-mdc-dialog-title {
  padding: 0 1rem 0.75rem;
}
body:has(.default-theme) .mat-mdc-dialog-title.smaller-spacing {
  padding: 0 0.5rem 0.75rem;
}
body:has(.default-theme) .mat-mdc-dialog-content {
  padding: 0 1rem 1.25rem !important;
}
body:has(.default-theme) .mat-mdc-dialog-actions {
  padding: 0.5rem 1rem 1rem;
  justify-content: flex-end;
}
body:has(.default-theme) .custom-scrollbar,
body:has(.default-theme) [cdkscrollable] {
  overflow-y: auto;
}
body:has(.default-theme) .custom-scrollbar.sb-spacing,
body:has(.default-theme) [cdkscrollable].sb-spacing {
  padding-right: 1px;
}
body:has(.default-theme) .custom-scrollbar::-webkit-scrollbar,
body:has(.default-theme) [cdkscrollable]::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}
body:has(.default-theme) .custom-scrollbar::-webkit-scrollbar-track,
body:has(.default-theme) [cdkscrollable]::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
}
body:has(.default-theme) .custom-scrollbar::-webkit-scrollbar-thumb,
body:has(.default-theme) [cdkscrollable]::-webkit-scrollbar-thumb {
  background: #7c869b;
}
body:has(.default-theme) .custom-scrollbar::-webkit-scrollbar-thumb:hover,
body:has(.default-theme) [cdkscrollable]::-webkit-scrollbar-thumb:hover {
  background: #6b758a;
}
body:has(.default-theme) .cdk-drag-placeholder {
  opacity: 0;
}
body:has(.default-theme) .cdk-drag-animating {
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
body:has(.default-theme) .cdk-drag-preview {
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow:
    0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14),
    0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
body:has(.default-theme) .drag-handle {
  display: flex;
  align-items: center;
  margin-right: 0.5rem;
  cursor: move;
  color: #ccc;
}
body:has(.default-theme) .context-nav {
  background-color: white;
}
body:has(.default-theme) .context-nav .mdc-list-item {
  transition: background-color ease-in-out 50ms;
}
body:has(.default-theme) .context-nav .mdc-list-item:focus::before {
  background-color: unset !important;
}
body:has(.default-theme) .context-nav .mdc-list-item.is-active {
  background-color: #3b4453;
}
body:has(.default-theme) .context-nav .mdc-list-item.is-active .nav-label {
  color: #edf1f6;
}
body:has(.default-theme) .mat-icon.icon,
body:has(.default-theme) .custom-icon.icon {
  color: #353b47;
}
body:has(.default-theme) .mat-icon.smaller-icon,
body:has(.default-theme) .custom-icon.smaller-icon {
  width: 18px;
  height: 18px;
  font-size: 18px;
}
body:has(.default-theme) .mat-icon.small-icon,
body:has(.default-theme) .custom-icon.small-icon {
  width: 21px;
  height: 21px;
  font-size: 21px;
}
body:has(.default-theme) .mat-icon.lighter,
body:has(.default-theme) .custom-icon.lighter {
  color: rgba(59, 68, 83, 0.4666666667);
}
body:has(.default-theme) .mat-icon.custom-bg,
body:has(.default-theme) .custom-icon.custom-bg {
  background-color: #00796b;
  color: #edf1f6;
}
body:has(.default-theme) .mat-icon.primary-bg,
body:has(.default-theme) .custom-icon.primary-bg {
  background-color: #558b2f;
  color: #edf1f6;
}
body:has(.default-theme) .mat-icon.secondary-bg,
body:has(.default-theme) .custom-icon.secondary-bg {
  background-color: #7cb342;
  color: black;
}
body:has(.default-theme) .mat-icon.primary-default-bg,
body:has(.default-theme) .custom-icon.primary-default-bg {
  background-color: #558b2f;
}
body:has(.default-theme) .mat-icon.primary-dark-bg,
body:has(.default-theme) .custom-icon.primary-dark-bg {
  background-color: #64dd17;
}
body:has(.default-theme) .mat-icon.accent-default-bg,
body:has(.default-theme) .custom-icon.accent-default-bg {
  background-color: #009688;
}
body:has(.default-theme) .mat-icon.accent-dark-bg,
body:has(.default-theme) .custom-icon.accent-dark-bg {
  background-color: #00bcd4;
}
body:has(.default-theme) .mat-icon.secondary-hl-bg,
body:has(.default-theme) .custom-icon.secondary-hl-bg {
  background-color: #7cb342;
}
body:has(.default-theme) .mat-icon.accent-bg,
body:has(.default-theme) .custom-icon.accent-bg {
  background-color: #009688;
  color: #edf1f6;
}
body:has(.default-theme) .mat-icon.accent-2-bg,
body:has(.default-theme) .custom-icon.accent-2-bg {
  background-color: #ff6e40;
  color: white;
}
body:has(.default-theme) .mat-icon.accent-3-bg,
body:has(.default-theme) .custom-icon.accent-3-bg {
  background-color: #5e35b1;
  color: white;
}
body:has(.default-theme) .mat-icon.accent-4-bg,
body:has(.default-theme) .custom-icon.accent-4-bg {
  background-color: #00b8d4;
  color: white;
}
body:has(.default-theme) .mat-icon.accent-5-bg,
body:has(.default-theme) .custom-icon.accent-5-bg {
  background-color: #00838f;
  color: white;
}
body:has(.default-theme) .mat-icon.success-bg,
body:has(.default-theme) .custom-icon.success-bg {
  background-color: #4caf50;
}
body:has(.default-theme) .mat-icon.info-bg,
body:has(.default-theme) .custom-icon.info-bg {
  background-color: #ffc107;
  color: #313742;
}
body:has(.default-theme) .mat-icon.optional-bg,
body:has(.default-theme) .custom-icon.optional-bg {
  background-color: #82b1ff;
  color: white;
}
body:has(.default-theme) .mat-icon.warn-bg,
body:has(.default-theme) .custom-icon.warn-bg {
  background-color: #ff5722;
  color: white;
}
body:has(.default-theme) .mat-icon.error-bg,
body:has(.default-theme) .custom-icon.error-bg {
  background-color: #d50000;
  color: white;
}
body:has(.default-theme) .mat-icon.rounded-bg,
body:has(.default-theme) .custom-icon.rounded-bg {
  width: 24px;
  height: 24px;
  border-radius: 24px;
  display: flex;
  justify-content: center;
}
body:has(.default-theme) .mat-icon.leaf-bg,
body:has(.default-theme) .custom-icon.leaf-bg {
  width: 24px;
  height: 24px;
  border-radius: 8px 4px 8px 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body:has(.default-theme) .project-info-page .mat-mdc-tab-body-content {
  max-height: calc(100vh - 316px);
}
body:has(.default-theme) .export-tab-group .mat-mdc-tab-body-wrapper {
  flex-grow: 1;
  padding-top: 16px;
}
body:has(.default-theme) .mat-mdc-tab-label-container {
  border-bottom: 1px solid;
  border-bottom-color: #ced4dc;
}
body:has(.default-theme) .default .mat-mdc-tab-body-wrapper {
  height: 100%;
}
body:has(.default-theme) .default .mat-tab-label.mat-tab-label-active {
  background: transparent !important;
}
body:has(.default-theme) .default .mat-mdc-tab.mdc-tab--active {
  background-color: transparent !important;
}
body:has(.default-theme) .default .mat-mdc-tab.mdc-tab--active .mdc-tab__text-label {
  color: #212629;
}
body:has(.default-theme) .mat-mdc-chip.done {
  background-color: #558b2f;
}
body:has(.default-theme) .mat-mdc-chip.done .mdc-evolution-chip__text-label {
  color: white;
}
body:has(.default-theme) .mat-mdc-chip.in_progress {
  background-color: #ffc107;
}
body:has(.default-theme) .mat-mdc-chip.inactive .mdc-evolution-chip__text-label {
  color: #a3abbd;
}
body:has(.default-theme) .differ-rows tr:nth-child(even) {
  background: rgba(49, 55, 66, 0.0196078431);
}
body:has(.default-theme) .row-hover tr:has(td):hover {
  background: rgba(85, 139, 47, 0.0666666667) !important;
}
body:has(.default-theme) .row-hover.pointer td {
  cursor: pointer;
}
body:has(.default-theme) .differ-rows tr:nth-child(even) {
  background: rgba(49, 55, 66, 0.0196078431);
}
body:has(.default-theme) .ql-label {
  font-size: 0.9em;
}
body:has(.default-theme) .ql-toolbar,
body:has(.default-theme) .ql-container {
  font-family: "Roboto", sans-serif;
}
body:has(.default-theme) .ql-tooltip {
  left: 8px !important;
  box-shadow: rgba(0, 0, 0, 0.35) 0 1px 7px -3px !important;
}
body:has(.default-theme) .small-radius .ql-toolbar {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
body:has(.default-theme) .small-radius:not(.flat-bottom) .ql-container {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
body:has(.default-theme) .h-auto .ql-container {
  height: auto;
}
body:has(.default-theme) .ql-custom-height .ql-container {
  height: calc(100% - 42px);
}
body:has(.default-theme) .ql-minh-50 .ql-editor {
  min-height: 50px;
}
body:has(.default-theme) .ql-minh-100 .ql-editor {
  min-height: 100px;
}
body:has(.default-theme) .ql-minh-120 .ql-editor {
  min-height: 120px;
}
body:has(.default-theme) .ql-minh-150 .ql-editor {
  min-height: 150px;
}
body:has(.default-theme) .ql-minh-200 .ql-editor {
  min-height: 200px;
}
body:has(.default-theme) .ql-maxh-100 .ql-editor {
  max-height: 100px;
}
body:has(.default-theme) .ql-maxh-120 .ql-editor {
  max-height: 120px;
}
body:has(.default-theme) .ql-maxh-150 .ql-editor {
  max-height: 150px;
}
body:has(.default-theme) .ql-maxh-200 .ql-editor {
  max-height: 200px;
}
body:has(.default-theme) .ql-maxh-250 .ql-editor {
  max-height: 250px;
}
body:has(.default-theme) .ql-maxh-300 .ql-editor {
  max-height: 300px;
}
body:has(.default-theme) .ql-maxh-400 .ql-editor {
  max-height: 400px;
}
body:has(.default-theme) .ql-toolbar button:hover,
body:has(.default-theme) .ql-toolbar button:focus {
  color: #558b2f;
}
body:has(.default-theme) .ql-toolbar button:hover .ql-stroke,
body:has(.default-theme) .ql-toolbar button:focus .ql-stroke {
  stroke: #558b2f;
}
body:has(.default-theme) .ql-toolbar .ql-picker-options {
  background-color: white;
}
body:has(.default-theme) .ql-toolbar .ql-picker-options .ql-picker-item:hover {
  color: #558b2f;
}
body:has(.default-theme) .ql-toolbar .ql-picker-options .ql-picker-item.ql-selected {
  color: #558b2f;
}
body:has(.default-theme) .ql-toolbar .ql-active {
  color: #558b2f !important;
}
body:has(.default-theme) .ql-toolbar .ql-active .ql-stroke {
  stroke: #558b2f !important;
}
body:has(.default-theme) .ql-toolbar .ql-active .ql-fill {
  fill: #558b2f !important;
}
body:has(.default-theme) .ql-toolbar button:hover .ql-fill {
  fill: #558b2f !important;
}
body:has(.default-theme) .ql-toolbar .ql-picker-label:hover {
  color: #558b2f !important;
}
body:has(.default-theme) .ql-toolbar .ql-picker-label:hover .ql-stroke {
  stroke: #558b2f !important;
}
body:has(.default-theme) .ql-toolbar .ql-picker-label:hover .ql-fill {
  fill: #558b2f !important;
}
body:has(.default-theme) .ql-toolbar .filled-text-field-background .ql-picker-options {
  background-color: var(--mdc-filled-text-field-container-color);
}
body:has(.default-theme) .filled-text-field-background .ql-container {
  background-color: var(--mdc-filled-text-field-container-color);
}
body:has(.default-theme) .ql-container {
  color: #212629;
}
body:has(.default-theme) .ql-editor {
  color: #212629;
}
body:has(.default-theme) .ql-tooltip {
  background-color: white !important;
  color: #212629 !important;
}
body:has(.default-theme) .filled-text-field-background .ql-tooltip {
  background-color: var(--mdc-filled-text-field-container-color) !important;
}
body:has(.default-theme) .ql-picker.ql-expanded .ql-picker-label,
body:has(.default-theme) .ql-picker-options,
body:has(.default-theme) .ql-tooltip,
body:has(.default-theme) .ql-toolbar,
body:has(.default-theme) .ql-container {
  border-color: var(--mdc-outlined-text-field-outline-color) !important;
}
body:has(.default-theme) .default-border-color .ql-picker.ql-expanded .ql-picker-label,
body:has(.default-theme) .default-border-color .ql-picker-options,
body:has(.default-theme) .default-border-color .ql-tooltip,
body:has(.default-theme) .default-border-color .ql-toolbar,
body:has(.default-theme) .default-border-color .ql-container {
  border-color: #ced4dc !important;
}
body:has(.default-theme) [disabled=disabled] .ql-toolbar,
body:has(.default-theme) [disabled=disabled] .ql-container {
  background-color: var(--mdc-filled-text-field-disabled-container-color);
}
body:has(.default-theme) [disabled=disabled] .ql-container,
body:has(.default-theme) [disabled=disabled] .ql-editor,
body:has(.default-theme) [disabled=disabled] .ql-tooltip {
  color: #a3abbd;
}
body:has(.default-theme) [disabled=disabled] .ql-formats > span {
  color: #a3abbd !important;
}
body:has(.default-theme) [disabled=disabled] .ql-stroke {
  stroke: #a3abbd !important;
}
body:has(.default-theme) [disabled=disabled] .ql-fill {
  fill: #a3abbd !important;
}
body:has(.default-theme) [disabled=disabled] .ql-picker-label:hover {
  color: #a3abbd !important;
}
body:has(.default-theme) [disabled=disabled] .ql-picker-label:hover .ql-stroke {
  stroke: #a3abbd !important;
}
body:has(.default-theme) [disabled=disabled] .ql-picker-label:hover .ql-fill {
  fill: #a3abbd !important;
}
body:has(.default-theme) [disabled=disabled] button:hover .ql-fill {
  fill: #a3abbd !important;
}
body:has(.default-theme) .ql-editor.sb-spacing {
  padding-right: 1px;
}
body:has(.default-theme) .ql-editor::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}
body:has(.default-theme) .ql-editor::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.02);
}
body:has(.default-theme) .ql-editor::-webkit-scrollbar-thumb {
  background: #7c869b;
}
body:has(.default-theme) .ql-editor::-webkit-scrollbar-thumb:hover {
  background: #6b758a;
}
body:has(.default-theme) .contrast {
  color: black;
}
body:has(.default-theme) .primary-text {
  color: #212629;
}
body:has(.default-theme) .secondary-text {
  color: #6c757c;
}
body:has(.default-theme) .disabled-text {
  color: #a3abbd;
}
body:has(.default-theme) .inverted-text {
  color: white;
}
body:has(.default-theme) .primary-background {
  background: #edf1f6;
}
body:has(.default-theme) .secondary-background {
  background-color: #f9fafd;
}
body:has(.default-theme) .secondary-background-alt {
  background-color: whitesmoke;
}
body:has(.default-theme) .secondary-background-alt-2 {
  background-color: rgb(234, 234, 234);
}
body:has(.default-theme) .tertiary-background {
  background-color: #edf1f6;
}
body:has(.default-theme) .quaternary-background {
  background-color: #f7f8fb;
}
body:has(.default-theme) .card-background {
  background-color: white;
}
body:has(.default-theme) .overlay-background {
  background-color: white;
}
body:has(.default-theme) .overlay-background-2 {
  background-color: white;
}
body:has(.default-theme) .hover-background {
  background-color: rgba(0, 0, 0, 0.04);
}
body:has(.default-theme) .hovered-background:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
body:has(.default-theme) .shadow-1 {
  box-shadow: rgba(17, 12, 46, 0.15) 0 48px 100px 0;
}
body:has(.default-theme) .default-border {
  border: 1px solid #ced4dc;
}
body:has(.default-theme) .secondary-border {
  border: 1px solid #edf1f6;
}
body:has(.default-theme) .secondary-border-alt {
  border: 1px solid rgba(206, 212, 220, 0.4666666667);
}
body:has(.default-theme) .default-border-color {
  border-color: #ced4dc !important;
}
body:has(.default-theme) .secondary-border-color {
  border-color: #edf1f6 !important;
}
body:has(.default-theme) .secondary-border-color-alt {
  border-color: rgba(206, 212, 220, 0.4666666667) !important;
}
body:has(.default-theme) .eeule-border-color {
  border-color: #7cb342 !important;
}
body:has(.default-theme) .v-divider {
  width: 1px;
  background: #ced4dc;
}
body:has(.default-theme) .v-divider-2 {
  width: 1px;
  background: #edf1f6;
}
body:has(.default-theme) a {
  color: #7cb342;
}
.default-theme:has(.login.handset) {
  background-color: white;
}
body:has(.dark-theme) {
  --mat-ripple-color: rgba(206, 212, 220, 0.1);
  --mat-option-selected-state-label-text-color: #64dd17;
  --mat-option-label-text-color: #ced4dc;
  --mat-option-hover-state-layer-color: rgba(206, 212, 220, 0.08);
  --mat-option-focus-state-layer-color: rgba(206, 212, 220, 0.08);
  --mat-option-selected-state-layer-color: rgba(206, 212, 220, 0.08);
  --mat-optgroup-label-text-color: #ced4dc;
  --mat-full-pseudo-checkbox-selected-icon-color: #00bcd4;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #3b4453;
  --mat-full-pseudo-checkbox-unselected-icon-color: #a3abbd;
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #3b4453;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #00bcd4;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;
  --mat-app-background-color: #3b4453;
  --mat-app-text-color: #ced4dc;
  --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: rgba(206, 212, 220, 0.1);
  --mat-option-selected-state-label-text-color: #64dd17;
  --mat-option-label-text-color: #ced4dc;
  --mat-option-hover-state-layer-color: rgba(206, 212, 220, 0.08);
  --mat-option-focus-state-layer-color: rgba(206, 212, 220, 0.08);
  --mat-option-selected-state-layer-color: rgba(206, 212, 220, 0.08);
  --mat-optgroup-label-text-color: #ced4dc;
  --mat-full-pseudo-checkbox-selected-icon-color: #00bcd4;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #3b4453;
  --mat-full-pseudo-checkbox-unselected-icon-color: #a3abbd;
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #3b4453;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #00bcd4;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;
  --mat-app-background-color: #3b4453;
  --mat-app-text-color: #ced4dc;
  --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);
  --mdc-elevated-card-container-shape: 4px;
  --mdc-outlined-card-container-shape: 4px;
  --mdc-outlined-card-outline-width: 1px;
  --mdc-elevated-card-container-color: #353b47;
  --mdc-elevated-card-container-elevation:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-outlined-card-container-color: #353b47;
  --mdc-outlined-card-outline-color: rgba(206, 212, 220, 0.12);
  --mdc-outlined-card-container-elevation:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-card-subtitle-text-color: #a3abbd;
  --mdc-linear-progress-active-indicator-height: 4px;
  --mdc-linear-progress-track-height: 4px;
  --mdc-linear-progress-track-shape: 0;
  --mdc-plain-tooltip-container-shape: 4px;
  --mdc-plain-tooltip-supporting-text-line-height: 16px;
  --mdc-plain-tooltip-container-color: #313742;
  --mdc-plain-tooltip-supporting-text-color: #fff;
  --mdc-filled-text-field-active-indicator-height: 1px;
  --mdc-filled-text-field-focus-active-indicator-height: 2px;
  --mdc-filled-text-field-container-shape: 4px;
  --mdc-outlined-text-field-outline-width: 1px;
  --mdc-outlined-text-field-focus-outline-width: 2px;
  --mdc-outlined-text-field-container-shape: 4px;
  --mdc-filled-text-field-caret-color: #64dd17;
  --mdc-filled-text-field-focus-active-indicator-color: #64dd17;
  --mdc-filled-text-field-focus-label-text-color: rgba(100, 221, 23, 0.87);
  --mdc-filled-text-field-container-color: #3d434e;
  --mdc-filled-text-field-disabled-container-color: #393f4b;
  --mdc-filled-text-field-label-text-color: rgba(206, 212, 220, 0.6);
  --mdc-filled-text-field-hover-label-text-color: rgba(206, 212, 220, 0.6);
  --mdc-filled-text-field-disabled-label-text-color: rgba(141, 151, 172, 0.38);
  --mdc-filled-text-field-input-text-color: rgba(206, 212, 220, 0.87);
  --mdc-filled-text-field-disabled-input-text-color: rgba(141, 151, 172, 0.38);
  --mdc-filled-text-field-input-text-placeholder-color: rgba(206, 212, 220, 0.6);
  --mdc-filled-text-field-error-hover-label-text-color: #ff5722;
  --mdc-filled-text-field-error-focus-label-text-color: #ff5722;
  --mdc-filled-text-field-error-label-text-color: #ff5722;
  --mdc-filled-text-field-error-caret-color: #ff5722;
  --mdc-filled-text-field-active-indicator-color: rgba(78, 84, 103, 0.42);
  --mdc-filled-text-field-disabled-active-indicator-color: rgba(78, 84, 103, 0.06);
  --mdc-filled-text-field-hover-active-indicator-color: rgba(78, 84, 103, 0.87);
  --mdc-filled-text-field-error-active-indicator-color: #ff5722;
  --mdc-filled-text-field-error-focus-active-indicator-color: #ff5722;
  --mdc-filled-text-field-error-hover-active-indicator-color: #ff5722;
  --mdc-outlined-text-field-caret-color: #64dd17;
  --mdc-outlined-text-field-focus-outline-color: #64dd17;
  --mdc-outlined-text-field-focus-label-text-color: rgba(100, 221, 23, 0.87);
  --mdc-outlined-text-field-label-text-color: rgba(206, 212, 220, 0.6);
  --mdc-outlined-text-field-hover-label-text-color: rgba(206, 212, 220, 0.6);
  --mdc-outlined-text-field-disabled-label-text-color: rgba(141, 151, 172, 0.38);
  --mdc-outlined-text-field-input-text-color: rgba(206, 212, 220, 0.87);
  --mdc-outlined-text-field-disabled-input-text-color: rgba(141, 151, 172, 0.38);
  --mdc-outlined-text-field-input-text-placeholder-color: rgba(206, 212, 220, 0.6);
  --mdc-outlined-text-field-error-caret-color: #ff5722;
  --mdc-outlined-text-field-error-focus-label-text-color: #ff5722;
  --mdc-outlined-text-field-error-label-text-color: #ff5722;
  --mdc-outlined-text-field-error-hover-label-text-color: #ff5722;
  --mdc-outlined-text-field-outline-color: rgba(78, 84, 103, 0.38);
  --mdc-outlined-text-field-disabled-outline-color: rgba(78, 84, 103, 0.06);
  --mdc-outlined-text-field-hover-outline-color: rgba(78, 84, 103, 0.87);
  --mdc-outlined-text-field-error-focus-outline-color: #ff5722;
  --mdc-outlined-text-field-error-hover-outline-color: #ff5722;
  --mdc-outlined-text-field-error-outline-color: #ff5722;
  --mat-form-field-focus-select-arrow-color: rgba(100, 221, 23, 0.87);
  --mat-form-field-disabled-input-text-placeholder-color: rgba(163, 171, 189, 0.38);
  --mat-form-field-state-layer-color: rgba(206, 212, 220, 0.87);
  --mat-form-field-error-text-color: #ff5722;
  --mat-form-field-select-option-text-color: rgba(0, 0, 0, 0.87);
  --mat-form-field-select-disabled-option-text-color: rgba(0, 0, 0, 0.38);
  --mat-form-field-leading-icon-color: unset;
  --mat-form-field-disabled-leading-icon-color: unset;
  --mat-form-field-trailing-icon-color: unset;
  --mat-form-field-disabled-trailing-icon-color: unset;
  --mat-form-field-error-focus-trailing-icon-color: unset;
  --mat-form-field-error-hover-trailing-icon-color: unset;
  --mat-form-field-error-trailing-icon-color: unset;
  --mat-form-field-enabled-select-arrow-color: rgba(163, 171, 189, 0.54);
  --mat-form-field-disabled-select-arrow-color: rgba(163, 171, 189, 0.38);
  --mat-form-field-hover-state-layer-opacity: 0.08;
  --mat-form-field-focus-state-layer-opacity: 0.24;
  --mat-select-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-select-panel-background-color: #353b47;
  --mat-select-enabled-trigger-text-color: rgba(206, 212, 220, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(141, 151, 172, 0.38);
  --mat-select-placeholder-text-color: rgba(206, 212, 220, 0.6);
  --mat-select-enabled-arrow-color: rgba(78, 84, 103, 0.54);
  --mat-select-disabled-arrow-color: rgba(206, 212, 220, 0.38);
  --mat-select-focused-arrow-color: rgba(100, 221, 23, 0.87);
  --mat-select-invalid-arrow-color: rgba(255, 87, 34, 0.87);
  --mat-autocomplete-container-shape: 4px;
  --mat-autocomplete-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-autocomplete-background-color: #353b47;
  --mdc-dialog-container-shape: 4px;
  --mat-dialog-container-elevation-shadow:
    0px 11px 15px -7px rgba(0, 0, 0, 0.2),
    0px 24px 38px 3px rgba(0, 0, 0, 0.14),
    0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mat-dialog-container-max-width: 80vw;
  --mat-dialog-container-small-max-width: 80vw;
  --mat-dialog-container-min-width: 0;
  --mat-dialog-actions-alignment: start;
  --mat-dialog-actions-padding: 8px;
  --mat-dialog-content-padding: 20px 24px;
  --mat-dialog-with-actions-content-padding: 20px 24px;
  --mat-dialog-headline-padding: 0 24px 9px;
  --mdc-dialog-container-color: #353b47;
  --mdc-dialog-subhead-color: rgba(206, 212, 220, 0.87);
  --mdc-dialog-supporting-text-color: rgba(206, 212, 220, 0.6);
  --mdc-switch-disabled-selected-icon-opacity: 0.38;
  --mdc-switch-disabled-track-opacity: 0.12;
  --mdc-switch-disabled-unselected-icon-opacity: 0.38;
  --mdc-switch-handle-height: 20px;
  --mdc-switch-handle-shape: 10px;
  --mdc-switch-handle-width: 20px;
  --mdc-switch-selected-icon-size: 18px;
  --mdc-switch-track-height: 14px;
  --mdc-switch-track-shape: 7px;
  --mdc-switch-track-width: 36px;
  --mdc-switch-unselected-icon-size: 18px;
  --mdc-switch-selected-focus-state-layer-opacity: 0.12;
  --mdc-switch-selected-hover-state-layer-opacity: 0.04;
  --mdc-switch-selected-pressed-state-layer-opacity: 0.1;
  --mdc-switch-unselected-focus-state-layer-opacity: 0.12;
  --mdc-switch-unselected-hover-state-layer-opacity: 0.04;
  --mdc-switch-unselected-pressed-state-layer-opacity: 0.1;
  --mdc-switch-selected-focus-state-layer-color: #aed581;
  --mdc-switch-selected-handle-color: #aed581;
  --mdc-switch-selected-hover-state-layer-color: #aed581;
  --mdc-switch-selected-pressed-state-layer-color: #aed581;
  --mdc-switch-selected-focus-handle-color: #c5e1a5;
  --mdc-switch-selected-hover-handle-color: #c5e1a5;
  --mdc-switch-selected-pressed-handle-color: #c5e1a5;
  --mdc-switch-selected-focus-track-color: #7cb342;
  --mdc-switch-selected-hover-track-color: #7cb342;
  --mdc-switch-selected-pressed-track-color: #7cb342;
  --mdc-switch-selected-track-color: #7cb342;
  --mdc-switch-disabled-selected-handle-color: #000;
  --mdc-switch-disabled-selected-icon-color: #212121;
  --mdc-switch-disabled-selected-track-color: #f5f5f5;
  --mdc-switch-disabled-unselected-handle-color: #000;
  --mdc-switch-disabled-unselected-icon-color: #212121;
  --mdc-switch-disabled-unselected-track-color: #f5f5f5;
  --mdc-switch-handle-surface-color: #fff;
  --mdc-switch-selected-icon-color: #212121;
  --mdc-switch-unselected-focus-handle-color: #fafafa;
  --mdc-switch-unselected-focus-state-layer-color: #f5f5f5;
  --mdc-switch-unselected-focus-track-color: #616161;
  --mdc-switch-unselected-handle-color: #9e9e9e;
  --mdc-switch-unselected-hover-handle-color: #fafafa;
  --mdc-switch-unselected-hover-state-layer-color: #f5f5f5;
  --mdc-switch-unselected-hover-track-color: #616161;
  --mdc-switch-unselected-icon-color: #212121;
  --mdc-switch-unselected-pressed-handle-color: #fafafa;
  --mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;
  --mdc-switch-unselected-pressed-track-color: #616161;
  --mdc-switch-unselected-track-color: #616161;
  --mdc-switch-handle-elevation-shadow:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-disabled-handle-elevation-shadow:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-disabled-label-text-color: #8d97ac;
  --mdc-radio-disabled-selected-icon-opacity: 0.38;
  --mdc-radio-disabled-unselected-icon-opacity: 0.38;
  --mdc-radio-state-layer-size: 40px;
  --mdc-slider-active-track-height: 6px;
  --mdc-slider-active-track-shape: 9999px;
  --mdc-slider-handle-height: 20px;
  --mdc-slider-handle-shape: 50%;
  --mdc-slider-handle-width: 20px;
  --mdc-slider-inactive-track-height: 4px;
  --mdc-slider-inactive-track-shape: 9999px;
  --mdc-slider-with-overlap-handle-outline-width: 1px;
  --mdc-slider-with-tick-marks-active-container-opacity: 0.6;
  --mdc-slider-with-tick-marks-container-shape: 50%;
  --mdc-slider-with-tick-marks-container-size: 2px;
  --mdc-slider-with-tick-marks-inactive-container-opacity: 0.6;
  --mdc-slider-handle-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-value-indicator-width: auto;
  --mat-slider-value-indicator-height: 32px;
  --mat-slider-value-indicator-caret-display: block;
  --mat-slider-value-indicator-border-radius: 4px;
  --mat-slider-value-indicator-padding: 0 12px;
  --mat-slider-value-indicator-text-transform: none;
  --mat-slider-value-indicator-container-transform: translateX(-50%);
  --mdc-slider-handle-color: #64dd17;
  --mdc-slider-focus-handle-color: #64dd17;
  --mdc-slider-hover-handle-color: #64dd17;
  --mdc-slider-active-track-color: #64dd17;
  --mdc-slider-inactive-track-color: #64dd17;
  --mdc-slider-with-tick-marks-inactive-container-color: #64dd17;
  --mdc-slider-with-tick-marks-active-container-color: rgba(0, 0, 0, 0.87);
  --mdc-slider-disabled-active-track-color: #fff;
  --mdc-slider-disabled-handle-color: #fff;
  --mdc-slider-disabled-inactive-track-color: #fff;
  --mdc-slider-label-container-color: #fff;
  --mdc-slider-label-label-text-color: #000;
  --mdc-slider-with-overlap-handle-outline-color: #fff;
  --mdc-slider-with-tick-marks-disabled-container-color: #fff;
  --mat-slider-ripple-color: #64dd17;
  --mat-slider-hover-state-layer-color: rgba(100, 221, 23, 0.05);
  --mat-slider-focus-state-layer-color: rgba(100, 221, 23, 0.2);
  --mat-slider-value-indicator-opacity: 0.9;
  --mat-menu-container-shape: 4px;
  --mat-menu-divider-bottom-spacing: 0;
  --mat-menu-divider-top-spacing: 0;
  --mat-menu-item-spacing: 16px;
  --mat-menu-item-icon-size: 24px;
  --mat-menu-item-leading-spacing: 16px;
  --mat-menu-item-trailing-spacing: 16px;
  --mat-menu-item-with-icon-leading-spacing: 16px;
  --mat-menu-item-with-icon-trailing-spacing: 16px;
  --mat-menu-base-elevation-level: 8;
  --mat-menu-item-label-text-color: #ced4dc;
  --mat-menu-item-icon-color: #ced4dc;
  --mat-menu-item-hover-state-layer-color: rgba(206, 212, 220, 0.08);
  --mat-menu-item-focus-state-layer-color: rgba(206, 212, 220, 0.08);
  --mat-menu-container-color: #353b47;
  --mat-menu-divider-color: #4e5467;
  --mdc-list-list-item-container-shape: 0;
  --mdc-list-list-item-leading-avatar-shape: 50%;
  --mdc-list-list-item-container-color: transparent;
  --mdc-list-list-item-selected-container-color: transparent;
  --mdc-list-list-item-leading-avatar-color: transparent;
  --mdc-list-list-item-leading-icon-size: 24px;
  --mdc-list-list-item-leading-avatar-size: 40px;
  --mdc-list-list-item-trailing-icon-size: 24px;
  --mdc-list-list-item-disabled-state-layer-color: transparent;
  --mdc-list-list-item-disabled-state-layer-opacity: 0;
  --mdc-list-list-item-disabled-label-text-opacity: 0.38;
  --mdc-list-list-item-disabled-leading-icon-opacity: 0.38;
  --mdc-list-list-item-disabled-trailing-icon-opacity: 0.38;
  --mat-list-active-indicator-color: transparent;
  --mat-list-active-indicator-shape: 4px;
  --mdc-list-list-item-label-text-color: #ced4dc;
  --mdc-list-list-item-supporting-text-color: #a3abbd;
  --mdc-list-list-item-leading-icon-color: rgba(206, 212, 220, 0.5);
  --mdc-list-list-item-trailing-supporting-text-color: #8d97ac;
  --mdc-list-list-item-trailing-icon-color: rgba(206, 212, 220, 0.5);
  --mdc-list-list-item-selected-trailing-icon-color: rgba(206, 212, 220, 0.5);
  --mdc-list-list-item-disabled-label-text-color: #ced4dc;
  --mdc-list-list-item-disabled-leading-icon-color: #ced4dc;
  --mdc-list-list-item-disabled-trailing-icon-color: #ced4dc;
  --mdc-list-list-item-hover-label-text-color: #ced4dc;
  --mdc-list-list-item-hover-leading-icon-color: rgba(206, 212, 220, 0.5);
  --mdc-list-list-item-hover-trailing-icon-color: rgba(206, 212, 220, 0.5);
  --mdc-list-list-item-focus-label-text-color: #ced4dc;
  --mdc-list-list-item-hover-state-layer-color: #ced4dc;
  --mdc-list-list-item-hover-state-layer-opacity: 0.08;
  --mdc-list-list-item-focus-state-layer-color: #ced4dc;
  --mdc-list-list-item-focus-state-layer-opacity: 0.24;
  --mat-paginator-container-text-color: rgba(206, 212, 220, 0.87);
  --mat-paginator-container-background-color: #353b47;
  --mat-paginator-enabled-icon-color: rgba(206, 212, 220, 0.54);
  --mat-paginator-disabled-icon-color: rgba(206, 212, 220, 0.12);
  --mdc-secondary-navigation-tab-container-height: 48px;
  --mdc-tab-indicator-active-indicator-height: 2px;
  --mdc-tab-indicator-active-indicator-shape: 0;
  --mat-tab-header-divider-color: transparent;
  --mat-tab-header-divider-height: 0;
  --mdc-checkbox-disabled-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-state-layer-opacity: 0.16;
  --mdc-checkbox-selected-hover-state-layer-opacity: 0.04;
  --mdc-checkbox-selected-pressed-state-layer-opacity: 0.16;
  --mdc-checkbox-unselected-focus-state-layer-opacity: 0.16;
  --mdc-checkbox-unselected-hover-state-layer-opacity: 0.04;
  --mdc-checkbox-unselected-pressed-state-layer-opacity: 0.16;
  --mdc-checkbox-disabled-selected-icon-color: rgba(206, 212, 220, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(206, 212, 220, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #00bcd4;
  --mdc-checkbox-selected-hover-icon-color: #00bcd4;
  --mdc-checkbox-selected-icon-color: #00bcd4;
  --mdc-checkbox-selected-pressed-icon-color: #00bcd4;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(206, 212, 220, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #00bcd4;
  --mdc-checkbox-selected-hover-state-layer-color: #00bcd4;
  --mdc-checkbox-selected-pressed-state-layer-color: #00bcd4;
  --mdc-checkbox-unselected-focus-state-layer-color: #ced4dc;
  --mdc-checkbox-unselected-hover-state-layer-color: #ced4dc;
  --mdc-checkbox-unselected-pressed-state-layer-color: #ced4dc;
  --mat-checkbox-disabled-label-color: #8d97ac;
  --mat-checkbox-label-text-color: #ced4dc;
  --mdc-text-button-container-shape: 4px;
  --mdc-text-button-keep-touch-target: false;
  --mdc-filled-button-container-shape: 4px;
  --mdc-filled-button-keep-touch-target: false;
  --mdc-protected-button-container-shape: 4px;
  --mdc-protected-button-container-elevation-shadow:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-disabled-container-elevation-shadow:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-focus-container-elevation-shadow:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-hover-container-elevation-shadow:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-pressed-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-outlined-button-keep-touch-target: false;
  --mdc-outlined-button-outline-width: 1px;
  --mdc-outlined-button-container-shape: 4px;
  --mat-text-button-horizontal-padding: 8px;
  --mat-text-button-with-icon-horizontal-padding: 8px;
  --mat-text-button-icon-spacing: 8px;
  --mat-text-button-icon-offset: 0;
  --mat-filled-button-horizontal-padding: 16px;
  --mat-filled-button-icon-spacing: 8px;
  --mat-filled-button-icon-offset: -4px;
  --mat-protected-button-horizontal-padding: 16px;
  --mat-protected-button-icon-spacing: 8px;
  --mat-protected-button-icon-offset: -4px;
  --mat-outlined-button-horizontal-padding: 15px;
  --mat-outlined-button-icon-spacing: 8px;
  --mat-outlined-button-icon-offset: -4px;
  --mdc-text-button-label-text-color: #ced4dc;
  --mdc-text-button-disabled-label-text-color: rgba(163, 171, 189, 0.5);
  --mat-text-button-state-layer-color: #ced4dc;
  --mat-text-button-disabled-state-layer-color: #ced4dc;
  --mat-text-button-ripple-color: rgba(206, 212, 220, 0.1);
  --mat-text-button-hover-state-layer-opacity: 0.08;
  --mat-text-button-focus-state-layer-opacity: 0.24;
  --mat-text-button-pressed-state-layer-opacity: 0.24;
  --mdc-filled-button-container-color: #353b47;
  --mdc-filled-button-label-text-color: #ced4dc;
  --mdc-filled-button-disabled-container-color: rgba(163, 171, 189, 0.12);
  --mdc-filled-button-disabled-label-text-color: rgba(163, 171, 189, 0.5);
  --mat-filled-button-state-layer-color: #ced4dc;
  --mat-filled-button-disabled-state-layer-color: #ced4dc;
  --mat-filled-button-ripple-color: rgba(206, 212, 220, 0.1);
  --mat-filled-button-hover-state-layer-opacity: 0.08;
  --mat-filled-button-focus-state-layer-opacity: 0.24;
  --mat-filled-button-pressed-state-layer-opacity: 0.24;
  --mdc-protected-button-container-color: #353b47;
  --mdc-protected-button-label-text-color: #ced4dc;
  --mdc-protected-button-disabled-container-color: rgba(163, 171, 189, 0.12);
  --mdc-protected-button-disabled-label-text-color: rgba(163, 171, 189, 0.5);
  --mat-protected-button-state-layer-color: #ced4dc;
  --mat-protected-button-disabled-state-layer-color: #ced4dc;
  --mat-protected-button-ripple-color: rgba(206, 212, 220, 0.1);
  --mat-protected-button-hover-state-layer-opacity: 0.08;
  --mat-protected-button-focus-state-layer-opacity: 0.24;
  --mat-protected-button-pressed-state-layer-opacity: 0.24;
  --mdc-outlined-button-disabled-outline-color: #4e5467;
  --mdc-outlined-button-disabled-label-text-color: rgba(163, 171, 189, 0.5);
  --mdc-outlined-button-label-text-color: #ced4dc;
  --mdc-outlined-button-outline-color: #4e5467;
  --mat-outlined-button-state-layer-color: #ced4dc;
  --mat-outlined-button-disabled-state-layer-color: #ced4dc;
  --mat-outlined-button-ripple-color: rgba(206, 212, 220, 0.1);
  --mat-outlined-button-hover-state-layer-opacity: 0.08;
  --mat-outlined-button-focus-state-layer-opacity: 0.24;
  --mat-outlined-button-pressed-state-layer-opacity: 0.24;
  --mdc-icon-button-icon-size: 24px;
  --mdc-icon-button-icon-color: inherit;
  --mdc-icon-button-disabled-icon-color: rgba(255, 255, 255, 0.5);
  --mat-icon-button-state-layer-color: #ced4dc;
  --mat-icon-button-disabled-state-layer-color: #ced4dc;
  --mat-icon-button-ripple-color: rgba(206, 212, 220, 0.1);
  --mat-icon-button-hover-state-layer-opacity: 0.08;
  --mat-icon-button-focus-state-layer-opacity: 0.24;
  --mat-icon-button-pressed-state-layer-opacity: 0.24;
  --mdc-fab-container-shape: 50%;
  --mdc-fab-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-focus-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-pressed-container-elevation-shadow:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-container-shape: 50%;
  --mdc-fab-small-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-focus-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-pressed-container-elevation-shadow:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-container-height: 48px;
  --mdc-extended-fab-container-shape: 24px;
  --mdc-extended-fab-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-focus-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-pressed-container-elevation-shadow:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-fab-container-color: #353b47;
  --mat-fab-foreground-color: #ced4dc;
  --mat-fab-state-layer-color: #ced4dc;
  --mat-fab-disabled-state-layer-color: #ced4dc;
  --mat-fab-ripple-color: rgba(206, 212, 220, 0.1);
  --mat-fab-hover-state-layer-opacity: 0.08;
  --mat-fab-focus-state-layer-opacity: 0.24;
  --mat-fab-pressed-state-layer-opacity: 0.24;
  --mat-fab-disabled-state-foreground-color: rgba(163, 171, 189, 0.5);
  --mdc-fab-small-container-color: #353b47;
  --mat-fab-small-foreground-color: #ced4dc;
  --mat-fab-small-state-layer-color: #ced4dc;
  --mat-fab-small-disabled-state-layer-color: #ced4dc;
  --mat-fab-small-ripple-color: rgba(206, 212, 220, 0.1);
  --mat-fab-small-hover-state-layer-opacity: 0.08;
  --mat-fab-small-focus-state-layer-opacity: 0.24;
  --mat-fab-small-pressed-state-layer-opacity: 0.24;
  --mat-fab-small-disabled-state-foreground-color: rgba(163, 171, 189, 0.5);
  --mdc-snackbar-container-shape: 4px;
  --mdc-snackbar-container-color: #d7d8da;
  --mdc-snackbar-supporting-text-color: rgba(53, 59, 71, 0.87);
  --mat-snack-bar-button-color: rgba(0, 0, 0, 0.87);
  --mat-table-row-item-outline-width: 1px;
  --mat-table-background-color: #353b47;
  --mat-table-header-headline-color: #ced4dc;
  --mat-table-row-item-label-text-color: #ced4dc;
  --mat-table-row-item-outline-color: #4e5467;
  --mdc-circular-progress-active-indicator-width: 4px;
  --mdc-circular-progress-size: 48px;
  --mdc-circular-progress-active-indicator-color: #64dd17;
  --mat-badge-container-shape: 50%;
  --mat-badge-container-size: unset;
  --mat-badge-small-size-container-size: unset;
  --mat-badge-large-size-container-size: unset;
  --mat-badge-legacy-container-size: 22px;
  --mat-badge-legacy-small-size-container-size: 16px;
  --mat-badge-legacy-large-size-container-size: 28px;
  --mat-badge-container-offset: -11px 0;
  --mat-badge-small-size-container-offset: -8px 0;
  --mat-badge-large-size-container-offset: -14px 0;
  --mat-badge-container-overlap-offset: -11px;
  --mat-badge-small-size-container-overlap-offset: -8px;
  --mat-badge-large-size-container-overlap-offset: -14px;
  --mat-badge-container-padding: 0;
  --mat-badge-small-size-container-padding: 0;
  --mat-badge-large-size-container-padding: 0;
  --mat-badge-background-color: #64dd17;
  --mat-badge-text-color: rgba(0, 0, 0, 0.87);
  --mat-badge-disabled-state-background-color: #a3abbd;
  --mat-badge-disabled-state-text-color: #8d97ac;
  --mat-bottom-sheet-container-shape: 4px;
  --mat-bottom-sheet-container-text-color: #ced4dc;
  --mat-bottom-sheet-container-background-color: #353b47;
  --mat-legacy-button-toggle-height: 36px;
  --mat-legacy-button-toggle-shape: 2px;
  --mat-legacy-button-toggle-focus-state-layer-opacity: 1;
  --mat-standard-button-toggle-shape: 4px;
  --mat-standard-button-toggle-hover-state-layer-opacity: 0.04;
  --mat-standard-button-toggle-focus-state-layer-opacity: 0.12;
  --mat-legacy-button-toggle-text-color: #8d97ac;
  --mat-legacy-button-toggle-selected-state-text-color: #a3abbd;
  --mat-legacy-button-toggle-disabled-state-text-color: #a3abbd;
  --mat-standard-button-toggle-text-color: #ced4dc;
  --mat-standard-button-toggle-background-color: #353b47;
  --mat-standard-button-toggle-selected-state-text-color: #ced4dc;
  --mat-standard-button-toggle-disabled-state-text-color: #a3abbd;
  --mat-standard-button-toggle-disabled-state-background-color: #353b47;
  --mat-standard-button-toggle-disabled-selected-state-text-color: #ced4dc;
  --mat-standard-button-toggle-divider-color: #4e5467;
  --mat-datepicker-calendar-container-shape: 4px;
  --mat-datepicker-calendar-container-touch-shape: 4px;
  --mat-datepicker-calendar-container-elevation-shadow:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-container-touch-elevation-shadow:
    0px 11px 15px -7px rgba(0, 0, 0, 0.2),
    0px 24px 38px 3px rgba(0, 0, 0, 0.14),
    0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-date-selected-state-text-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-date-selected-state-background-color: #64dd17;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(100, 221, 23, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: rgba(0, 0, 0, 0.87);
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(100, 221, 23, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(100, 221, 23, 0.3);
  --mat-datepicker-toggle-active-state-icon-color: #64dd17;
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(100, 221, 23, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
  --mat-datepicker-toggle-icon-color: #a3abbd;
  --mat-datepicker-calendar-body-label-text-color: #a3abbd;
  --mat-datepicker-calendar-period-button-text-color: #ced4dc;
  --mat-datepicker-calendar-period-button-icon-color: #a3abbd;
  --mat-datepicker-calendar-navigation-button-icon-color: #a3abbd;
  --mat-datepicker-calendar-header-divider-color: #4e5467;
  --mat-datepicker-calendar-header-text-color: #a3abbd;
  --mat-datepicker-calendar-date-today-outline-color: #8d97ac;
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(141, 151, 172, 0.8);
  --mat-datepicker-calendar-date-text-color: #ced4dc;
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: #8d97ac;
  --mat-datepicker-calendar-date-preview-state-outline-color: #4e5467;
  --mat-datepicker-range-input-separator-color: #ced4dc;
  --mat-datepicker-range-input-disabled-state-separator-color: #8d97ac;
  --mat-datepicker-range-input-disabled-state-text-color: #8d97ac;
  --mat-datepicker-calendar-container-background-color: #353b47;
  --mat-datepicker-calendar-container-text-color: #ced4dc;
  --mat-divider-width: 1px;
  --mat-divider-color: #4e5467;
  --mat-expansion-container-shape: 4px;
  --mat-expansion-legacy-header-indicator-display: inline-block;
  --mat-expansion-header-indicator-display: none;
  --mat-expansion-container-background-color: #353b47;
  --mat-expansion-container-text-color: #ced4dc;
  --mat-expansion-actions-divider-color: #4e5467;
  --mat-expansion-header-hover-state-layer-color: rgba(255, 255, 255, 0.04);
  --mat-expansion-header-focus-state-layer-color: rgba(255, 255, 255, 0.04);
  --mat-expansion-header-disabled-state-text-color: #a3abbd;
  --mat-expansion-header-text-color: #ced4dc;
  --mat-expansion-header-description-color: #a3abbd;
  --mat-expansion-header-indicator-color: #a3abbd;
  --mat-icon-color: inherit;
  --mat-sidenav-container-shape: 0;
  --mat-sidenav-container-elevation-shadow:
    0px 8px 10px -5px rgba(0, 0, 0, 0.2),
    0px 16px 24px 2px rgba(0, 0, 0, 0.14),
    0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-sidenav-container-width: auto;
  --mat-sidenav-container-divider-color: #4e5467;
  --mat-sidenav-container-background-color: #353b47;
  --mat-sidenav-container-text-color: #ced4dc;
  --mat-sidenav-content-background-color: #3b4453;
  --mat-sidenav-content-text-color: #ced4dc;
  --mat-sidenav-scrim-color: rgba(202, 196, 184, 0.6);
  --mat-stepper-header-icon-foreground-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-selected-state-icon-background-color: #64dd17;
  --mat-stepper-header-selected-state-icon-foreground-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-done-state-icon-background-color: #64dd17;
  --mat-stepper-header-done-state-icon-foreground-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-header-edit-state-icon-background-color: #64dd17;
  --mat-stepper-header-edit-state-icon-foreground-color: rgba(0, 0, 0, 0.87);
  --mat-stepper-container-color: #353b47;
  --mat-stepper-line-color: #4e5467;
  --mat-stepper-header-hover-state-layer-color: rgba(255, 255, 255, 0.04);
  --mat-stepper-header-focus-state-layer-color: rgba(255, 255, 255, 0.04);
  --mat-stepper-header-label-text-color: #a3abbd;
  --mat-stepper-header-optional-label-text-color: #a3abbd;
  --mat-stepper-header-selected-state-label-text-color: #ced4dc;
  --mat-stepper-header-error-state-label-text-color: #ff5722;
  --mat-stepper-header-icon-background-color: #a3abbd;
  --mat-stepper-header-error-state-icon-foreground-color: #ff5722;
  --mat-stepper-header-error-state-icon-background-color: transparent;
  --mat-sort-arrow-color: #a3abbd;
  --mat-toolbar-container-background-color: #4b5564;
  --mat-toolbar-container-text-color: #ced4dc;
  --mat-tree-container-background-color: #353b47;
  --mat-tree-node-text-color: #ced4dc;
  --mat-sidenav-container-divider-color: #4e5467;
  --mat-sidenav-container-background-color: #353b47;
  --mat-sidenav-container-text-color: #ced4dc;
  --mat-sidenav-content-background-color: #3b4453;
  --mat-sidenav-content-text-color: #ced4dc;
  --mat-sidenav-scrim-color: rgba(202, 196, 184, 0.6);
}
body:has(.dark-theme) .mat-accent {
  --mat-option-selected-state-label-text-color: #00bcd4;
  --mat-option-label-text-color: #ced4dc;
  --mat-option-hover-state-layer-color: rgba(206, 212, 220, 0.08);
  --mat-option-focus-state-layer-color: rgba(206, 212, 220, 0.08);
  --mat-option-selected-state-layer-color: rgba(206, 212, 220, 0.08);
}
body:has(.dark-theme) .mat-warn {
  --mat-option-selected-state-label-text-color: #ff5722;
  --mat-option-label-text-color: #ced4dc;
  --mat-option-hover-state-layer-color: rgba(206, 212, 220, 0.08);
  --mat-option-focus-state-layer-color: rgba(206, 212, 220, 0.08);
  --mat-option-selected-state-layer-color: rgba(206, 212, 220, 0.08);
}
body:has(.dark-theme) .mat-primary {
  --mat-full-pseudo-checkbox-selected-icon-color: #64dd17;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #3b4453;
  --mat-full-pseudo-checkbox-unselected-icon-color: #a3abbd;
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #3b4453;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #64dd17;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;
}
body:has(.dark-theme) .mat-accent {
  --mat-full-pseudo-checkbox-selected-icon-color: #00bcd4;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #3b4453;
  --mat-full-pseudo-checkbox-unselected-icon-color: #a3abbd;
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #3b4453;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #00bcd4;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;
}
body:has(.dark-theme) .mat-warn {
  --mat-full-pseudo-checkbox-selected-icon-color: #ff5722;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #3b4453;
  --mat-full-pseudo-checkbox-unselected-icon-color: #a3abbd;
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #3b4453;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff5722;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;
}
body:has(.dark-theme) .mat-accent {
  --mat-option-selected-state-label-text-color: #00bcd4;
  --mat-option-label-text-color: #ced4dc;
  --mat-option-hover-state-layer-color: rgba(206, 212, 220, 0.08);
  --mat-option-focus-state-layer-color: rgba(206, 212, 220, 0.08);
  --mat-option-selected-state-layer-color: rgba(206, 212, 220, 0.08);
}
body:has(.dark-theme) .mat-warn {
  --mat-option-selected-state-label-text-color: #ff5722;
  --mat-option-label-text-color: #ced4dc;
  --mat-option-hover-state-layer-color: rgba(206, 212, 220, 0.08);
  --mat-option-focus-state-layer-color: rgba(206, 212, 220, 0.08);
  --mat-option-selected-state-layer-color: rgba(206, 212, 220, 0.08);
}
body:has(.dark-theme) .mat-primary {
  --mat-full-pseudo-checkbox-selected-icon-color: #64dd17;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #3b4453;
  --mat-full-pseudo-checkbox-unselected-icon-color: #a3abbd;
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #3b4453;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #64dd17;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;
}
body:has(.dark-theme) .mat-accent {
  --mat-full-pseudo-checkbox-selected-icon-color: #00bcd4;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #3b4453;
  --mat-full-pseudo-checkbox-unselected-icon-color: #a3abbd;
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #3b4453;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #00bcd4;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;
}
body:has(.dark-theme) .mat-warn {
  --mat-full-pseudo-checkbox-selected-icon-color: #ff5722;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #3b4453;
  --mat-full-pseudo-checkbox-unselected-icon-color: #a3abbd;
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #3b4453;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: #686868;
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: #686868;
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #ff5722;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;
}
body:has(.dark-theme) .mat-mdc-progress-bar {
  --mdc-linear-progress-active-indicator-color: #64dd17;
  --mdc-linear-progress-track-color: rgba(100, 221, 23, 0.25);
}
body:has(.dark-theme) .mat-mdc-progress-bar.mat-accent {
  --mdc-linear-progress-active-indicator-color: #00bcd4;
  --mdc-linear-progress-track-color: rgba(0, 188, 212, 0.25);
}
body:has(.dark-theme) .mat-mdc-progress-bar.mat-warn {
  --mdc-linear-progress-active-indicator-color: #ff5722;
  --mdc-linear-progress-track-color: rgba(255, 87, 34, 0.25);
}
body:has(.dark-theme) .mat-mdc-form-field.mat-accent {
  --mdc-filled-text-field-caret-color: #00bcd4;
  --mdc-filled-text-field-focus-active-indicator-color: #00bcd4;
  --mdc-filled-text-field-focus-label-text-color: rgba(0, 188, 212, 0.87);
  --mdc-outlined-text-field-caret-color: #00bcd4;
  --mdc-outlined-text-field-focus-outline-color: #00bcd4;
  --mdc-outlined-text-field-focus-label-text-color: rgba(0, 188, 212, 0.87);
  --mat-form-field-focus-select-arrow-color: rgba(0, 188, 212, 0.87);
}
body:has(.dark-theme) .mat-mdc-form-field.mat-warn {
  --mdc-filled-text-field-caret-color: #ff5722;
  --mdc-filled-text-field-focus-active-indicator-color: #ff5722;
  --mdc-filled-text-field-focus-label-text-color: rgba(255, 87, 34, 0.87);
  --mdc-outlined-text-field-caret-color: #ff5722;
  --mdc-outlined-text-field-focus-outline-color: #ff5722;
  --mdc-outlined-text-field-focus-label-text-color: rgba(255, 87, 34, 0.87);
  --mat-form-field-focus-select-arrow-color: rgba(255, 87, 34, 0.87);
}
body:has(.dark-theme) .mat-mdc-form-field.mat-accent {
  --mat-select-panel-background-color: #353b47;
  --mat-select-enabled-trigger-text-color: rgba(206, 212, 220, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(141, 151, 172, 0.38);
  --mat-select-placeholder-text-color: rgba(206, 212, 220, 0.6);
  --mat-select-enabled-arrow-color: rgba(78, 84, 103, 0.54);
  --mat-select-disabled-arrow-color: rgba(206, 212, 220, 0.38);
  --mat-select-focused-arrow-color: rgba(0, 188, 212, 0.87);
  --mat-select-invalid-arrow-color: rgba(255, 87, 34, 0.87);
}
body:has(.dark-theme) .mat-mdc-form-field.mat-warn {
  --mat-select-panel-background-color: #353b47;
  --mat-select-enabled-trigger-text-color: rgba(206, 212, 220, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(141, 151, 172, 0.38);
  --mat-select-placeholder-text-color: rgba(206, 212, 220, 0.6);
  --mat-select-enabled-arrow-color: rgba(78, 84, 103, 0.54);
  --mat-select-disabled-arrow-color: rgba(206, 212, 220, 0.38);
  --mat-select-focused-arrow-color: rgba(255, 87, 34, 0.87);
  --mat-select-invalid-arrow-color: rgba(255, 87, 34, 0.87);
}
body:has(.dark-theme) .mat-mdc-standard-chip {
  --mdc-chip-container-shape-radius: 16px;
  --mdc-chip-with-avatar-avatar-shape-radius: 14px;
  --mdc-chip-with-avatar-avatar-size: 28px;
  --mdc-chip-with-icon-icon-size: 18px;
  --mdc-chip-outline-width: 0;
  --mdc-chip-outline-color: transparent;
  --mdc-chip-disabled-outline-color: transparent;
  --mdc-chip-focus-outline-color: transparent;
  --mdc-chip-hover-state-layer-opacity: 0.04;
  --mdc-chip-with-avatar-disabled-avatar-opacity: 1;
  --mdc-chip-flat-selected-outline-width: 0;
  --mdc-chip-selected-hover-state-layer-opacity: 0.04;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;
  --mdc-chip-with-icon-disabled-icon-opacity: 1;
  --mat-chip-disabled-container-opacity: 0.4;
  --mat-chip-trailing-action-opacity: 0.54;
  --mat-chip-trailing-action-focus-opacity: 1;
  --mat-chip-trailing-action-state-layer-color: transparent;
  --mat-chip-selected-trailing-action-state-layer-color: transparent;
  --mat-chip-trailing-action-hover-state-layer-opacity: 0;
  --mat-chip-trailing-action-focus-state-layer-opacity: 0;
}
body:has(.dark-theme) .mat-mdc-standard-chip {
  --mdc-chip-disabled-label-text-color: #fafafa;
  --mdc-chip-elevated-container-color: #474d59;
  --mdc-chip-elevated-selected-container-color: #474d59;
  --mdc-chip-elevated-disabled-container-color: #474d59;
  --mdc-chip-flat-disabled-selected-container-color: #474d59;
  --mdc-chip-focus-state-layer-color: #ced4dc;
  --mdc-chip-hover-state-layer-color: #ced4dc;
  --mdc-chip-selected-hover-state-layer-color: #ced4dc;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: #ced4dc;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: #fafafa;
  --mdc-chip-selected-label-text-color: #fafafa;
  --mdc-chip-with-icon-icon-color: #fafafa;
  --mdc-chip-with-icon-disabled-icon-color: #fafafa;
  --mdc-chip-with-icon-selected-icon-color: #fafafa;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #fafafa;
  --mdc-chip-with-trailing-icon-trailing-icon-color: #fafafa;
  --mat-chip-selected-disabled-trailing-icon-color: #fafafa;
  --mat-chip-selected-trailing-icon-color: #fafafa;
}
body:has(.dark-theme) .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary,
body:has(.dark-theme) .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
  --mdc-chip-disabled-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-elevated-container-color: #64dd17;
  --mdc-chip-elevated-selected-container-color: #64dd17;
  --mdc-chip-elevated-disabled-container-color: #64dd17;
  --mdc-chip-flat-disabled-selected-container-color: #64dd17;
  --mdc-chip-focus-state-layer-color: #ced4dc;
  --mdc-chip-hover-state-layer-color: #ced4dc;
  --mdc-chip-selected-hover-state-layer-color: #ced4dc;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: #ced4dc;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-selected-label-text-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-icon-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-icon-disabled-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-icon-selected-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: rgba(0, 0, 0, 0.87);
  --mdc-chip-with-trailing-icon-trailing-icon-color: rgba(0, 0, 0, 0.87);
  --mat-chip-selected-disabled-trailing-icon-color: rgba(0, 0, 0, 0.87);
  --mat-chip-selected-trailing-icon-color: rgba(0, 0, 0, 0.87);
}
body:has(.dark-theme) .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent,
body:has(.dark-theme) .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #00bcd4;
  --mdc-chip-elevated-selected-container-color: #00bcd4;
  --mdc-chip-elevated-disabled-container-color: #00bcd4;
  --mdc-chip-flat-disabled-selected-container-color: #00bcd4;
  --mdc-chip-focus-state-layer-color: #ced4dc;
  --mdc-chip-hover-state-layer-color: #ced4dc;
  --mdc-chip-selected-hover-state-layer-color: #ced4dc;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: #ced4dc;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
body:has(.dark-theme) .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn,
body:has(.dark-theme) .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #ff5722;
  --mdc-chip-elevated-selected-container-color: #ff5722;
  --mdc-chip-elevated-disabled-container-color: #ff5722;
  --mdc-chip-flat-disabled-selected-container-color: #ff5722;
  --mdc-chip-focus-state-layer-color: #ced4dc;
  --mdc-chip-hover-state-layer-color: #ced4dc;
  --mdc-chip-selected-hover-state-layer-color: #ced4dc;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: #ced4dc;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: white;
  --mdc-chip-selected-label-text-color: white;
  --mdc-chip-with-icon-icon-color: white;
  --mdc-chip-with-icon-disabled-icon-color: white;
  --mdc-chip-with-icon-selected-icon-color: white;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: white;
  --mdc-chip-with-trailing-icon-trailing-icon-color: white;
  --mat-chip-selected-disabled-trailing-icon-color: white;
  --mat-chip-selected-trailing-icon-color: white;
}
body:has(.dark-theme) .mat-mdc-slide-toggle {
  --mat-switch-disabled-selected-handle-opacity: 0.38;
  --mat-switch-disabled-unselected-handle-opacity: 0.38;
  --mat-switch-unselected-handle-size: 20px;
  --mat-switch-selected-handle-size: 20px;
  --mat-switch-pressed-handle-size: 20px;
  --mat-switch-with-icon-handle-size: 20px;
  --mat-switch-selected-handle-horizontal-margin: 0;
  --mat-switch-selected-with-icon-handle-horizontal-margin: 0;
  --mat-switch-selected-pressed-handle-horizontal-margin: 0;
  --mat-switch-unselected-handle-horizontal-margin: 0;
  --mat-switch-unselected-with-icon-handle-horizontal-margin: 0;
  --mat-switch-unselected-pressed-handle-horizontal-margin: 0;
  --mat-switch-visible-track-opacity: 1;
  --mat-switch-hidden-track-opacity: 1;
  --mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);
  --mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  --mat-switch-track-outline-width: 1px;
  --mat-switch-track-outline-color: transparent;
  --mat-switch-selected-track-outline-width: 1px;
  --mat-switch-selected-track-outline-color: transparent;
  --mat-switch-disabled-unselected-track-outline-width: 1px;
  --mat-switch-disabled-unselected-track-outline-color: transparent;
}
body:has(.dark-theme) .mat-mdc-slide-toggle {
  --mat-switch-label-text-color: #ced4dc;
}
body:has(.dark-theme) .mat-mdc-slide-toggle.mat-accent {
  --mdc-switch-selected-focus-state-layer-color: #4dd0e1;
  --mdc-switch-selected-handle-color: #4dd0e1;
  --mdc-switch-selected-hover-state-layer-color: #4dd0e1;
  --mdc-switch-selected-pressed-state-layer-color: #4dd0e1;
  --mdc-switch-selected-focus-handle-color: #80deea;
  --mdc-switch-selected-hover-handle-color: #80deea;
  --mdc-switch-selected-pressed-handle-color: #80deea;
  --mdc-switch-selected-focus-track-color: #00acc1;
  --mdc-switch-selected-hover-track-color: #00acc1;
  --mdc-switch-selected-pressed-track-color: #00acc1;
  --mdc-switch-selected-track-color: #00acc1;
}
body:has(.dark-theme) .mat-mdc-slide-toggle.mat-warn {
  --mdc-switch-selected-focus-state-layer-color: #ff8a65;
  --mdc-switch-selected-handle-color: #ff8a65;
  --mdc-switch-selected-hover-state-layer-color: #ff8a65;
  --mdc-switch-selected-pressed-state-layer-color: #ff8a65;
  --mdc-switch-selected-focus-handle-color: #ffab91;
  --mdc-switch-selected-hover-handle-color: #ffab91;
  --mdc-switch-selected-pressed-handle-color: #ffab91;
  --mdc-switch-selected-focus-track-color: #f4511e;
  --mdc-switch-selected-hover-track-color: #f4511e;
  --mdc-switch-selected-pressed-track-color: #f4511e;
  --mdc-switch-selected-track-color: #f4511e;
}
body:has(.dark-theme) .mat-mdc-radio-button.mat-primary {
  --mdc-radio-disabled-selected-icon-color: #a3abbd;
  --mdc-radio-disabled-unselected-icon-color: #a3abbd;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(163, 171, 189, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(163, 171, 189, 0.54);
  --mdc-radio-selected-focus-icon-color: #64dd17;
  --mdc-radio-selected-hover-icon-color: #64dd17;
  --mdc-radio-selected-icon-color: #64dd17;
  --mdc-radio-selected-pressed-icon-color: #64dd17;
  --mat-radio-ripple-color: #ced4dc;
  --mat-radio-checked-ripple-color: #64dd17;
  --mat-radio-disabled-label-color: #8d97ac;
  --mat-radio-label-text-color: #ced4dc;
}
body:has(.dark-theme) .mat-mdc-radio-button.mat-accent {
  --mdc-radio-disabled-selected-icon-color: #a3abbd;
  --mdc-radio-disabled-unselected-icon-color: #a3abbd;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(163, 171, 189, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(163, 171, 189, 0.54);
  --mdc-radio-selected-focus-icon-color: #00bcd4;
  --mdc-radio-selected-hover-icon-color: #00bcd4;
  --mdc-radio-selected-icon-color: #00bcd4;
  --mdc-radio-selected-pressed-icon-color: #00bcd4;
  --mat-radio-ripple-color: #ced4dc;
  --mat-radio-checked-ripple-color: #00bcd4;
  --mat-radio-disabled-label-color: #8d97ac;
  --mat-radio-label-text-color: #ced4dc;
}
body:has(.dark-theme) .mat-mdc-radio-button.mat-warn {
  --mdc-radio-disabled-selected-icon-color: #a3abbd;
  --mdc-radio-disabled-unselected-icon-color: #a3abbd;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(163, 171, 189, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(163, 171, 189, 0.54);
  --mdc-radio-selected-focus-icon-color: #ff5722;
  --mdc-radio-selected-hover-icon-color: #ff5722;
  --mdc-radio-selected-icon-color: #ff5722;
  --mdc-radio-selected-pressed-icon-color: #ff5722;
  --mat-radio-ripple-color: #ced4dc;
  --mat-radio-checked-ripple-color: #ff5722;
  --mat-radio-disabled-label-color: #8d97ac;
  --mat-radio-label-text-color: #ced4dc;
}
body:has(.dark-theme) .mat-accent {
  --mdc-slider-handle-color: #00bcd4;
  --mdc-slider-focus-handle-color: #00bcd4;
  --mdc-slider-hover-handle-color: #00bcd4;
  --mdc-slider-active-track-color: #00bcd4;
  --mdc-slider-inactive-track-color: #00bcd4;
  --mdc-slider-with-tick-marks-inactive-container-color: #00bcd4;
  --mdc-slider-with-tick-marks-active-container-color: white;
  --mat-slider-ripple-color: #00bcd4;
  --mat-slider-hover-state-layer-color: rgba(0, 188, 212, 0.05);
  --mat-slider-focus-state-layer-color: rgba(0, 188, 212, 0.2);
}
body:has(.dark-theme) .mat-warn {
  --mdc-slider-handle-color: #ff5722;
  --mdc-slider-focus-handle-color: #ff5722;
  --mdc-slider-hover-handle-color: #ff5722;
  --mdc-slider-active-track-color: #ff5722;
  --mdc-slider-inactive-track-color: #ff5722;
  --mdc-slider-with-tick-marks-inactive-container-color: #ff5722;
  --mdc-slider-with-tick-marks-active-container-color: white;
  --mat-slider-ripple-color: #ff5722;
  --mat-slider-hover-state-layer-color: rgba(255, 87, 34, 0.05);
  --mat-slider-focus-state-layer-color: rgba(255, 87, 34, 0.2);
}
body:has(.dark-theme) .mdc-list-item__start,
body:has(.dark-theme) .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: #a3abbd;
  --mdc-radio-disabled-unselected-icon-color: #a3abbd;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(163, 171, 189, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(163, 171, 189, 0.54);
  --mdc-radio-selected-focus-icon-color: #64dd17;
  --mdc-radio-selected-hover-icon-color: #64dd17;
  --mdc-radio-selected-icon-color: #64dd17;
  --mdc-radio-selected-pressed-icon-color: #64dd17;
}
body:has(.dark-theme) .mat-accent .mdc-list-item__start,
body:has(.dark-theme) .mat-accent .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: #a3abbd;
  --mdc-radio-disabled-unselected-icon-color: #a3abbd;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(163, 171, 189, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(163, 171, 189, 0.54);
  --mdc-radio-selected-focus-icon-color: #00bcd4;
  --mdc-radio-selected-hover-icon-color: #00bcd4;
  --mdc-radio-selected-icon-color: #00bcd4;
  --mdc-radio-selected-pressed-icon-color: #00bcd4;
}
body:has(.dark-theme) .mat-warn .mdc-list-item__start,
body:has(.dark-theme) .mat-warn .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: #a3abbd;
  --mdc-radio-disabled-unselected-icon-color: #a3abbd;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(163, 171, 189, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(163, 171, 189, 0.54);
  --mdc-radio-selected-focus-icon-color: #ff5722;
  --mdc-radio-selected-hover-icon-color: #ff5722;
  --mdc-radio-selected-icon-color: #ff5722;
  --mdc-radio-selected-pressed-icon-color: #ff5722;
}
body:has(.dark-theme) .mat-mdc-list-option {
  --mdc-checkbox-disabled-selected-icon-color: rgba(206, 212, 220, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(206, 212, 220, 0.38);
  --mdc-checkbox-selected-checkmark-color: black;
  --mdc-checkbox-selected-focus-icon-color: #64dd17;
  --mdc-checkbox-selected-hover-icon-color: #64dd17;
  --mdc-checkbox-selected-icon-color: #64dd17;
  --mdc-checkbox-selected-pressed-icon-color: #64dd17;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(206, 212, 220, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #64dd17;
  --mdc-checkbox-selected-hover-state-layer-color: #64dd17;
  --mdc-checkbox-selected-pressed-state-layer-color: #64dd17;
  --mdc-checkbox-unselected-focus-state-layer-color: #ced4dc;
  --mdc-checkbox-unselected-hover-state-layer-color: #ced4dc;
  --mdc-checkbox-unselected-pressed-state-layer-color: #ced4dc;
}
body:has(.dark-theme) .mat-mdc-list-option.mat-accent {
  --mdc-checkbox-disabled-selected-icon-color: rgba(206, 212, 220, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(206, 212, 220, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #00bcd4;
  --mdc-checkbox-selected-hover-icon-color: #00bcd4;
  --mdc-checkbox-selected-icon-color: #00bcd4;
  --mdc-checkbox-selected-pressed-icon-color: #00bcd4;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(206, 212, 220, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #00bcd4;
  --mdc-checkbox-selected-hover-state-layer-color: #00bcd4;
  --mdc-checkbox-selected-pressed-state-layer-color: #00bcd4;
  --mdc-checkbox-unselected-focus-state-layer-color: #ced4dc;
  --mdc-checkbox-unselected-hover-state-layer-color: #ced4dc;
  --mdc-checkbox-unselected-pressed-state-layer-color: #ced4dc;
}
body:has(.dark-theme) .mat-mdc-list-option.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(206, 212, 220, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(206, 212, 220, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #ff5722;
  --mdc-checkbox-selected-hover-icon-color: #ff5722;
  --mdc-checkbox-selected-icon-color: #ff5722;
  --mdc-checkbox-selected-pressed-icon-color: #ff5722;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(206, 212, 220, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #ff5722;
  --mdc-checkbox-selected-hover-state-layer-color: #ff5722;
  --mdc-checkbox-selected-pressed-state-layer-color: #ff5722;
  --mdc-checkbox-unselected-focus-state-layer-color: #ced4dc;
  --mdc-checkbox-unselected-hover-state-layer-color: #ced4dc;
  --mdc-checkbox-unselected-pressed-state-layer-color: #ced4dc;
}
body:has(.dark-theme) .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
body:has(.dark-theme) .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__start,
body:has(.dark-theme) .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text,
body:has(.dark-theme) .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__start {
  color: #64dd17;
}
body:has(.dark-theme) .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,
body:has(.dark-theme) .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
body:has(.dark-theme) .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {
  opacity: 1;
}
body:has(.dark-theme) .mat-mdc-tab-group,
body:has(.dark-theme) .mat-mdc-tab-nav-bar {
  --mdc-tab-indicator-active-indicator-color: #64dd17;
  --mat-tab-header-disabled-ripple-color: #8d97ac;
  --mat-tab-header-pagination-icon-color: #a3abbd;
  --mat-tab-header-inactive-label-text-color: rgba(206, 212, 220, 0.6);
  --mat-tab-header-active-label-text-color: #64dd17;
  --mat-tab-header-active-ripple-color: #64dd17;
  --mat-tab-header-inactive-ripple-color: #64dd17;
  --mat-tab-header-inactive-focus-label-text-color: rgba(206, 212, 220, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(206, 212, 220, 0.6);
  --mat-tab-header-active-focus-label-text-color: #64dd17;
  --mat-tab-header-active-hover-label-text-color: #64dd17;
  --mat-tab-header-active-focus-indicator-color: #64dd17;
  --mat-tab-header-active-hover-indicator-color: #64dd17;
}
body:has(.dark-theme) .mat-mdc-tab-group.mat-accent,
body:has(.dark-theme) .mat-mdc-tab-nav-bar.mat-accent {
  --mdc-tab-indicator-active-indicator-color: #00bcd4;
  --mat-tab-header-disabled-ripple-color: #8d97ac;
  --mat-tab-header-pagination-icon-color: #a3abbd;
  --mat-tab-header-inactive-label-text-color: rgba(206, 212, 220, 0.6);
  --mat-tab-header-active-label-text-color: #00bcd4;
  --mat-tab-header-active-ripple-color: #00bcd4;
  --mat-tab-header-inactive-ripple-color: #00bcd4;
  --mat-tab-header-inactive-focus-label-text-color: rgba(206, 212, 220, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(206, 212, 220, 0.6);
  --mat-tab-header-active-focus-label-text-color: #00bcd4;
  --mat-tab-header-active-hover-label-text-color: #00bcd4;
  --mat-tab-header-active-focus-indicator-color: #00bcd4;
  --mat-tab-header-active-hover-indicator-color: #00bcd4;
}
body:has(.dark-theme) .mat-mdc-tab-group.mat-warn,
body:has(.dark-theme) .mat-mdc-tab-nav-bar.mat-warn {
  --mdc-tab-indicator-active-indicator-color: #ff5722;
  --mat-tab-header-disabled-ripple-color: #8d97ac;
  --mat-tab-header-pagination-icon-color: #a3abbd;
  --mat-tab-header-inactive-label-text-color: rgba(206, 212, 220, 0.6);
  --mat-tab-header-active-label-text-color: #ff5722;
  --mat-tab-header-active-ripple-color: #ff5722;
  --mat-tab-header-inactive-ripple-color: #ff5722;
  --mat-tab-header-inactive-focus-label-text-color: rgba(206, 212, 220, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(206, 212, 220, 0.6);
  --mat-tab-header-active-focus-label-text-color: #ff5722;
  --mat-tab-header-active-hover-label-text-color: #ff5722;
  --mat-tab-header-active-focus-indicator-color: #ff5722;
  --mat-tab-header-active-hover-indicator-color: #ff5722;
}
body:has(.dark-theme) .mat-mdc-tab-group.mat-background-primary,
body:has(.dark-theme) .mat-mdc-tab-nav-bar.mat-background-primary {
  --mat-tab-header-with-background-background-color: #64dd17;
  --mat-tab-header-with-background-foreground-color: rgba(0, 0, 0, 0.87);
}
body:has(.dark-theme) .mat-mdc-tab-group.mat-background-accent,
body:has(.dark-theme) .mat-mdc-tab-nav-bar.mat-background-accent {
  --mat-tab-header-with-background-background-color: #00bcd4;
  --mat-tab-header-with-background-foreground-color: white;
}
body:has(.dark-theme) .mat-mdc-tab-group.mat-background-warn,
body:has(.dark-theme) .mat-mdc-tab-nav-bar.mat-background-warn {
  --mat-tab-header-with-background-background-color: #ff5722;
  --mat-tab-header-with-background-foreground-color: white;
}
body:has(.dark-theme) .mat-mdc-checkbox.mat-primary {
  --mdc-checkbox-disabled-selected-icon-color: rgba(206, 212, 220, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(206, 212, 220, 0.38);
  --mdc-checkbox-selected-checkmark-color: black;
  --mdc-checkbox-selected-focus-icon-color: #64dd17;
  --mdc-checkbox-selected-hover-icon-color: #64dd17;
  --mdc-checkbox-selected-icon-color: #64dd17;
  --mdc-checkbox-selected-pressed-icon-color: #64dd17;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(206, 212, 220, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #64dd17;
  --mdc-checkbox-selected-hover-state-layer-color: #64dd17;
  --mdc-checkbox-selected-pressed-state-layer-color: #64dd17;
  --mdc-checkbox-unselected-focus-state-layer-color: #ced4dc;
  --mdc-checkbox-unselected-hover-state-layer-color: #ced4dc;
  --mdc-checkbox-unselected-pressed-state-layer-color: #ced4dc;
}
body:has(.dark-theme) .mat-mdc-checkbox.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(206, 212, 220, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(206, 212, 220, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #ff5722;
  --mdc-checkbox-selected-hover-icon-color: #ff5722;
  --mdc-checkbox-selected-icon-color: #ff5722;
  --mdc-checkbox-selected-pressed-icon-color: #ff5722;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(206, 212, 220, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #ff5722;
  --mdc-checkbox-selected-hover-state-layer-color: #ff5722;
  --mdc-checkbox-selected-pressed-state-layer-color: #ff5722;
  --mdc-checkbox-unselected-focus-state-layer-color: #ced4dc;
  --mdc-checkbox-unselected-hover-state-layer-color: #ced4dc;
  --mdc-checkbox-unselected-pressed-state-layer-color: #ced4dc;
}
body:has(.dark-theme) .mat-mdc-button.mat-primary {
  --mdc-text-button-label-text-color: #64dd17;
  --mat-text-button-state-layer-color: #64dd17;
  --mat-text-button-ripple-color: rgba(100, 221, 23, 0.1);
}
body:has(.dark-theme) .mat-mdc-button.mat-accent {
  --mdc-text-button-label-text-color: #00bcd4;
  --mat-text-button-state-layer-color: #00bcd4;
  --mat-text-button-ripple-color: rgba(0, 188, 212, 0.1);
}
body:has(.dark-theme) .mat-mdc-button.mat-warn {
  --mdc-text-button-label-text-color: #ff5722;
  --mat-text-button-state-layer-color: #ff5722;
  --mat-text-button-ripple-color: rgba(255, 87, 34, 0.1);
}
body:has(.dark-theme) .mat-mdc-unelevated-button.mat-primary {
  --mdc-filled-button-container-color: #64dd17;
  --mdc-filled-button-label-text-color: black;
  --mat-filled-button-state-layer-color: black;
  --mat-filled-button-ripple-color: rgba(0, 0, 0, 0.1);
}
body:has(.dark-theme) .mat-mdc-unelevated-button.mat-accent {
  --mdc-filled-button-container-color: #00bcd4;
  --mdc-filled-button-label-text-color: white;
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
body:has(.dark-theme) .mat-mdc-unelevated-button.mat-warn {
  --mdc-filled-button-container-color: #ff5722;
  --mdc-filled-button-label-text-color: white;
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.1);
}
body:has(.dark-theme) .mat-mdc-raised-button.mat-primary {
  --mdc-protected-button-container-color: #64dd17;
  --mdc-protected-button-label-text-color: black;
  --mat-protected-button-state-layer-color: black;
  --mat-protected-button-ripple-color: rgba(0, 0, 0, 0.1);
}
body:has(.dark-theme) .mat-mdc-raised-button.mat-accent {
  --mdc-protected-button-container-color: #00bcd4;
  --mdc-protected-button-label-text-color: white;
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
body:has(.dark-theme) .mat-mdc-raised-button.mat-warn {
  --mdc-protected-button-container-color: #ff5722;
  --mdc-protected-button-label-text-color: white;
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 0.1);
}
body:has(.dark-theme) .mat-mdc-outlined-button.mat-primary {
  --mdc-outlined-button-label-text-color: #64dd17;
  --mdc-outlined-button-outline-color: #4e5467;
  --mat-outlined-button-state-layer-color: #64dd17;
  --mat-outlined-button-ripple-color: rgba(100, 221, 23, 0.1);
}
body:has(.dark-theme) .mat-mdc-outlined-button.mat-accent {
  --mdc-outlined-button-label-text-color: #00bcd4;
  --mdc-outlined-button-outline-color: #4e5467;
  --mat-outlined-button-state-layer-color: #00bcd4;
  --mat-outlined-button-ripple-color: rgba(0, 188, 212, 0.1);
}
body:has(.dark-theme) .mat-mdc-outlined-button.mat-warn {
  --mdc-outlined-button-label-text-color: #ff5722;
  --mdc-outlined-button-outline-color: #4e5467;
  --mat-outlined-button-state-layer-color: #ff5722;
  --mat-outlined-button-ripple-color: rgba(255, 87, 34, 0.1);
}
body:has(.dark-theme) .mat-mdc-icon-button.mat-primary {
  --mdc-icon-button-icon-color: #64dd17;
  --mat-icon-button-state-layer-color: #64dd17;
  --mat-icon-button-ripple-color: rgba(100, 221, 23, 0.1);
}
body:has(.dark-theme) .mat-mdc-icon-button.mat-accent {
  --mdc-icon-button-icon-color: #00bcd4;
  --mat-icon-button-state-layer-color: #00bcd4;
  --mat-icon-button-ripple-color: rgba(0, 188, 212, 0.1);
}
body:has(.dark-theme) .mat-mdc-icon-button.mat-warn {
  --mdc-icon-button-icon-color: #ff5722;
  --mat-icon-button-state-layer-color: #ff5722;
  --mat-icon-button-ripple-color: rgba(255, 87, 34, 0.1);
}
body:has(.dark-theme) .mat-mdc-fab.mat-primary {
  --mdc-fab-container-color: #64dd17;
  --mat-fab-foreground-color: black;
  --mat-fab-state-layer-color: black;
  --mat-fab-ripple-color: rgba(0, 0, 0, 0.1);
}
body:has(.dark-theme) .mat-mdc-fab.mat-accent {
  --mdc-fab-container-color: #00bcd4;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
body:has(.dark-theme) .mat-mdc-fab.mat-warn {
  --mdc-fab-container-color: #ff5722;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
body:has(.dark-theme) .mat-mdc-mini-fab.mat-primary {
  --mdc-fab-small-container-color: #64dd17;
  --mat-fab-small-foreground-color: black;
  --mat-fab-small-state-layer-color: black;
  --mat-fab-small-ripple-color: rgba(0, 0, 0, 0.1);
}
body:has(.dark-theme) .mat-mdc-mini-fab.mat-accent {
  --mdc-fab-small-container-color: #00bcd4;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
body:has(.dark-theme) .mat-mdc-mini-fab.mat-warn {
  --mdc-fab-small-container-color: #ff5722;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
body:has(.dark-theme) .mat-accent {
  --mdc-circular-progress-active-indicator-color: #00bcd4;
}
body:has(.dark-theme) .mat-warn {
  --mdc-circular-progress-active-indicator-color: #ff5722;
}
body:has(.dark-theme) .mat-badge-accent {
  --mat-badge-background-color: #00bcd4;
  --mat-badge-text-color: white;
}
body:has(.dark-theme) .mat-badge-warn {
  --mat-badge-background-color: #ff5722;
  --mat-badge-text-color: white;
}
body:has(.dark-theme) .mat-datepicker-content.mat-accent {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #00bcd4;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(0, 188, 212, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(0, 188, 212, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(0, 188, 212, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(0, 188, 212, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
}
body:has(.dark-theme) .mat-datepicker-content.mat-warn {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #ff5722;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(255, 87, 34, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(255, 87, 34, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(255, 87, 34, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(255, 87, 34, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
}
body:has(.dark-theme) .mat-datepicker-toggle-active.mat-accent {
  --mat-datepicker-toggle-active-state-icon-color: #00bcd4;
}
body:has(.dark-theme) .mat-datepicker-toggle-active.mat-warn {
  --mat-datepicker-toggle-active-state-icon-color: #ff5722;
}
body:has(.dark-theme) .mat-icon.mat-primary {
  --mat-icon-color: #64dd17;
}
body:has(.dark-theme) .mat-icon.mat-accent {
  --mat-icon-color: #00bcd4;
}
body:has(.dark-theme) .mat-icon.mat-warn {
  --mat-icon-color: #ff5722;
}
body:has(.dark-theme) .mat-step-header.mat-accent {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #00bcd4;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #00bcd4;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #00bcd4;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
body:has(.dark-theme) .mat-step-header.mat-warn {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #ff5722;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #ff5722;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #ff5722;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
body:has(.dark-theme) .mat-toolbar.mat-primary {
  --mat-toolbar-container-background-color: #64dd17;
  --mat-toolbar-container-text-color: rgba(0, 0, 0, 0.87);
}
body:has(.dark-theme) .mat-toolbar.mat-accent {
  --mat-toolbar-container-background-color: #00bcd4;
  --mat-toolbar-container-text-color: white;
}
body:has(.dark-theme) .mat-toolbar.mat-warn {
  --mat-toolbar-container-background-color: #ff5722;
  --mat-toolbar-container-text-color: white;
}
body:has(.dark-theme) .page-header.mat-toolbar {
  font: 400 16px / 24px Roboto, sans-serif;
}
body:has(.dark-theme) .eeule-logo .logo {
  filter: invert(0.25) brightness(1.3) saturate(12) hue-rotate(335deg);
}
body:has(.dark-theme) .eeule-logo .logo-label {
  filter: invert(0.25) brightness(1.3) saturate(12) hue-rotate(335deg);
}
body:has(.dark-theme) .sidenav .mat-mdc-list-item.is-active .mat-mdc-list-item-unscoped-content {
  color: #64dd17 !important;
}
body:has(.dark-theme) .sidenav .mat-mdc-list-item.is-active:before {
  content: "";
  height: 100%;
  width: 2px;
  opacity: 1;
  background-color: #64dd17 !important;
}
body:has(.dark-theme) .sidenav .mat-mdc-list-item .mat-mdc-list-item-unscoped-content {
  color: #a3abbd;
}
body:has(.dark-theme) .sidenav .drawer-inner-content {
  height: 100%;
  display: flex;
  flex-direction: column;
}
body:has(.dark-theme) .custom-card {
  border: 0 solid transparent;
  border-radius: 0;
  box-shadow: rgba(0, 0, 0, 0.05) 0 1px 2px 0;
}
body:has(.dark-theme) .custom-card.smaller-header .mat-mdc-card-header {
  padding: 10px 16px 0;
}
body:has(.dark-theme) .custom-card.full-width-header .mat-mdc-card-header {
  width: calc(100% - 2rem);
}
body:has(.dark-theme) .custom-card.full-width-header .mat-mdc-card-header .mat-mdc-card-header-text {
  width: 100%;
}
body:has(.dark-theme) .custom-card .mat-mdc-card-title {
  font-size: 16px;
  text-transform: uppercase;
}
body:has(.dark-theme) .custom-card .mat-mdc-card-subtitle {
  font-size: 14px;
}
body:has(.dark-theme) .custom-card .mat-mdc-card-content {
  font-size: 14px;
}
body:has(.dark-theme) .custom-card.bordered {
  border: 1px solid rgba(78, 84, 103, 0.4) !important;
}
body:has(.dark-theme) .summary-card {
  height: 133px;
  width: 20%;
}
body:has(.dark-theme) .summary-card .summary-card-header {
  overflow: hidden;
  height: 26px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
body:has(.dark-theme) .summary-card .summary-card-header .summary-card-title {
  text-overflow: ellipsis;
  white-space: nowrap;
}
body:has(.dark-theme) .summary-card .summary-card-content {
  height: 100px;
  overflow: hidden;
}
body:has(.dark-theme) .summary-card .progress-bar {
  padding-bottom: 8px;
}
body:has(.dark-theme) .summary-card .progress-bar .progress-percent {
  font-size: 30px;
}
body:has(.dark-theme) .summary-card .award-icon {
  font-size: 60px;
  width: 60px;
  height: 60px;
}
body:has(.dark-theme) .chart-card {
  height: 528px;
  min-height: 528px;
}
body:has(.dark-theme) .chart-card .card-header {
  padding: 10px 16px 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
body:has(.dark-theme) .primary {
  color: #64dd17;
}
body:has(.dark-theme) .primary-background-color {
  background-color: #64dd17;
}
body:has(.dark-theme) .accent {
  color: #00bcd4;
}
body:has(.dark-theme) .accent-background-color {
  background-color: #00bcd4;
}
body:has(.dark-theme) .secondary {
  color: #64dd17;
}
body:has(.dark-theme) .primary-default {
  color: #558b2f;
}
body:has(.dark-theme) .primary-dark {
  color: #64dd17;
}
body:has(.dark-theme) .accent-default {
  color: #009688;
}
body:has(.dark-theme) .accent-dark {
  color: #00bcd4;
}
body:has(.dark-theme) .secondary-hl {
  color: #7cb342;
}
body:has(.dark-theme) .secondary-background-color {
  background-color: #7cb342;
}
body:has(.dark-theme) .accent-2 {
  color: #ff6e40;
}
body:has(.dark-theme) .accent-2-background-color {
  background-color: #ff6e40;
}
body:has(.dark-theme) .accent-3 {
  color: #5e35b1;
}
body:has(.dark-theme) .accent-3-background-color {
  background-color: #5e35b1;
}
body:has(.dark-theme) .accent-4 {
  color: #00b8d4;
}
body:has(.dark-theme) .accent-4-background-color {
  background-color: #00b8d4;
}
body:has(.dark-theme) .success {
  color: #4caf50;
}
body:has(.dark-theme) .success-background-color {
  background-color: #4caf50;
}
body:has(.dark-theme) .info {
  color: #ffc107;
}
body:has(.dark-theme) .info-background-color {
  background-color: #ffc107;
}
body:has(.dark-theme) .warn {
  color: #ff5722;
}
body:has(.dark-theme) .warn-background-color {
  background-color: #ff5722;
}
body:has(.dark-theme) .error {
  color: #d50000;
}
body:has(.dark-theme) .error-background-color {
  background-color: #d50000;
}
body:has(.dark-theme) .gold {
  color: gold;
}
body:has(.dark-theme) .gold-background-color {
  background-color: gold;
}
body:has(.dark-theme) .silver {
  color: silver;
}
body:has(.dark-theme) .silver-background-color {
  background-color: silver;
}
body:has(.dark-theme) .bronze {
  color: #cd7f32;
}
body:has(.dark-theme) .bronze-background-color {
  background-color: #cd7f32;
}
body:has(.dark-theme) .platinum {
  color: #b0bec5;
}
body:has(.dark-theme) .inactive {
  color: #78909c;
}
body:has(.dark-theme) .optional {
  color: #82b1ff;
}
body:has(.dark-theme) .platinum-background-color {
  background-color: #b0bec5;
}
body:has(.dark-theme).white-text {
  color: white;
}
body:has(.dark-theme).light-text {
  color: #edf1f6;
}
body:has(.dark-theme).dark-text {
  color: #212629;
}
body:has(.dark-theme) .mat-mdc-menu-panel {
  background-color: #4b5564;
}
body:has(.dark-theme) .mat-mdc-menu-panel.sidebar {
  --mat-menu-item-label-text-color: #ced4dc;
  --mat-menu-item-icon-color: #ced4dc;
  --mat-menu-item-hover-state-layer-color: rgba(206, 212, 220, 0.08);
  --mat-menu-item-focus-state-layer-color: rgba(206, 212, 220, 0.08);
  --mat-menu-container-color: #353b47;
  --mat-menu-divider-color: #4e5467;
  box-shadow:
    0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14),
    0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
body:has(.dark-theme) button.rounded {
  border-radius: 25px;
}
body:has(.dark-theme) button.square {
  border-radius: 0;
}
body:has(.dark-theme) button.small-button {
  width: 20px;
  height: 20px;
  padding: 2px;
}
body:has(.dark-theme) button.small-button .mat-mdc-button-touch-target {
  width: 20px;
  height: 20px;
}
body:has(.dark-theme) button.small-button .mat-icon {
  font-size: 14px !important;
  width: 14px !important;
  height: 14px !important;
}
body:has(.dark-theme) button.smaller-button {
  width: 32px;
  height: 32px;
  padding: 4px;
}
body:has(.dark-theme) button.smaller-button .mat-mdc-button-touch-target {
  width: 32px;
  height: 32px;
}
body:has(.dark-theme) button.smaller-button.mdc-icon-button .mat-icon {
  font-size: 18px !important;
  width: 18px !important;
  height: 18px !important;
}
body:has(.dark-theme) button.medium-button {
  width: 38px;
  height: 38px;
  padding: 7px;
}
body:has(.dark-theme) button.medium-button .mat-mdc-button-touch-target {
  width: 38px;
  height: 38px;
}
body:has(.dark-theme) button.medium-button.mdc-icon-button .mat-icon {
  font-size: 20px !important;
  width: 20px !important;
  height: 20px !important;
}
body:has(.dark-theme) [mat-raised-button] .mdc-button__label,
body:has(.dark-theme) [mat-flat-button] .mdc-button__label,
body:has(.dark-theme) [mat-fab] .mdc-button__label,
body:has(.dark-theme) [mat-mini-fab] .mdc-button__label {
  font-weight: 400 !important;
}
body:has(.dark-theme) .mat-mdc-radio.secondary .mat-mdc-radio-button.mat-primary {
  --mdc-radio-disabled-selected-icon-color: white;
  --mdc-radio-disabled-unselected-icon-color: white;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #64dd17;
  --mdc-radio-selected-hover-icon-color: #64dd17;
  --mdc-radio-selected-icon-color: #64dd17;
  --mdc-radio-selected-pressed-icon-color: #64dd17;
  --mat-radio-ripple-color: white;
  --mat-radio-checked-ripple-color: #64dd17;
  --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
  --mat-radio-label-text-color: white;
}
body:has(.dark-theme) .mat-mdc-radio.secondary .mat-mdc-radio-button.mat-accent {
  --mdc-radio-disabled-selected-icon-color: white;
  --mdc-radio-disabled-unselected-icon-color: white;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #ff7043;
  --mdc-radio-selected-hover-icon-color: #ff7043;
  --mdc-radio-selected-icon-color: #ff7043;
  --mdc-radio-selected-pressed-icon-color: #ff7043;
  --mat-radio-ripple-color: white;
  --mat-radio-checked-ripple-color: #ff7043;
  --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
  --mat-radio-label-text-color: white;
}
body:has(.dark-theme) .mat-mdc-radio.secondary .mat-mdc-radio-button.mat-warn {
  --mdc-radio-disabled-selected-icon-color: white;
  --mdc-radio-disabled-unselected-icon-color: white;
  --mdc-radio-unselected-hover-icon-color: #eeeeee;
  --mdc-radio-unselected-focus-icon-color: #eeeeee;
  --mdc-radio-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-radio-selected-focus-icon-color: #ff5722;
  --mdc-radio-selected-hover-icon-color: #ff5722;
  --mdc-radio-selected-icon-color: #ff5722;
  --mdc-radio-selected-pressed-icon-color: #ff5722;
  --mat-radio-ripple-color: white;
  --mat-radio-checked-ripple-color: #ff5722;
  --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
  --mat-radio-label-text-color: white;
}
body:has(.dark-theme) .mat-mdc-checkbox.secondary {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: black;
  --mdc-checkbox-selected-focus-icon-color: #ff7043;
  --mdc-checkbox-selected-hover-icon-color: #ff7043;
  --mdc-checkbox-selected-icon-color: #ff7043;
  --mdc-checkbox-selected-pressed-icon-color: #ff7043;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #ff7043;
  --mdc-checkbox-selected-hover-state-layer-color: #ff7043;
  --mdc-checkbox-selected-pressed-state-layer-color: #ff7043;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
  --mat-checkbox-disabled-label-color: rgba(255, 255, 255, 0.5);
  --mat-checkbox-label-text-color: white;
}
body:has(.dark-theme) .mat-mdc-checkbox.secondary .mat-mdc-checkbox.mat-primary {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: black;
  --mdc-checkbox-selected-focus-icon-color: #64dd17;
  --mdc-checkbox-selected-hover-icon-color: #64dd17;
  --mdc-checkbox-selected-icon-color: #64dd17;
  --mdc-checkbox-selected-pressed-icon-color: #64dd17;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #64dd17;
  --mdc-checkbox-selected-hover-state-layer-color: #64dd17;
  --mdc-checkbox-selected-pressed-state-layer-color: #64dd17;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
body:has(.dark-theme) .mat-mdc-checkbox.secondary .mat-mdc-checkbox.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(255, 255, 255, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #ff5722;
  --mdc-checkbox-selected-hover-icon-color: #ff5722;
  --mdc-checkbox-selected-icon-color: #ff5722;
  --mdc-checkbox-selected-pressed-icon-color: #ff5722;
  --mdc-checkbox-unselected-focus-icon-color: #eeeeee;
  --mdc-checkbox-unselected-hover-icon-color: #eeeeee;
  --mdc-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #ff5722;
  --mdc-checkbox-selected-hover-state-layer-color: #ff5722;
  --mdc-checkbox-selected-pressed-state-layer-color: #ff5722;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
body:has(.dark-theme) .no-outline .mdc-checkbox:hover .mdc-checkbox__ripple,
body:has(.dark-theme) .no-outline .mdc-checkbox:focus .mdc-checkbox__ripple,
body:has(.dark-theme) .no-outline .mdc-checkbox:active .mdc-checkbox__ripple {
  background: unset;
}
body:has(.dark-theme) .no-outline .mdc-checkbox .mat-mdc-checkbox-ripple {
  display: none;
}
body:has(.dark-theme) .mat-mdc-slide-toggle.secondary {
  --mdc-switch-selected-focus-state-layer-color: #aed581;
  --mdc-switch-selected-handle-color: #aed581;
  --mdc-switch-selected-hover-state-layer-color: #aed581;
  --mdc-switch-selected-pressed-state-layer-color: #aed581;
  --mdc-switch-selected-focus-handle-color: #c5e1a5;
  --mdc-switch-selected-hover-handle-color: #c5e1a5;
  --mdc-switch-selected-pressed-handle-color: #c5e1a5;
  --mdc-switch-selected-focus-track-color: #7cb342;
  --mdc-switch-selected-hover-track-color: #7cb342;
  --mdc-switch-selected-pressed-track-color: #7cb342;
  --mdc-switch-selected-track-color: #7cb342;
  --mdc-switch-disabled-selected-handle-color: #000;
  --mdc-switch-disabled-selected-icon-color: #212121;
  --mdc-switch-disabled-selected-track-color: #f5f5f5;
  --mdc-switch-disabled-unselected-handle-color: #000;
  --mdc-switch-disabled-unselected-icon-color: #212121;
  --mdc-switch-disabled-unselected-track-color: #f5f5f5;
  --mdc-switch-handle-surface-color: #fff;
  --mdc-switch-selected-icon-color: #212121;
  --mdc-switch-unselected-focus-handle-color: #fafafa;
  --mdc-switch-unselected-focus-state-layer-color: #f5f5f5;
  --mdc-switch-unselected-focus-track-color: #616161;
  --mdc-switch-unselected-handle-color: #9e9e9e;
  --mdc-switch-unselected-hover-handle-color: #fafafa;
  --mdc-switch-unselected-hover-state-layer-color: #f5f5f5;
  --mdc-switch-unselected-hover-track-color: #616161;
  --mdc-switch-unselected-icon-color: #212121;
  --mdc-switch-unselected-pressed-handle-color: #fafafa;
  --mdc-switch-unselected-pressed-state-layer-color: #f5f5f5;
  --mdc-switch-unselected-pressed-track-color: #616161;
  --mdc-switch-unselected-track-color: #616161;
  --mdc-switch-handle-elevation-shadow:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-disabled-handle-elevation-shadow:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-disabled-label-text-color: rgba(255, 255, 255, 0.5);
}
body:has(.dark-theme) .mat-mdc-slide-toggle.secondary .mat-mdc-slide-toggle {
  --mat-switch-label-text-color: white;
}
body:has(.dark-theme) .mat-mdc-slide-toggle.secondary .mat-mdc-slide-toggle.mat-accent {
  --mdc-switch-selected-focus-state-layer-color: #ff8a65;
  --mdc-switch-selected-handle-color: #ff8a65;
  --mdc-switch-selected-hover-state-layer-color: #ff8a65;
  --mdc-switch-selected-pressed-state-layer-color: #ff8a65;
  --mdc-switch-selected-focus-handle-color: #ffab91;
  --mdc-switch-selected-hover-handle-color: #ffab91;
  --mdc-switch-selected-pressed-handle-color: #ffab91;
  --mdc-switch-selected-focus-track-color: #f4511e;
  --mdc-switch-selected-hover-track-color: #f4511e;
  --mdc-switch-selected-pressed-track-color: #f4511e;
  --mdc-switch-selected-track-color: #f4511e;
}
body:has(.dark-theme) .mat-mdc-slide-toggle.secondary .mat-mdc-slide-toggle.mat-warn {
  --mdc-switch-selected-focus-state-layer-color: #ff8a65;
  --mdc-switch-selected-handle-color: #ff8a65;
  --mdc-switch-selected-hover-state-layer-color: #ff8a65;
  --mdc-switch-selected-pressed-state-layer-color: #ff8a65;
  --mdc-switch-selected-focus-handle-color: #ffab91;
  --mdc-switch-selected-hover-handle-color: #ffab91;
  --mdc-switch-selected-pressed-handle-color: #ffab91;
  --mdc-switch-selected-focus-track-color: #f4511e;
  --mdc-switch-selected-hover-track-color: #f4511e;
  --mdc-switch-selected-pressed-track-color: #f4511e;
  --mdc-switch-selected-track-color: #f4511e;
}
body:has(.dark-theme) .mdc-text-field--filled.mdc-text-field--disabled .mdc-floating-label,
body:has(.dark-theme) .mdc-text-field--filled.mdc-text-field--disabled .mdc-floating-label--float-above,
body:has(.dark-theme) .mdc-text-field--filled.mdc-text-field--disabled .mdc-text-field__input,
body:has(.dark-theme) .mat-mdc-select-disabled {
  color: #6c757c;
}
body:has(.dark-theme) .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label,
body:has(.dark-theme) .mdc-text-field:not(.mdc-text-field--disabled) .mdc-floating-label--float-above {
  color: #a3abbd;
}
body:has(.dark-theme) .mat-mdc-form-field.smaller-font label,
body:has(.dark-theme) .mat-mdc-form-field.smaller-font .mat-mdc-form-field-input-control,
body:has(.dark-theme) .mat-mdc-form-field.smaller-font .mat-mdc-select {
  font-size: 14px !important;
}
body:has(.dark-theme) .mat-mdc-form-field.smaller-font .mat-icon {
  font-size: 22px !important;
  width: 22px !important;
  height: 22px !important;
}
body:has(.dark-theme) .mat-mdc-form-field.square .mdc-text-field--filled {
  border-radius: 0 !important;
}
body:has(.dark-theme) .mat-mdc-form-field.rounded .mdc-text-field--filled.rounded {
  border-radius: 25px !important;
}
body:has(.dark-theme) .mat-mdc-form-field.reduced .mat-mdc-form-field-subscript-wrapper {
  display: none;
}
body:has(.dark-theme) .mat-mdc-form-field.smaller-shape .mdc-text-field--filled {
  height: 52px;
}
body:has(.dark-theme) .mat-mdc-form-field.no-background .mat-mdc-form-field-focus-overlay {
  background-color: unset;
}
body:has(.dark-theme) .mat-mdc-form-field.no-background .mdc-text-field--filled:not(.mdc-text-field--disabled) {
  background: unset !important;
}
body:has(.dark-theme) .mat-mdc-form-field.no-background .mdc-text-field--filled:not(.mdc-text-field--disabled):not(.mdc-text-field--invalid) .mdc-line-ripple::before {
  border-bottom-color: #8d97ac;
}
body:has(.dark-theme) .mat-mdc-form-field.custom-background .mat-mdc-form-field-focus-overlay {
  background-color: rgba(59, 68, 83, 0.4666666667);
}
body:has(.dark-theme) .mat-mdc-form-field.custom-background .mdc-text-field--filled:not(.mdc-text-field--disabled) {
  background: rgba(59, 68, 83, 0.4666666667) !important;
}
body:has(.dark-theme) .mat-mdc-form-field.custom-background-alt .mat-mdc-form-field-focus-overlay {
  background-color: #3b4453;
}
body:has(.dark-theme) .mat-mdc-form-field.custom-background-alt .mdc-text-field--filled:not(.mdc-text-field--disabled) {
  background: #3b4453 !important;
}
body:has(.dark-theme) .mat-mdc-form-field.custom-background-alt2 .mat-mdc-form-field-focus-overlay {
  background-color: #3f4857;
}
body:has(.dark-theme) .mat-mdc-form-field.custom-background-alt2 .mdc-text-field--filled:not(.mdc-text-field--disabled) {
  background: #3f4857 !important;
}
body:has(.dark-theme) .mat-mdc-form-field.disabled-transparent .mdc-text-field--filled.mdc-text-field--disabled {
  background-color: transparent !important;
}
body:has(.dark-theme) .mat-mdc-form-field.rounded {
  border-radius: 25px;
}
body:has(.dark-theme) .mat-mdc-form-field.rounded .mdc-text-field--outlined .mdc-notched-outline__leading {
  border-top-left-radius: 25px !important;
  border-bottom-left-radius: 25px !important;
  width: 25px;
}
body:has(.dark-theme) .mat-mdc-form-field.rounded .mdc-text-field--outlined .mdc-notched-outline__trailing {
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
}
body:has(.dark-theme) .mat-mdc-form-field.rounded.smaller-shape .mat-mdc-form-field-bottom-align {
  display: none;
}
body:has(.dark-theme) .mat-mdc-form-field.rounded.smaller-shape .mat-mdc-form-field-flex {
  height: 36px;
}
body:has(.dark-theme) .mat-mdc-form-field.rounded.smaller-shape .mat-mdc-form-field-infix {
  padding: 0;
  height: 36px;
  line-height: 36px;
  min-height: 0;
}
body:has(.dark-theme) .mat-mdc-form-field.rounded.smaller-shape .mdc-floating-label:not(.mdc-floating-label--float-above) {
  transform: translateY(-18px) translateX(20px) !important;
}
body:has(.dark-theme) .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-notched-outline .mdc-notched-outline__leading,
body:has(.dark-theme) .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-notched-outline .mdc-notched-outline__notch,
body:has(.dark-theme) .mdc-text-field--outlined:not(.mdc-text-field--disabled):not(.mdc-text-field--focused) .mdc-notched-outline .mdc-notched-outline__trailing {
  border-color: #4e5467;
}
body:has(.dark-theme) .mat-mdc-form-field-type-mat-select.mat-form-field-disabled .clear-selection .mat-icon {
  color: #8d97ac;
}
body:has(.dark-theme) .mat-mdc-form-field-type-mat-select.clearable .mat-mdc-select-value {
  padding-right: 2.5rem;
}
body:has(.dark-theme) .mat-mdc-form-field-type-mat-select .clear-selection {
  position: absolute;
  right: 0;
  margin-right: 18px;
  margin-top: -12px;
}
body:has(.dark-theme) .mat-mdc-form-field-type-mat-select.no-padding .mdc-text-field {
  padding: 0;
}
body:has(.dark-theme) .mat-mdc-select.background-divergence {
  color: white;
}
body:has(.dark-theme) .mat-mdc-select.background-divergence .mat-mdc-select-arrow {
  color: white;
}
body:has(.dark-theme) .mat-mdc-select.background-divergence.primary-background-color {
  color: #212629;
}
body:has(.dark-theme) .mat-mdc-select.background-divergence.primary-background-color .mat-mdc-select-arrow {
  color: #212629;
}
body:has(.dark-theme) .mat-mdc-select.background-divergence.mat-mdc-select-disabled .mat-mdc-select-arrow {
  display: none;
}
body:has(.dark-theme) .ql-toolbar button:hover,
body:has(.dark-theme) .ql-toolbar button:focus {
  color: #64dd17;
}
body:has(.dark-theme) .ql-toolbar button:hover .ql-stroke,
body:has(.dark-theme) .ql-toolbar button:focus .ql-stroke {
  stroke: #64dd17;
}
body:has(.dark-theme) .ql-toolbar .ql-picker-options {
  background-color: #353b47;
}
body:has(.dark-theme) .ql-toolbar .ql-picker-options .ql-picker-item:hover {
  color: #64dd17;
}
body:has(.dark-theme) .ql-toolbar .ql-picker-options .ql-picker-item.ql-selected {
  color: #64dd17;
}
body:has(.dark-theme) .ql-toolbar .ql-active {
  color: #64dd17 !important;
}
body:has(.dark-theme) .ql-toolbar .ql-active .ql-stroke {
  stroke: #64dd17 !important;
}
body:has(.dark-theme) .ql-toolbar .ql-active .ql-fill {
  fill: #64dd17 !important;
}
body:has(.dark-theme) .ql-toolbar button:hover .ql-fill {
  fill: #64dd17 !important;
}
body:has(.dark-theme) .ql-toolbar .ql-picker-label:hover {
  color: #64dd17 !important;
}
body:has(.dark-theme) .ql-toolbar .ql-picker-label:hover .ql-stroke {
  stroke: #64dd17 !important;
}
body:has(.dark-theme) .ql-toolbar .ql-picker-label:hover .ql-fill {
  fill: #64dd17 !important;
}
body:has(.dark-theme) .ql-toolbar .filled-text-field-background .ql-picker-options {
  background-color: var(--mdc-filled-text-field-container-color);
}
body:has(.dark-theme) .ql-toolbar .ql-picker-item {
  color: #ced4dc;
}
body:has(.dark-theme) .ql-toolbar .ql-stroke {
  stroke: #ced4dc;
}
body:has(.dark-theme) .ql-toolbar .ql-fill {
  fill: #ced4dc;
}
body:has(.dark-theme) .ql-toolbar .ql-formats > span {
  color: #ced4dc !important;
}
body:has(.dark-theme) .filled-text-field-background .ql-container {
  background-color: var(--mdc-filled-text-field-container-color);
}
body:has(.dark-theme) .ql-container {
  color: #ced4dc;
}
body:has(.dark-theme) .ql-editor {
  color: #ced4dc;
}
body:has(.dark-theme) .ql-editor.ql-blank::before {
  color: #8d97ac;
}
body:has(.dark-theme) .ql-tooltip {
  background-color: #353b47 !important;
  color: #ced4dc !important;
}
body:has(.dark-theme) .filled-text-field-background .ql-tooltip {
  background-color: var(--mdc-filled-text-field-container-color) !important;
}
body:has(.dark-theme) .ql-picker.ql-expanded .ql-picker-label,
body:has(.dark-theme) .ql-picker-options,
body:has(.dark-theme) .ql-tooltip,
body:has(.dark-theme) .ql-toolbar,
body:has(.dark-theme) .ql-container {
  border-color: var(--mdc-outlined-text-field-outline-color) !important;
}
body:has(.dark-theme) .default-border-color .ql-picker.ql-expanded .ql-picker-label,
body:has(.dark-theme) .default-border-color .ql-picker-options,
body:has(.dark-theme) .default-border-color .ql-tooltip,
body:has(.dark-theme) .default-border-color .ql-toolbar,
body:has(.dark-theme) .default-border-color .ql-container {
  border-color: #4e5467 !important;
}
body:has(.dark-theme) [disabled=disabled] .ql-toolbar,
body:has(.dark-theme) [disabled=disabled] .ql-container {
  background-color: var(--mdc-filled-text-field-disabled-container-color);
}
body:has(.dark-theme) [disabled=disabled] .ql-container,
body:has(.dark-theme) [disabled=disabled] .ql-editor,
body:has(.dark-theme) [disabled=disabled] .ql-tooltip {
  color: #8d97ac;
}
body:has(.dark-theme) [disabled=disabled] .ql-formats > span {
  color: #8d97ac !important;
}
body:has(.dark-theme) [disabled=disabled] .ql-stroke {
  stroke: #8d97ac !important;
}
body:has(.dark-theme) [disabled=disabled] .ql-fill {
  fill: #8d97ac !important;
}
body:has(.dark-theme) [disabled=disabled] .ql-picker-label:hover {
  color: #8d97ac !important;
}
body:has(.dark-theme) [disabled=disabled] .ql-picker-label:hover .ql-stroke {
  stroke: #8d97ac !important;
}
body:has(.dark-theme) [disabled=disabled] .ql-picker-label:hover .ql-fill {
  fill: #8d97ac !important;
}
body:has(.dark-theme) [disabled=disabled] button:hover .ql-fill {
  fill: #8d97ac !important;
}
body:has(.dark-theme) .mat-mdc-dialog-title {
  padding: 0 1rem 0.75rem;
}
body:has(.dark-theme) .mat-mdc-dialog-title.smaller-spacing {
  padding: 0 0.5rem 0.75rem;
}
body:has(.dark-theme) .mat-mdc-dialog-content {
  padding: 0 1rem 1.25rem !important;
}
body:has(.dark-theme) .mat-mdc-dialog-actions {
  padding: 0.5rem 1rem 1rem;
  justify-content: flex-end;
}
body:has(.dark-theme) .custom-scrollbar,
body:has(.dark-theme) [cdkscrollable] {
  overflow-y: auto;
}
body:has(.dark-theme) .custom-scrollbar.sb-spacing,
body:has(.dark-theme) [cdkscrollable].sb-spacing {
  padding-right: 1px;
}
body:has(.dark-theme) .custom-scrollbar::-webkit-scrollbar,
body:has(.dark-theme) [cdkscrollable]::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}
body:has(.dark-theme) .custom-scrollbar::-webkit-scrollbar-track,
body:has(.dark-theme) [cdkscrollable]::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}
body:has(.dark-theme) .custom-scrollbar::-webkit-scrollbar-thumb,
body:has(.dark-theme) [cdkscrollable]::-webkit-scrollbar-thumb {
  background: #4e5467;
}
body:has(.dark-theme) .custom-scrollbar::-webkit-scrollbar-thumb:hover,
body:has(.dark-theme) [cdkscrollable]::-webkit-scrollbar-thumb:hover {
  background: #5f6578;
}
body:has(.dark-theme) .cdk-drag-placeholder {
  opacity: 0;
}
body:has(.dark-theme) .cdk-drag-animating {
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
body:has(.dark-theme) .cdk-drag-preview {
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow:
    0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14),
    0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
body:has(.dark-theme) .drag-handle {
  display: flex;
  align-items: center;
  margin-right: 0.5rem;
  cursor: move;
  color: #ccc;
}
body:has(.dark-theme) .context-nav {
  background-color: #353b47;
}
body:has(.dark-theme) .context-nav .mdc-list-item {
  transition: background-color ease-in-out 50ms;
}
body:has(.dark-theme) .context-nav .mdc-list-item:focus::before {
  background-color: unset !important;
}
body:has(.dark-theme) .context-nav .mdc-list-item.is-active {
  background-color: rgba(75, 85, 100, 0.8);
}
body:has(.dark-theme) .context-nav .mdc-list-item.is-active .nav-label {
  color: #edf1f6;
}
body:has(.dark-theme) .mat-icon.icon,
body:has(.dark-theme) .custom-icon.icon {
  color: #a3abbd;
}
body:has(.dark-theme) .mat-icon.smaller-icon,
body:has(.dark-theme) .custom-icon.smaller-icon {
  width: 18px;
  height: 18px;
  font-size: 18px;
}
body:has(.dark-theme) .mat-icon.small-icon,
body:has(.dark-theme) .custom-icon.small-icon {
  width: 21px;
  height: 21px;
  font-size: 21px;
}
body:has(.dark-theme) .mat-icon.lighter,
body:has(.dark-theme) .custom-icon.lighter {
  color: rgba(59, 68, 83, 0.4666666667);
}
body:has(.dark-theme) .mat-icon.custom-bg,
body:has(.dark-theme) .custom-icon.custom-bg {
  background-color: #26c6da;
  color: #353b47;
}
body:has(.dark-theme) .mat-icon.primary-bg,
body:has(.dark-theme) .custom-icon.primary-bg {
  background-color: #64dd17;
  color: #313742;
}
body:has(.dark-theme) .mat-icon.secondary-bg,
body:has(.dark-theme) .custom-icon.secondary-bg {
  background-color: #64dd17;
  color: #313742;
}
body:has(.dark-theme) .mat-icon.primary-default-bg,
body:has(.dark-theme) .custom-icon.primary-default-bg {
  background-color: #558b2f;
}
body:has(.dark-theme) .mat-icon.primary-dark-bg,
body:has(.dark-theme) .custom-icon.primary-dark-bg {
  background-color: #64dd17;
}
body:has(.dark-theme) .mat-icon.accent-default-bg,
body:has(.dark-theme) .custom-icon.accent-default-bg {
  background-color: #009688;
}
body:has(.dark-theme) .mat-icon.accent-dark-bg,
body:has(.dark-theme) .custom-icon.accent-dark-bg {
  background-color: #00bcd4;
}
body:has(.dark-theme) .mat-icon.secondary-hl-bg,
body:has(.dark-theme) .custom-icon.secondary-hl-bg {
  background-color: #7cb342;
}
body:has(.dark-theme) .mat-icon.accent-bg,
body:has(.dark-theme) .custom-icon.accent-bg {
  background-color: #00bcd4;
  color: #313742;
}
body:has(.dark-theme) .mat-icon.accent-2-bg,
body:has(.dark-theme) .custom-icon.accent-2-bg {
  background-color: #ff6e40;
  color: white;
}
body:has(.dark-theme) .mat-icon.accent-3-bg,
body:has(.dark-theme) .custom-icon.accent-3-bg {
  background-color: #5e35b1;
  color: white;
}
body:has(.dark-theme) .mat-icon.accent-4-bg,
body:has(.dark-theme) .custom-icon.accent-4-bg {
  background-color: #00b8d4;
  color: white;
}
body:has(.dark-theme) .mat-icon.accent-5-bg,
body:has(.dark-theme) .custom-icon.accent-5-bg {
  background-color: #00838f;
  color: white;
}
body:has(.dark-theme) .mat-icon.success-bg,
body:has(.dark-theme) .custom-icon.success-bg {
  background-color: #4caf50;
}
body:has(.dark-theme) .mat-icon.info-bg,
body:has(.dark-theme) .custom-icon.info-bg {
  background-color: #ffc107;
  color: #313742;
}
body:has(.dark-theme) .mat-icon.optional-bg,
body:has(.dark-theme) .custom-icon.optional-bg {
  background-color: #82b1ff;
  color: white;
}
body:has(.dark-theme) .mat-icon.warn-bg,
body:has(.dark-theme) .custom-icon.warn-bg {
  background-color: #ff5722;
  color: white;
}
body:has(.dark-theme) .mat-icon.error-bg,
body:has(.dark-theme) .custom-icon.error-bg {
  background-color: #d50000;
  color: white;
}
body:has(.dark-theme) .mat-icon.rounded-bg,
body:has(.dark-theme) .custom-icon.rounded-bg {
  width: 24px;
  height: 24px;
  border-radius: 24px;
  display: flex;
  justify-content: center;
}
body:has(.dark-theme) .mat-icon.leaf-bg,
body:has(.dark-theme) .custom-icon.leaf-bg {
  width: 24px;
  height: 24px;
  border-radius: 8px 4px 8px 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
body:has(.dark-theme) .project-info-page .mat-mdc-tab-body-content {
  max-height: calc(100vh - 316px);
}
body:has(.dark-theme) .export-tab-group .mat-mdc-tab-body-wrapper {
  flex-grow: 1;
  padding-top: 16px;
}
body:has(.dark-theme) .mat-mdc-tab-label-container {
  border-bottom: 1px solid;
  border-bottom-color: #4e5467;
}
body:has(.dark-theme) .default .mat-mdc-tab-body-wrapper {
  height: 100%;
}
body:has(.dark-theme) .default .mat-tab-label.mat-tab-label-active {
  background: transparent !important;
}
body:has(.dark-theme) .default .mat-mdc-tab.mdc-tab--active {
  background-color: transparent !important;
}
body:has(.dark-theme) .default .mat-mdc-tab.mdc-tab--active .mdc-tab__text-label {
  color: #ced4dc;
}
body:has(.dark-theme) .mat-mdc-chip.done {
  background-color: #64dd17;
}
body:has(.dark-theme) .mat-mdc-chip.done .mdc-evolution-chip__text-label {
  color: #212629;
}
body:has(.dark-theme) .mat-mdc-chip.in_progress {
  background-color: #ffc107;
}
body:has(.dark-theme) .mat-mdc-chip.in_progress .mdc-evolution-chip__text-label {
  color: #212629;
}
body:has(.dark-theme) .mat-mdc-chip.inactive .mdc-evolution-chip__text-label {
  color: #8d97ac;
}
body:has(.dark-theme) .differ-rows tr:nth-child(even) {
  background: rgba(237, 241, 246, 0.0196078431);
}
body:has(.dark-theme) .row-hover tr:has(td):hover {
  background: rgba(100, 221, 23, 0.2) !important;
}
body:has(.dark-theme) .row-hover.pointer td {
  cursor: pointer;
}
body:has(.dark-theme) .differ-rows tr:nth-child(even) {
  background: rgba(237, 241, 246, 0.0196078431);
}
body:has(.dark-theme) .ql-label {
  font-size: 0.9em;
}
body:has(.dark-theme) .ql-toolbar,
body:has(.dark-theme) .ql-container {
  font-family: "Roboto", sans-serif;
}
body:has(.dark-theme) .ql-tooltip {
  left: 8px !important;
  box-shadow: rgba(0, 0, 0, 0.35) 0 1px 7px -3px !important;
}
body:has(.dark-theme) .small-radius .ql-toolbar {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
body:has(.dark-theme) .small-radius:not(.flat-bottom) .ql-container {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
body:has(.dark-theme) .h-auto .ql-container {
  height: auto;
}
body:has(.dark-theme) .ql-custom-height .ql-container {
  height: calc(100% - 42px);
}
body:has(.dark-theme) .ql-minh-50 .ql-editor {
  min-height: 50px;
}
body:has(.dark-theme) .ql-minh-100 .ql-editor {
  min-height: 100px;
}
body:has(.dark-theme) .ql-minh-120 .ql-editor {
  min-height: 120px;
}
body:has(.dark-theme) .ql-minh-150 .ql-editor {
  min-height: 150px;
}
body:has(.dark-theme) .ql-minh-200 .ql-editor {
  min-height: 200px;
}
body:has(.dark-theme) .ql-maxh-100 .ql-editor {
  max-height: 100px;
}
body:has(.dark-theme) .ql-maxh-120 .ql-editor {
  max-height: 120px;
}
body:has(.dark-theme) .ql-maxh-150 .ql-editor {
  max-height: 150px;
}
body:has(.dark-theme) .ql-maxh-200 .ql-editor {
  max-height: 200px;
}
body:has(.dark-theme) .ql-maxh-250 .ql-editor {
  max-height: 250px;
}
body:has(.dark-theme) .ql-maxh-300 .ql-editor {
  max-height: 300px;
}
body:has(.dark-theme) .ql-maxh-400 .ql-editor {
  max-height: 400px;
}
body:has(.dark-theme) .ql-toolbar button:hover,
body:has(.dark-theme) .ql-toolbar button:focus {
  color: #64dd17;
}
body:has(.dark-theme) .ql-toolbar button:hover .ql-stroke,
body:has(.dark-theme) .ql-toolbar button:focus .ql-stroke {
  stroke: #64dd17;
}
body:has(.dark-theme) .ql-toolbar .ql-picker-options {
  background-color: #353b47;
}
body:has(.dark-theme) .ql-toolbar .ql-picker-options .ql-picker-item:hover {
  color: #64dd17;
}
body:has(.dark-theme) .ql-toolbar .ql-picker-options .ql-picker-item.ql-selected {
  color: #64dd17;
}
body:has(.dark-theme) .ql-toolbar .ql-active {
  color: #64dd17 !important;
}
body:has(.dark-theme) .ql-toolbar .ql-active .ql-stroke {
  stroke: #64dd17 !important;
}
body:has(.dark-theme) .ql-toolbar .ql-active .ql-fill {
  fill: #64dd17 !important;
}
body:has(.dark-theme) .ql-toolbar button:hover .ql-fill {
  fill: #64dd17 !important;
}
body:has(.dark-theme) .ql-toolbar .ql-picker-label:hover {
  color: #64dd17 !important;
}
body:has(.dark-theme) .ql-toolbar .ql-picker-label:hover .ql-stroke {
  stroke: #64dd17 !important;
}
body:has(.dark-theme) .ql-toolbar .ql-picker-label:hover .ql-fill {
  fill: #64dd17 !important;
}
body:has(.dark-theme) .ql-toolbar .filled-text-field-background .ql-picker-options {
  background-color: var(--mdc-filled-text-field-container-color);
}
body:has(.dark-theme) .ql-toolbar .ql-picker-item {
  color: #ced4dc;
}
body:has(.dark-theme) .ql-toolbar .ql-stroke {
  stroke: #ced4dc;
}
body:has(.dark-theme) .ql-toolbar .ql-fill {
  fill: #ced4dc;
}
body:has(.dark-theme) .ql-toolbar .ql-formats > span {
  color: #ced4dc !important;
}
body:has(.dark-theme) .filled-text-field-background .ql-container {
  background-color: var(--mdc-filled-text-field-container-color);
}
body:has(.dark-theme) .ql-container {
  color: #ced4dc;
}
body:has(.dark-theme) .ql-editor {
  color: #ced4dc;
}
body:has(.dark-theme) .ql-editor.ql-blank::before {
  color: #8d97ac;
}
body:has(.dark-theme) .ql-tooltip {
  background-color: #353b47 !important;
  color: #ced4dc !important;
}
body:has(.dark-theme) .filled-text-field-background .ql-tooltip {
  background-color: var(--mdc-filled-text-field-container-color) !important;
}
body:has(.dark-theme) .ql-picker.ql-expanded .ql-picker-label,
body:has(.dark-theme) .ql-picker-options,
body:has(.dark-theme) .ql-tooltip,
body:has(.dark-theme) .ql-toolbar,
body:has(.dark-theme) .ql-container {
  border-color: var(--mdc-outlined-text-field-outline-color) !important;
}
body:has(.dark-theme) .default-border-color .ql-picker.ql-expanded .ql-picker-label,
body:has(.dark-theme) .default-border-color .ql-picker-options,
body:has(.dark-theme) .default-border-color .ql-tooltip,
body:has(.dark-theme) .default-border-color .ql-toolbar,
body:has(.dark-theme) .default-border-color .ql-container {
  border-color: #4e5467 !important;
}
body:has(.dark-theme) [disabled=disabled] .ql-toolbar,
body:has(.dark-theme) [disabled=disabled] .ql-container {
  background-color: var(--mdc-filled-text-field-disabled-container-color);
}
body:has(.dark-theme) [disabled=disabled] .ql-container,
body:has(.dark-theme) [disabled=disabled] .ql-editor,
body:has(.dark-theme) [disabled=disabled] .ql-tooltip {
  color: #8d97ac;
}
body:has(.dark-theme) [disabled=disabled] .ql-formats > span {
  color: #8d97ac !important;
}
body:has(.dark-theme) [disabled=disabled] .ql-stroke {
  stroke: #8d97ac !important;
}
body:has(.dark-theme) [disabled=disabled] .ql-fill {
  fill: #8d97ac !important;
}
body:has(.dark-theme) [disabled=disabled] .ql-picker-label:hover {
  color: #8d97ac !important;
}
body:has(.dark-theme) [disabled=disabled] .ql-picker-label:hover .ql-stroke {
  stroke: #8d97ac !important;
}
body:has(.dark-theme) [disabled=disabled] .ql-picker-label:hover .ql-fill {
  fill: #8d97ac !important;
}
body:has(.dark-theme) [disabled=disabled] button:hover .ql-fill {
  fill: #8d97ac !important;
}
body:has(.dark-theme) .ql-editor.sb-spacing {
  padding-right: 1px;
}
body:has(.dark-theme) .ql-editor::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}
body:has(.dark-theme) .ql-editor::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}
body:has(.dark-theme) .ql-editor::-webkit-scrollbar-thumb {
  background: #4e5467;
}
body:has(.dark-theme) .ql-editor::-webkit-scrollbar-thumb:hover {
  background: #5f6578;
}
body:has(.dark-theme) .contrast {
  color: white;
}
body:has(.dark-theme) .primary-text {
  color: #ced4dc;
}
body:has(.dark-theme) .secondary-text {
  color: #a3abbd;
}
body:has(.dark-theme) .disabled-text {
  color: #8d97ac;
}
body:has(.dark-theme) .inverted-text {
  color: #212629;
}
body:has(.dark-theme) .primary-background {
  background: #3b4453;
}
body:has(.dark-theme) .secondary-background {
  background-color: rgba(59, 68, 83, 0.4666666667);
}
body:has(.dark-theme) .secondary-background-alt {
  background-color: #3d434e;
}
body:has(.dark-theme) .secondary-background-alt-2 {
  background-color: #4b5564;
}
body:has(.dark-theme) .tertiary-background {
  background-color: #3b4453;
}
body:has(.dark-theme) .quaternary-background {
  background-color: #3f4857;
}
body:has(.dark-theme) .card-background {
  background-color: #353b47;
}
body:has(.dark-theme) .overlay-background {
  background-color: #353b47;
}
body:has(.dark-theme) .overlay-background-2 {
  background-color: #313742;
}
body:has(.dark-theme) .hover-background {
  background-color: rgba(255, 255, 255, 0.04);
}
body:has(.dark-theme) .hovered-background:hover {
  background-color: rgba(255, 255, 255, 0.04);
}
body:has(.dark-theme) .shadow-1 {
  box-shadow: rgba(50, 50, 93, 0.25) 0 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
body:has(.dark-theme) a {
  color: #64dd17;
}
body:has(.dark-theme) .default-border {
  border: 1px solid #4e5467;
}
body:has(.dark-theme) .secondary-border {
  border: 1px solid #3b4453;
}
body:has(.dark-theme) .secondary-border-alt {
  border: 1px solid rgba(206, 212, 220, 0.2666666667);
}
body:has(.dark-theme) .default-border-color {
  border-color: #4e5467 !important;
}
body:has(.dark-theme) .secondary-border-color {
  border-color: #3b4453 !important;
}
body:has(.dark-theme) .secondary-border-color-alt {
  border-color: rgba(206, 212, 220, 0.2666666667) !important;
}
body:has(.dark-theme) .eeule-border-color {
  border-color: #64dd17 !important;
}
body:has(.dark-theme) .v-divider {
  width: 1px;
  height: 80%;
  background: #4e5467;
}
body:has(.dark-theme) .v-divider-2 {
  width: 1px;
  background: #3b4453;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font: 400 16px / 24px Roboto, sans-serif;
  letter-spacing: 0.03125em;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.link {
  cursor: pointer;
}
.link:hover {
  text-decoration: underline;
}
.cursor-pointer {
  cursor: pointer;
}
.normal {
  font-weight: 400;
}
.strong {
  font-weight: 500;
}
.bold {
  font-weight: 600;
}
.transparent {
  background-color: transparent !important;
}
.hidden {
  display: none !important;
}
.position-relative {
  position: relative;
}
.square {
  border-radius: 0 !important;
}
.small-radius {
  border-radius: 4px;
}
.default-radius {
  border-radius: 5px;
}
.semi-round {
  border-radius: 15px !important;
}
.light-text {
  color: #ced4dc;
}
.tertiary-text {
  color: #8d97ac;
}
.tertiary-border-color {
  border-color: #a3abbd !important;
}
.error-border {
  border: 1px solid #d50000 !important;
}
.dark-background {
  background-color: #313742;
}
.disabled-link {
  pointer-events: none !important;
}
.no-shadow {
  box-shadow: unset !important;
}
.no-shadow:hover,
.no-shadow:focus,
.no-shadow:active {
  box-shadow: unset !important;
}
.shadow-2 {
  box-shadow: rgba(0, 0, 0, 0.45) 0 25px 20px -20px !important;
}
.no-wrap {
  white-space: nowrap;
}
.h-unset {
  height: unset;
}
.h-auto {
  height: auto;
}
.h-100-percent {
  height: 100%;
}
.maxh-unset {
  max-height: unset !important;
}
.maxh-100-percent {
  max-height: 100%;
}
.minh-unset {
  min-height: unset !important;
}
.w-100-percent {
  width: 100% !important;
}
.default-title {
  font-weight: 500;
}
.default-sub-title {
  font-size: 0.9em;
  font-weight: 500;
}
.loading-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-overlay.covering {
  width: 100%;
  z-index: 2;
}
.scrollable {
  overflow-y: auto;
}
.no-padding {
  padding: 0 !important;
}
.no-margin {
  margin: 0 !important;
}
.smaller-padding {
  padding: 1rem !important;
}
.semi-small-padding {
  padding: 0.75rem !important;
}
.small-padding {
  padding: 0.5rem !important;
}
.default-padding {
  padding: 1.5rem;
}
.overflow-hidden {
  overflow: hidden !important;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-y-hidden {
  overflow-y: hidden !important;
}
.text-overflow-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.center {
  margin: auto;
}
.border-bottom-without-last-child {
  border-bottom: 1px solid;
}
.border-bottom-without-last-child:last-child {
  border-bottom: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
.slim {
  font-weight: 400 !important;
}
.flexbox {
  display: flex !important;
}
.flexbox.hidden {
  display: none !important;
}
.flexbox.direction-column {
  flex-direction: column;
}
.flexbox.align-center {
  align-items: center;
}
.flexbox.align-start {
  align-items: start;
}
.flexbox.align-end {
  align-items: end;
}
.flexbox.justify-start {
  justify-content: start;
}
.flexbox.justify-end {
  justify-content: end;
}
.flexbox.justify-center {
  justify-content: center;
}
.flexbox.justify-spaced {
  justify-content: space-between;
}
.flexbox.centered {
  align-items: center;
  justify-content: center;
}
.flexbox.xl-gap {
  gap: 4rem;
}
.flexbox.large-gap {
  gap: 3rem;
}
.flexbox.larger-gap {
  gap: 2rem;
}
.flexbox.default-gap {
  gap: 1.5rem;
}
.flexbox.smaller-gap {
  gap: 1rem;
}
.flexbox.semi-small-gap {
  gap: 0.75rem;
}
.flexbox.small-gap {
  gap: 0.5rem;
}
.flexbox.xs-gap {
  gap: 0.25rem;
}
.flex-grow-0 {
  flex-grow: 0;
}
.flex-grow-1 {
  flex-grow: 1;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.grid {
  display: grid;
}
.grid .left {
  grid-area: left;
}
.grid .middle {
  grid-area: middle;
}
.grid .right {
  grid-area: right;
}
.grid .full {
  grid-area: full;
}
.custom-tooltip > div {
  max-height: unset;
  padding: 0.5rem;
  line-height: 18px !important;
}
.custom-tooltip.w400px > div {
  max-width: 400px;
}
.custom-tooltip.w25 > div {
  max-width: 25%;
}
.custom-tooltip.w50 > div {
  max-width: 50%;
}
.custom-tooltip.w75 > div {
  max-width: 75%;
}
.progress-indicator-tooltip {
  font-size: 13px;
}
.progress-indicator-tooltip .progress-indicator-tooltip-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 6px;
  margin-bottom: 6px;
  border-bottom: 1px solid;
}
.progress-indicator-tooltip .progress-indicator-tooltip-wrapper:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.progress-indicator-tooltip .progress-indicator-tooltip-wrapper .progress-indicator-tooltip-category {
  width: 100%;
  margin-right: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.progress-indicator-tooltip .progress-indicator-tooltip-wrapper .progress-indicator-tooltip-values {
  white-space: nowrap;
  text-align: right;
}
.filled-text-field-background {
  background-color: var(--mdc-filled-text-field-container-color);
}
.page-outlet:has(.pre-check-subject) + * {
  height: 100%;
}

/* src/styles/_theme-variables.scss */

/* src/styles/_layout-variables.scss */

/* node_modules/quill/dist/quill.core.css */
/*!
 * Quill Editor v2.0.3
 * https://quilljs.com
 * Copyright (c) 2017-2024, Slab
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family:
    Helvetica,
    Arial,
    sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container:not(.ql-disabled) li[data-list=checked] > .ql-ui,
.ql-container:not(.ql-disabled) li[data-list=unchecked] > .ql-ui {
  cursor: pointer;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
}
@supports (counter-set:none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-set: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor table {
  border-collapse: collapse;
}
.ql-editor td {
  border: 1px solid #000;
  padding: 2px 5px;
}
.ql-editor ol {
  padding-left: 1.5em;
}
.ql-editor li {
  list-style-type: none;
  padding-left: 1.5em;
  position: relative;
}
.ql-editor li > .ql-ui:before {
  display: inline-block;
  margin-left: -1.5em;
  margin-right: .3em;
  text-align: right;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li[data-list=checked] > .ql-ui,
.ql-editor li[data-list=unchecked] > .ql-ui {
  color: #777;
}
.ql-editor li[data-list=bullet] > .ql-ui:before {
  content: "\2022";
}
.ql-editor li[data-list=checked] > .ql-ui:before {
  content: "\2611";
}
.ql-editor li[data-list=unchecked] > .ql-ui:before {
  content: "\2610";
}
@supports (counter-set:none) {
  .ql-editor li[data-list] {
    counter-set: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list] {
    counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered] {
  counter-increment: list-0;
}
.ql-editor li[data-list=ordered] > .ql-ui:before {
  content: counter(list-0, decimal) ". ";
}
.ql-editor li[data-list=ordered].ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor li[data-list=ordered].ql-indent-1 > .ql-ui:before {
  content: counter(list-1, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-set: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor li[data-list=ordered].ql-indent-2 > .ql-ui:before {
  content: counter(list-2, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-set: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor li[data-list=ordered].ql-indent-3 > .ql-ui:before {
  content: counter(list-3, decimal) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-set: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor li[data-list=ordered].ql-indent-4 > .ql-ui:before {
  content: counter(list-4, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-set: list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-reset: list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor li[data-list=ordered].ql-indent-5 > .ql-ui:before {
  content: counter(list-5, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-set: list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-reset: list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor li[data-list=ordered].ql-indent-6 > .ql-ui:before {
  content: counter(list-6, decimal) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-set: list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-reset: list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor li[data-list=ordered].ql-indent-7 > .ql-ui:before {
  content: counter(list-7, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-set: list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-reset: list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor li[data-list=ordered].ql-indent-8 > .ql-ui:before {
  content: counter(list-8, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-set: list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-reset: list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor li[data-list=ordered].ql-indent-9 > .ql-ui:before {
  content: counter(list-9, decimal) ". ";
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor li.ql-direction-rtl > .ql-ui:before {
  margin-left: .3em;
  margin-right: -1.5em;
  text-align: left;
}
.ql-editor table {
  table-layout: fixed;
  width: 100%;
}
.ql-editor table td {
  outline: none;
}
.ql-editor .ql-code-block-container {
  font-family: monospace;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family:
    Georgia,
    Times New Roman,
    serif;
}
.ql-editor .ql-font-monospace {
  font-family:
    Monaco,
    Courier New,
    monospace;
}
.ql-editor .ql-size-small {
  font-size: .75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor .ql-ui {
  position: absolute;
}
.ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}

/* node_modules/quill/dist/quill.bubble.css */
/*!
 * Quill Editor v2.0.3
 * https://quilljs.com
 * Copyright (c) 2017-2024, Slab
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family:
    Helvetica,
    Arial,
    sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container:not(.ql-disabled) li[data-list=checked] > .ql-ui,
.ql-container:not(.ql-disabled) li[data-list=unchecked] > .ql-ui {
  cursor: pointer;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
}
@supports (counter-set:none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-set: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor table {
  border-collapse: collapse;
}
.ql-editor td {
  border: 1px solid #000;
  padding: 2px 5px;
}
.ql-editor ol {
  padding-left: 1.5em;
}
.ql-editor li {
  list-style-type: none;
  padding-left: 1.5em;
  position: relative;
}
.ql-editor li > .ql-ui:before {
  display: inline-block;
  margin-left: -1.5em;
  margin-right: .3em;
  text-align: right;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li[data-list=checked] > .ql-ui,
.ql-editor li[data-list=unchecked] > .ql-ui {
  color: #777;
}
.ql-editor li[data-list=bullet] > .ql-ui:before {
  content: "\2022";
}
.ql-editor li[data-list=checked] > .ql-ui:before {
  content: "\2611";
}
.ql-editor li[data-list=unchecked] > .ql-ui:before {
  content: "\2610";
}
@supports (counter-set:none) {
  .ql-editor li[data-list] {
    counter-set: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list] {
    counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered] {
  counter-increment: list-0;
}
.ql-editor li[data-list=ordered] > .ql-ui:before {
  content: counter(list-0, decimal) ". ";
}
.ql-editor li[data-list=ordered].ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor li[data-list=ordered].ql-indent-1 > .ql-ui:before {
  content: counter(list-1, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-set: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor li[data-list=ordered].ql-indent-2 > .ql-ui:before {
  content: counter(list-2, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-set: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor li[data-list=ordered].ql-indent-3 > .ql-ui:before {
  content: counter(list-3, decimal) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-set: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor li[data-list=ordered].ql-indent-4 > .ql-ui:before {
  content: counter(list-4, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-set: list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-reset: list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor li[data-list=ordered].ql-indent-5 > .ql-ui:before {
  content: counter(list-5, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-set: list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-reset: list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor li[data-list=ordered].ql-indent-6 > .ql-ui:before {
  content: counter(list-6, decimal) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-set: list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-reset: list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor li[data-list=ordered].ql-indent-7 > .ql-ui:before {
  content: counter(list-7, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-set: list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-reset: list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor li[data-list=ordered].ql-indent-8 > .ql-ui:before {
  content: counter(list-8, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-set: list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-reset: list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor li[data-list=ordered].ql-indent-9 > .ql-ui:before {
  content: counter(list-9, decimal) ". ";
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor li.ql-direction-rtl > .ql-ui:before {
  margin-left: .3em;
  margin-right: -1.5em;
  text-align: left;
}
.ql-editor table {
  table-layout: fixed;
  width: 100%;
}
.ql-editor table td {
  outline: none;
}
.ql-editor .ql-code-block-container {
  font-family: monospace;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family:
    Georgia,
    Times New Roman,
    serif;
}
.ql-editor .ql-font-monospace {
  font-family:
    Monaco,
    Courier New,
    monospace;
}
.ql-editor .ql-size-small {
  font-size: .75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor .ql-ui {
  position: absolute;
}
.ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-bubble.ql-toolbar:after,
.ql-bubble .ql-toolbar:after {
  clear: both;
  content: "";
  display: table;
}
.ql-bubble.ql-toolbar button,
.ql-bubble .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-bubble.ql-toolbar button svg,
.ql-bubble .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-bubble.ql-toolbar button:active:hover,
.ql-bubble .ql-toolbar button:active:hover {
  outline: none;
}
.ql-bubble.ql-toolbar input.ql-image[type=file],
.ql-bubble .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-bubble.ql-toolbar button:hover,
.ql-bubble .ql-toolbar button:hover,
.ql-bubble.ql-toolbar button:focus,
.ql-bubble .ql-toolbar button:focus,
.ql-bubble.ql-toolbar button.ql-active,
.ql-bubble .ql-toolbar button.ql-active,
.ql-bubble.ql-toolbar .ql-picker-label:hover,
.ql-bubble .ql-toolbar .ql-picker-label:hover,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active,
.ql-bubble.ql-toolbar .ql-picker-item:hover,
.ql-bubble .ql-toolbar .ql-picker-item:hover,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected {
  color: #fff;
}
.ql-bubble.ql-toolbar button:hover .ql-fill,
.ql-bubble .ql-toolbar button:hover .ql-fill,
.ql-bubble.ql-toolbar button:focus .ql-fill,
.ql-bubble .ql-toolbar button:focus .ql-fill,
.ql-bubble.ql-toolbar button.ql-active .ql-fill,
.ql-bubble .ql-toolbar button.ql-active .ql-fill,
.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-bubble.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #fff;
}
.ql-bubble.ql-toolbar button:hover .ql-stroke,
.ql-bubble .ql-toolbar button:hover .ql-stroke,
.ql-bubble.ql-toolbar button:focus .ql-stroke,
.ql-bubble .ql-toolbar button:focus .ql-stroke,
.ql-bubble.ql-toolbar button.ql-active .ql-stroke,
.ql-bubble .ql-toolbar button.ql-active .ql-stroke,
.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-bubble.ql-toolbar button:hover .ql-stroke-miter,
.ql-bubble .ql-toolbar button:hover .ql-stroke-miter,
.ql-bubble.ql-toolbar button:focus .ql-stroke-miter,
.ql-bubble .ql-toolbar button:focus .ql-stroke-miter,
.ql-bubble.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-bubble .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-bubble.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-bubble .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-bubble.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-bubble .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-bubble.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-bubble .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-bubble.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-bubble .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #fff;
}
@media (pointer:coarse) {
  .ql-bubble.ql-toolbar button:hover:not(.ql-active),
  .ql-bubble .ql-toolbar button:hover:not(.ql-active) {
    color: #ccc;
  }
  .ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #ccc;
  }
  .ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-bubble.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-bubble .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #ccc;
  }
}
.ql-bubble {
  box-sizing: border-box;
}
.ql-bubble * {
  box-sizing: border-box;
}
.ql-bubble .ql-hidden {
  display: none;
}
.ql-bubble .ql-out-bottom,
.ql-bubble .ql-out-top {
  visibility: hidden;
}
.ql-bubble .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-bubble .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-bubble .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-bubble .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-bubble .ql-formats:after {
  clear: both;
  content: "";
  display: table;
}
.ql-bubble .ql-stroke {
  fill: none;
  stroke: #ccc;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-bubble .ql-stroke-miter {
  fill: none;
  stroke: #ccc;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-bubble .ql-fill,
.ql-bubble .ql-stroke.ql-fill {
  fill: #ccc;
}
.ql-bubble .ql-empty {
  fill: none;
}
.ql-bubble .ql-even {
  fill-rule: evenodd;
}
.ql-bubble .ql-thin,
.ql-bubble .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-bubble .ql-transparent {
  opacity: .4;
}
.ql-bubble .ql-direction svg:last-child {
  display: none;
}
.ql-bubble .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-bubble .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-bubble .ql-editor h1 {
  font-size: 2em;
}
.ql-bubble .ql-editor h2 {
  font-size: 1.5em;
}
.ql-bubble .ql-editor h3 {
  font-size: 1.17em;
}
.ql-bubble .ql-editor h4 {
  font-size: 1em;
}
.ql-bubble .ql-editor h5 {
  font-size: .83em;
}
.ql-bubble .ql-editor h6 {
  font-size: .67em;
}
.ql-bubble .ql-editor a {
  text-decoration: underline;
}
.ql-bubble .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-bubble .ql-editor code,
.ql-bubble .ql-editor .ql-code-block-container {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-bubble .ql-editor .ql-code-block-container {
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-bubble .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-bubble .ql-editor .ql-code-block-container {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-bubble .ql-editor img {
  max-width: 100%;
}
.ql-bubble .ql-picker {
  color: #ccc;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-bubble .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-bubble .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-bubble .ql-picker-options {
  background-color: #444;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-bubble .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-bubble .ql-picker.ql-expanded .ql-picker-label {
  color: #777;
  z-index: 2;
}
.ql-bubble .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #777;
}
.ql-bubble .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #777;
}
.ql-bubble .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-bubble .ql-color-picker,
.ql-bubble .ql-icon-picker {
  width: 28px;
}
.ql-bubble .ql-color-picker .ql-picker-label,
.ql-bubble .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-bubble .ql-color-picker .ql-picker-label svg,
.ql-bubble .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-bubble .ql-icon-picker .ql-picker-options {
  padding: 4px 0;
}
.ql-bubble .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-bubble .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-bubble .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0;
  width: 16px;
}
.ql-bubble .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-bubble .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-bubble .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""])::before,
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""])::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""])::before {
  content: attr(data-label);
}
.ql-bubble .ql-picker.ql-header {
  width: 98px;
}
.ql-bubble .ql-picker.ql-header .ql-picker-label::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item::before {
  content: "Normal";
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: "Heading 1";
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: "Heading 2";
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: "Heading 3";
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: "Heading 4";
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: "Heading 5";
}
.ql-bubble .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: "Heading 6";
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: .83em;
}
.ql-bubble .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: .67em;
}
.ql-bubble .ql-picker.ql-font {
  width: 108px;
}
.ql-bubble .ql-picker.ql-font .ql-picker-label::before,
.ql-bubble .ql-picker.ql-font .ql-picker-item::before {
  content: "Sans Serif";
}
.ql-bubble .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: "Serif";
}
.ql-bubble .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: "Monospace";
}
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family:
    Georgia,
    Times New Roman,
    serif;
}
.ql-bubble .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family:
    Monaco,
    Courier New,
    monospace;
}
.ql-bubble .ql-picker.ql-size {
  width: 98px;
}
.ql-bubble .ql-picker.ql-size .ql-picker-label::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item::before {
  content: "Normal";
}
.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: "Small";
}
.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: "Large";
}
.ql-bubble .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: "Huge";
}
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-bubble .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-bubble .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-bubble .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-code-block-container {
  position: relative;
}
.ql-code-block-container .ql-ui {
  right: 5px;
  top: 5px;
}
.ql-bubble .ql-toolbar .ql-formats {
  margin: 8px 12px 8px 0;
}
.ql-bubble .ql-toolbar .ql-formats:first-child {
  margin-left: 12px;
}
.ql-bubble .ql-color-picker svg {
  margin: 1px;
}
.ql-bubble .ql-color-picker .ql-picker-item.ql-selected,
.ql-bubble .ql-color-picker .ql-picker-item:hover {
  border-color: #fff;
}
.ql-bubble .ql-tooltip {
  background-color: #444;
  border-radius: 25px;
  color: #fff;
}
.ql-bubble .ql-tooltip-arrow {
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  content: " ";
  display: block;
  left: 50%;
  margin-left: -6px;
  position: absolute;
}
.ql-bubble .ql-tooltip:not(.ql-flip) .ql-tooltip-arrow {
  border-bottom: 6px solid #444;
  top: -6px;
}
.ql-bubble .ql-tooltip.ql-flip .ql-tooltip-arrow {
  border-top: 6px solid #444;
  bottom: -6px;
}
.ql-bubble .ql-tooltip.ql-editing .ql-tooltip-editor {
  display: block;
}
.ql-bubble .ql-tooltip.ql-editing .ql-formats {
  visibility: hidden;
}
.ql-bubble .ql-tooltip-editor {
  display: none;
}
.ql-bubble .ql-tooltip-editor input[type=text] {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 13px;
  height: 100%;
  outline: none;
  padding: 10px 20px;
  position: absolute;
  width: 100%;
}
.ql-bubble .ql-tooltip-editor a {
  top: 10px;
  position: absolute;
  right: 20px;
}
.ql-bubble .ql-tooltip-editor a:before {
  color: #ccc;
  content: "\d7";
  font-size: 16px;
  font-weight: bold;
}
.ql-container.ql-bubble:not(.ql-disabled) a:not(.ql-close) {
  position: relative;
  white-space: nowrap;
}
.ql-container.ql-bubble:not(.ql-disabled) a:not(.ql-close)::before {
  background-color: #444;
  border-radius: 15px;
  top: -5px;
  font-size: 12px;
  color: #fff;
  content: attr(href);
  font-weight: normal;
  overflow: hidden;
  padding: 5px 15px;
  text-decoration: none;
  z-index: 1;
}
.ql-container.ql-bubble:not(.ql-disabled) a:not(.ql-close)::after {
  border-top: 6px solid #444;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  top: 0;
  content: " ";
  height: 0;
  width: 0;
}
.ql-container.ql-bubble:not(.ql-disabled) a:not(.ql-close)::before,
.ql-container.ql-bubble:not(.ql-disabled) a:not(.ql-close)::after {
  left: 0;
  margin-left: 50%;
  position: absolute;
  transform: translate(-50%, -100%);
  transition: visibility 0s ease 200ms;
  visibility: hidden;
}
.ql-container.ql-bubble:not(.ql-disabled) a:not(.ql-close):hover::before,
.ql-container.ql-bubble:not(.ql-disabled) a:not(.ql-close):hover::after {
  visibility: visible;
}

/* node_modules/quill/dist/quill.snow.css */
/*!
 * Quill Editor v2.0.3
 * https://quilljs.com
 * Copyright (c) 2017-2024, Slab
 * Copyright (c) 2014, Jason Chen
 * Copyright (c) 2013, salesforce.com
 */
.ql-container {
  box-sizing: border-box;
  font-family:
    Helvetica,
    Arial,
    sans-serif;
  font-size: 13px;
  height: 100%;
  margin: 0;
  position: relative;
}
.ql-container.ql-disabled .ql-tooltip {
  visibility: hidden;
}
.ql-container:not(.ql-disabled) li[data-list=checked] > .ql-ui,
.ql-container:not(.ql-disabled) li[data-list=unchecked] > .ql-ui {
  cursor: pointer;
}
.ql-clipboard {
  left: -100000px;
  height: 1px;
  overflow-y: hidden;
  position: absolute;
  top: 50%;
}
.ql-clipboard p {
  margin: 0;
  padding: 0;
}
.ql-editor {
  box-sizing: border-box;
  counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  line-height: 1.42;
  height: 100%;
  outline: none;
  overflow-y: auto;
  padding: 12px 15px;
  tab-size: 4;
  -moz-tab-size: 4;
  text-align: left;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.ql-editor > * {
  cursor: text;
}
.ql-editor p,
.ql-editor ol,
.ql-editor pre,
.ql-editor blockquote,
.ql-editor h1,
.ql-editor h2,
.ql-editor h3,
.ql-editor h4,
.ql-editor h5,
.ql-editor h6 {
  margin: 0;
  padding: 0;
}
@supports (counter-set:none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-set: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor p,
  .ql-editor h1,
  .ql-editor h2,
  .ql-editor h3,
  .ql-editor h4,
  .ql-editor h5,
  .ql-editor h6 {
    counter-reset: list-0 list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor table {
  border-collapse: collapse;
}
.ql-editor td {
  border: 1px solid #000;
  padding: 2px 5px;
}
.ql-editor ol {
  padding-left: 1.5em;
}
.ql-editor li {
  list-style-type: none;
  padding-left: 1.5em;
  position: relative;
}
.ql-editor li > .ql-ui:before {
  display: inline-block;
  margin-left: -1.5em;
  margin-right: .3em;
  text-align: right;
  white-space: nowrap;
  width: 1.2em;
}
.ql-editor li[data-list=checked] > .ql-ui,
.ql-editor li[data-list=unchecked] > .ql-ui {
  color: #777;
}
.ql-editor li[data-list=bullet] > .ql-ui:before {
  content: "\2022";
}
.ql-editor li[data-list=checked] > .ql-ui:before {
  content: "\2611";
}
.ql-editor li[data-list=unchecked] > .ql-ui:before {
  content: "\2610";
}
@supports (counter-set:none) {
  .ql-editor li[data-list] {
    counter-set: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list] {
    counter-reset: list-1 list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered] {
  counter-increment: list-0;
}
.ql-editor li[data-list=ordered] > .ql-ui:before {
  content: counter(list-0, decimal) ". ";
}
.ql-editor li[data-list=ordered].ql-indent-1 {
  counter-increment: list-1;
}
.ql-editor li[data-list=ordered].ql-indent-1 > .ql-ui:before {
  content: counter(list-1, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-set: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-1 {
    counter-reset: list-2 list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-2 {
  counter-increment: list-2;
}
.ql-editor li[data-list=ordered].ql-indent-2 > .ql-ui:before {
  content: counter(list-2, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-set: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-2 {
    counter-reset: list-3 list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-3 {
  counter-increment: list-3;
}
.ql-editor li[data-list=ordered].ql-indent-3 > .ql-ui:before {
  content: counter(list-3, decimal) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-set: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-3 {
    counter-reset: list-4 list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-4 {
  counter-increment: list-4;
}
.ql-editor li[data-list=ordered].ql-indent-4 > .ql-ui:before {
  content: counter(list-4, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-set: list-5 list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-4 {
    counter-reset: list-5 list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-5 {
  counter-increment: list-5;
}
.ql-editor li[data-list=ordered].ql-indent-5 > .ql-ui:before {
  content: counter(list-5, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-set: list-6 list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-5 {
    counter-reset: list-6 list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-6 {
  counter-increment: list-6;
}
.ql-editor li[data-list=ordered].ql-indent-6 > .ql-ui:before {
  content: counter(list-6, decimal) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-set: list-7 list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-6 {
    counter-reset: list-7 list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-7 {
  counter-increment: list-7;
}
.ql-editor li[data-list=ordered].ql-indent-7 > .ql-ui:before {
  content: counter(list-7, lower-alpha) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-set: list-8 list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-7 {
    counter-reset: list-8 list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-8 {
  counter-increment: list-8;
}
.ql-editor li[data-list=ordered].ql-indent-8 > .ql-ui:before {
  content: counter(list-8, lower-roman) ". ";
}
@supports (counter-set:none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-set: list-9;
  }
}
@supports not (counter-set:none) {
  .ql-editor li[data-list].ql-indent-8 {
    counter-reset: list-9;
  }
}
.ql-editor li[data-list=ordered].ql-indent-9 {
  counter-increment: list-9;
}
.ql-editor li[data-list=ordered].ql-indent-9 > .ql-ui:before {
  content: counter(list-9, decimal) ". ";
}
.ql-editor .ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 3em;
}
.ql-editor li.ql-indent-1:not(.ql-direction-rtl) {
  padding-left: 4.5em;
}
.ql-editor .ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 3em;
}
.ql-editor li.ql-indent-1.ql-direction-rtl.ql-align-right {
  padding-right: 4.5em;
}
.ql-editor .ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 6em;
}
.ql-editor li.ql-indent-2:not(.ql-direction-rtl) {
  padding-left: 7.5em;
}
.ql-editor .ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 6em;
}
.ql-editor li.ql-indent-2.ql-direction-rtl.ql-align-right {
  padding-right: 7.5em;
}
.ql-editor .ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 9em;
}
.ql-editor li.ql-indent-3:not(.ql-direction-rtl) {
  padding-left: 10.5em;
}
.ql-editor .ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 9em;
}
.ql-editor li.ql-indent-3.ql-direction-rtl.ql-align-right {
  padding-right: 10.5em;
}
.ql-editor .ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 12em;
}
.ql-editor li.ql-indent-4:not(.ql-direction-rtl) {
  padding-left: 13.5em;
}
.ql-editor .ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 12em;
}
.ql-editor li.ql-indent-4.ql-direction-rtl.ql-align-right {
  padding-right: 13.5em;
}
.ql-editor .ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 15em;
}
.ql-editor li.ql-indent-5:not(.ql-direction-rtl) {
  padding-left: 16.5em;
}
.ql-editor .ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 15em;
}
.ql-editor li.ql-indent-5.ql-direction-rtl.ql-align-right {
  padding-right: 16.5em;
}
.ql-editor .ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 18em;
}
.ql-editor li.ql-indent-6:not(.ql-direction-rtl) {
  padding-left: 19.5em;
}
.ql-editor .ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 18em;
}
.ql-editor li.ql-indent-6.ql-direction-rtl.ql-align-right {
  padding-right: 19.5em;
}
.ql-editor .ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 21em;
}
.ql-editor li.ql-indent-7:not(.ql-direction-rtl) {
  padding-left: 22.5em;
}
.ql-editor .ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 21em;
}
.ql-editor li.ql-indent-7.ql-direction-rtl.ql-align-right {
  padding-right: 22.5em;
}
.ql-editor .ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 24em;
}
.ql-editor li.ql-indent-8:not(.ql-direction-rtl) {
  padding-left: 25.5em;
}
.ql-editor .ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 24em;
}
.ql-editor li.ql-indent-8.ql-direction-rtl.ql-align-right {
  padding-right: 25.5em;
}
.ql-editor .ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 27em;
}
.ql-editor li.ql-indent-9:not(.ql-direction-rtl) {
  padding-left: 28.5em;
}
.ql-editor .ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 27em;
}
.ql-editor li.ql-indent-9.ql-direction-rtl.ql-align-right {
  padding-right: 28.5em;
}
.ql-editor li.ql-direction-rtl {
  padding-right: 1.5em;
}
.ql-editor li.ql-direction-rtl > .ql-ui:before {
  margin-left: .3em;
  margin-right: -1.5em;
  text-align: left;
}
.ql-editor table {
  table-layout: fixed;
  width: 100%;
}
.ql-editor table td {
  outline: none;
}
.ql-editor .ql-code-block-container {
  font-family: monospace;
}
.ql-editor .ql-video {
  display: block;
  max-width: 100%;
}
.ql-editor .ql-video.ql-align-center {
  margin: 0 auto;
}
.ql-editor .ql-video.ql-align-right {
  margin: 0 0 0 auto;
}
.ql-editor .ql-bg-black {
  background-color: #000;
}
.ql-editor .ql-bg-red {
  background-color: #e60000;
}
.ql-editor .ql-bg-orange {
  background-color: #f90;
}
.ql-editor .ql-bg-yellow {
  background-color: #ff0;
}
.ql-editor .ql-bg-green {
  background-color: #008a00;
}
.ql-editor .ql-bg-blue {
  background-color: #06c;
}
.ql-editor .ql-bg-purple {
  background-color: #93f;
}
.ql-editor .ql-color-white {
  color: #fff;
}
.ql-editor .ql-color-red {
  color: #e60000;
}
.ql-editor .ql-color-orange {
  color: #f90;
}
.ql-editor .ql-color-yellow {
  color: #ff0;
}
.ql-editor .ql-color-green {
  color: #008a00;
}
.ql-editor .ql-color-blue {
  color: #06c;
}
.ql-editor .ql-color-purple {
  color: #93f;
}
.ql-editor .ql-font-serif {
  font-family:
    Georgia,
    Times New Roman,
    serif;
}
.ql-editor .ql-font-monospace {
  font-family:
    Monaco,
    Courier New,
    monospace;
}
.ql-editor .ql-size-small {
  font-size: .75em;
}
.ql-editor .ql-size-large {
  font-size: 1.5em;
}
.ql-editor .ql-size-huge {
  font-size: 2.5em;
}
.ql-editor .ql-direction-rtl {
  direction: rtl;
  text-align: inherit;
}
.ql-editor .ql-align-center {
  text-align: center;
}
.ql-editor .ql-align-justify {
  text-align: justify;
}
.ql-editor .ql-align-right {
  text-align: right;
}
.ql-editor .ql-ui {
  position: absolute;
}
.ql-editor.ql-blank::before {
  color: rgba(0, 0, 0, 0.6);
  content: attr(data-placeholder);
  font-style: italic;
  left: 15px;
  pointer-events: none;
  position: absolute;
  right: 15px;
}
.ql-snow.ql-toolbar:after,
.ql-snow .ql-toolbar:after {
  clear: both;
  content: "";
  display: table;
}
.ql-snow.ql-toolbar button,
.ql-snow .ql-toolbar button {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  float: left;
  height: 24px;
  padding: 3px 5px;
  width: 28px;
}
.ql-snow.ql-toolbar button svg,
.ql-snow .ql-toolbar button svg {
  float: left;
  height: 100%;
}
.ql-snow.ql-toolbar button:active:hover,
.ql-snow .ql-toolbar button:active:hover {
  outline: none;
}
.ql-snow.ql-toolbar input.ql-image[type=file],
.ql-snow .ql-toolbar input.ql-image[type=file] {
  display: none;
}
.ql-snow.ql-toolbar button:hover,
.ql-snow .ql-toolbar button:hover,
.ql-snow.ql-toolbar button:focus,
.ql-snow .ql-toolbar button:focus,
.ql-snow.ql-toolbar button.ql-active,
.ql-snow .ql-toolbar button.ql-active,
.ql-snow.ql-toolbar .ql-picker-label:hover,
.ql-snow .ql-toolbar .ql-picker-label:hover,
.ql-snow.ql-toolbar .ql-picker-label.ql-active,
.ql-snow .ql-toolbar .ql-picker-label.ql-active,
.ql-snow.ql-toolbar .ql-picker-item:hover,
.ql-snow .ql-toolbar .ql-picker-item:hover,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected {
  color: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-fill,
.ql-snow .ql-toolbar button:hover .ql-fill,
.ql-snow.ql-toolbar button:focus .ql-fill,
.ql-snow .ql-toolbar button:focus .ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-fill,
.ql-snow.ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button:focus .ql-stroke.ql-fill,
.ql-snow.ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar button.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke.ql-fill,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke.ql-fill {
  fill: #06c;
}
.ql-snow.ql-toolbar button:hover .ql-stroke,
.ql-snow .ql-toolbar button:hover .ql-stroke,
.ql-snow.ql-toolbar button:focus .ql-stroke,
.ql-snow .ql-toolbar button:focus .ql-stroke,
.ql-snow.ql-toolbar button.ql-active .ql-stroke,
.ql-snow .ql-toolbar button.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke,
.ql-snow.ql-toolbar button:hover .ql-stroke-miter,
.ql-snow .ql-toolbar button:hover .ql-stroke-miter,
.ql-snow.ql-toolbar button:focus .ql-stroke-miter,
.ql-snow .ql-toolbar button:focus .ql-stroke-miter,
.ql-snow.ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar button.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-label.ql-active .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item:hover .ql-stroke-miter,
.ql-snow.ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter,
.ql-snow .ql-toolbar .ql-picker-item.ql-selected .ql-stroke-miter {
  stroke: #06c;
}
@media (pointer:coarse) {
  .ql-snow.ql-toolbar button:hover:not(.ql-active),
  .ql-snow .ql-toolbar button:hover:not(.ql-active) {
    color: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-fill,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke.ql-fill {
    fill: #444;
  }
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke,
  .ql-snow.ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter,
  .ql-snow .ql-toolbar button:hover:not(.ql-active) .ql-stroke-miter {
    stroke: #444;
  }
}
.ql-snow {
  box-sizing: border-box;
}
.ql-snow * {
  box-sizing: border-box;
}
.ql-snow .ql-hidden {
  display: none;
}
.ql-snow .ql-out-bottom,
.ql-snow .ql-out-top {
  visibility: hidden;
}
.ql-snow .ql-tooltip {
  position: absolute;
  transform: translateY(10px);
}
.ql-snow .ql-tooltip a {
  cursor: pointer;
  text-decoration: none;
}
.ql-snow .ql-tooltip.ql-flip {
  transform: translateY(-10px);
}
.ql-snow .ql-formats {
  display: inline-block;
  vertical-align: middle;
}
.ql-snow .ql-formats:after {
  clear: both;
  content: "";
  display: table;
}
.ql-snow .ql-stroke {
  fill: none;
  stroke: #444;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}
.ql-snow .ql-stroke-miter {
  fill: none;
  stroke: #444;
  stroke-miterlimit: 10;
  stroke-width: 2;
}
.ql-snow .ql-fill,
.ql-snow .ql-stroke.ql-fill {
  fill: #444;
}
.ql-snow .ql-empty {
  fill: none;
}
.ql-snow .ql-even {
  fill-rule: evenodd;
}
.ql-snow .ql-thin,
.ql-snow .ql-stroke.ql-thin {
  stroke-width: 1;
}
.ql-snow .ql-transparent {
  opacity: .4;
}
.ql-snow .ql-direction svg:last-child {
  display: none;
}
.ql-snow .ql-direction.ql-active svg:last-child {
  display: inline;
}
.ql-snow .ql-direction.ql-active svg:first-child {
  display: none;
}
.ql-snow .ql-editor h1 {
  font-size: 2em;
}
.ql-snow .ql-editor h2 {
  font-size: 1.5em;
}
.ql-snow .ql-editor h3 {
  font-size: 1.17em;
}
.ql-snow .ql-editor h4 {
  font-size: 1em;
}
.ql-snow .ql-editor h5 {
  font-size: .83em;
}
.ql-snow .ql-editor h6 {
  font-size: .67em;
}
.ql-snow .ql-editor a {
  text-decoration: underline;
}
.ql-snow .ql-editor blockquote {
  border-left: 4px solid #ccc;
  margin-bottom: 5px;
  margin-top: 5px;
  padding-left: 16px;
}
.ql-snow .ql-editor code,
.ql-snow .ql-editor .ql-code-block-container {
  background-color: #f0f0f0;
  border-radius: 3px;
}
.ql-snow .ql-editor .ql-code-block-container {
  margin-bottom: 5px;
  margin-top: 5px;
  padding: 5px 10px;
}
.ql-snow .ql-editor code {
  font-size: 85%;
  padding: 2px 4px;
}
.ql-snow .ql-editor .ql-code-block-container {
  background-color: #23241f;
  color: #f8f8f2;
  overflow: visible;
}
.ql-snow .ql-editor img {
  max-width: 100%;
}
.ql-snow .ql-picker {
  color: #444;
  display: inline-block;
  float: left;
  font-size: 14px;
  font-weight: 500;
  height: 24px;
  position: relative;
  vertical-align: middle;
}
.ql-snow .ql-picker-label {
  cursor: pointer;
  display: inline-block;
  height: 100%;
  padding-left: 8px;
  padding-right: 2px;
  position: relative;
  width: 100%;
}
.ql-snow .ql-picker-label::before {
  display: inline-block;
  line-height: 22px;
}
.ql-snow .ql-picker-options {
  background-color: #fff;
  display: none;
  min-width: 100%;
  padding: 4px 8px;
  position: absolute;
  white-space: nowrap;
}
.ql-snow .ql-picker-options .ql-picker-item {
  cursor: pointer;
  display: block;
  padding-bottom: 5px;
  padding-top: 5px;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  color: #ccc;
  z-index: 2;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-fill {
  fill: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label .ql-stroke {
  stroke: #ccc;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  display: block;
  margin-top: -1px;
  top: 100%;
  z-index: 1;
}
.ql-snow .ql-color-picker,
.ql-snow .ql-icon-picker {
  width: 28px;
}
.ql-snow .ql-color-picker .ql-picker-label,
.ql-snow .ql-icon-picker .ql-picker-label {
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-label svg,
.ql-snow .ql-icon-picker .ql-picker-label svg {
  right: 4px;
}
.ql-snow .ql-icon-picker .ql-picker-options {
  padding: 4px 0;
}
.ql-snow .ql-icon-picker .ql-picker-item {
  height: 24px;
  width: 24px;
  padding: 2px 4px;
}
.ql-snow .ql-color-picker .ql-picker-options {
  padding: 3px 5px;
  width: 152px;
}
.ql-snow .ql-color-picker .ql-picker-item {
  border: 1px solid transparent;
  float: left;
  height: 16px;
  margin: 2px;
  padding: 0;
  width: 16px;
}
.ql-snow .ql-picker:not(.ql-color-picker):not(.ql-icon-picker) svg {
  position: absolute;
  margin-top: -9px;
  right: 0;
  top: 50%;
  width: 18px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-font .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-size .ql-picker-label[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-label]:not([data-label=""])::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-label]:not([data-label=""])::before {
  content: attr(data-label);
}
.ql-snow .ql-picker.ql-header {
  width: 98px;
}
.ql-snow .ql-picker.ql-header .ql-picker-label::before,
.ql-snow .ql-picker.ql-header .ql-picker-item::before {
  content: "Normal";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="1"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  content: "Heading 1";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="2"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  content: "Heading 2";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="3"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  content: "Heading 3";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="4"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  content: "Heading 4";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="5"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  content: "Heading 5";
}
.ql-snow .ql-picker.ql-header .ql-picker-label[data-value="6"]::before,
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  content: "Heading 6";
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="1"]::before {
  font-size: 2em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="2"]::before {
  font-size: 1.5em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="3"]::before {
  font-size: 1.17em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="4"]::before {
  font-size: 1em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="5"]::before {
  font-size: .83em;
}
.ql-snow .ql-picker.ql-header .ql-picker-item[data-value="6"]::before {
  font-size: .67em;
}
.ql-snow .ql-picker.ql-font {
  width: 108px;
}
.ql-snow .ql-picker.ql-font .ql-picker-label::before,
.ql-snow .ql-picker.ql-font .ql-picker-item::before {
  content: "Sans Serif";
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=serif]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  content: "Serif";
}
.ql-snow .ql-picker.ql-font .ql-picker-label[data-value=monospace]::before,
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  content: "Monospace";
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=serif]::before {
  font-family:
    Georgia,
    Times New Roman,
    serif;
}
.ql-snow .ql-picker.ql-font .ql-picker-item[data-value=monospace]::before {
  font-family:
    Monaco,
    Courier New,
    monospace;
}
.ql-snow .ql-picker.ql-size {
  width: 98px;
}
.ql-snow .ql-picker.ql-size .ql-picker-label::before,
.ql-snow .ql-picker.ql-size .ql-picker-item::before {
  content: "Normal";
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=small]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  content: "Small";
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=large]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  content: "Large";
}
.ql-snow .ql-picker.ql-size .ql-picker-label[data-value=huge]::before,
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  content: "Huge";
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=small]::before {
  font-size: 10px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=large]::before {
  font-size: 18px;
}
.ql-snow .ql-picker.ql-size .ql-picker-item[data-value=huge]::before {
  font-size: 32px;
}
.ql-snow .ql-color-picker.ql-background .ql-picker-item {
  background-color: #fff;
}
.ql-snow .ql-color-picker.ql-color .ql-picker-item {
  background-color: #000;
}
.ql-code-block-container {
  position: relative;
}
.ql-code-block-container .ql-ui {
  right: 5px;
  top: 5px;
}
.ql-toolbar.ql-snow {
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family:
    "Helvetica Neue",
    "Helvetica",
    "Arial",
    sans-serif;
  padding: 8px;
}
.ql-toolbar.ql-snow .ql-formats {
  margin-right: 15px;
}
.ql-toolbar.ql-snow .ql-picker-label {
  border: 1px solid transparent;
}
.ql-toolbar.ql-snow .ql-picker-options {
  border: 1px solid transparent;
  box-shadow: rgba(0, 0, 0, 0.2) 0 2px 8px;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border-color: #ccc;
}
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item.ql-selected,
.ql-toolbar.ql-snow .ql-color-picker .ql-picker-item:hover {
  border-color: #000;
}
.ql-toolbar.ql-snow + .ql-container.ql-snow {
  border-top: 0;
}
.ql-snow .ql-tooltip {
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 5px #ddd;
  color: #444;
  padding: 5px 12px;
  white-space: nowrap;
}
.ql-snow .ql-tooltip::before {
  content: "Visit URL:";
  line-height: 26px;
  margin-right: 8px;
}
.ql-snow .ql-tooltip input[type=text] {
  display: none;
  border: 1px solid #ccc;
  font-size: 13px;
  height: 26px;
  margin: 0;
  padding: 3px 5px;
  width: 170px;
}
.ql-snow .ql-tooltip a.ql-preview {
  display: inline-block;
  max-width: 200px;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: top;
}
.ql-snow .ql-tooltip a.ql-action::after {
  border-right: 1px solid #ccc;
  content: "Edit";
  margin-left: 16px;
  padding-right: 8px;
}
.ql-snow .ql-tooltip a.ql-remove::before {
  content: "Remove";
  margin-left: 8px;
}
.ql-snow .ql-tooltip a {
  line-height: 26px;
}
.ql-snow .ql-tooltip.ql-editing a.ql-preview,
.ql-snow .ql-tooltip.ql-editing a.ql-remove {
  display: none;
}
.ql-snow .ql-tooltip.ql-editing input[type=text] {
  display: inline-block;
}
.ql-snow .ql-tooltip.ql-editing a.ql-action::after {
  border-right: 0;
  content: "Save";
  padding-right: 0;
}
.ql-snow .ql-tooltip[data-mode=link]::before {
  content: "Enter link:";
}
.ql-snow .ql-tooltip[data-mode=formula]::before {
  content: "Enter formula:";
}
.ql-snow .ql-tooltip[data-mode=video]::before {
  content: "Enter video:";
}
.ql-snow a {
  color: #06c;
}
.ql-container.ql-snow {
  border: 1px solid #ccc;
}

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