[theme-mode=light] {
  --background-container: #FFFFFF;
  --background-medium: #F1F4F7;
  --background-strong: #E5EBF0;
  --background-primary-selected: #E3EBF4;
  --text-medium: #3E5363;
  --text-strong: #02090F;
  --text-strong-lighter: #082237;
  --text-disabled: #8A96A0;
  --border-color: #BACBD8;
  --background-warning:#D37F1133

}

[theme-mode=dark] {
  --background-container: #181818;
  --background-medium: #1F1F1F;
  --background-strong: #242424;
  --background-primary-selected: #1B1C1D;
  --text-medium: #C2C2C2;
  --text-strong: white;
  --text-strong-lighter: white;
  --text-disabled: #606770;
  --border-color: #2A2A2A;
  --background-warning:#D37F1133

}

[theme-mode=dark] {
  --primary-light-color: #c0d3e8;
  --accent-light-color: #bbd7c3;
  --warn-light-color: #eac6c3;
}
[theme-mode=dark] [ng-reflect-name=apple] path {
  fill: white;
}

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

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

.mat-ripple-element {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1);
  transform: scale3d(0, 0, 0);
  background-color: var(--mat-ripple-color, rgba(0, 0, 0, 0.1));
}
.cdk-high-contrast-active .mat-ripple-element {
  display: none;
}

.cdk-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  left: 0;
}
[dir=rtl] .cdk-visually-hidden {
  left: auto;
  right: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

html {
  --mat-ripple-color: rgba(45, 108, 177, 0.1);
}

html {
  --mat-option-selected-state-label-text-color: #2d6cb1;
  --mat-option-label-text-color: #3e5363;
  --mat-option-hover-state-layer-color: rgba(45, 108, 177, 0.04);
  --mat-option-focus-state-layer-color: rgba(45, 108, 177, 0.04);
  --mat-option-selected-state-layer-color: rgba(45, 108, 177, 0.04);
}

.mat-accent {
  --mat-option-selected-state-label-text-color: #1b7a36;
  --mat-option-label-text-color: #3e5363;
  --mat-option-hover-state-layer-color: rgba(45, 108, 177, 0.04);
  --mat-option-focus-state-layer-color: rgba(45, 108, 177, 0.04);
  --mat-option-selected-state-layer-color: rgba(45, 108, 177, 0.04);
}

.mat-warn {
  --mat-option-selected-state-label-text-color: #b94137;
  --mat-option-label-text-color: #3e5363;
  --mat-option-hover-state-layer-color: rgba(45, 108, 177, 0.04);
  --mat-option-focus-state-layer-color: rgba(45, 108, 177, 0.04);
  --mat-option-selected-state-layer-color: rgba(45, 108, 177, 0.04);
}

html {
  --mat-optgroup-label-text-color: #3e5363;
}

.mat-primary {
  --mat-full-pseudo-checkbox-selected-icon-color: #2d6cb1;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #f1f4f7;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #f1f4f7;
  --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: #2d6cb1;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}

html {
  --mat-full-pseudo-checkbox-selected-icon-color: #1b7a36;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #f1f4f7;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #f1f4f7;
  --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: #1b7a36;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}

.mat-accent {
  --mat-full-pseudo-checkbox-selected-icon-color: #1b7a36;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #f1f4f7;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #f1f4f7;
  --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: #1b7a36;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}

.mat-warn {
  --mat-full-pseudo-checkbox-selected-icon-color: #b94137;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #f1f4f7;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #f1f4f7;
  --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: #b94137;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #b0b0b0;
}

html {
  --mat-app-background-color: #f1f4f7;
  --mat-app-text-color: #3e5363;
}

.mat-elevation-z0, .mat-mdc-elevation-specific.mat-elevation-z0 {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

html {
  --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(45, 108, 177, 0.12);
  --mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-card-subtitle-text-color: rgba(0, 0, 0, 0.54);
}

html {
  --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: #2d6cb1;
  --mdc-linear-progress-track-color: rgba(45, 108, 177, 0.25);
}
.mat-mdc-progress-bar.mat-accent {
  --mdc-linear-progress-active-indicator-color: #1b7a36;
  --mdc-linear-progress-track-color: rgba(27, 122, 54, 0.25);
}
.mat-mdc-progress-bar.mat-warn {
  --mdc-linear-progress-active-indicator-color: #b94137;
  --mdc-linear-progress-track-color: rgba(185, 65, 55, 0.25);
}

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

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

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: #2d6cb1;
  --mdc-filled-text-field-focus-active-indicator-color: #2d6cb1;
  --mdc-filled-text-field-focus-label-text-color: rgba(45, 108, 177, 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(62, 83, 99, 0.6);
  --mdc-filled-text-field-hover-label-text-color: rgba(62, 83, 99, 0.6);
  --mdc-filled-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-filled-text-field-input-text-color: rgba(62, 83, 99, 0.87);
  --mdc-filled-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.38);
  --mdc-filled-text-field-input-text-placeholder-color: rgba(62, 83, 99, 0.6);
  --mdc-filled-text-field-error-hover-label-text-color: #b94137;
  --mdc-filled-text-field-error-focus-label-text-color: #b94137;
  --mdc-filled-text-field-error-label-text-color: #b94137;
  --mdc-filled-text-field-error-caret-color: #b94137;
  --mdc-filled-text-field-active-indicator-color: rgba(0, 0, 0, 0.42);
  --mdc-filled-text-field-disabled-active-indicator-color: rgba(0, 0, 0, 0.06);
  --mdc-filled-text-field-hover-active-indicator-color: rgba(0, 0, 0, 0.87);
  --mdc-filled-text-field-error-active-indicator-color: #b94137;
  --mdc-filled-text-field-error-focus-active-indicator-color: #b94137;
  --mdc-filled-text-field-error-hover-active-indicator-color: #b94137;
  --mdc-outlined-text-field-caret-color: #2d6cb1;
  --mdc-outlined-text-field-focus-outline-color: #2d6cb1;
  --mdc-outlined-text-field-focus-label-text-color: rgba(45, 108, 177, 0.87);
  --mdc-outlined-text-field-label-text-color: rgba(62, 83, 99, 0.6);
  --mdc-outlined-text-field-hover-label-text-color: rgba(62, 83, 99, 0.6);
  --mdc-outlined-text-field-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-input-text-color: rgba(62, 83, 99, 0.87);
  --mdc-outlined-text-field-disabled-input-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-input-text-placeholder-color: rgba(62, 83, 99, 0.6);
  --mdc-outlined-text-field-error-caret-color: #b94137;
  --mdc-outlined-text-field-error-focus-label-text-color: #b94137;
  --mdc-outlined-text-field-error-label-text-color: #b94137;
  --mdc-outlined-text-field-error-hover-label-text-color: #b94137;
  --mdc-outlined-text-field-outline-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-text-field-disabled-outline-color: rgba(0, 0, 0, 0.06);
  --mdc-outlined-text-field-hover-outline-color: rgba(0, 0, 0, 0.87);
  --mdc-outlined-text-field-error-focus-outline-color: #b94137;
  --mdc-outlined-text-field-error-hover-outline-color: #b94137;
  --mdc-outlined-text-field-error-outline-color: #b94137;
  --mat-form-field-focus-select-arrow-color: rgba(45, 108, 177, 0.87);
  --mat-form-field-disabled-input-text-placeholder-color: rgba(0, 0, 0, 0.38);
  --mat-form-field-state-layer-color: rgba(45, 108, 177, 0.87);
  --mat-form-field-error-text-color: #b94137;
  --mat-form-field-select-option-text-color: inherit;
  --mat-form-field-select-disabled-option-text-color: GrayText;
  --mat-form-field-leading-icon-color: unset;
  --mat-form-field-disabled-leading-icon-color: unset;
  --mat-form-field-trailing-icon-color: unset;
  --mat-form-field-disabled-trailing-icon-color: unset;
  --mat-form-field-error-focus-trailing-icon-color: unset;
  --mat-form-field-error-hover-trailing-icon-color: unset;
  --mat-form-field-error-trailing-icon-color: unset;
  --mat-form-field-enabled-select-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-form-field-disabled-select-arrow-color: rgba(0, 0, 0, 0.38);
  --mat-form-field-hover-state-layer-opacity: 0.04;
  --mat-form-field-focus-state-layer-opacity: 0.08;
}

.mat-mdc-form-field.mat-accent {
  --mdc-filled-text-field-caret-color: #1b7a36;
  --mdc-filled-text-field-focus-active-indicator-color: #1b7a36;
  --mdc-filled-text-field-focus-label-text-color: rgba(27, 122, 54, 0.87);
  --mdc-outlined-text-field-caret-color: #1b7a36;
  --mdc-outlined-text-field-focus-outline-color: #1b7a36;
  --mdc-outlined-text-field-focus-label-text-color: rgba(27, 122, 54, 0.87);
  --mat-form-field-focus-select-arrow-color: rgba(27, 122, 54, 0.87);
}

.mat-mdc-form-field.mat-warn {
  --mdc-filled-text-field-caret-color: #b94137;
  --mdc-filled-text-field-focus-active-indicator-color: #b94137;
  --mdc-filled-text-field-focus-label-text-color: rgba(185, 65, 55, 0.87);
  --mdc-outlined-text-field-caret-color: #b94137;
  --mdc-outlined-text-field-focus-outline-color: #b94137;
  --mdc-outlined-text-field-focus-label-text-color: rgba(185, 65, 55, 0.87);
  --mat-form-field-focus-select-arrow-color: rgba(185, 65, 55, 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 {
  --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(62, 83, 99, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(62, 83, 99, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(62, 83, 99, 0.38);
  --mat-select-focused-arrow-color: rgba(45, 108, 177, 0.87);
  --mat-select-invalid-arrow-color: rgba(185, 65, 55, 0.87);
}
html .mat-mdc-form-field.mat-accent {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(62, 83, 99, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(62, 83, 99, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(62, 83, 99, 0.38);
  --mat-select-focused-arrow-color: rgba(27, 122, 54, 0.87);
  --mat-select-invalid-arrow-color: rgba(185, 65, 55, 0.87);
}
html .mat-mdc-form-field.mat-warn {
  --mat-select-panel-background-color: white;
  --mat-select-enabled-trigger-text-color: rgba(62, 83, 99, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(0, 0, 0, 0.38);
  --mat-select-placeholder-text-color: rgba(62, 83, 99, 0.6);
  --mat-select-enabled-arrow-color: rgba(0, 0, 0, 0.54);
  --mat-select-disabled-arrow-color: rgba(62, 83, 99, 0.38);
  --mat-select-focused-arrow-color: rgba(185, 65, 55, 0.87);
  --mat-select-invalid-arrow-color: rgba(185, 65, 55, 0.87);
}

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

html {
  --mat-autocomplete-container-shape: 4px;
  --mat-autocomplete-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}

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

html {
  --mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mdc-dialog-container-shadow-color: #000;
  --mdc-dialog-container-shape: 4px;
  --mat-dialog-container-max-width: 80vw;
  --mat-dialog-container-small-max-width: 80vw;
  --mat-dialog-container-min-width: 0;
  --mat-dialog-actions-alignment: start;
  --mat-dialog-actions-padding: 8px;
  --mat-dialog-content-padding: 20px 24px;
  --mat-dialog-with-actions-content-padding: 20px 24px;
  --mat-dialog-headline-padding: 0 24px 9px;
}

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

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

.mat-mdc-standard-chip {
  --mdc-chip-disabled-label-text-color: #212121;
  --mdc-chip-elevated-container-color: #e6edf6;
  --mdc-chip-elevated-selected-container-color: #e6edf6;
  --mdc-chip-elevated-disabled-container-color: #e6edf6;
  --mdc-chip-flat-disabled-selected-container-color: #e6edf6;
  --mdc-chip-focus-state-layer-color: #2d6cb1;
  --mdc-chip-hover-state-layer-color: #2d6cb1;
  --mdc-chip-selected-hover-state-layer-color: #2d6cb1;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: #2d6cb1;
  --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: #2d6cb1;
  --mdc-chip-elevated-selected-container-color: #2d6cb1;
  --mdc-chip-elevated-disabled-container-color: #2d6cb1;
  --mdc-chip-flat-disabled-selected-container-color: #2d6cb1;
  --mdc-chip-focus-state-layer-color: #2d6cb1;
  --mdc-chip-hover-state-layer-color: #2d6cb1;
  --mdc-chip-selected-hover-state-layer-color: #2d6cb1;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: #2d6cb1;
  --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: #1b7a36;
  --mdc-chip-elevated-selected-container-color: #1b7a36;
  --mdc-chip-elevated-disabled-container-color: #1b7a36;
  --mdc-chip-flat-disabled-selected-container-color: #1b7a36;
  --mdc-chip-focus-state-layer-color: #2d6cb1;
  --mdc-chip-hover-state-layer-color: #2d6cb1;
  --mdc-chip-selected-hover-state-layer-color: #2d6cb1;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: #2d6cb1;
  --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: #b94137;
  --mdc-chip-elevated-selected-container-color: #b94137;
  --mdc-chip-elevated-disabled-container-color: #b94137;
  --mdc-chip-flat-disabled-selected-container-color: #b94137;
  --mdc-chip-focus-state-layer-color: #2d6cb1;
  --mdc-chip-hover-state-layer-color: #2d6cb1;
  --mdc-chip-selected-hover-state-layer-color: #2d6cb1;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: #2d6cb1;
  --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;
}

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

html {
  --mdc-switch-selected-focus-state-layer-color: #2864aa;
  --mdc-switch-selected-handle-color: #2864aa;
  --mdc-switch-selected-hover-state-layer-color: #2864aa;
  --mdc-switch-selected-pressed-state-layer-color: #2864aa;
  --mdc-switch-selected-focus-handle-color: #16375d;
  --mdc-switch-selected-hover-handle-color: #16375d;
  --mdc-switch-selected-pressed-handle-color: #16375d;
  --mdc-switch-selected-focus-track-color: #6c98c8;
  --mdc-switch-selected-hover-track-color: #6c98c8;
  --mdc-switch-selected-pressed-track-color: #6c98c8;
  --mdc-switch-selected-track-color: #6c98c8;
  --mdc-switch-disabled-selected-handle-color: #424242;
  --mdc-switch-disabled-selected-icon-color: #fff;
  --mdc-switch-disabled-selected-track-color: #424242;
  --mdc-switch-disabled-unselected-handle-color: #424242;
  --mdc-switch-disabled-unselected-icon-color: #fff;
  --mdc-switch-disabled-unselected-track-color: #424242;
  --mdc-switch-handle-surface-color: var(--mdc-theme-surface, #fff);
  --mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-handle-shadow-color: black;
  --mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-selected-icon-color: #fff;
  --mdc-switch-unselected-focus-handle-color: #212121;
  --mdc-switch-unselected-focus-state-layer-color: #424242;
  --mdc-switch-unselected-focus-track-color: #e0e0e0;
  --mdc-switch-unselected-handle-color: #616161;
  --mdc-switch-unselected-hover-handle-color: #212121;
  --mdc-switch-unselected-hover-state-layer-color: #424242;
  --mdc-switch-unselected-hover-track-color: #e0e0e0;
  --mdc-switch-unselected-icon-color: #fff;
  --mdc-switch-unselected-pressed-handle-color: #212121;
  --mdc-switch-unselected-pressed-state-layer-color: #424242;
  --mdc-switch-unselected-pressed-track-color: #e0e0e0;
  --mdc-switch-unselected-track-color: #e0e0e0;
  --mdc-switch-disabled-label-text-color: rgba(0, 0, 0, 0.38);
}
html .mat-mdc-slide-toggle {
  --mdc-form-field-label-text-color: #3e5363;
}
html .mat-mdc-slide-toggle.mat-accent {
  --mdc-switch-selected-focus-state-layer-color: #187230;
  --mdc-switch-selected-handle-color: #187230;
  --mdc-switch-selected-hover-state-layer-color: #187230;
  --mdc-switch-selected-pressed-state-layer-color: #187230;
  --mdc-switch-selected-focus-handle-color: #084a16;
  --mdc-switch-selected-hover-handle-color: #084a16;
  --mdc-switch-selected-pressed-handle-color: #084a16;
  --mdc-switch-selected-focus-track-color: #5fa272;
  --mdc-switch-selected-hover-track-color: #5fa272;
  --mdc-switch-selected-pressed-track-color: #5fa272;
  --mdc-switch-selected-track-color: #5fa272;
}
html .mat-mdc-slide-toggle.mat-warn {
  --mdc-switch-selected-focus-state-layer-color: #b23b31;
  --mdc-switch-selected-handle-color: #b23b31;
  --mdc-switch-selected-hover-state-layer-color: #b23b31;
  --mdc-switch-selected-pressed-state-layer-color: #b23b31;
  --mdc-switch-selected-focus-handle-color: #931c16;
  --mdc-switch-selected-hover-handle-color: #931c16;
  --mdc-switch-selected-pressed-handle-color: #931c16;
  --mdc-switch-selected-focus-track-color: #ce7a73;
  --mdc-switch-selected-hover-track-color: #ce7a73;
  --mdc-switch-selected-pressed-track-color: #ce7a73;
  --mdc-switch-selected-track-color: #ce7a73;
}

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

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

.mat-mdc-radio-button {
  --mdc-form-field-label-text-color: #3e5363;
}
.mat-mdc-radio-button.mat-primary {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #2d6cb1;
  --mdc-radio-selected-hover-icon-color: #2d6cb1;
  --mdc-radio-selected-icon-color: #2d6cb1;
  --mdc-radio-selected-pressed-icon-color: #2d6cb1;
  --mat-radio-ripple-color: #2d6cb1;
  --mat-radio-checked-ripple-color: #2d6cb1;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
}
.mat-mdc-radio-button.mat-accent {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #1b7a36;
  --mdc-radio-selected-hover-icon-color: #1b7a36;
  --mdc-radio-selected-icon-color: #1b7a36;
  --mdc-radio-selected-pressed-icon-color: #1b7a36;
  --mat-radio-ripple-color: #2d6cb1;
  --mat-radio-checked-ripple-color: #1b7a36;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
}
.mat-mdc-radio-button.mat-warn {
  --mdc-radio-disabled-selected-icon-color: black;
  --mdc-radio-disabled-unselected-icon-color: black;
  --mdc-radio-unselected-hover-icon-color: #212121;
  --mdc-radio-unselected-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-unselected-pressed-icon-color: rgba(0, 0, 0, 0.54);
  --mdc-radio-selected-focus-icon-color: #b94137;
  --mdc-radio-selected-hover-icon-color: #b94137;
  --mdc-radio-selected-icon-color: #b94137;
  --mdc-radio-selected-pressed-icon-color: #b94137;
  --mat-radio-ripple-color: #2d6cb1;
  --mat-radio-checked-ripple-color: #b94137;
  --mat-radio-disabled-label-color: rgba(0, 0, 0, 0.38);
}

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

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

html {
  --mdc-slider-handle-color: #2d6cb1;
  --mdc-slider-focus-handle-color: #2d6cb1;
  --mdc-slider-hover-handle-color: #2d6cb1;
  --mdc-slider-active-track-color: #2d6cb1;
  --mdc-slider-inactive-track-color: #2d6cb1;
  --mdc-slider-with-tick-marks-inactive-container-color: #2d6cb1;
  --mdc-slider-with-tick-marks-active-container-color: white;
  --mdc-slider-disabled-active-track-color: #000;
  --mdc-slider-disabled-handle-color: #000;
  --mdc-slider-disabled-inactive-track-color: #000;
  --mdc-slider-label-container-color: #000;
  --mdc-slider-label-label-text-color: #fff;
  --mdc-slider-with-overlap-handle-outline-color: #fff;
  --mdc-slider-with-tick-marks-disabled-container-color: #000;
  --mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-slider-ripple-color: #2d6cb1;
  --mat-slider-hover-state-layer-color: rgba(45, 108, 177, 0.05);
  --mat-slider-focus-state-layer-color: rgba(45, 108, 177, 0.2);
  --mat-slider-value-indicator-opacity: 0.6;
}
html .mat-accent {
  --mat-slider-ripple-color: #1b7a36;
  --mat-slider-hover-state-layer-color: rgba(27, 122, 54, 0.05);
  --mat-slider-focus-state-layer-color: rgba(27, 122, 54, 0.2);
  --mdc-slider-handle-color: #1b7a36;
  --mdc-slider-focus-handle-color: #1b7a36;
  --mdc-slider-hover-handle-color: #1b7a36;
  --mdc-slider-active-track-color: #1b7a36;
  --mdc-slider-inactive-track-color: #1b7a36;
  --mdc-slider-with-tick-marks-inactive-container-color: #1b7a36;
  --mdc-slider-with-tick-marks-active-container-color: white;
}
html .mat-warn {
  --mat-slider-ripple-color: #b94137;
  --mat-slider-hover-state-layer-color: rgba(185, 65, 55, 0.05);
  --mat-slider-focus-state-layer-color: rgba(185, 65, 55, 0.2);
  --mdc-slider-handle-color: #b94137;
  --mdc-slider-focus-handle-color: #b94137;
  --mdc-slider-hover-handle-color: #b94137;
  --mdc-slider-active-track-color: #b94137;
  --mdc-slider-inactive-track-color: #b94137;
  --mdc-slider-with-tick-marks-inactive-container-color: #b94137;
  --mdc-slider-with-tick-marks-active-container-color: white;
}

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

html {
  --mat-menu-item-label-text-color: #3e5363;
  --mat-menu-item-icon-color: #3e5363;
  --mat-menu-item-hover-state-layer-color: rgba(45, 108, 177, 0.04);
  --mat-menu-item-focus-state-layer-color: rgba(45, 108, 177, 0.04);
  --mat-menu-container-color: white;
  --mat-menu-divider-color: rgba(0, 0, 0, 0.12);
}

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: #3e5363;
  --mdc-list-list-item-supporting-text-color: rgba(0, 0, 0, 0.54);
  --mdc-list-list-item-leading-icon-color: rgba(45, 108, 177, 0.38);
  --mdc-list-list-item-trailing-supporting-text-color: rgba(0, 0, 0, 0.38);
  --mdc-list-list-item-trailing-icon-color: rgba(45, 108, 177, 0.38);
  --mdc-list-list-item-selected-trailing-icon-color: rgba(45, 108, 177, 0.38);
  --mdc-list-list-item-disabled-label-text-color: #2d6cb1;
  --mdc-list-list-item-disabled-leading-icon-color: #2d6cb1;
  --mdc-list-list-item-disabled-trailing-icon-color: #2d6cb1;
  --mdc-list-list-item-hover-label-text-color: #3e5363;
  --mdc-list-list-item-hover-leading-icon-color: rgba(45, 108, 177, 0.38);
  --mdc-list-list-item-hover-trailing-icon-color: rgba(45, 108, 177, 0.38);
  --mdc-list-list-item-focus-label-text-color: #3e5363;
  --mdc-list-list-item-hover-state-layer-color: #2d6cb1;
  --mdc-list-list-item-hover-state-layer-opacity: 0.04;
  --mdc-list-list-item-focus-state-layer-color: #2d6cb1;
  --mdc-list-list-item-focus-state-layer-opacity: 0.12;
}

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

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

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

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

.mat-mdc-list-option.mat-accent {
  --mdc-checkbox-disabled-selected-icon-color: rgba(45, 108, 177, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(45, 108, 177, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #1b7a36;
  --mdc-checkbox-selected-hover-icon-color: #1b7a36;
  --mdc-checkbox-selected-icon-color: #1b7a36;
  --mdc-checkbox-selected-pressed-icon-color: #1b7a36;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(45, 108, 177, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(45, 108, 177, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #1b7a36;
  --mdc-checkbox-selected-hover-state-layer-color: #1b7a36;
  --mdc-checkbox-selected-pressed-state-layer-color: #1b7a36;
  --mdc-checkbox-unselected-focus-state-layer-color: #2d6cb1;
  --mdc-checkbox-unselected-hover-state-layer-color: #2d6cb1;
  --mdc-checkbox-unselected-pressed-state-layer-color: #2d6cb1;
}

.mat-mdc-list-option.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(45, 108, 177, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(45, 108, 177, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #b94137;
  --mdc-checkbox-selected-hover-icon-color: #b94137;
  --mdc-checkbox-selected-icon-color: #b94137;
  --mdc-checkbox-selected-pressed-icon-color: #b94137;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(45, 108, 177, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(45, 108, 177, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #b94137;
  --mdc-checkbox-selected-hover-state-layer-color: #b94137;
  --mdc-checkbox-selected-pressed-state-layer-color: #b94137;
  --mdc-checkbox-unselected-focus-state-layer-color: #2d6cb1;
  --mdc-checkbox-unselected-hover-state-layer-color: #2d6cb1;
  --mdc-checkbox-unselected-pressed-state-layer-color: #2d6cb1;
}

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

.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 {
  --mat-paginator-container-text-color: rgba(45, 108, 177, 0.87);
  --mat-paginator-container-background-color: white;
  --mat-paginator-enabled-icon-color: rgba(45, 108, 177, 0.54);
  --mat-paginator-disabled-icon-color: rgba(45, 108, 177, 0.12);
}

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

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

.mat-mdc-tab-group, .mat-mdc-tab-nav-bar {
  --mdc-tab-indicator-active-indicator-color: #2d6cb1;
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(62, 83, 99, 0.6);
  --mat-tab-header-active-label-text-color: #2d6cb1;
  --mat-tab-header-active-ripple-color: #2d6cb1;
  --mat-tab-header-inactive-ripple-color: #2d6cb1;
  --mat-tab-header-inactive-focus-label-text-color: rgba(62, 83, 99, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(62, 83, 99, 0.6);
  --mat-tab-header-active-focus-label-text-color: #2d6cb1;
  --mat-tab-header-active-hover-label-text-color: #2d6cb1;
  --mat-tab-header-active-focus-indicator-color: #2d6cb1;
  --mat-tab-header-active-hover-indicator-color: #2d6cb1;
}
.mat-mdc-tab-group.mat-accent, .mat-mdc-tab-nav-bar.mat-accent {
  --mdc-tab-indicator-active-indicator-color: #1b7a36;
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(62, 83, 99, 0.6);
  --mat-tab-header-active-label-text-color: #1b7a36;
  --mat-tab-header-active-ripple-color: #1b7a36;
  --mat-tab-header-inactive-ripple-color: #1b7a36;
  --mat-tab-header-inactive-focus-label-text-color: rgba(62, 83, 99, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(62, 83, 99, 0.6);
  --mat-tab-header-active-focus-label-text-color: #1b7a36;
  --mat-tab-header-active-hover-label-text-color: #1b7a36;
  --mat-tab-header-active-focus-indicator-color: #1b7a36;
  --mat-tab-header-active-hover-indicator-color: #1b7a36;
}
.mat-mdc-tab-group.mat-warn, .mat-mdc-tab-nav-bar.mat-warn {
  --mdc-tab-indicator-active-indicator-color: #b94137;
  --mat-tab-header-disabled-ripple-color: rgba(0, 0, 0, 0.38);
  --mat-tab-header-pagination-icon-color: black;
  --mat-tab-header-inactive-label-text-color: rgba(62, 83, 99, 0.6);
  --mat-tab-header-active-label-text-color: #b94137;
  --mat-tab-header-active-ripple-color: #b94137;
  --mat-tab-header-inactive-ripple-color: #b94137;
  --mat-tab-header-inactive-focus-label-text-color: rgba(62, 83, 99, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(62, 83, 99, 0.6);
  --mat-tab-header-active-focus-label-text-color: #b94137;
  --mat-tab-header-active-hover-label-text-color: #b94137;
  --mat-tab-header-active-focus-indicator-color: #b94137;
  --mat-tab-header-active-hover-indicator-color: #b94137;
}
.mat-mdc-tab-group.mat-background-primary, .mat-mdc-tab-nav-bar.mat-background-primary {
  --mat-tab-header-with-background-background-color: #2d6cb1;
  --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: #1b7a36;
  --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: #b94137;
  --mat-tab-header-with-background-foreground-color: white;
}

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

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(45, 108, 177, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(45, 108, 177, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #1b7a36;
  --mdc-checkbox-selected-hover-icon-color: #1b7a36;
  --mdc-checkbox-selected-icon-color: #1b7a36;
  --mdc-checkbox-selected-pressed-icon-color: #1b7a36;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(45, 108, 177, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(45, 108, 177, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #1b7a36;
  --mdc-checkbox-selected-hover-state-layer-color: #1b7a36;
  --mdc-checkbox-selected-pressed-state-layer-color: #1b7a36;
  --mdc-checkbox-unselected-focus-state-layer-color: #2d6cb1;
  --mdc-checkbox-unselected-hover-state-layer-color: #2d6cb1;
  --mdc-checkbox-unselected-pressed-state-layer-color: #2d6cb1;
  --mat-checkbox-disabled-label-color: rgba(0, 0, 0, 0.38);
}

.mat-mdc-checkbox {
  --mdc-form-field-label-text-color: #3e5363;
}
.mat-mdc-checkbox.mat-primary {
  --mdc-checkbox-disabled-selected-icon-color: rgba(45, 108, 177, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(45, 108, 177, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #2d6cb1;
  --mdc-checkbox-selected-hover-icon-color: #2d6cb1;
  --mdc-checkbox-selected-icon-color: #2d6cb1;
  --mdc-checkbox-selected-pressed-icon-color: #2d6cb1;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(45, 108, 177, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(45, 108, 177, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #2d6cb1;
  --mdc-checkbox-selected-hover-state-layer-color: #2d6cb1;
  --mdc-checkbox-selected-pressed-state-layer-color: #2d6cb1;
  --mdc-checkbox-unselected-focus-state-layer-color: #2d6cb1;
  --mdc-checkbox-unselected-hover-state-layer-color: #2d6cb1;
  --mdc-checkbox-unselected-pressed-state-layer-color: #2d6cb1;
}
.mat-mdc-checkbox.mat-warn {
  --mdc-checkbox-disabled-selected-icon-color: rgba(45, 108, 177, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(45, 108, 177, 0.38);
  --mdc-checkbox-selected-checkmark-color: white;
  --mdc-checkbox-selected-focus-icon-color: #b94137;
  --mdc-checkbox-selected-hover-icon-color: #b94137;
  --mdc-checkbox-selected-icon-color: #b94137;
  --mdc-checkbox-selected-pressed-icon-color: #b94137;
  --mdc-checkbox-unselected-focus-icon-color: #212121;
  --mdc-checkbox-unselected-hover-icon-color: #212121;
  --mdc-checkbox-unselected-icon-color: rgba(45, 108, 177, 0.54);
  --mdc-checkbox-unselected-pressed-icon-color: rgba(45, 108, 177, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #b94137;
  --mdc-checkbox-selected-hover-state-layer-color: #b94137;
  --mdc-checkbox-selected-pressed-state-layer-color: #b94137;
  --mdc-checkbox-unselected-focus-state-layer-color: #2d6cb1;
  --mdc-checkbox-unselected-hover-state-layer-color: #2d6cb1;
  --mdc-checkbox-unselected-pressed-state-layer-color: #2d6cb1;
}

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

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

html {
  --mdc-text-button-label-text-color: #3e5363;
  --mdc-text-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mat-text-button-state-layer-color: #2d6cb1;
  --mat-text-button-disabled-state-layer-color: #2d6cb1;
  --mat-text-button-ripple-color: rgba(45, 108, 177, 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: #3e5363;
  --mdc-filled-button-disabled-container-color: rgba(0, 0, 0, 0.12);
  --mdc-filled-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mat-filled-button-state-layer-color: #2d6cb1;
  --mat-filled-button-disabled-state-layer-color: #2d6cb1;
  --mat-filled-button-ripple-color: rgba(45, 108, 177, 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: #3e5363;
  --mdc-protected-button-disabled-container-color: rgba(0, 0, 0, 0.12);
  --mdc-protected-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-container-shadow-color: #000;
  --mat-protected-button-state-layer-color: #2d6cb1;
  --mat-protected-button-disabled-state-layer-color: #2d6cb1;
  --mat-protected-button-ripple-color: rgba(45, 108, 177, 0.1);
  --mat-protected-button-hover-state-layer-opacity: 0.04;
  --mat-protected-button-focus-state-layer-opacity: 0.12;
  --mat-protected-button-pressed-state-layer-opacity: 0.12;
  --mdc-outlined-button-disabled-outline-color: rgba(0, 0, 0, 0.12);
  --mdc-outlined-button-disabled-label-text-color: rgba(0, 0, 0, 0.38);
  --mdc-outlined-button-label-text-color: #3e5363;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
  --mat-outlined-button-state-layer-color: #2d6cb1;
  --mat-outlined-button-disabled-state-layer-color: #2d6cb1;
  --mat-outlined-button-ripple-color: rgba(45, 108, 177, 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: #2d6cb1;
  --mat-text-button-state-layer-color: #2d6cb1;
  --mat-text-button-ripple-color: rgba(45, 108, 177, 0.1);
}
.mat-mdc-button.mat-accent {
  --mdc-text-button-label-text-color: #1b7a36;
  --mat-text-button-state-layer-color: #1b7a36;
  --mat-text-button-ripple-color: rgba(27, 122, 54, 0.1);
}
.mat-mdc-button.mat-warn {
  --mdc-text-button-label-text-color: #b94137;
  --mat-text-button-state-layer-color: #b94137;
  --mat-text-button-ripple-color: rgba(185, 65, 55, 0.1);
}

.mat-mdc-unelevated-button.mat-primary {
  --mdc-filled-button-container-color: #2d6cb1;
  --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: #1b7a36;
  --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: #b94137;
  --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: #2d6cb1;
  --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: #1b7a36;
  --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: #b94137;
  --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: #2d6cb1;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
  --mat-outlined-button-state-layer-color: #2d6cb1;
  --mat-outlined-button-ripple-color: rgba(45, 108, 177, 0.1);
}
.mat-mdc-outlined-button.mat-accent {
  --mdc-outlined-button-label-text-color: #1b7a36;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
  --mat-outlined-button-state-layer-color: #1b7a36;
  --mat-outlined-button-ripple-color: rgba(27, 122, 54, 0.1);
}
.mat-mdc-outlined-button.mat-warn {
  --mdc-outlined-button-label-text-color: #b94137;
  --mdc-outlined-button-outline-color: rgba(0, 0, 0, 0.12);
  --mat-outlined-button-state-layer-color: #b94137;
  --mat-outlined-button-ripple-color: rgba(185, 65, 55, 0.1);
}

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

html {
  --mdc-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: #2d6cb1;
  --mat-icon-button-disabled-state-layer-color: #2d6cb1;
  --mat-icon-button-ripple-color: rgba(45, 108, 177, 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: #2d6cb1;
  --mat-icon-button-state-layer-color: #2d6cb1;
  --mat-icon-button-ripple-color: rgba(45, 108, 177, 0.1);
}
html .mat-mdc-icon-button.mat-accent {
  --mdc-icon-button-icon-color: #1b7a36;
  --mat-icon-button-state-layer-color: #1b7a36;
  --mat-icon-button-ripple-color: rgba(27, 122, 54, 0.1);
}
html .mat-mdc-icon-button.mat-warn {
  --mdc-icon-button-icon-color: #b94137;
  --mat-icon-button-state-layer-color: #b94137;
  --mat-icon-button-ripple-color: rgba(185, 65, 55, 0.1);
}

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

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

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

html {
  --mdc-fab-container-color: white;
  --mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-fab-container-shadow-color: #000;
  --mat-fab-foreground-color: #2d6cb1;
  --mat-fab-state-layer-color: #2d6cb1;
  --mat-fab-disabled-state-layer-color: #2d6cb1;
  --mat-fab-ripple-color: rgba(45, 108, 177, 0.1);
  --mat-fab-hover-state-layer-opacity: 0.04;
  --mat-fab-focus-state-layer-opacity: 0.12;
  --mat-fab-pressed-state-layer-opacity: 0.12;
  --mat-fab-disabled-state-container-color: rgba(0, 0, 0, 0.12);
  --mat-fab-disabled-state-foreground-color: rgba(0, 0, 0, 0.38);
  --mdc-fab-small-container-color: white;
  --mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-container-shadow-color: #000;
  --mat-fab-small-foreground-color: #2d6cb1;
  --mat-fab-small-state-layer-color: #2d6cb1;
  --mat-fab-small-disabled-state-layer-color: #2d6cb1;
  --mat-fab-small-ripple-color: rgba(45, 108, 177, 0.1);
  --mat-fab-small-hover-state-layer-opacity: 0.04;
  --mat-fab-small-focus-state-layer-opacity: 0.12;
  --mat-fab-small-pressed-state-layer-opacity: 0.12;
  --mat-fab-small-disabled-state-container-color: rgba(0, 0, 0, 0.12);
  --mat-fab-small-disabled-state-foreground-color: rgba(0, 0, 0, 0.38);
  --mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-container-shadow-color: #000;
}
html .mat-mdc-fab.mat-primary {
  --mdc-fab-container-color: #2d6cb1;
  --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: #1b7a36;
  --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: #b94137;
  --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: #2d6cb1;
  --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: #1b7a36;
  --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: #b94137;
  --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-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: #1b7a36;
}

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

html {
  --mat-table-background-color: white;
  --mat-table-header-headline-color: #3e5363;
  --mat-table-row-item-label-text-color: #3e5363;
  --mat-table-row-item-outline-color: rgba(0, 0, 0, 0.12);
}

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

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

html {
  --mdc-circular-progress-active-indicator-color: #2d6cb1;
}
html .mat-accent {
  --mdc-circular-progress-active-indicator-color: #1b7a36;
}
html .mat-warn {
  --mdc-circular-progress-active-indicator-color: #b94137;
}

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: #2d6cb1;
  --mat-badge-text-color: white;
  --mat-badge-disabled-state-background-color: #b2b5b7;
  --mat-badge-disabled-state-text-color: rgba(0, 0, 0, 0.38);
}

.mat-badge-accent {
  --mat-badge-background-color: #1b7a36;
  --mat-badge-text-color: white;
}

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

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

html {
  --mat-bottom-sheet-container-text-color: #3e5363;
  --mat-bottom-sheet-container-background-color: white;
}

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

html {
  --mat-legacy-button-toggle-text-color: rgba(0, 0, 0, 0.38);
  --mat-legacy-button-toggle-state-layer-color: rgba(0, 0, 0, 0.12);
  --mat-legacy-button-toggle-selected-state-text-color: rgba(0, 0, 0, 0.54);
  --mat-legacy-button-toggle-selected-state-background-color: #e0e0e0;
  --mat-legacy-button-toggle-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --mat-legacy-button-toggle-disabled-state-background-color: #eeeeee;
  --mat-legacy-button-toggle-disabled-selected-state-background-color: #bdbdbd;
  --mat-standard-button-toggle-text-color: #3e5363;
  --mat-standard-button-toggle-background-color: white;
  --mat-standard-button-toggle-state-layer-color: black;
  --mat-standard-button-toggle-selected-state-background-color: #e0e0e0;
  --mat-standard-button-toggle-selected-state-text-color: #3e5363;
  --mat-standard-button-toggle-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --mat-standard-button-toggle-disabled-state-background-color: white;
  --mat-standard-button-toggle-disabled-selected-state-text-color: #3e5363;
  --mat-standard-button-toggle-disabled-selected-state-background-color: #bdbdbd;
  --mat-standard-button-toggle-divider-color: #e0e0e0;
}

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

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: #2d6cb1;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(45, 108, 177, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(45, 108, 177, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(45, 108, 177, 0.3);
  --mat-datepicker-toggle-active-state-icon-color: #2d6cb1;
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(45, 108, 177, 0.2);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: rgba(249, 171, 0, 0.2);
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #a8dab5;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #46a35e;
  --mat-datepicker-toggle-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-body-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-period-button-text-color: #3e5363;
  --mat-datepicker-calendar-period-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-navigation-button-icon-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-header-divider-color: rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-header-text-color: rgba(0, 0, 0, 0.54);
  --mat-datepicker-calendar-date-today-outline-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(0, 0, 0, 0.18);
  --mat-datepicker-calendar-date-text-color: #3e5363;
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-date-preview-state-outline-color: rgba(0, 0, 0, 0.24);
  --mat-datepicker-range-input-separator-color: #3e5363;
  --mat-datepicker-range-input-disabled-state-separator-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-range-input-disabled-state-text-color: rgba(0, 0, 0, 0.38);
  --mat-datepicker-calendar-container-background-color: white;
  --mat-datepicker-calendar-container-text-color: #3e5363;
}

.mat-datepicker-content.mat-accent {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #1b7a36;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(27, 122, 54, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(27, 122, 54, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(27, 122, 54, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(27, 122, 54, 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: #b94137;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(185, 65, 55, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(185, 65, 55, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(185, 65, 55, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(185, 65, 55, 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: #1b7a36;
}
.mat-datepicker-toggle-active.mat-warn {
  --mat-datepicker-toggle-active-state-icon-color: #b94137;
}

.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-divider-width: 1px;
}

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

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: #3e5363;
  --mat-expansion-actions-divider-color: rgba(0, 0, 0, 0.12);
  --mat-expansion-header-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-expansion-header-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-expansion-header-disabled-state-text-color: rgba(0, 0, 0, 0.26);
  --mat-expansion-header-text-color: #3e5363;
  --mat-expansion-header-description-color: rgba(0, 0, 0, 0.54);
  --mat-expansion-header-indicator-color: rgba(0, 0, 0, 0.54);
}

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

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

.mat-icon.mat-primary {
  --mat-icon-color: #2d6cb1;
}
.mat-icon.mat-accent {
  --mat-icon-color: #1b7a36;
}
.mat-icon.mat-warn {
  --mat-icon-color: #b94137;
}

html {
  --mat-sidenav-container-shape: 0;
  --mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-sidenav-container-width: auto;
}

html {
  --mat-sidenav-container-divider-color: rgba(0, 0, 0, 0.12);
  --mat-sidenav-container-background-color: white;
  --mat-sidenav-container-text-color: #3e5363;
  --mat-sidenav-content-background-color: #f1f4f7;
  --mat-sidenav-content-text-color: #3e5363;
  --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: #2d6cb1;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #2d6cb1;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #2d6cb1;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
  --mat-stepper-container-color: white;
  --mat-stepper-line-color: rgba(0, 0, 0, 0.12);
  --mat-stepper-header-hover-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-stepper-header-focus-state-layer-color: rgba(0, 0, 0, 0.04);
  --mat-stepper-header-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-optional-label-text-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-selected-state-label-text-color: #3e5363;
  --mat-stepper-header-error-state-label-text-color: #b94137;
  --mat-stepper-header-icon-background-color: rgba(0, 0, 0, 0.54);
  --mat-stepper-header-error-state-icon-foreground-color: #b94137;
  --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: #1b7a36;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #1b7a36;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #1b7a36;
  --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: #b94137;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #b94137;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #b94137;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}

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

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

html {
  --mat-toolbar-container-background-color: #f1f4f7;
  --mat-toolbar-container-text-color: #3e5363;
}

.mat-toolbar.mat-primary {
  --mat-toolbar-container-background-color: #2d6cb1;
  --mat-toolbar-container-text-color: white;
}
.mat-toolbar.mat-accent {
  --mat-toolbar-container-background-color: #1b7a36;
  --mat-toolbar-container-text-color: white;
}
.mat-toolbar.mat-warn {
  --mat-toolbar-container-background-color: #b94137;
  --mat-toolbar-container-text-color: white;
}

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

html {
  --mat-tree-container-background-color: white;
  --mat-tree-node-text-color: #3e5363;
}

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

[theme-mode=dark] {
  --mat-ripple-color: rgba(255, 255, 255, 0.1);
  --mat-option-selected-state-label-text-color: #2d6cb1;
  --mat-option-label-text-color: #c2c2c2;
  --mat-option-hover-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-focus-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-selected-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-optgroup-label-text-color: #c2c2c2;
  --mat-full-pseudo-checkbox-selected-icon-color: #1b7a36;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #1f1f1f;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.7);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #1f1f1f;
  --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: #1b7a36;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;
  --mat-app-background-color: #1f1f1f;
  --mat-app-text-color: #c2c2c2;
  --mdc-elevated-card-container-shape: 4px;
  --mdc-outlined-card-container-shape: 4px;
  --mdc-outlined-card-outline-width: 1px;
  --mdc-elevated-card-container-color: #181818;
  --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: #181818;
  --mdc-outlined-card-outline-color: rgba(255, 255, 255, 0.12);
  --mdc-outlined-card-container-elevation: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-card-subtitle-text-color: rgba(255, 255, 255, 0.7);
  --mdc-linear-progress-active-indicator-height: 4px;
  --mdc-linear-progress-track-height: 4px;
  --mdc-linear-progress-track-shape: 0;
  --mdc-plain-tooltip-container-shape: 4px;
  --mdc-plain-tooltip-supporting-text-line-height: 16px;
  --mdc-plain-tooltip-container-color: #616161;
  --mdc-plain-tooltip-supporting-text-color: #fff;
  --mdc-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: #2d6cb1;
  --mdc-filled-text-field-focus-active-indicator-color: #2d6cb1;
  --mdc-filled-text-field-focus-label-text-color: rgba(45, 108, 177, 0.87);
  --mdc-filled-text-field-container-color: #212121;
  --mdc-filled-text-field-disabled-container-color: #1d1d1d;
  --mdc-filled-text-field-label-text-color: rgba(194, 194, 194, 0.6);
  --mdc-filled-text-field-hover-label-text-color: rgba(194, 194, 194, 0.6);
  --mdc-filled-text-field-disabled-label-text-color: rgba(255, 255, 255, 0.38);
  --mdc-filled-text-field-input-text-color: rgba(194, 194, 194, 0.87);
  --mdc-filled-text-field-disabled-input-text-color: rgba(255, 255, 255, 0.38);
  --mdc-filled-text-field-input-text-placeholder-color: rgba(194, 194, 194, 0.6);
  --mdc-filled-text-field-error-hover-label-text-color: #b94137;
  --mdc-filled-text-field-error-focus-label-text-color: #b94137;
  --mdc-filled-text-field-error-label-text-color: #b94137;
  --mdc-filled-text-field-error-caret-color: #b94137;
  --mdc-filled-text-field-active-indicator-color: rgba(255, 255, 255, 0.42);
  --mdc-filled-text-field-disabled-active-indicator-color: rgba(255, 255, 255, 0.06);
  --mdc-filled-text-field-hover-active-indicator-color: rgba(255, 255, 255, 0.87);
  --mdc-filled-text-field-error-active-indicator-color: #b94137;
  --mdc-filled-text-field-error-focus-active-indicator-color: #b94137;
  --mdc-filled-text-field-error-hover-active-indicator-color: #b94137;
  --mdc-outlined-text-field-caret-color: #2d6cb1;
  --mdc-outlined-text-field-focus-outline-color: #2d6cb1;
  --mdc-outlined-text-field-focus-label-text-color: rgba(45, 108, 177, 0.87);
  --mdc-outlined-text-field-label-text-color: rgba(194, 194, 194, 0.6);
  --mdc-outlined-text-field-hover-label-text-color: rgba(194, 194, 194, 0.6);
  --mdc-outlined-text-field-disabled-label-text-color: rgba(255, 255, 255, 0.38);
  --mdc-outlined-text-field-input-text-color: rgba(194, 194, 194, 0.87);
  --mdc-outlined-text-field-disabled-input-text-color: rgba(255, 255, 255, 0.38);
  --mdc-outlined-text-field-input-text-placeholder-color: rgba(194, 194, 194, 0.6);
  --mdc-outlined-text-field-error-caret-color: #b94137;
  --mdc-outlined-text-field-error-focus-label-text-color: #b94137;
  --mdc-outlined-text-field-error-label-text-color: #b94137;
  --mdc-outlined-text-field-error-hover-label-text-color: #b94137;
  --mdc-outlined-text-field-outline-color: rgba(255, 255, 255, 0.38);
  --mdc-outlined-text-field-disabled-outline-color: rgba(255, 255, 255, 0.06);
  --mdc-outlined-text-field-hover-outline-color: rgba(255, 255, 255, 0.87);
  --mdc-outlined-text-field-error-focus-outline-color: #b94137;
  --mdc-outlined-text-field-error-hover-outline-color: #b94137;
  --mdc-outlined-text-field-error-outline-color: #b94137;
  --mat-form-field-focus-select-arrow-color: rgba(45, 108, 177, 0.87);
  --mat-form-field-disabled-input-text-placeholder-color: rgba(255, 255, 255, 0.38);
  --mat-form-field-state-layer-color: rgba(255, 255, 255, 0.87);
  --mat-form-field-error-text-color: #b94137;
  --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(255, 255, 255, 0.54);
  --mat-form-field-disabled-select-arrow-color: rgba(255, 255, 255, 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: #181818;
  --mat-select-enabled-trigger-text-color: rgba(194, 194, 194, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(255, 255, 255, 0.38);
  --mat-select-placeholder-text-color: rgba(194, 194, 194, 0.6);
  --mat-select-enabled-arrow-color: rgba(255, 255, 255, 0.54);
  --mat-select-disabled-arrow-color: rgba(194, 194, 194, 0.38);
  --mat-select-focused-arrow-color: rgba(45, 108, 177, 0.87);
  --mat-select-invalid-arrow-color: rgba(185, 65, 55, 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: #181818;
  --mdc-dialog-container-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mdc-dialog-container-shadow-color: #000;
  --mdc-dialog-container-shape: 4px;
  --mat-dialog-container-max-width: 80vw;
  --mat-dialog-container-small-max-width: 80vw;
  --mat-dialog-container-min-width: 0;
  --mat-dialog-actions-alignment: start;
  --mat-dialog-actions-padding: 8px;
  --mat-dialog-content-padding: 20px 24px;
  --mat-dialog-with-actions-content-padding: 20px 24px;
  --mat-dialog-headline-padding: 0 24px 9px;
  --mdc-dialog-container-color: #181818;
  --mdc-dialog-subhead-color: rgba(194, 194, 194, 0.87);
  --mdc-dialog-supporting-text-color: rgba(194, 194, 194, 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;
  --mat-switch-disabled-selected-handle-opacity: 0.38;
  --mat-switch-disabled-unselected-handle-opacity: 0.38;
  --mat-switch-unselected-handle-size: 20px;
  --mat-switch-selected-handle-size: 20px;
  --mat-switch-pressed-handle-size: 20px;
  --mat-switch-with-icon-handle-size: 20px;
  --mat-switch-selected-handle-horizontal-margin: 0;
  --mat-switch-selected-with-icon-handle-horizontal-margin: 0;
  --mat-switch-selected-pressed-handle-horizontal-margin: 0;
  --mat-switch-unselected-handle-horizontal-margin: 0;
  --mat-switch-unselected-with-icon-handle-horizontal-margin: 0;
  --mat-switch-unselected-pressed-handle-horizontal-margin: 0;
  --mat-switch-visible-track-opacity: 1;
  --mat-switch-hidden-track-opacity: 1;
  --mat-switch-visible-track-transition: transform 75ms 0ms cubic-bezier(0, 0, 0.2, 1);
  --mat-switch-hidden-track-transition: transform 75ms 0ms cubic-bezier(0.4, 0, 0.6, 1);
  --mat-switch-track-outline-width: 1px;
  --mat-switch-track-outline-color: transparent;
  --mat-switch-selected-track-outline-width: 1px;
  --mat-switch-disabled-unselected-track-outline-width: 1px;
  --mat-switch-disabled-unselected-track-outline-color: transparent;
  --mdc-switch-selected-focus-state-layer-color: #6c98c8;
  --mdc-switch-selected-handle-color: #6c98c8;
  --mdc-switch-selected-hover-state-layer-color: #6c98c8;
  --mdc-switch-selected-pressed-state-layer-color: #6c98c8;
  --mdc-switch-selected-focus-handle-color: #96b6d8;
  --mdc-switch-selected-hover-handle-color: #96b6d8;
  --mdc-switch-selected-pressed-handle-color: #96b6d8;
  --mdc-switch-selected-focus-track-color: #2864aa;
  --mdc-switch-selected-hover-track-color: #2864aa;
  --mdc-switch-selected-pressed-track-color: #2864aa;
  --mdc-switch-selected-track-color: #2864aa;
  --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: var(--mdc-theme-surface, #fff);
  --mdc-switch-handle-elevation-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-handle-shadow-color: black;
  --mdc-switch-disabled-handle-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-switch-selected-icon-color: #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-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mdc-radio-disabled-selected-icon-opacity: 0.38;
  --mdc-radio-disabled-unselected-icon-opacity: 0.38;
  --mdc-radio-state-layer-size: 40px;
  --mat-slider-value-indicator-width: auto;
  --mat-slider-value-indicator-height: 32px;
  --mat-slider-value-indicator-caret-display: block;
  --mat-slider-value-indicator-border-radius: 4px;
  --mat-slider-value-indicator-padding: 0 12px;
  --mat-slider-value-indicator-text-transform: none;
  --mat-slider-value-indicator-container-transform: translateX(-50%);
  --mdc-slider-active-track-height: 6px;
  --mdc-slider-active-track-shape: 9999px;
  --mdc-slider-handle-height: 20px;
  --mdc-slider-handle-shape: 50%;
  --mdc-slider-handle-width: 20px;
  --mdc-slider-inactive-track-height: 4px;
  --mdc-slider-inactive-track-shape: 9999px;
  --mdc-slider-with-overlap-handle-outline-width: 1px;
  --mdc-slider-with-tick-marks-active-container-opacity: 0.6;
  --mdc-slider-with-tick-marks-container-shape: 50%;
  --mdc-slider-with-tick-marks-container-size: 2px;
  --mdc-slider-with-tick-marks-inactive-container-opacity: 0.6;
  --mdc-slider-handle-color: #2d6cb1;
  --mdc-slider-focus-handle-color: #2d6cb1;
  --mdc-slider-hover-handle-color: #2d6cb1;
  --mdc-slider-active-track-color: #2d6cb1;
  --mdc-slider-inactive-track-color: #2d6cb1;
  --mdc-slider-with-tick-marks-inactive-container-color: #2d6cb1;
  --mdc-slider-with-tick-marks-active-container-color: white;
  --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;
  --mdc-slider-handle-elevation: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-slider-ripple-color: #2d6cb1;
  --mat-slider-hover-state-layer-color: rgba(45, 108, 177, 0.05);
  --mat-slider-focus-state-layer-color: rgba(45, 108, 177, 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-item-label-text-color: #c2c2c2;
  --mat-menu-item-icon-color: #c2c2c2;
  --mat-menu-item-hover-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-menu-item-focus-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-menu-container-color: #181818;
  --mat-menu-divider-color: rgba(255, 255, 255, 0.12);
  --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: #c2c2c2;
  --mdc-list-list-item-supporting-text-color: rgba(255, 255, 255, 0.7);
  --mdc-list-list-item-leading-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-trailing-supporting-text-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-trailing-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-selected-trailing-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-disabled-label-text-color: white;
  --mdc-list-list-item-disabled-leading-icon-color: white;
  --mdc-list-list-item-disabled-trailing-icon-color: white;
  --mdc-list-list-item-hover-label-text-color: #c2c2c2;
  --mdc-list-list-item-hover-leading-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-hover-trailing-icon-color: rgba(255, 255, 255, 0.5);
  --mdc-list-list-item-focus-label-text-color: #c2c2c2;
  --mdc-list-list-item-hover-state-layer-color: white;
  --mdc-list-list-item-hover-state-layer-opacity: 0.08;
  --mdc-list-list-item-focus-state-layer-color: white;
  --mdc-list-list-item-focus-state-layer-opacity: 0.24;
  --mat-paginator-container-text-color: rgba(255, 255, 255, 0.87);
  --mat-paginator-container-background-color: #181818;
  --mat-paginator-enabled-icon-color: rgba(255, 255, 255, 0.54);
  --mat-paginator-disabled-icon-color: rgba(255, 255, 255, 0.12);
  --mdc-tab-indicator-active-indicator-height: 2px;
  --mdc-tab-indicator-active-indicator-shape: 0;
  --mdc-secondary-navigation-tab-container-height: 48px;
  --mat-tab-header-divider-color: transparent;
  --mat-tab-header-divider-height: 0;
  --mdc-checkbox-disabled-selected-checkmark-color: #fff;
  --mdc-checkbox-selected-focus-state-layer-opacity: 0.16;
  --mdc-checkbox-selected-hover-state-layer-opacity: 0.04;
  --mdc-checkbox-selected-pressed-state-layer-opacity: 0.16;
  --mdc-checkbox-unselected-focus-state-layer-opacity: 0.16;
  --mdc-checkbox-unselected-hover-state-layer-opacity: 0.04;
  --mdc-checkbox-unselected-pressed-state-layer-opacity: 0.16;
  --mdc-checkbox-disabled-selected-icon-color: rgba(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: #1b7a36;
  --mdc-checkbox-selected-hover-icon-color: #1b7a36;
  --mdc-checkbox-selected-icon-color: #1b7a36;
  --mdc-checkbox-selected-pressed-icon-color: #1b7a36;
  --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-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #1b7a36;
  --mdc-checkbox-selected-hover-state-layer-color: #1b7a36;
  --mdc-checkbox-selected-pressed-state-layer-color: #1b7a36;
  --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);
  --mdc-text-button-container-shape: 4px;
  --mdc-text-button-keep-touch-target: false;
  --mdc-filled-button-container-shape: 4px;
  --mdc-filled-button-keep-touch-target: false;
  --mdc-protected-button-container-shape: 4px;
  --mdc-protected-button-keep-touch-target: false;
  --mdc-outlined-button-keep-touch-target: false;
  --mdc-outlined-button-outline-width: 1px;
  --mdc-outlined-button-container-shape: 4px;
  --mat-text-button-horizontal-padding: 8px;
  --mat-text-button-with-icon-horizontal-padding: 8px;
  --mat-text-button-icon-spacing: 8px;
  --mat-text-button-icon-offset: 0;
  --mat-filled-button-horizontal-padding: 16px;
  --mat-filled-button-icon-spacing: 8px;
  --mat-filled-button-icon-offset: -4px;
  --mat-protected-button-horizontal-padding: 16px;
  --mat-protected-button-icon-spacing: 8px;
  --mat-protected-button-icon-offset: -4px;
  --mat-outlined-button-horizontal-padding: 15px;
  --mat-outlined-button-icon-spacing: 8px;
  --mat-outlined-button-icon-offset: -4px;
  --mdc-text-button-label-text-color: #c2c2c2;
  --mdc-text-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mat-text-button-state-layer-color: white;
  --mat-text-button-disabled-state-layer-color: white;
  --mat-text-button-ripple-color: rgba(255, 255, 255, 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: #181818;
  --mdc-filled-button-label-text-color: #c2c2c2;
  --mdc-filled-button-disabled-container-color: rgba(255, 255, 255, 0.12);
  --mdc-filled-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mat-filled-button-state-layer-color: white;
  --mat-filled-button-disabled-state-layer-color: white;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 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: #181818;
  --mdc-protected-button-label-text-color: #c2c2c2;
  --mdc-protected-button-disabled-container-color: rgba(255, 255, 255, 0.12);
  --mdc-protected-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mdc-protected-button-container-elevation-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-disabled-container-elevation-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-focus-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-hover-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-pressed-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-container-shadow-color: #000;
  --mat-protected-button-state-layer-color: white;
  --mat-protected-button-disabled-state-layer-color: white;
  --mat-protected-button-ripple-color: rgba(255, 255, 255, 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: rgba(255, 255, 255, 0.12);
  --mdc-outlined-button-disabled-label-text-color: rgba(255, 255, 255, 0.5);
  --mdc-outlined-button-label-text-color: #c2c2c2;
  --mdc-outlined-button-outline-color: rgba(255, 255, 255, 0.12);
  --mat-outlined-button-state-layer-color: white;
  --mat-outlined-button-disabled-state-layer-color: white;
  --mat-outlined-button-ripple-color: rgba(255, 255, 255, 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: white;
  --mat-icon-button-disabled-state-layer-color: white;
  --mat-icon-button-ripple-color: rgba(255, 255, 255, 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-icon-size: 24px;
  --mdc-fab-small-container-shape: 50%;
  --mdc-fab-small-icon-size: 24px;
  --mdc-extended-fab-container-height: 48px;
  --mdc-extended-fab-container-shape: 24px;
  --mdc-fab-container-color: #181818;
  --mdc-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-fab-container-shadow-color: #000;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-disabled-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 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-container-color: rgba(255, 255, 255, 0.12);
  --mat-fab-disabled-state-foreground-color: rgba(255, 255, 255, 0.5);
  --mdc-fab-small-container-color: #181818;
  --mdc-fab-small-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-container-shadow-color: #000;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-disabled-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 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-container-color: rgba(255, 255, 255, 0.12);
  --mat-fab-small-disabled-state-foreground-color: rgba(255, 255, 255, 0.5);
  --mdc-extended-fab-container-elevation-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-focus-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-hover-container-elevation-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-pressed-container-elevation-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-container-shadow-color: #000;
  --mdc-snackbar-container-shape: 4px;
  --mdc-snackbar-container-color: #d1d1d1;
  --mdc-snackbar-supporting-text-color: rgba(24, 24, 24, 0.87);
  --mat-snack-bar-button-color: rgba(0, 0, 0, 0.87);
  --mat-table-row-item-outline-width: 1px;
  --mat-table-background-color: #181818;
  --mat-table-header-headline-color: #c2c2c2;
  --mat-table-row-item-label-text-color: #c2c2c2;
  --mat-table-row-item-outline-color: rgba(255, 255, 255, 0.12);
  --mdc-circular-progress-active-indicator-width: 4px;
  --mdc-circular-progress-size: 48px;
  --mdc-circular-progress-active-indicator-color: #2d6cb1;
  --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: #2d6cb1;
  --mat-badge-text-color: white;
  --mat-badge-disabled-state-background-color: #626262;
  --mat-badge-disabled-state-text-color: rgba(255, 255, 255, 0.5);
  --mat-bottom-sheet-container-shape: 4px;
  --mat-bottom-sheet-container-text-color: #c2c2c2;
  --mat-bottom-sheet-container-background-color: #181818;
  --mat-legacy-button-toggle-height: 36px;
  --mat-legacy-button-toggle-shape: 2px;
  --mat-legacy-button-toggle-focus-state-layer-opacity: 1;
  --mat-standard-button-toggle-shape: 4px;
  --mat-standard-button-toggle-hover-state-layer-opacity: 0.04;
  --mat-standard-button-toggle-focus-state-layer-opacity: 0.12;
  --mat-legacy-button-toggle-text-color: rgba(255, 255, 255, 0.5);
  --mat-legacy-button-toggle-state-layer-color: rgba(255, 255, 255, 0.12);
  --mat-legacy-button-toggle-selected-state-text-color: rgba(255, 255, 255, 0.7);
  --mat-legacy-button-toggle-selected-state-background-color: #212121;
  --mat-legacy-button-toggle-disabled-state-text-color: rgba(255, 255, 255, 0.3);
  --mat-legacy-button-toggle-disabled-state-background-color: black;
  --mat-legacy-button-toggle-disabled-selected-state-background-color: #181818;
  --mat-standard-button-toggle-text-color: #c2c2c2;
  --mat-standard-button-toggle-background-color: #181818;
  --mat-standard-button-toggle-state-layer-color: white;
  --mat-standard-button-toggle-selected-state-background-color: #212121;
  --mat-standard-button-toggle-selected-state-text-color: #c2c2c2;
  --mat-standard-button-toggle-disabled-state-text-color: rgba(255, 255, 255, 0.3);
  --mat-standard-button-toggle-disabled-state-background-color: #181818;
  --mat-standard-button-toggle-disabled-selected-state-text-color: #c2c2c2;
  --mat-standard-button-toggle-disabled-selected-state-background-color: #181818;
  --mat-standard-button-toggle-divider-color: #343434;
  --mat-datepicker-calendar-container-shape: 4px;
  --mat-datepicker-calendar-container-touch-shape: 4px;
  --mat-datepicker-calendar-container-elevation-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-container-touch-elevation-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #2d6cb1;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(45, 108, 177, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(45, 108, 177, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(45, 108, 177, 0.3);
  --mat-datepicker-toggle-active-state-icon-color: #2d6cb1;
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(45, 108, 177, 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: white;
  --mat-datepicker-calendar-body-label-text-color: rgba(255, 255, 255, 0.7);
  --mat-datepicker-calendar-period-button-text-color: #c2c2c2;
  --mat-datepicker-calendar-period-button-icon-color: white;
  --mat-datepicker-calendar-navigation-button-icon-color: white;
  --mat-datepicker-calendar-header-divider-color: rgba(255, 255, 255, 0.12);
  --mat-datepicker-calendar-header-text-color: rgba(255, 255, 255, 0.7);
  --mat-datepicker-calendar-date-today-outline-color: rgba(255, 255, 255, 0.5);
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(255, 255, 255, 0.3);
  --mat-datepicker-calendar-date-text-color: #c2c2c2;
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-disabled-state-text-color: rgba(255, 255, 255, 0.5);
  --mat-datepicker-calendar-date-preview-state-outline-color: rgba(255, 255, 255, 0.24);
  --mat-datepicker-range-input-separator-color: #c2c2c2;
  --mat-datepicker-range-input-disabled-state-separator-color: rgba(255, 255, 255, 0.5);
  --mat-datepicker-range-input-disabled-state-text-color: rgba(255, 255, 255, 0.5);
  --mat-datepicker-calendar-container-background-color: #181818;
  --mat-datepicker-calendar-container-text-color: #c2c2c2;
  --mat-divider-width: 1px;
  --mat-divider-color: rgba(255, 255, 255, 0.12);
  --mat-expansion-container-shape: 4px;
  --mat-expansion-legacy-header-indicator-display: inline-block;
  --mat-expansion-header-indicator-display: none;
  --mat-expansion-container-background-color: #181818;
  --mat-expansion-container-text-color: #c2c2c2;
  --mat-expansion-actions-divider-color: rgba(255, 255, 255, 0.12);
  --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: rgba(255, 255, 255, 0.3);
  --mat-expansion-header-text-color: #c2c2c2;
  --mat-expansion-header-description-color: rgba(255, 255, 255, 0.7);
  --mat-expansion-header-indicator-color: rgba(255, 255, 255, 0.7);
  --mat-icon-color: inherit;
  --mat-sidenav-container-shape: 0;
  --mat-sidenav-container-elevation-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-sidenav-container-width: auto;
  --mat-sidenav-container-divider-color: rgba(255, 255, 255, 0.12);
  --mat-sidenav-container-background-color: #181818;
  --mat-sidenav-container-text-color: #c2c2c2;
  --mat-sidenav-content-background-color: #1f1f1f;
  --mat-sidenav-content-text-color: #c2c2c2;
  --mat-sidenav-scrim-color: rgba(231, 231, 231, 0.6);
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #2d6cb1;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #2d6cb1;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #2d6cb1;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
  --mat-stepper-container-color: #181818;
  --mat-stepper-line-color: rgba(255, 255, 255, 0.12);
  --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: rgba(255, 255, 255, 0.7);
  --mat-stepper-header-optional-label-text-color: rgba(255, 255, 255, 0.7);
  --mat-stepper-header-selected-state-label-text-color: #c2c2c2;
  --mat-stepper-header-error-state-label-text-color: #b94137;
  --mat-stepper-header-icon-background-color: rgba(255, 255, 255, 0.7);
  --mat-stepper-header-error-state-icon-foreground-color: #b94137;
  --mat-stepper-header-error-state-icon-background-color: transparent;
  --mat-sort-arrow-color: #bababa;
  --mat-toolbar-container-background-color: #1f1f1f;
  --mat-toolbar-container-text-color: #c2c2c2;
  --mat-tree-container-background-color: #181818;
  --mat-tree-node-text-color: #c2c2c2;
}
[theme-mode=dark] .mat-accent {
  --mat-option-selected-state-label-text-color: #1b7a36;
  --mat-option-label-text-color: #c2c2c2;
  --mat-option-hover-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-focus-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-selected-state-layer-color: rgba(255, 255, 255, 0.08);
}
[theme-mode=dark] .mat-warn {
  --mat-option-selected-state-label-text-color: #b94137;
  --mat-option-label-text-color: #c2c2c2;
  --mat-option-hover-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-focus-state-layer-color: rgba(255, 255, 255, 0.08);
  --mat-option-selected-state-layer-color: rgba(255, 255, 255, 0.08);
}
[theme-mode=dark] .mat-primary {
  --mat-full-pseudo-checkbox-selected-icon-color: #2d6cb1;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #1f1f1f;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.7);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #1f1f1f;
  --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: #2d6cb1;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;
}
[theme-mode=dark] .mat-accent {
  --mat-full-pseudo-checkbox-selected-icon-color: #1b7a36;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #1f1f1f;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.7);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #1f1f1f;
  --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: #1b7a36;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;
}
[theme-mode=dark] .mat-warn {
  --mat-full-pseudo-checkbox-selected-icon-color: #b94137;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #1f1f1f;
  --mat-full-pseudo-checkbox-unselected-icon-color: rgba(255, 255, 255, 0.7);
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #1f1f1f;
  --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: #b94137;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: #686868;
}
[theme-mode=dark] .mat-elevation-z0, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z0 {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z1, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z1 {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z2, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z2 {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z3, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z3 {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z4, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z4 {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z5, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z5 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z6, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z6 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z7, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z7 {
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z8, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z8 {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z9, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z9 {
  box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z10, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z10 {
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z11, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z11 {
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z12, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z12 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 12px 17px 2px rgba(0, 0, 0, 0.14), 0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z13, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z13 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z14, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z14 {
  box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z15, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z15 {
  box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z16, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z16 {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z17, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z17 {
  box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z18, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z18 {
  box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z19, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z19 {
  box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z20, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z20 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z21, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z21 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z22, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z22 {
  box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z23, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z23 {
  box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
}
[theme-mode=dark] .mat-elevation-z24, [theme-mode=dark] .mat-mdc-elevation-specific.mat-elevation-z24 {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
.mat-theme-loaded-marker {
  display: none;
}

[theme-mode=dark] .mat-mdc-progress-bar {
  --mdc-linear-progress-active-indicator-color: #2d6cb1;
  --mdc-linear-progress-track-color: rgba(45, 108, 177, 0.25);
}
[theme-mode=dark] .mat-mdc-progress-bar.mat-accent {
  --mdc-linear-progress-active-indicator-color: #1b7a36;
  --mdc-linear-progress-track-color: rgba(27, 122, 54, 0.25);
}
[theme-mode=dark] .mat-mdc-progress-bar.mat-warn {
  --mdc-linear-progress-active-indicator-color: #b94137;
  --mdc-linear-progress-track-color: rgba(185, 65, 55, 0.25);
}
[theme-mode=dark] .mat-mdc-form-field.mat-accent {
  --mdc-filled-text-field-caret-color: #1b7a36;
  --mdc-filled-text-field-focus-active-indicator-color: #1b7a36;
  --mdc-filled-text-field-focus-label-text-color: rgba(27, 122, 54, 0.87);
  --mdc-outlined-text-field-caret-color: #1b7a36;
  --mdc-outlined-text-field-focus-outline-color: #1b7a36;
  --mdc-outlined-text-field-focus-label-text-color: rgba(27, 122, 54, 0.87);
  --mat-form-field-focus-select-arrow-color: rgba(27, 122, 54, 0.87);
}
[theme-mode=dark] .mat-mdc-form-field.mat-warn {
  --mdc-filled-text-field-caret-color: #b94137;
  --mdc-filled-text-field-focus-active-indicator-color: #b94137;
  --mdc-filled-text-field-focus-label-text-color: rgba(185, 65, 55, 0.87);
  --mdc-outlined-text-field-caret-color: #b94137;
  --mdc-outlined-text-field-focus-outline-color: #b94137;
  --mdc-outlined-text-field-focus-label-text-color: rgba(185, 65, 55, 0.87);
  --mat-form-field-focus-select-arrow-color: rgba(185, 65, 55, 0.87);
}
[theme-mode=dark] .mat-mdc-form-field.mat-accent {
  --mat-select-panel-background-color: #181818;
  --mat-select-enabled-trigger-text-color: rgba(194, 194, 194, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(255, 255, 255, 0.38);
  --mat-select-placeholder-text-color: rgba(194, 194, 194, 0.6);
  --mat-select-enabled-arrow-color: rgba(255, 255, 255, 0.54);
  --mat-select-disabled-arrow-color: rgba(194, 194, 194, 0.38);
  --mat-select-focused-arrow-color: rgba(27, 122, 54, 0.87);
  --mat-select-invalid-arrow-color: rgba(185, 65, 55, 0.87);
}
[theme-mode=dark] .mat-mdc-form-field.mat-warn {
  --mat-select-panel-background-color: #181818;
  --mat-select-enabled-trigger-text-color: rgba(194, 194, 194, 0.87);
  --mat-select-disabled-trigger-text-color: rgba(255, 255, 255, 0.38);
  --mat-select-placeholder-text-color: rgba(194, 194, 194, 0.6);
  --mat-select-enabled-arrow-color: rgba(255, 255, 255, 0.54);
  --mat-select-disabled-arrow-color: rgba(194, 194, 194, 0.38);
  --mat-select-focused-arrow-color: rgba(185, 65, 55, 0.87);
  --mat-select-invalid-arrow-color: rgba(185, 65, 55, 0.87);
}
[theme-mode=dark] .mat-mdc-standard-chip {
  --mdc-chip-container-shape-family: rounded;
  --mdc-chip-container-shape-radius: 16px 16px 16px 16px;
  --mdc-chip-with-avatar-avatar-shape-family: rounded;
  --mdc-chip-with-avatar-avatar-shape-radius: 14px 14px 14px 14px;
  --mdc-chip-with-avatar-avatar-size: 28px;
  --mdc-chip-with-icon-icon-size: 18px;
  --mdc-chip-outline-width: 0;
  --mdc-chip-outline-color: transparent;
  --mdc-chip-disabled-outline-color: transparent;
  --mdc-chip-focus-outline-color: transparent;
  --mdc-chip-hover-state-layer-opacity: 0.04;
  --mdc-chip-with-avatar-disabled-avatar-opacity: 1;
  --mdc-chip-flat-selected-outline-width: 0;
  --mdc-chip-selected-hover-state-layer-opacity: 0.04;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 1;
  --mdc-chip-with-icon-disabled-icon-opacity: 1;
  --mat-chip-disabled-container-opacity: 0.4;
  --mat-chip-trailing-action-opacity: 0.54;
  --mat-chip-trailing-action-focus-opacity: 1;
  --mat-chip-trailing-action-state-layer-color: transparent;
  --mat-chip-selected-trailing-action-state-layer-color: transparent;
  --mat-chip-trailing-action-hover-state-layer-opacity: 0;
  --mat-chip-trailing-action-focus-state-layer-opacity: 0;
}
[theme-mode=dark] .mat-mdc-standard-chip {
  --mdc-chip-disabled-label-text-color: #fafafa;
  --mdc-chip-elevated-container-color: #343434;
  --mdc-chip-elevated-selected-container-color: #343434;
  --mdc-chip-elevated-disabled-container-color: #343434;
  --mdc-chip-flat-disabled-selected-container-color: #343434;
  --mdc-chip-focus-state-layer-color: white;
  --mdc-chip-hover-state-layer-color: white;
  --mdc-chip-selected-hover-state-layer-color: white;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: white;
  --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;
}
[theme-mode=dark] .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-primary, [theme-mode=dark] .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-primary {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #2d6cb1;
  --mdc-chip-elevated-selected-container-color: #2d6cb1;
  --mdc-chip-elevated-disabled-container-color: #2d6cb1;
  --mdc-chip-flat-disabled-selected-container-color: #2d6cb1;
  --mdc-chip-focus-state-layer-color: white;
  --mdc-chip-hover-state-layer-color: white;
  --mdc-chip-selected-hover-state-layer-color: white;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: white;
  --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;
}
[theme-mode=dark] .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-accent, [theme-mode=dark] .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-accent {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #1b7a36;
  --mdc-chip-elevated-selected-container-color: #1b7a36;
  --mdc-chip-elevated-disabled-container-color: #1b7a36;
  --mdc-chip-flat-disabled-selected-container-color: #1b7a36;
  --mdc-chip-focus-state-layer-color: white;
  --mdc-chip-hover-state-layer-color: white;
  --mdc-chip-selected-hover-state-layer-color: white;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: white;
  --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;
}
[theme-mode=dark] .mat-mdc-standard-chip.mat-mdc-chip-selected.mat-warn, [theme-mode=dark] .mat-mdc-standard-chip.mat-mdc-chip-highlighted.mat-warn {
  --mdc-chip-disabled-label-text-color: white;
  --mdc-chip-elevated-container-color: #b94137;
  --mdc-chip-elevated-selected-container-color: #b94137;
  --mdc-chip-elevated-disabled-container-color: #b94137;
  --mdc-chip-flat-disabled-selected-container-color: #b94137;
  --mdc-chip-focus-state-layer-color: white;
  --mdc-chip-hover-state-layer-color: white;
  --mdc-chip-selected-hover-state-layer-color: white;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: white;
  --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;
}
[theme-mode=dark] .mat-mdc-slide-toggle {
  --mdc-form-field-label-text-color: #c2c2c2;
}
[theme-mode=dark] .mat-mdc-slide-toggle.mat-accent {
  --mdc-switch-selected-focus-state-layer-color: #5fa272;
  --mdc-switch-selected-handle-color: #5fa272;
  --mdc-switch-selected-hover-state-layer-color: #5fa272;
  --mdc-switch-selected-pressed-state-layer-color: #5fa272;
  --mdc-switch-selected-focus-handle-color: #8dbd9b;
  --mdc-switch-selected-hover-handle-color: #8dbd9b;
  --mdc-switch-selected-pressed-handle-color: #8dbd9b;
  --mdc-switch-selected-focus-track-color: #187230;
  --mdc-switch-selected-hover-track-color: #187230;
  --mdc-switch-selected-pressed-track-color: #187230;
  --mdc-switch-selected-track-color: #187230;
}
[theme-mode=dark] .mat-mdc-slide-toggle.mat-warn {
  --mdc-switch-selected-focus-state-layer-color: #ce7a73;
  --mdc-switch-selected-handle-color: #ce7a73;
  --mdc-switch-selected-hover-state-layer-color: #ce7a73;
  --mdc-switch-selected-pressed-state-layer-color: #ce7a73;
  --mdc-switch-selected-focus-handle-color: #dca09b;
  --mdc-switch-selected-hover-handle-color: #dca09b;
  --mdc-switch-selected-pressed-handle-color: #dca09b;
  --mdc-switch-selected-focus-track-color: #b23b31;
  --mdc-switch-selected-hover-track-color: #b23b31;
  --mdc-switch-selected-pressed-track-color: #b23b31;
  --mdc-switch-selected-track-color: #b23b31;
}
[theme-mode=dark] .mat-mdc-radio-button {
  --mdc-form-field-label-text-color: #c2c2c2;
}
[theme-mode=dark] .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-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: #2d6cb1;
  --mdc-radio-selected-hover-icon-color: #2d6cb1;
  --mdc-radio-selected-icon-color: #2d6cb1;
  --mdc-radio-selected-pressed-icon-color: #2d6cb1;
  --mat-radio-ripple-color: white;
  --mat-radio-checked-ripple-color: #2d6cb1;
  --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
}
[theme-mode=dark] .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-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: #1b7a36;
  --mdc-radio-selected-hover-icon-color: #1b7a36;
  --mdc-radio-selected-icon-color: #1b7a36;
  --mdc-radio-selected-pressed-icon-color: #1b7a36;
  --mat-radio-ripple-color: white;
  --mat-radio-checked-ripple-color: #1b7a36;
  --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
}
[theme-mode=dark] .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-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: #b94137;
  --mdc-radio-selected-hover-icon-color: #b94137;
  --mdc-radio-selected-icon-color: #b94137;
  --mdc-radio-selected-pressed-icon-color: #b94137;
  --mat-radio-ripple-color: white;
  --mat-radio-checked-ripple-color: #b94137;
  --mat-radio-disabled-label-color: rgba(255, 255, 255, 0.5);
}
[theme-mode=dark] .mat-accent {
  --mat-slider-ripple-color: #1b7a36;
  --mat-slider-hover-state-layer-color: rgba(27, 122, 54, 0.05);
  --mat-slider-focus-state-layer-color: rgba(27, 122, 54, 0.2);
  --mdc-slider-handle-color: #1b7a36;
  --mdc-slider-focus-handle-color: #1b7a36;
  --mdc-slider-hover-handle-color: #1b7a36;
  --mdc-slider-active-track-color: #1b7a36;
  --mdc-slider-inactive-track-color: #1b7a36;
  --mdc-slider-with-tick-marks-inactive-container-color: #1b7a36;
  --mdc-slider-with-tick-marks-active-container-color: white;
}
[theme-mode=dark] .mat-warn {
  --mat-slider-ripple-color: #b94137;
  --mat-slider-hover-state-layer-color: rgba(185, 65, 55, 0.05);
  --mat-slider-focus-state-layer-color: rgba(185, 65, 55, 0.2);
  --mdc-slider-handle-color: #b94137;
  --mdc-slider-focus-handle-color: #b94137;
  --mdc-slider-hover-handle-color: #b94137;
  --mdc-slider-active-track-color: #b94137;
  --mdc-slider-inactive-track-color: #b94137;
  --mdc-slider-with-tick-marks-inactive-container-color: #b94137;
  --mdc-slider-with-tick-marks-active-container-color: white;
}
[theme-mode=dark] .mdc-list-item__start,
[theme-mode=dark] .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: white;
  --mdc-radio-disabled-unselected-icon-color: white;
  --mdc-radio-unselected-hover-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: #2d6cb1;
  --mdc-radio-selected-hover-icon-color: #2d6cb1;
  --mdc-radio-selected-icon-color: #2d6cb1;
  --mdc-radio-selected-pressed-icon-color: #2d6cb1;
}
[theme-mode=dark] .mat-accent .mdc-list-item__start,
[theme-mode=dark] .mat-accent .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: white;
  --mdc-radio-disabled-unselected-icon-color: white;
  --mdc-radio-unselected-hover-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: #1b7a36;
  --mdc-radio-selected-hover-icon-color: #1b7a36;
  --mdc-radio-selected-icon-color: #1b7a36;
  --mdc-radio-selected-pressed-icon-color: #1b7a36;
}
[theme-mode=dark] .mat-warn .mdc-list-item__start,
[theme-mode=dark] .mat-warn .mdc-list-item__end {
  --mdc-radio-disabled-selected-icon-color: white;
  --mdc-radio-disabled-unselected-icon-color: white;
  --mdc-radio-unselected-hover-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: #b94137;
  --mdc-radio-selected-hover-icon-color: #b94137;
  --mdc-radio-selected-icon-color: #b94137;
  --mdc-radio-selected-pressed-icon-color: #b94137;
}
[theme-mode=dark] .mat-mdc-list-option {
  --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: #2d6cb1;
  --mdc-checkbox-selected-hover-icon-color: #2d6cb1;
  --mdc-checkbox-selected-icon-color: #2d6cb1;
  --mdc-checkbox-selected-pressed-icon-color: #2d6cb1;
  --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-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #2d6cb1;
  --mdc-checkbox-selected-hover-state-layer-color: #2d6cb1;
  --mdc-checkbox-selected-pressed-state-layer-color: #2d6cb1;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
[theme-mode=dark] .mat-mdc-list-option.mat-accent {
  --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: #1b7a36;
  --mdc-checkbox-selected-hover-icon-color: #1b7a36;
  --mdc-checkbox-selected-icon-color: #1b7a36;
  --mdc-checkbox-selected-pressed-icon-color: #1b7a36;
  --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-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #1b7a36;
  --mdc-checkbox-selected-hover-state-layer-color: #1b7a36;
  --mdc-checkbox-selected-pressed-state-layer-color: #1b7a36;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
[theme-mode=dark] .mat-mdc-list-option.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: #b94137;
  --mdc-checkbox-selected-hover-icon-color: #b94137;
  --mdc-checkbox-selected-icon-color: #b94137;
  --mdc-checkbox-selected-pressed-icon-color: #b94137;
  --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-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #b94137;
  --mdc-checkbox-selected-hover-state-layer-color: #b94137;
  --mdc-checkbox-selected-pressed-state-layer-color: #b94137;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
[theme-mode=dark] .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected .mdc-list-item__primary-text,
[theme-mode=dark] .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated .mdc-list-item__primary-text {
  color: #2d6cb1;
}
[theme-mode=dark] .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--selected.mdc-list-item--with-leading-icon .mdc-list-item__start,
[theme-mode=dark] .mat-mdc-list-base.mat-mdc-list-base .mdc-list-item--activated.mdc-list-item--with-leading-icon .mdc-list-item__start {
  color: #2d6cb1;
}
[theme-mode=dark] .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__start,
[theme-mode=dark] .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__content,
[theme-mode=dark] .mat-mdc-list-base .mdc-list-item--disabled .mdc-list-item__end {
  opacity: 1;
}
[theme-mode=dark] .mat-mdc-tab-group, [theme-mode=dark] .mat-mdc-tab-nav-bar {
  --mdc-tab-indicator-active-indicator-color: #2d6cb1;
  --mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, 0.5);
  --mat-tab-header-pagination-icon-color: white;
  --mat-tab-header-inactive-label-text-color: rgba(194, 194, 194, 0.6);
  --mat-tab-header-active-label-text-color: #2d6cb1;
  --mat-tab-header-active-ripple-color: #2d6cb1;
  --mat-tab-header-inactive-ripple-color: #2d6cb1;
  --mat-tab-header-inactive-focus-label-text-color: rgba(194, 194, 194, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(194, 194, 194, 0.6);
  --mat-tab-header-active-focus-label-text-color: #2d6cb1;
  --mat-tab-header-active-hover-label-text-color: #2d6cb1;
  --mat-tab-header-active-focus-indicator-color: #2d6cb1;
  --mat-tab-header-active-hover-indicator-color: #2d6cb1;
}
[theme-mode=dark] .mat-mdc-tab-group.mat-accent, [theme-mode=dark] .mat-mdc-tab-nav-bar.mat-accent {
  --mdc-tab-indicator-active-indicator-color: #1b7a36;
  --mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, 0.5);
  --mat-tab-header-pagination-icon-color: white;
  --mat-tab-header-inactive-label-text-color: rgba(194, 194, 194, 0.6);
  --mat-tab-header-active-label-text-color: #1b7a36;
  --mat-tab-header-active-ripple-color: #1b7a36;
  --mat-tab-header-inactive-ripple-color: #1b7a36;
  --mat-tab-header-inactive-focus-label-text-color: rgba(194, 194, 194, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(194, 194, 194, 0.6);
  --mat-tab-header-active-focus-label-text-color: #1b7a36;
  --mat-tab-header-active-hover-label-text-color: #1b7a36;
  --mat-tab-header-active-focus-indicator-color: #1b7a36;
  --mat-tab-header-active-hover-indicator-color: #1b7a36;
}
[theme-mode=dark] .mat-mdc-tab-group.mat-warn, [theme-mode=dark] .mat-mdc-tab-nav-bar.mat-warn {
  --mdc-tab-indicator-active-indicator-color: #b94137;
  --mat-tab-header-disabled-ripple-color: rgba(255, 255, 255, 0.5);
  --mat-tab-header-pagination-icon-color: white;
  --mat-tab-header-inactive-label-text-color: rgba(194, 194, 194, 0.6);
  --mat-tab-header-active-label-text-color: #b94137;
  --mat-tab-header-active-ripple-color: #b94137;
  --mat-tab-header-inactive-ripple-color: #b94137;
  --mat-tab-header-inactive-focus-label-text-color: rgba(194, 194, 194, 0.6);
  --mat-tab-header-inactive-hover-label-text-color: rgba(194, 194, 194, 0.6);
  --mat-tab-header-active-focus-label-text-color: #b94137;
  --mat-tab-header-active-hover-label-text-color: #b94137;
  --mat-tab-header-active-focus-indicator-color: #b94137;
  --mat-tab-header-active-hover-indicator-color: #b94137;
}
[theme-mode=dark] .mat-mdc-tab-group.mat-background-primary, [theme-mode=dark] .mat-mdc-tab-nav-bar.mat-background-primary {
  --mat-tab-header-with-background-background-color: #2d6cb1;
  --mat-tab-header-with-background-foreground-color: white;
}
[theme-mode=dark] .mat-mdc-tab-group.mat-background-accent, [theme-mode=dark] .mat-mdc-tab-nav-bar.mat-background-accent {
  --mat-tab-header-with-background-background-color: #1b7a36;
  --mat-tab-header-with-background-foreground-color: white;
}
[theme-mode=dark] .mat-mdc-tab-group.mat-background-warn, [theme-mode=dark] .mat-mdc-tab-nav-bar.mat-background-warn {
  --mat-tab-header-with-background-background-color: #b94137;
  --mat-tab-header-with-background-foreground-color: white;
}
[theme-mode=dark] .mat-mdc-checkbox {
  --mdc-form-field-label-text-color: #c2c2c2;
}
[theme-mode=dark] .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: white;
  --mdc-checkbox-selected-focus-icon-color: #2d6cb1;
  --mdc-checkbox-selected-hover-icon-color: #2d6cb1;
  --mdc-checkbox-selected-icon-color: #2d6cb1;
  --mdc-checkbox-selected-pressed-icon-color: #2d6cb1;
  --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-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #2d6cb1;
  --mdc-checkbox-selected-hover-state-layer-color: #2d6cb1;
  --mdc-checkbox-selected-pressed-state-layer-color: #2d6cb1;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
[theme-mode=dark] .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: #b94137;
  --mdc-checkbox-selected-hover-icon-color: #b94137;
  --mdc-checkbox-selected-icon-color: #b94137;
  --mdc-checkbox-selected-pressed-icon-color: #b94137;
  --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-unselected-pressed-icon-color: rgba(255, 255, 255, 0.54);
  --mdc-checkbox-selected-focus-state-layer-color: #b94137;
  --mdc-checkbox-selected-hover-state-layer-color: #b94137;
  --mdc-checkbox-selected-pressed-state-layer-color: #b94137;
  --mdc-checkbox-unselected-focus-state-layer-color: white;
  --mdc-checkbox-unselected-hover-state-layer-color: white;
  --mdc-checkbox-unselected-pressed-state-layer-color: white;
}
[theme-mode=dark] .mat-mdc-button.mat-primary {
  --mdc-text-button-label-text-color: #2d6cb1;
  --mat-text-button-state-layer-color: #2d6cb1;
  --mat-text-button-ripple-color: rgba(45, 108, 177, 0.1);
}
[theme-mode=dark] .mat-mdc-button.mat-accent {
  --mdc-text-button-label-text-color: #1b7a36;
  --mat-text-button-state-layer-color: #1b7a36;
  --mat-text-button-ripple-color: rgba(27, 122, 54, 0.1);
}
[theme-mode=dark] .mat-mdc-button.mat-warn {
  --mdc-text-button-label-text-color: #b94137;
  --mat-text-button-state-layer-color: #b94137;
  --mat-text-button-ripple-color: rgba(185, 65, 55, 0.1);
}
[theme-mode=dark] .mat-mdc-unelevated-button.mat-primary {
  --mdc-filled-button-container-color: #2d6cb1;
  --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);
}
[theme-mode=dark] .mat-mdc-unelevated-button.mat-accent {
  --mdc-filled-button-container-color: #1b7a36;
  --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);
}
[theme-mode=dark] .mat-mdc-unelevated-button.mat-warn {
  --mdc-filled-button-container-color: #b94137;
  --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);
}
[theme-mode=dark] .mat-mdc-raised-button.mat-primary {
  --mdc-protected-button-container-color: #2d6cb1;
  --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);
}
[theme-mode=dark] .mat-mdc-raised-button.mat-accent {
  --mdc-protected-button-container-color: #1b7a36;
  --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);
}
[theme-mode=dark] .mat-mdc-raised-button.mat-warn {
  --mdc-protected-button-container-color: #b94137;
  --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);
}
[theme-mode=dark] .mat-mdc-outlined-button.mat-primary {
  --mdc-outlined-button-label-text-color: #2d6cb1;
  --mdc-outlined-button-outline-color: rgba(255, 255, 255, 0.12);
  --mat-outlined-button-state-layer-color: #2d6cb1;
  --mat-outlined-button-ripple-color: rgba(45, 108, 177, 0.1);
}
[theme-mode=dark] .mat-mdc-outlined-button.mat-accent {
  --mdc-outlined-button-label-text-color: #1b7a36;
  --mdc-outlined-button-outline-color: rgba(255, 255, 255, 0.12);
  --mat-outlined-button-state-layer-color: #1b7a36;
  --mat-outlined-button-ripple-color: rgba(27, 122, 54, 0.1);
}
[theme-mode=dark] .mat-mdc-outlined-button.mat-warn {
  --mdc-outlined-button-label-text-color: #b94137;
  --mdc-outlined-button-outline-color: rgba(255, 255, 255, 0.12);
  --mat-outlined-button-state-layer-color: #b94137;
  --mat-outlined-button-ripple-color: rgba(185, 65, 55, 0.1);
}
[theme-mode=dark] .mat-mdc-icon-button.mat-primary {
  --mdc-icon-button-icon-color: #2d6cb1;
  --mat-icon-button-state-layer-color: #2d6cb1;
  --mat-icon-button-ripple-color: rgba(45, 108, 177, 0.1);
}
[theme-mode=dark] .mat-mdc-icon-button.mat-accent {
  --mdc-icon-button-icon-color: #1b7a36;
  --mat-icon-button-state-layer-color: #1b7a36;
  --mat-icon-button-ripple-color: rgba(27, 122, 54, 0.1);
}
[theme-mode=dark] .mat-mdc-icon-button.mat-warn {
  --mdc-icon-button-icon-color: #b94137;
  --mat-icon-button-state-layer-color: #b94137;
  --mat-icon-button-ripple-color: rgba(185, 65, 55, 0.1);
}
[theme-mode=dark] .mat-mdc-fab.mat-primary {
  --mdc-fab-container-color: #2d6cb1;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
[theme-mode=dark] .mat-mdc-fab.mat-accent {
  --mdc-fab-container-color: #1b7a36;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
[theme-mode=dark] .mat-mdc-fab.mat-warn {
  --mdc-fab-container-color: #b94137;
  --mat-fab-foreground-color: white;
  --mat-fab-state-layer-color: white;
  --mat-fab-ripple-color: rgba(255, 255, 255, 0.1);
}
[theme-mode=dark] .mat-mdc-mini-fab.mat-primary {
  --mdc-fab-small-container-color: #2d6cb1;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
[theme-mode=dark] .mat-mdc-mini-fab.mat-accent {
  --mdc-fab-small-container-color: #1b7a36;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
[theme-mode=dark] .mat-mdc-mini-fab.mat-warn {
  --mdc-fab-small-container-color: #b94137;
  --mat-fab-small-foreground-color: white;
  --mat-fab-small-state-layer-color: white;
  --mat-fab-small-ripple-color: rgba(255, 255, 255, 0.1);
}
[theme-mode=dark] .mat-accent {
  --mdc-circular-progress-active-indicator-color: #1b7a36;
}
[theme-mode=dark] .mat-warn {
  --mdc-circular-progress-active-indicator-color: #b94137;
}
[theme-mode=dark] .mat-badge-accent {
  --mat-badge-background-color: #1b7a36;
  --mat-badge-text-color: white;
}
[theme-mode=dark] .mat-badge-warn {
  --mat-badge-background-color: #b94137;
  --mat-badge-text-color: white;
}
[theme-mode=dark] .mat-datepicker-content.mat-accent {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #1b7a36;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(27, 122, 54, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(27, 122, 54, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(27, 122, 54, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(27, 122, 54, 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;
}
[theme-mode=dark] .mat-datepicker-content.mat-warn {
  --mat-datepicker-calendar-date-selected-state-text-color: white;
  --mat-datepicker-calendar-date-selected-state-background-color: #b94137;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(185, 65, 55, 0.4);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: white;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(185, 65, 55, 0.3);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(185, 65, 55, 0.3);
  --mat-datepicker-calendar-date-in-range-state-background-color: rgba(185, 65, 55, 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;
}
[theme-mode=dark] .mat-datepicker-toggle-active.mat-accent {
  --mat-datepicker-toggle-active-state-icon-color: #1b7a36;
}
[theme-mode=dark] .mat-datepicker-toggle-active.mat-warn {
  --mat-datepicker-toggle-active-state-icon-color: #b94137;
}
[theme-mode=dark] .mat-icon.mat-primary {
  --mat-icon-color: #2d6cb1;
}
[theme-mode=dark] .mat-icon.mat-accent {
  --mat-icon-color: #1b7a36;
}
[theme-mode=dark] .mat-icon.mat-warn {
  --mat-icon-color: #b94137;
}
[theme-mode=dark] .mat-step-header.mat-accent {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #1b7a36;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #1b7a36;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #1b7a36;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
[theme-mode=dark] .mat-step-header.mat-warn {
  --mat-stepper-header-icon-foreground-color: white;
  --mat-stepper-header-selected-state-icon-background-color: #b94137;
  --mat-stepper-header-selected-state-icon-foreground-color: white;
  --mat-stepper-header-done-state-icon-background-color: #b94137;
  --mat-stepper-header-done-state-icon-foreground-color: white;
  --mat-stepper-header-edit-state-icon-background-color: #b94137;
  --mat-stepper-header-edit-state-icon-foreground-color: white;
}
[theme-mode=dark] .mat-toolbar.mat-primary {
  --mat-toolbar-container-background-color: #2d6cb1;
  --mat-toolbar-container-text-color: white;
}
[theme-mode=dark] .mat-toolbar.mat-accent {
  --mat-toolbar-container-background-color: #1b7a36;
  --mat-toolbar-container-text-color: white;
}
[theme-mode=dark] .mat-toolbar.mat-warn {
  --mat-toolbar-container-background-color: #b94137;
  --mat-toolbar-container-text-color: white;
}

[theme-mode=light] {
  --active-color: #1B7A36;
  --active-fade-color: #CDF4D8;
  --draft-color: #02090F;
  --draft-fade-color: #E5EBF0;
  --paused-color: #B94137;
  --paused-fade-color: #FCE4E2;
  --refunded-color: #279F8A;
  --refunded-fade-color: #ebf5f3;
  --canceled-color: #ff9d5c;
  --canceled-fade-color: #fef5ee;
  --ended-color: #ff9d5c;
  --ended-fade-color: #fef5ee;
  --paid-color: #1B7A36;
  --paid-fade-color: #ebf5f3;
}

[theme-mode=dark] {
  --active-color: #1B7A36;
  --active-fade-color: rgba(27, 122, 54, 0.2);
  --draft-color: #353d44;
  --draft-fade-color: rgba(53, 61, 68, 0.2);
  --paused-color: #B94137;
  --paused-fade-color: rgba(185, 65, 55, 0.2);
  --refunded-color: #279F8A;
  --refunded-fade-color: rgba(39, 159, 138, 0.2);
  --canceled-color: #FF9D5C;
  --canceled-fade-color: rgba(255, 157, 92, 0.2);
  --ended-color: #FF9D5C;
  --ended-fade-color: rgba(255, 157, 92, 0.2);
  --paid-color: #1B7A36;
  --paid-fade-color: rgba(27, 122, 54, 0.2);
}

:root {
  --primary-light-color: #e6edf6;
  --accent-light-color: #e4efe7;
  --warn-light-color: #f7e8e7;
  --primary-soft-color: #bad1ff;
  --accent-soft-color: #80ff94;
  --warn-soft-color: #f8bab6;
  --primary-light1-color: ;
  --accent-light1-color: #cdf4d8;
  --warn-light1-color: #fce4e2;
  --primary-color: #2d6cb1;
  --accent-color: #1b7a36;
  --warn-color: #b94137;
  --primary-dark-color: #16375d;
  --accent-dark-color: #084a16;
  --warn-dark-color: #931c16;
  --font-family: "aptos", sans-serif;
  --font-size-sm: .85em;
  --font-size-md: 1em;
  --font-size-lg: 1.125em;
  --input-bottom-gutter: 1rem;
  --input-border-radius: 6px;
  --fake-bold: 0 .015em currentColor,0 -.015em currentColor,.015em 0 currentColor,-.015em 0 currentColor;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --dashboard-header-height: 64px;
  --dashboard-subheader-height: 40px;
  --dashboard-rail-width: 212px;
  --dashboard-rail-width-collapsed: 72px;
  --page-sides-space: 1.5rem;
}

[theme-mode=dark] {
  --primary-light-color: #17212c;
  --accent-light-color: #16291a;
  --warn-light-color: #38211e;
}

@media (max-width: 768px) {
  :root {
    --page-sides-space: .5rem;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

body {
  font-family: var(--font-family);
  background-color: var(--background-medium);
  color: var(--text-medium);
  /* Switch theme transitions */
}
body mat-sidenav-container,
body mat-toolbar,
body mat-sidenav,
body mat-sidenav.rail .mat-drawer-inner-container {
  transition: background 0.2s, color 0.3s, width 0.3s !important;
}

html,
body,
app-root {
  height: 100%;
  font-size: 14px;
  overflow-x: hidden;
}

section {
  margin-bottom: 1rem;
  padding-left: var(--page-sides-space);
  padding-right: var(--page-sides-space);
}

img,
video {
  max-width: 100%;
  max-height: 100%;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

hr {
  border: 0;
  border-bottom: solid 1px var(--border-color);
}
hr.dashed {
  border-bottom-style: dashed;
}

.line-item-footer .mat-toolbar-single-row {
  background-color: var(--background-container);
}

@font-face {
  font-family: "aptos";
  font-weight: normal;
  src: url("../fonts/aptos-normal.woff2") format("woff2");
}
@font-face {
  font-family: "aptos";
  font-weight: bold;
  src: url("../fonts/aptos-bold.woff2") format("woff2");
}
.h-100 {
  height: 100%;
}

.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

.bg-transparent {
  background: transparent !important;
}

.bg-cover {
  background-size: cover;
}

.bg-contain {
  background-size: contain;
}

.bg-container {
  background-color: var(--background-container) !important;
}

.bg-medium {
  background-color: var(--background-medium) !important;
}

.bg-strong {
  background-color: var(--background-strong) !important;
}

.bg-active {
  background-color: var(--active-color) !important;
}

.bg-active-fade {
  background-color: var(--active-fade-color) !important;
}

.bg-draft {
  background-color: var(--draft-color) !important;
}

.bg-draft-fade {
  background-color: var(--draft-fade-color) !important;
}

.bg-paused {
  background-color: var(--paused-color) !important;
}

.bg-paused-fade {
  background-color: var(--paused-fade-color) !important;
}

.bg-refunded {
  background-color: var(--refunded-color) !important;
}

.bg-refunded-fade {
  background-color: var(--refunded-fade-color) !important;
}

.bg-canceled {
  background-color: var(--canceled-color) !important;
}

.bg-canceled-fade {
  background-color: var(--canceled-fade-color) !important;
}

.bg-ended {
  background-color: var(--ended-color) !important;
}

.bg-ended-fade {
  background-color: var(--ended-fade-color) !important;
}

.bg-paid {
  background-color: var(--paid-color) !important;
}

.bg-paid-fade {
  background-color: var(--paid-fade-color) !important;
}

.bg-warning {
  background-color: var(--background-warning) !important;
}

.flex {
  display: flex;
}

.flex-grow {
  flex-grow: 1;
}

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

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

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

.align-end {
  align-items: flex-end;
}

.align-baseline {
  align-items: baseline;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

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

.shrink-0 {
  flex-shrink: 0;
}

.hide {
  display: none !important;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.start-0 {
  left: 0;
}

.end-0 {
  right: 0;
}

.inset-0 {
  inset: 0;
}

.z-index-0 {
  z-index: 0;
}

.z-index-1 {
  z-index: 1;
}

.z-index-2 {
  z-index: 2;
}

.z-index-3 {
  z-index: 3;
}

.z-index-4 {
  z-index: 4;
}

.z-index-5 {
  z-index: 5;
}

.z-index-6 {
  z-index: 6;
}

.z-index-7 {
  z-index: 7;
}

.z-index-8 {
  z-index: 8;
}

.z-index-9 {
  z-index: 9;
}

.z-index-10 {
  z-index: 10;
}

.me-0 {
  margin-inline-end: 0 !important;
}

.ms-0 {
  margin-inline-start: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mx-0 {
  margin-inline-start: 0 !important;
  margin-inline-end: 0 !important;
}

.my-0 {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

.pe-0 {
  padding-inline-end: 0 !important;
}

.ps-0 {
  padding-inline-start: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.px-0 {
  padding-inline-start: 0 !important;
  padding-inline-end: 0 !important;
}

.py-0 {
  padding-block-start: 0 !important;
  padding-block-end: 0 !important;
}

.me-1 {
  margin-inline-end: 0.25rem !important;
}

.ms-1 {
  margin-inline-start: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mx-1 {
  margin-inline-start: 0.25rem !important;
  margin-inline-end: 0.25rem !important;
}

.my-1 {
  margin-block-start: 0.25rem !important;
  margin-block-end: 0.25rem !important;
}

.pe-1 {
  padding-inline-end: 0.25rem !important;
}

.ps-1 {
  padding-inline-start: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.px-1 {
  padding-inline-start: 0.25rem !important;
  padding-inline-end: 0.25rem !important;
}

.py-1 {
  padding-block-start: 0.25rem !important;
  padding-block-end: 0.25rem !important;
}

.me-2 {
  margin-inline-end: 0.5rem !important;
}

.ms-2 {
  margin-inline-start: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mx-2 {
  margin-inline-start: 0.5rem !important;
  margin-inline-end: 0.5rem !important;
}

.my-2 {
  margin-block-start: 0.5rem !important;
  margin-block-end: 0.5rem !important;
}

.pe-2 {
  padding-inline-end: 0.5rem !important;
}

.ps-2 {
  padding-inline-start: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.px-2 {
  padding-inline-start: 0.5rem !important;
  padding-inline-end: 0.5rem !important;
}

.py-2 {
  padding-block-start: 0.5rem !important;
  padding-block-end: 0.5rem !important;
}

.me-3 {
  margin-inline-end: 1rem !important;
}

.ms-3 {
  margin-inline-start: 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mx-3 {
  margin-inline-start: 1rem !important;
  margin-inline-end: 1rem !important;
}

.my-3 {
  margin-block-start: 1rem !important;
  margin-block-end: 1rem !important;
}

.pe-3 {
  padding-inline-end: 1rem !important;
}

.ps-3 {
  padding-inline-start: 1rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.px-3 {
  padding-inline-start: 1rem !important;
  padding-inline-end: 1rem !important;
}

.py-3 {
  padding-block-start: 1rem !important;
  padding-block-end: 1rem !important;
}

.me-4 {
  margin-inline-end: 1.5rem !important;
}

.ms-4 {
  margin-inline-start: 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mx-4 {
  margin-inline-start: 1.5rem !important;
  margin-inline-end: 1.5rem !important;
}

.my-4 {
  margin-block-start: 1.5rem !important;
  margin-block-end: 1.5rem !important;
}

.pe-4 {
  padding-inline-end: 1.5rem !important;
}

.ps-4 {
  padding-inline-start: 1.5rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.px-4 {
  padding-inline-start: 1.5rem !important;
  padding-inline-end: 1.5rem !important;
}

.py-4 {
  padding-block-start: 1.5rem !important;
  padding-block-end: 1.5rem !important;
}

.me-5 {
  margin-inline-end: 3rem !important;
}

.ms-5 {
  margin-inline-start: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mx-5 {
  margin-inline-start: 3rem !important;
  margin-inline-end: 3rem !important;
}

.my-5 {
  margin-block-start: 3rem !important;
  margin-block-end: 3rem !important;
}

.pe-5 {
  padding-inline-end: 3rem !important;
}

.ps-5 {
  padding-inline-start: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.px-5 {
  padding-inline-start: 3rem !important;
  padding-inline-end: 3rem !important;
}

.py-5 {
  padding-block-start: 3rem !important;
  padding-block-end: 3rem !important;
}

.me-auto {
  margin-inline-end: auto !important;
}

.ms-auto {
  margin-inline-start: auto !important;
}

.mx-auto {
  margin-inline-start: auto !important;
  margin-inline-end: auto !important;
}

.my-auto {
  margin-block-start: auto !important;
  margin-block-end: auto !important;
}

@media (min-width: 576px) {
  .me-xs-0 {
    margin-inline-end: 0 !important;
  }
  .ms-xs-0 {
    margin-inline-start: 0 !important;
  }
  .mt-xs-0 {
    margin-top: 0 !important;
  }
  .mb-xs-0 {
    margin-bottom: 0 !important;
  }
  .mx-xs-0 {
    margin-inline-start: 0 !important;
    margin-inline-end: 0 !important;
  }
  .my-xs-0 {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
  }
  .me-xs-auto {
    margin-inline-end: auto !important;
  }
  .ms-xs-auto {
    margin-inline-start: auto !important;
  }
  .mt-xs-auto {
    margin-top: auto !important;
  }
  .mb-xs-auto {
    margin-bottom: auto !important;
  }
  .mx-xs-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-xs-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-xs-0 {
    padding-inline-end: 0 !important;
  }
  .ps-xs-0 {
    padding-inline-start: 0 !important;
  }
  .pt-xs-0 {
    padding-top: 0 !important;
  }
  .pb-xs-0 {
    padding-bottom: 0 !important;
  }
  .px-xs-0 {
    padding-inline-start: 0 !important;
    padding-inline-end: 0 !important;
  }
  .py-xs-0 {
    padding-block-start: 0 !important;
    padding-block-end: 0 !important;
  }
}
@media (min-width: 768px) {
  .me-sm-0 {
    margin-inline-end: 0 !important;
  }
  .ms-sm-0 {
    margin-inline-start: 0 !important;
  }
  .mt-sm-0 {
    margin-top: 0 !important;
  }
  .mb-sm-0 {
    margin-bottom: 0 !important;
  }
  .mx-sm-0 {
    margin-inline-start: 0 !important;
    margin-inline-end: 0 !important;
  }
  .my-sm-0 {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
  }
  .me-sm-auto {
    margin-inline-end: auto !important;
  }
  .ms-sm-auto {
    margin-inline-start: auto !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .mx-sm-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-sm-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-sm-0 {
    padding-inline-end: 0 !important;
  }
  .ps-sm-0 {
    padding-inline-start: 0 !important;
  }
  .pt-sm-0 {
    padding-top: 0 !important;
  }
  .pb-sm-0 {
    padding-bottom: 0 !important;
  }
  .px-sm-0 {
    padding-inline-start: 0 !important;
    padding-inline-end: 0 !important;
  }
  .py-sm-0 {
    padding-block-start: 0 !important;
    padding-block-end: 0 !important;
  }
}
@media (min-width: 992px) {
  .me-md-0 {
    margin-inline-end: 0 !important;
  }
  .ms-md-0 {
    margin-inline-start: 0 !important;
  }
  .mt-md-0 {
    margin-top: 0 !important;
  }
  .mb-md-0 {
    margin-bottom: 0 !important;
  }
  .mx-md-0 {
    margin-inline-start: 0 !important;
    margin-inline-end: 0 !important;
  }
  .my-md-0 {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
  }
  .me-md-auto {
    margin-inline-end: auto !important;
  }
  .ms-md-auto {
    margin-inline-start: auto !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .mx-md-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-md-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-md-0 {
    padding-inline-end: 0 !important;
  }
  .ps-md-0 {
    padding-inline-start: 0 !important;
  }
  .pt-md-0 {
    padding-top: 0 !important;
  }
  .pb-md-0 {
    padding-bottom: 0 !important;
  }
  .px-md-0 {
    padding-inline-start: 0 !important;
    padding-inline-end: 0 !important;
  }
  .py-md-0 {
    padding-block-start: 0 !important;
    padding-block-end: 0 !important;
  }
}
@media (min-width: 1200px) {
  .me-lg-0 {
    margin-inline-end: 0 !important;
  }
  .ms-lg-0 {
    margin-inline-start: 0 !important;
  }
  .mt-lg-0 {
    margin-top: 0 !important;
  }
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
  .mx-lg-0 {
    margin-inline-start: 0 !important;
    margin-inline-end: 0 !important;
  }
  .my-lg-0 {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
  }
  .me-lg-auto {
    margin-inline-end: auto !important;
  }
  .ms-lg-auto {
    margin-inline-start: auto !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .mx-lg-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-lg-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-lg-0 {
    padding-inline-end: 0 !important;
  }
  .ps-lg-0 {
    padding-inline-start: 0 !important;
  }
  .pt-lg-0 {
    padding-top: 0 !important;
  }
  .pb-lg-0 {
    padding-bottom: 0 !important;
  }
  .px-lg-0 {
    padding-inline-start: 0 !important;
    padding-inline-end: 0 !important;
  }
  .py-lg-0 {
    padding-block-start: 0 !important;
    padding-block-end: 0 !important;
  }
}
@media (min-width: 1440px) {
  .me-xl-0 {
    margin-inline-end: 0 !important;
  }
  .ms-xl-0 {
    margin-inline-start: 0 !important;
  }
  .mt-xl-0 {
    margin-top: 0 !important;
  }
  .mb-xl-0 {
    margin-bottom: 0 !important;
  }
  .mx-xl-0 {
    margin-inline-start: 0 !important;
    margin-inline-end: 0 !important;
  }
  .my-xl-0 {
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
  }
  .me-xl-auto {
    margin-inline-end: auto !important;
  }
  .ms-xl-auto {
    margin-inline-start: auto !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .mx-xl-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-xl-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-xl-0 {
    padding-inline-end: 0 !important;
  }
  .ps-xl-0 {
    padding-inline-start: 0 !important;
  }
  .pt-xl-0 {
    padding-top: 0 !important;
  }
  .pb-xl-0 {
    padding-bottom: 0 !important;
  }
  .px-xl-0 {
    padding-inline-start: 0 !important;
    padding-inline-end: 0 !important;
  }
  .py-xl-0 {
    padding-block-start: 0 !important;
    padding-block-end: 0 !important;
  }
}
@media (min-width: 576px) {
  .me-xs-1 {
    margin-inline-end: 0.25rem !important;
  }
  .ms-xs-1 {
    margin-inline-start: 0.25rem !important;
  }
  .mt-xs-1 {
    margin-top: 0.25rem !important;
  }
  .mb-xs-1 {
    margin-bottom: 0.25rem !important;
  }
  .mx-xs-1 {
    margin-inline-start: 0.25rem !important;
    margin-inline-end: 0.25rem !important;
  }
  .my-xs-1 {
    margin-block-start: 0.25rem !important;
    margin-block-end: 0.25rem !important;
  }
  .me-xs-auto {
    margin-inline-end: auto !important;
  }
  .ms-xs-auto {
    margin-inline-start: auto !important;
  }
  .mt-xs-auto {
    margin-top: auto !important;
  }
  .mb-xs-auto {
    margin-bottom: auto !important;
  }
  .mx-xs-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-xs-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-xs-1 {
    padding-inline-end: 0.25rem !important;
  }
  .ps-xs-1 {
    padding-inline-start: 0.25rem !important;
  }
  .pt-xs-1 {
    padding-top: 0.25rem !important;
  }
  .pb-xs-1 {
    padding-bottom: 0.25rem !important;
  }
  .px-xs-1 {
    padding-inline-start: 0.25rem !important;
    padding-inline-end: 0.25rem !important;
  }
  .py-xs-1 {
    padding-block-start: 0.25rem !important;
    padding-block-end: 0.25rem !important;
  }
}
@media (min-width: 768px) {
  .me-sm-1 {
    margin-inline-end: 0.25rem !important;
  }
  .ms-sm-1 {
    margin-inline-start: 0.25rem !important;
  }
  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .mx-sm-1 {
    margin-inline-start: 0.25rem !important;
    margin-inline-end: 0.25rem !important;
  }
  .my-sm-1 {
    margin-block-start: 0.25rem !important;
    margin-block-end: 0.25rem !important;
  }
  .me-sm-auto {
    margin-inline-end: auto !important;
  }
  .ms-sm-auto {
    margin-inline-start: auto !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .mx-sm-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-sm-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-sm-1 {
    padding-inline-end: 0.25rem !important;
  }
  .ps-sm-1 {
    padding-inline-start: 0.25rem !important;
  }
  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .px-sm-1 {
    padding-inline-start: 0.25rem !important;
    padding-inline-end: 0.25rem !important;
  }
  .py-sm-1 {
    padding-block-start: 0.25rem !important;
    padding-block-end: 0.25rem !important;
  }
}
@media (min-width: 992px) {
  .me-md-1 {
    margin-inline-end: 0.25rem !important;
  }
  .ms-md-1 {
    margin-inline-start: 0.25rem !important;
  }
  .mt-md-1 {
    margin-top: 0.25rem !important;
  }
  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .mx-md-1 {
    margin-inline-start: 0.25rem !important;
    margin-inline-end: 0.25rem !important;
  }
  .my-md-1 {
    margin-block-start: 0.25rem !important;
    margin-block-end: 0.25rem !important;
  }
  .me-md-auto {
    margin-inline-end: auto !important;
  }
  .ms-md-auto {
    margin-inline-start: auto !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .mx-md-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-md-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-md-1 {
    padding-inline-end: 0.25rem !important;
  }
  .ps-md-1 {
    padding-inline-start: 0.25rem !important;
  }
  .pt-md-1 {
    padding-top: 0.25rem !important;
  }
  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .px-md-1 {
    padding-inline-start: 0.25rem !important;
    padding-inline-end: 0.25rem !important;
  }
  .py-md-1 {
    padding-block-start: 0.25rem !important;
    padding-block-end: 0.25rem !important;
  }
}
@media (min-width: 1200px) {
  .me-lg-1 {
    margin-inline-end: 0.25rem !important;
  }
  .ms-lg-1 {
    margin-inline-start: 0.25rem !important;
  }
  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .mx-lg-1 {
    margin-inline-start: 0.25rem !important;
    margin-inline-end: 0.25rem !important;
  }
  .my-lg-1 {
    margin-block-start: 0.25rem !important;
    margin-block-end: 0.25rem !important;
  }
  .me-lg-auto {
    margin-inline-end: auto !important;
  }
  .ms-lg-auto {
    margin-inline-start: auto !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .mx-lg-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-lg-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-lg-1 {
    padding-inline-end: 0.25rem !important;
  }
  .ps-lg-1 {
    padding-inline-start: 0.25rem !important;
  }
  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .px-lg-1 {
    padding-inline-start: 0.25rem !important;
    padding-inline-end: 0.25rem !important;
  }
  .py-lg-1 {
    padding-block-start: 0.25rem !important;
    padding-block-end: 0.25rem !important;
  }
}
@media (min-width: 1440px) {
  .me-xl-1 {
    margin-inline-end: 0.25rem !important;
  }
  .ms-xl-1 {
    margin-inline-start: 0.25rem !important;
  }
  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .mx-xl-1 {
    margin-inline-start: 0.25rem !important;
    margin-inline-end: 0.25rem !important;
  }
  .my-xl-1 {
    margin-block-start: 0.25rem !important;
    margin-block-end: 0.25rem !important;
  }
  .me-xl-auto {
    margin-inline-end: auto !important;
  }
  .ms-xl-auto {
    margin-inline-start: auto !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .mx-xl-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-xl-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-xl-1 {
    padding-inline-end: 0.25rem !important;
  }
  .ps-xl-1 {
    padding-inline-start: 0.25rem !important;
  }
  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .px-xl-1 {
    padding-inline-start: 0.25rem !important;
    padding-inline-end: 0.25rem !important;
  }
  .py-xl-1 {
    padding-block-start: 0.25rem !important;
    padding-block-end: 0.25rem !important;
  }
}
@media (min-width: 576px) {
  .me-xs-2 {
    margin-inline-end: 0.5rem !important;
  }
  .ms-xs-2 {
    margin-inline-start: 0.5rem !important;
  }
  .mt-xs-2 {
    margin-top: 0.5rem !important;
  }
  .mb-xs-2 {
    margin-bottom: 0.5rem !important;
  }
  .mx-xs-2 {
    margin-inline-start: 0.5rem !important;
    margin-inline-end: 0.5rem !important;
  }
  .my-xs-2 {
    margin-block-start: 0.5rem !important;
    margin-block-end: 0.5rem !important;
  }
  .me-xs-auto {
    margin-inline-end: auto !important;
  }
  .ms-xs-auto {
    margin-inline-start: auto !important;
  }
  .mt-xs-auto {
    margin-top: auto !important;
  }
  .mb-xs-auto {
    margin-bottom: auto !important;
  }
  .mx-xs-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-xs-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-xs-2 {
    padding-inline-end: 0.5rem !important;
  }
  .ps-xs-2 {
    padding-inline-start: 0.5rem !important;
  }
  .pt-xs-2 {
    padding-top: 0.5rem !important;
  }
  .pb-xs-2 {
    padding-bottom: 0.5rem !important;
  }
  .px-xs-2 {
    padding-inline-start: 0.5rem !important;
    padding-inline-end: 0.5rem !important;
  }
  .py-xs-2 {
    padding-block-start: 0.5rem !important;
    padding-block-end: 0.5rem !important;
  }
}
@media (min-width: 768px) {
  .me-sm-2 {
    margin-inline-end: 0.5rem !important;
  }
  .ms-sm-2 {
    margin-inline-start: 0.5rem !important;
  }
  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .mx-sm-2 {
    margin-inline-start: 0.5rem !important;
    margin-inline-end: 0.5rem !important;
  }
  .my-sm-2 {
    margin-block-start: 0.5rem !important;
    margin-block-end: 0.5rem !important;
  }
  .me-sm-auto {
    margin-inline-end: auto !important;
  }
  .ms-sm-auto {
    margin-inline-start: auto !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .mx-sm-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-sm-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-sm-2 {
    padding-inline-end: 0.5rem !important;
  }
  .ps-sm-2 {
    padding-inline-start: 0.5rem !important;
  }
  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .px-sm-2 {
    padding-inline-start: 0.5rem !important;
    padding-inline-end: 0.5rem !important;
  }
  .py-sm-2 {
    padding-block-start: 0.5rem !important;
    padding-block-end: 0.5rem !important;
  }
}
@media (min-width: 992px) {
  .me-md-2 {
    margin-inline-end: 0.5rem !important;
  }
  .ms-md-2 {
    margin-inline-start: 0.5rem !important;
  }
  .mt-md-2 {
    margin-top: 0.5rem !important;
  }
  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .mx-md-2 {
    margin-inline-start: 0.5rem !important;
    margin-inline-end: 0.5rem !important;
  }
  .my-md-2 {
    margin-block-start: 0.5rem !important;
    margin-block-end: 0.5rem !important;
  }
  .me-md-auto {
    margin-inline-end: auto !important;
  }
  .ms-md-auto {
    margin-inline-start: auto !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .mx-md-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-md-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-md-2 {
    padding-inline-end: 0.5rem !important;
  }
  .ps-md-2 {
    padding-inline-start: 0.5rem !important;
  }
  .pt-md-2 {
    padding-top: 0.5rem !important;
  }
  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .px-md-2 {
    padding-inline-start: 0.5rem !important;
    padding-inline-end: 0.5rem !important;
  }
  .py-md-2 {
    padding-block-start: 0.5rem !important;
    padding-block-end: 0.5rem !important;
  }
}
@media (min-width: 1200px) {
  .me-lg-2 {
    margin-inline-end: 0.5rem !important;
  }
  .ms-lg-2 {
    margin-inline-start: 0.5rem !important;
  }
  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .mx-lg-2 {
    margin-inline-start: 0.5rem !important;
    margin-inline-end: 0.5rem !important;
  }
  .my-lg-2 {
    margin-block-start: 0.5rem !important;
    margin-block-end: 0.5rem !important;
  }
  .me-lg-auto {
    margin-inline-end: auto !important;
  }
  .ms-lg-auto {
    margin-inline-start: auto !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .mx-lg-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-lg-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-lg-2 {
    padding-inline-end: 0.5rem !important;
  }
  .ps-lg-2 {
    padding-inline-start: 0.5rem !important;
  }
  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .px-lg-2 {
    padding-inline-start: 0.5rem !important;
    padding-inline-end: 0.5rem !important;
  }
  .py-lg-2 {
    padding-block-start: 0.5rem !important;
    padding-block-end: 0.5rem !important;
  }
}
@media (min-width: 1440px) {
  .me-xl-2 {
    margin-inline-end: 0.5rem !important;
  }
  .ms-xl-2 {
    margin-inline-start: 0.5rem !important;
  }
  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .mx-xl-2 {
    margin-inline-start: 0.5rem !important;
    margin-inline-end: 0.5rem !important;
  }
  .my-xl-2 {
    margin-block-start: 0.5rem !important;
    margin-block-end: 0.5rem !important;
  }
  .me-xl-auto {
    margin-inline-end: auto !important;
  }
  .ms-xl-auto {
    margin-inline-start: auto !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .mx-xl-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-xl-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-xl-2 {
    padding-inline-end: 0.5rem !important;
  }
  .ps-xl-2 {
    padding-inline-start: 0.5rem !important;
  }
  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .px-xl-2 {
    padding-inline-start: 0.5rem !important;
    padding-inline-end: 0.5rem !important;
  }
  .py-xl-2 {
    padding-block-start: 0.5rem !important;
    padding-block-end: 0.5rem !important;
  }
}
@media (min-width: 576px) {
  .me-xs-3 {
    margin-inline-end: 1rem !important;
  }
  .ms-xs-3 {
    margin-inline-start: 1rem !important;
  }
  .mt-xs-3 {
    margin-top: 1rem !important;
  }
  .mb-xs-3 {
    margin-bottom: 1rem !important;
  }
  .mx-xs-3 {
    margin-inline-start: 1rem !important;
    margin-inline-end: 1rem !important;
  }
  .my-xs-3 {
    margin-block-start: 1rem !important;
    margin-block-end: 1rem !important;
  }
  .me-xs-auto {
    margin-inline-end: auto !important;
  }
  .ms-xs-auto {
    margin-inline-start: auto !important;
  }
  .mt-xs-auto {
    margin-top: auto !important;
  }
  .mb-xs-auto {
    margin-bottom: auto !important;
  }
  .mx-xs-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-xs-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-xs-3 {
    padding-inline-end: 1rem !important;
  }
  .ps-xs-3 {
    padding-inline-start: 1rem !important;
  }
  .pt-xs-3 {
    padding-top: 1rem !important;
  }
  .pb-xs-3 {
    padding-bottom: 1rem !important;
  }
  .px-xs-3 {
    padding-inline-start: 1rem !important;
    padding-inline-end: 1rem !important;
  }
  .py-xs-3 {
    padding-block-start: 1rem !important;
    padding-block-end: 1rem !important;
  }
}
@media (min-width: 768px) {
  .me-sm-3 {
    margin-inline-end: 1rem !important;
  }
  .ms-sm-3 {
    margin-inline-start: 1rem !important;
  }
  .mt-sm-3 {
    margin-top: 1rem !important;
  }
  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }
  .mx-sm-3 {
    margin-inline-start: 1rem !important;
    margin-inline-end: 1rem !important;
  }
  .my-sm-3 {
    margin-block-start: 1rem !important;
    margin-block-end: 1rem !important;
  }
  .me-sm-auto {
    margin-inline-end: auto !important;
  }
  .ms-sm-auto {
    margin-inline-start: auto !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .mx-sm-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-sm-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-sm-3 {
    padding-inline-end: 1rem !important;
  }
  .ps-sm-3 {
    padding-inline-start: 1rem !important;
  }
  .pt-sm-3 {
    padding-top: 1rem !important;
  }
  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }
  .px-sm-3 {
    padding-inline-start: 1rem !important;
    padding-inline-end: 1rem !important;
  }
  .py-sm-3 {
    padding-block-start: 1rem !important;
    padding-block-end: 1rem !important;
  }
}
@media (min-width: 992px) {
  .me-md-3 {
    margin-inline-end: 1rem !important;
  }
  .ms-md-3 {
    margin-inline-start: 1rem !important;
  }
  .mt-md-3 {
    margin-top: 1rem !important;
  }
  .mb-md-3 {
    margin-bottom: 1rem !important;
  }
  .mx-md-3 {
    margin-inline-start: 1rem !important;
    margin-inline-end: 1rem !important;
  }
  .my-md-3 {
    margin-block-start: 1rem !important;
    margin-block-end: 1rem !important;
  }
  .me-md-auto {
    margin-inline-end: auto !important;
  }
  .ms-md-auto {
    margin-inline-start: auto !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .mx-md-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-md-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-md-3 {
    padding-inline-end: 1rem !important;
  }
  .ps-md-3 {
    padding-inline-start: 1rem !important;
  }
  .pt-md-3 {
    padding-top: 1rem !important;
  }
  .pb-md-3 {
    padding-bottom: 1rem !important;
  }
  .px-md-3 {
    padding-inline-start: 1rem !important;
    padding-inline-end: 1rem !important;
  }
  .py-md-3 {
    padding-block-start: 1rem !important;
    padding-block-end: 1rem !important;
  }
}
@media (min-width: 1200px) {
  .me-lg-3 {
    margin-inline-end: 1rem !important;
  }
  .ms-lg-3 {
    margin-inline-start: 1rem !important;
  }
  .mt-lg-3 {
    margin-top: 1rem !important;
  }
  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }
  .mx-lg-3 {
    margin-inline-start: 1rem !important;
    margin-inline-end: 1rem !important;
  }
  .my-lg-3 {
    margin-block-start: 1rem !important;
    margin-block-end: 1rem !important;
  }
  .me-lg-auto {
    margin-inline-end: auto !important;
  }
  .ms-lg-auto {
    margin-inline-start: auto !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .mx-lg-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-lg-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-lg-3 {
    padding-inline-end: 1rem !important;
  }
  .ps-lg-3 {
    padding-inline-start: 1rem !important;
  }
  .pt-lg-3 {
    padding-top: 1rem !important;
  }
  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }
  .px-lg-3 {
    padding-inline-start: 1rem !important;
    padding-inline-end: 1rem !important;
  }
  .py-lg-3 {
    padding-block-start: 1rem !important;
    padding-block-end: 1rem !important;
  }
}
@media (min-width: 1440px) {
  .me-xl-3 {
    margin-inline-end: 1rem !important;
  }
  .ms-xl-3 {
    margin-inline-start: 1rem !important;
  }
  .mt-xl-3 {
    margin-top: 1rem !important;
  }
  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }
  .mx-xl-3 {
    margin-inline-start: 1rem !important;
    margin-inline-end: 1rem !important;
  }
  .my-xl-3 {
    margin-block-start: 1rem !important;
    margin-block-end: 1rem !important;
  }
  .me-xl-auto {
    margin-inline-end: auto !important;
  }
  .ms-xl-auto {
    margin-inline-start: auto !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .mx-xl-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-xl-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-xl-3 {
    padding-inline-end: 1rem !important;
  }
  .ps-xl-3 {
    padding-inline-start: 1rem !important;
  }
  .pt-xl-3 {
    padding-top: 1rem !important;
  }
  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }
  .px-xl-3 {
    padding-inline-start: 1rem !important;
    padding-inline-end: 1rem !important;
  }
  .py-xl-3 {
    padding-block-start: 1rem !important;
    padding-block-end: 1rem !important;
  }
}
@media (min-width: 576px) {
  .me-xs-4 {
    margin-inline-end: 1.5rem !important;
  }
  .ms-xs-4 {
    margin-inline-start: 1.5rem !important;
  }
  .mt-xs-4 {
    margin-top: 1.5rem !important;
  }
  .mb-xs-4 {
    margin-bottom: 1.5rem !important;
  }
  .mx-xs-4 {
    margin-inline-start: 1.5rem !important;
    margin-inline-end: 1.5rem !important;
  }
  .my-xs-4 {
    margin-block-start: 1.5rem !important;
    margin-block-end: 1.5rem !important;
  }
  .me-xs-auto {
    margin-inline-end: auto !important;
  }
  .ms-xs-auto {
    margin-inline-start: auto !important;
  }
  .mt-xs-auto {
    margin-top: auto !important;
  }
  .mb-xs-auto {
    margin-bottom: auto !important;
  }
  .mx-xs-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-xs-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-xs-4 {
    padding-inline-end: 1.5rem !important;
  }
  .ps-xs-4 {
    padding-inline-start: 1.5rem !important;
  }
  .pt-xs-4 {
    padding-top: 1.5rem !important;
  }
  .pb-xs-4 {
    padding-bottom: 1.5rem !important;
  }
  .px-xs-4 {
    padding-inline-start: 1.5rem !important;
    padding-inline-end: 1.5rem !important;
  }
  .py-xs-4 {
    padding-block-start: 1.5rem !important;
    padding-block-end: 1.5rem !important;
  }
}
@media (min-width: 768px) {
  .me-sm-4 {
    margin-inline-end: 1.5rem !important;
  }
  .ms-sm-4 {
    margin-inline-start: 1.5rem !important;
  }
  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .mx-sm-4 {
    margin-inline-start: 1.5rem !important;
    margin-inline-end: 1.5rem !important;
  }
  .my-sm-4 {
    margin-block-start: 1.5rem !important;
    margin-block-end: 1.5rem !important;
  }
  .me-sm-auto {
    margin-inline-end: auto !important;
  }
  .ms-sm-auto {
    margin-inline-start: auto !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .mx-sm-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-sm-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-sm-4 {
    padding-inline-end: 1.5rem !important;
  }
  .ps-sm-4 {
    padding-inline-start: 1.5rem !important;
  }
  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .px-sm-4 {
    padding-inline-start: 1.5rem !important;
    padding-inline-end: 1.5rem !important;
  }
  .py-sm-4 {
    padding-block-start: 1.5rem !important;
    padding-block-end: 1.5rem !important;
  }
}
@media (min-width: 992px) {
  .me-md-4 {
    margin-inline-end: 1.5rem !important;
  }
  .ms-md-4 {
    margin-inline-start: 1.5rem !important;
  }
  .mt-md-4 {
    margin-top: 1.5rem !important;
  }
  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .mx-md-4 {
    margin-inline-start: 1.5rem !important;
    margin-inline-end: 1.5rem !important;
  }
  .my-md-4 {
    margin-block-start: 1.5rem !important;
    margin-block-end: 1.5rem !important;
  }
  .me-md-auto {
    margin-inline-end: auto !important;
  }
  .ms-md-auto {
    margin-inline-start: auto !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .mx-md-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-md-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-md-4 {
    padding-inline-end: 1.5rem !important;
  }
  .ps-md-4 {
    padding-inline-start: 1.5rem !important;
  }
  .pt-md-4 {
    padding-top: 1.5rem !important;
  }
  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .px-md-4 {
    padding-inline-start: 1.5rem !important;
    padding-inline-end: 1.5rem !important;
  }
  .py-md-4 {
    padding-block-start: 1.5rem !important;
    padding-block-end: 1.5rem !important;
  }
}
@media (min-width: 1200px) {
  .me-lg-4 {
    margin-inline-end: 1.5rem !important;
  }
  .ms-lg-4 {
    margin-inline-start: 1.5rem !important;
  }
  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .mx-lg-4 {
    margin-inline-start: 1.5rem !important;
    margin-inline-end: 1.5rem !important;
  }
  .my-lg-4 {
    margin-block-start: 1.5rem !important;
    margin-block-end: 1.5rem !important;
  }
  .me-lg-auto {
    margin-inline-end: auto !important;
  }
  .ms-lg-auto {
    margin-inline-start: auto !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .mx-lg-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-lg-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-lg-4 {
    padding-inline-end: 1.5rem !important;
  }
  .ps-lg-4 {
    padding-inline-start: 1.5rem !important;
  }
  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .px-lg-4 {
    padding-inline-start: 1.5rem !important;
    padding-inline-end: 1.5rem !important;
  }
  .py-lg-4 {
    padding-block-start: 1.5rem !important;
    padding-block-end: 1.5rem !important;
  }
}
@media (min-width: 1440px) {
  .me-xl-4 {
    margin-inline-end: 1.5rem !important;
  }
  .ms-xl-4 {
    margin-inline-start: 1.5rem !important;
  }
  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .mx-xl-4 {
    margin-inline-start: 1.5rem !important;
    margin-inline-end: 1.5rem !important;
  }
  .my-xl-4 {
    margin-block-start: 1.5rem !important;
    margin-block-end: 1.5rem !important;
  }
  .me-xl-auto {
    margin-inline-end: auto !important;
  }
  .ms-xl-auto {
    margin-inline-start: auto !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .mx-xl-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-xl-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-xl-4 {
    padding-inline-end: 1.5rem !important;
  }
  .ps-xl-4 {
    padding-inline-start: 1.5rem !important;
  }
  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .px-xl-4 {
    padding-inline-start: 1.5rem !important;
    padding-inline-end: 1.5rem !important;
  }
  .py-xl-4 {
    padding-block-start: 1.5rem !important;
    padding-block-end: 1.5rem !important;
  }
}
@media (min-width: 576px) {
  .me-xs-5 {
    margin-inline-end: 3rem !important;
  }
  .ms-xs-5 {
    margin-inline-start: 3rem !important;
  }
  .mt-xs-5 {
    margin-top: 3rem !important;
  }
  .mb-xs-5 {
    margin-bottom: 3rem !important;
  }
  .mx-xs-5 {
    margin-inline-start: 3rem !important;
    margin-inline-end: 3rem !important;
  }
  .my-xs-5 {
    margin-block-start: 3rem !important;
    margin-block-end: 3rem !important;
  }
  .me-xs-auto {
    margin-inline-end: auto !important;
  }
  .ms-xs-auto {
    margin-inline-start: auto !important;
  }
  .mt-xs-auto {
    margin-top: auto !important;
  }
  .mb-xs-auto {
    margin-bottom: auto !important;
  }
  .mx-xs-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-xs-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-xs-5 {
    padding-inline-end: 3rem !important;
  }
  .ps-xs-5 {
    padding-inline-start: 3rem !important;
  }
  .pt-xs-5 {
    padding-top: 3rem !important;
  }
  .pb-xs-5 {
    padding-bottom: 3rem !important;
  }
  .px-xs-5 {
    padding-inline-start: 3rem !important;
    padding-inline-end: 3rem !important;
  }
  .py-xs-5 {
    padding-block-start: 3rem !important;
    padding-block-end: 3rem !important;
  }
}
@media (min-width: 768px) {
  .me-sm-5 {
    margin-inline-end: 3rem !important;
  }
  .ms-sm-5 {
    margin-inline-start: 3rem !important;
  }
  .mt-sm-5 {
    margin-top: 3rem !important;
  }
  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }
  .mx-sm-5 {
    margin-inline-start: 3rem !important;
    margin-inline-end: 3rem !important;
  }
  .my-sm-5 {
    margin-block-start: 3rem !important;
    margin-block-end: 3rem !important;
  }
  .me-sm-auto {
    margin-inline-end: auto !important;
  }
  .ms-sm-auto {
    margin-inline-start: auto !important;
  }
  .mt-sm-auto {
    margin-top: auto !important;
  }
  .mb-sm-auto {
    margin-bottom: auto !important;
  }
  .mx-sm-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-sm-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-sm-5 {
    padding-inline-end: 3rem !important;
  }
  .ps-sm-5 {
    padding-inline-start: 3rem !important;
  }
  .pt-sm-5 {
    padding-top: 3rem !important;
  }
  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }
  .px-sm-5 {
    padding-inline-start: 3rem !important;
    padding-inline-end: 3rem !important;
  }
  .py-sm-5 {
    padding-block-start: 3rem !important;
    padding-block-end: 3rem !important;
  }
}
@media (min-width: 992px) {
  .me-md-5 {
    margin-inline-end: 3rem !important;
  }
  .ms-md-5 {
    margin-inline-start: 3rem !important;
  }
  .mt-md-5 {
    margin-top: 3rem !important;
  }
  .mb-md-5 {
    margin-bottom: 3rem !important;
  }
  .mx-md-5 {
    margin-inline-start: 3rem !important;
    margin-inline-end: 3rem !important;
  }
  .my-md-5 {
    margin-block-start: 3rem !important;
    margin-block-end: 3rem !important;
  }
  .me-md-auto {
    margin-inline-end: auto !important;
  }
  .ms-md-auto {
    margin-inline-start: auto !important;
  }
  .mt-md-auto {
    margin-top: auto !important;
  }
  .mb-md-auto {
    margin-bottom: auto !important;
  }
  .mx-md-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-md-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-md-5 {
    padding-inline-end: 3rem !important;
  }
  .ps-md-5 {
    padding-inline-start: 3rem !important;
  }
  .pt-md-5 {
    padding-top: 3rem !important;
  }
  .pb-md-5 {
    padding-bottom: 3rem !important;
  }
  .px-md-5 {
    padding-inline-start: 3rem !important;
    padding-inline-end: 3rem !important;
  }
  .py-md-5 {
    padding-block-start: 3rem !important;
    padding-block-end: 3rem !important;
  }
}
@media (min-width: 1200px) {
  .me-lg-5 {
    margin-inline-end: 3rem !important;
  }
  .ms-lg-5 {
    margin-inline-start: 3rem !important;
  }
  .mt-lg-5 {
    margin-top: 3rem !important;
  }
  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }
  .mx-lg-5 {
    margin-inline-start: 3rem !important;
    margin-inline-end: 3rem !important;
  }
  .my-lg-5 {
    margin-block-start: 3rem !important;
    margin-block-end: 3rem !important;
  }
  .me-lg-auto {
    margin-inline-end: auto !important;
  }
  .ms-lg-auto {
    margin-inline-start: auto !important;
  }
  .mt-lg-auto {
    margin-top: auto !important;
  }
  .mb-lg-auto {
    margin-bottom: auto !important;
  }
  .mx-lg-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-lg-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-lg-5 {
    padding-inline-end: 3rem !important;
  }
  .ps-lg-5 {
    padding-inline-start: 3rem !important;
  }
  .pt-lg-5 {
    padding-top: 3rem !important;
  }
  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }
  .px-lg-5 {
    padding-inline-start: 3rem !important;
    padding-inline-end: 3rem !important;
  }
  .py-lg-5 {
    padding-block-start: 3rem !important;
    padding-block-end: 3rem !important;
  }
}
@media (min-width: 1440px) {
  .me-xl-5 {
    margin-inline-end: 3rem !important;
  }
  .ms-xl-5 {
    margin-inline-start: 3rem !important;
  }
  .mt-xl-5 {
    margin-top: 3rem !important;
  }
  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }
  .mx-xl-5 {
    margin-inline-start: 3rem !important;
    margin-inline-end: 3rem !important;
  }
  .my-xl-5 {
    margin-block-start: 3rem !important;
    margin-block-end: 3rem !important;
  }
  .me-xl-auto {
    margin-inline-end: auto !important;
  }
  .ms-xl-auto {
    margin-inline-start: auto !important;
  }
  .mt-xl-auto {
    margin-top: auto !important;
  }
  .mb-xl-auto {
    margin-bottom: auto !important;
  }
  .mx-xl-auto {
    margin-inline-start: auto !important;
    margin-inline-end: auto !important;
  }
  .my-xl-auto {
    margin-block-start: auto !important;
    margin-block-end: auto !important;
  }
  .pe-xl-5 {
    padding-inline-end: 3rem !important;
  }
  .ps-xl-5 {
    padding-inline-start: 3rem !important;
  }
  .pt-xl-5 {
    padding-top: 3rem !important;
  }
  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }
  .px-xl-5 {
    padding-inline-start: 3rem !important;
    padding-inline-end: 3rem !important;
  }
  .py-xl-5 {
    padding-block-start: 3rem !important;
    padding-block-end: 3rem !important;
  }
}
.mat-h1,
.mat-h2,
.mat-h3,
.mat-h4,
.mat-h5,
.mat-h6 {
  color: var(--text-strong);
}

.mat-h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.mat-h2 {
  font-size: 2rem;
  font-weight: bold;
}

.mat-h3 {
  font-size: 1.75rem;
  font-weight: bold;
}

.mat-h4 {
  font-size: 1.5rem;
  font-weight: bold;
}

.mat-h5 {
  font-size: 1.25rem;
  font-weight: bold;
}

.mat-h6 {
  font-size: 1.125rem;
  font-weight: bold;
}

.mat-body-1 {
  font-size: 1rem;
  font-weight: normal;
}

.mat-body-2 {
  font-size: 0.875rem;
  font-weight: normal;
}

.mat-caption {
  font-size: 0.75rem;
  font-weight: normal;
}

.mat-subheading-1 {
  font-size: 1.25rem;
  font-weight: bold;
}

.mat-subheading-2 {
  font-size: 1rem;
  font-weight: bold;
}

.mat-overline {
  font-size: 0.625rem;
  font-weight: normal;
}

.text-medium {
  color: var(--text-medium);
}

.text-strong {
  color: var(--text-strong);
}

.text-strong-lighter {
  color: var(--text-strong-lighter);
}

.text-disabled {
  color: var(--text-disabled);
}

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

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

.text-disappearing {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

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

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

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

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

.text-normal {
  font-weight: normal;
}

.text-bold {
  font-weight: bold;
}

.text-primary {
  color: var(--primary-color);
}

.text-accent {
  color: var(--accent-color);
}

.text-warn {
  color: var(--warn-color);
}

.text-limit-lines-2,
.text-limit-lines-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.text-limit-lines-2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.text-limit-lines-3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.text-active {
  color: var(--active-color) !important;
}

.text-draft {
  color: var(--draft-color) !important;
}

.text-paused {
  color: var(--paused-color) !important;
}

.text-refunded {
  color: var(--refunded-color) !important;
}

.text-canceled {
  color: var(--canceled-color) !important;
}

.text-ended {
  color: var(--ended-color) !important;
}

.text-paid {
  color: var(--paid-color) !important;
}

.cdk-overlay-container .cdk-overlay-backdrop {
  backdrop-filter: blur(3px);
  background-color: rgba(128, 128, 128, 0.12);
}
.cdk-overlay-container .cdk-global-overlay-wrapper .cdk-overlay-pane .mat-mdc-dialog-container {
  --mdc-dialog-container-elevation-shadow: var(--shadow-md);
  --mdc-dialog-container-shape: 8px;
  --mdc-dialog-subhead-color: inherit;
}
.cdk-overlay-container .cdk-global-overlay-wrapper .cdk-overlay-pane .mat-mdc-dialog-container .mdc-dialog__title {
  font-family: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  font-size: 1.35rem;
  font-weight: bold;
}
.cdk-overlay-container .cdk-global-overlay-wrapper .cdk-overlay-pane .mat-mdc-dialog-container .mdc-dialog__title:before {
  display: none;
}
.cdk-overlay-container .cdk-global-overlay-wrapper .cdk-overlay-pane .mat-mdc-dialog-container .mdc-dialog__content {
  letter-spacing: 0;
}

/* ui-dialog */
.ui-dialog {
  --mdc-dialog-supporting-text-font: var(--font-family);
}
.ui-dialog .mat-mdc-dialog-container .mdc-dialog__title {
  padding: 1.125rem 1.125rem 0 1.125rem;
}
.ui-dialog .mat-mdc-dialog-container .mdc-dialog__content {
  padding: 1.125rem;
}
.ui-dialog .mat-mdc-dialog-container .mdc-dialog__actions {
  padding: 0 1.125rem 1.125rem 1.125rem;
}
.ui-dialog.full-screen .mat-mdc-dialog-container .mdc-dialog__content {
  max-height: initial;
}
.ui-dialog.full-screen .mat-mdc-dialog-container .mdc-dialog__container .mat-mdc-dialog-surface > :first-child {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ui-dialog.full-screen .mat-mdc-dialog-container .mdc-dialog__container .mat-mdc-dialog-surface .mdc-dialog__content {
  max-height: initial;
}

/* ui-drawer */
.ui-drawer .mat-mdc-dialog-container .mdc-dialog__container .mat-mdc-dialog-surface {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.ui-drawer .mat-mdc-dialog-container .mdc-dialog__container .mat-mdc-dialog-surface > :first-child {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ui-drawer .mat-mdc-dialog-container .mdc-dialog__container .mat-mdc-dialog-surface .mdc-dialog__title {
  padding: 1.125rem 1.125rem 1rem 1.125rem;
}
.ui-drawer .mat-mdc-dialog-container .mdc-dialog__container .mat-mdc-dialog-surface .mdc-dialog__content {
  max-height: initial;
}
.ui-drawer .mat-mdc-dialog-container .mdc-dialog__container .mat-mdc-dialog-surface .mat-mdc-dialog-actions {
  position: sticky;
  bottom: 0;
  margin-top: auto;
  height: initial;
  min-height: initial;
  padding: 0;
}
.ui-drawer.slide-in-end .mat-mdc-dialog-container {
  transform: translateX(100%);
  animation: slide-in-end 0.3s forwards ease-out;
}
.ui-drawer.slide-in-end .mat-mdc-dialog-container .mdc-dialog__container .mat-mdc-dialog-surface {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

@keyframes slide-in-end {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
.mat-divider.mat-divider-vertical {
  margin: 0 0.75rem;
}

.mat-mdc-form-field-subscript-wrapper {
  display: none; /* removes angular material inputs space at the bottom */
}

.cdk-text-field-autofill-monitored:-webkit-autofill {
  border-radius: var(--input-border-radius);
  overflow: hidden;
}

.mat-mdc-menu-content .mat-mdc-menu-item .mat-mdc-menu-item-text {
  --mat-menu-item-label-text-font: var(--font-family);
}

.page-navigation {
  position: relative;
  padding-left: var(--page-sides-space);
  padding-right: var(--page-sides-space);
}
@media (max-width: 768px) {
  .page-navigation-container {
    margin-bottom: 0.75rem;
  }
}
@media (min-width: 768px) {
  .page-navigation-container {
    position: absolute;
    width: fit-content;
  }
}

.page-navigation-tools {
  padding-left: var(--page-sides-space);
  padding-right: var(--page-sides-space);
}
.page-navigation-tools-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-bottom: 1.5rem;
}
@media (max-width: 576px) {
  .page-navigation-tools-content {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0.5rem;
    margin-bottom: 0;
  }
  .page-navigation-tools-content > * {
    margin-bottom: 0.5rem;
  }
}
@media (min-width: 768px) {
  .page-navigation-tools-content:empty {
    min-height: 40px;
  }
}

.page-top-space {
  margin-top: 1rem;
}

.overlayer {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(2px);
}
.overlayer p {
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: var(--text-medium);
}
.overlayer:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--background-container);
  opacity: 0.65;
}

.mat-mdc-paginator-range-actions .mat-mdc-paginator-range-label {
  color: var(--text-disabled);
  margin: 0 0.25rem;
}

.mat-mdc-tooltip-trigger.mat-mdc-paginator-navigation-previous, .mat-mdc-tooltip-trigger.mat-mdc-paginator-navigation-next {
  width: 30px;
  height: 30px;
  padding: 3px;
}

.mat-mdc-paginator-page-size-label {
  color: var(--text-disabled);
  margin: 0 !important;
}

.ui-table {
  --mat-table-header-container-height: 40px;
  --mat-table-footer-container-height: 40px;
  --mat-table-row-item-container-height: 46px;
  --mat-table-header-headline-size: var(--font-size-sm);
  --mat-table-header-headline-font: var(--font-family);
  --mat-table-row-item-label-text-font: var(--font-family);
  border-radius: 8px;
  border: solid 1px var(--border-color);
  overflow-x: auto;
  overflow-y: auto;
  position: relative;
  min-height: 5vh;
  max-height: 86.5vh;
  background-color: var(--background-container);
}
.ui-table .mat-mdc-table {
  width: 100%;
}
.ui-table .mat-mdc-table thead {
  background-color: var(--background-medium);
}
.ui-table .mat-mdc-table thead th {
  width: 100px;
}
.ui-table .mat-mdc-table tbody.mdc-data-table__content {
  font-size: inherit;
}
.ui-table .mat-mdc-table tbody.mdc-data-table__content tr {
  font-size: inherit;
  cursor: pointer;
}

.mdc-tooltip__surface {
  --mdc-plain-tooltip-supporting-text-color: var(--text-strong);
  --mdc-plain-tooltip-container-color: var(--background-container);
  box-shadow: var(--shadow-lg);
  font-size: var(--font-size-sm) !important;
}
