/* src/styles.scss */
.filters-card {
  margin-bottom: 24px;
}
.filters-card mat-card-header {
  padding-bottom: 8px;
}
.filters-card mat-card-header mat-card-title {
  color: var(--mat-sys-primary);
  font-size: 16px;
}
.filters-card .filters-container {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.filters-card .filters-container mat-form-field {
  width: 100%;
}
.filters-card .filters-container .type-option {
  display: flex;
  align-items: center;
  gap: 8px;
}
.filters-card .filters-container .type-option mat-icon {
  font-size: 18px;
  width: 18px;
  height: 18px;
}
.filters-card .filters-container .filter-actions {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.filters-card .filters-container .filter-actions button {
  min-width: 64px;
  height: 56px;
  display: flex;
  align-items: center;
  margin-top: 0px;
}
.filters-card .filters-container .filter-actions button mat-icon {
  margin: 0;
}
.filters-card mat-chip-listbox > div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .filters-card .filters-container {
    flex-direction: column;
    gap: 0;
  }
  .filters-card mat-chip-listbox > div {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
}
mat-card {
  background-color: var(--mat-sys-background) !important;
  box-shadow: none !important;
  border-radius: 8px !important;
  border: 1px solid var(--mat-sys-outline) !important;
}
.dialog-container .header-container {
  padding: 16px;
}
.dialog-container .header-container .header-content {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.dialog-container .header-container .header-content .header-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  background-color: var(--mat-sys-primary-container);
  border-radius: 8px;
}
.dialog-container .header-container .header-content .header-icon mat-icon {
  color: var(--mat-sys-on-primary-container);
}
.dialog-container .header-container .title-text {
  font-size: 28px;
  font-weight: 600;
  color: var(--mat-sys-primary);
}
.dialog-container .header-container .status-chips {
  display: flex;
  gap: 8px;
}
.dialog-container mat-dialog-content .vertical-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
  padding-top: 16px;
}
.dialog-container mat-dialog-content .dialog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.dialog-container mat-dialog-content .dialog-grid .dialog-card mat-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dialog-container mat-dialog-content .dialog-grid .dialog-card mat-card-title .card-label {
  font-size: 16px;
}
.dialog-container mat-dialog-content .actions-section .actions-grid {
  display: flex;
  flex-direction: row;
  gap: 16px;
  min-height: 50px;
}
.dialog-container mat-dialog-content .actions-section .actions-grid button {
  min-width: 120px;
  width: auto;
}
.dialog-container mat-dialog-content .form-section {
  margin-top: 24px;
  margin-bottom: 16px;
}
.dialog-container mat-dialog-content .form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 8px 0 0 0;
}
.dialog-container mat-dialog-content .date-time-row {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
}
.dialog-container mat-dialog-content .full-width {
  width: 100%;
}
.dialog-container mat-dialog-content mat-form-field {
  width: 100%;
  min-width: 180px;
}
.dialog-container mat-dialog-content .form-errors {
  margin-top: 8px;
}
.dialog-container mat-dialog-content .form-errors mat-error {
  font-size: 14px;
  margin-bottom: 2px;
  color: var(--mat-sys-error);
}
.dialog-container mat-card-title {
  display: flex;
  align-items: center;
  gap: 8px;
}
.dialog-container mat-card-title .card-label {
  font-size: 16px;
}
.dialog-container .warnings-section {
  margin-top: 16px;
}
.dialog-container .preview-content {
  margin-top: 16px;
}
dialog-info p {
  max-height: 120px;
  overflow-y: auto;
  overflow-x: hidden;
  word-wrap: break-word;
}
@media (max-width: 768px) {
  .dialog-container mat-dialog-content .dialog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .dialog-container mat-dialog-content .actions-section .actions-grid {
    display: flex;
    flex-direction: row;
    gap: 8px;
    min-height: 50px;
  }
  .dialog-container mat-dialog-content .actions-section .actions-grid button {
    min-width: 120px;
    width: auto;
  }
  .dialog-container mat-dialog-content mat-form-field {
    min-width: 50px;
  }
}
button[mat-raised-button] {
  border-radius: 8px;
}
button[mat-flat-button] {
  border-radius: 8px;
}
button[mat-button] {
  border-radius: 8px;
}
html {
  --mat-sys-background: #17140a;
  --mat-sys-error: #ffb4ab;
  --mat-sys-error-container: #93000a;
  --mat-sys-inverse-on-surface: #343017;
  --mat-sys-inverse-primary: #7a2654;
  --mat-sys-inverse-surface: #eae4ae;
  --mat-sys-on-background: #eae4ae;
  --mat-sys-on-error: #690005;
  --mat-sys-on-error-container: #ffdad6;
  --mat-sys-on-primary: #42152e;
  --mat-sys-on-primary-container: #ffe8f1;
  --mat-sys-on-primary-fixed: #2d0a1f;
  --mat-sys-on-primary-fixed-variant: #5c1d3e;
  --mat-sys-on-secondary: #332c00;
  --mat-sys-on-secondary-container: #d9b900;
  --mat-sys-on-secondary-fixed: #352c00;
  --mat-sys-on-secondary-fixed-variant: #473c00;
  --mat-sys-on-surface: #eae4ae;
  --mat-sys-on-surface-variant: #e3dde6;
  --mat-sys-on-tertiary: #1a3e34;
  --mat-sys-on-tertiary-container: #a1d4ce;
  --mat-sys-on-tertiary-fixed: #0f2721;
  --mat-sys-on-tertiary-fixed-variant: #264c4c;
  --mat-sys-outline: #928d95;
  --mat-sys-outline-variant: #4a454b;
  --mat-sys-primary: #e75b95;
  --mat-sys-primary-container: #5c1d3e;
  --mat-sys-primary-fixed: #ffe8f1;
  --mat-sys-primary-fixed-dim: #e75b95;
  --mat-sys-scrim: #000000;
  --mat-sys-secondary: #bfa000;
  --mat-sys-secondary-container: #473c00;
  --mat-sys-secondary-fixed: #d9b900;
  --mat-sys-secondary-fixed-dim: #bfa000;
  --mat-sys-shadow: #000000;
  --mat-sys-surface: #17140a;
  --mat-sys-surface-bright: #3f3a1e;
  --mat-sys-surface-container: #241f10;
  --mat-sys-surface-container-high: #2f2a16;
  --mat-sys-surface-container-highest: #3a351c;
  --mat-sys-surface-container-low: #2d2916;
  --mat-sys-surface-container-lowest: #120f04;
  --mat-sys-surface-dim: #17140a;
  --mat-sys-surface-tint: #e75b95;
  --mat-sys-surface-variant: #4a454b;
  --mat-sys-tertiary: #7fb8b3;
  --mat-sys-tertiary-container: #264c4c;
  --mat-sys-tertiary-fixed: #a1d4ce;
  --mat-sys-tertiary-fixed-dim: #7fb8b3;
  --mat-sys-neutral-variant20: #332f35;
  --mat-sys-neutral10: #2d2916;
}
html {
  --mat-sys-level0:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
html {
  --mat-sys-level1:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
html {
  --mat-sys-level2:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
html {
  --mat-sys-level3:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
html {
  --mat-sys-level4:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
html {
  --mat-sys-level5:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
html {
  --mat-sys-body-large: 400 1rem / 1.5rem Roboto;
  --mat-sys-body-large-font: Roboto;
  --mat-sys-body-large-line-height: 1.5rem;
  --mat-sys-body-large-size: 1rem;
  --mat-sys-body-large-tracking: 0.031rem;
  --mat-sys-body-large-weight: 400;
  --mat-sys-body-medium: 400 0.875rem / 1.25rem Roboto;
  --mat-sys-body-medium-font: Roboto;
  --mat-sys-body-medium-line-height: 1.25rem;
  --mat-sys-body-medium-size: 0.875rem;
  --mat-sys-body-medium-tracking: 0.016rem;
  --mat-sys-body-medium-weight: 400;
  --mat-sys-body-small: 400 0.75rem / 1rem Roboto;
  --mat-sys-body-small-font: Roboto;
  --mat-sys-body-small-line-height: 1rem;
  --mat-sys-body-small-size: 0.75rem;
  --mat-sys-body-small-tracking: 0.025rem;
  --mat-sys-body-small-weight: 400;
  --mat-sys-display-large: 400 3.562rem / 4rem Roboto;
  --mat-sys-display-large-font: Roboto;
  --mat-sys-display-large-line-height: 4rem;
  --mat-sys-display-large-size: 3.562rem;
  --mat-sys-display-large-tracking: -0.016rem;
  --mat-sys-display-large-weight: 400;
  --mat-sys-display-medium: 400 2.812rem / 3.25rem Roboto;
  --mat-sys-display-medium-font: Roboto;
  --mat-sys-display-medium-line-height: 3.25rem;
  --mat-sys-display-medium-size: 2.812rem;
  --mat-sys-display-medium-tracking: 0;
  --mat-sys-display-medium-weight: 400;
  --mat-sys-display-small: 400 2.25rem / 2.75rem Roboto;
  --mat-sys-display-small-font: Roboto;
  --mat-sys-display-small-line-height: 2.75rem;
  --mat-sys-display-small-size: 2.25rem;
  --mat-sys-display-small-tracking: 0;
  --mat-sys-display-small-weight: 400;
  --mat-sys-headline-large: 400 2rem / 2.5rem Roboto;
  --mat-sys-headline-large-font: Roboto;
  --mat-sys-headline-large-line-height: 2.5rem;
  --mat-sys-headline-large-size: 2rem;
  --mat-sys-headline-large-tracking: 0;
  --mat-sys-headline-large-weight: 400;
  --mat-sys-headline-medium: 400 1.75rem / 2.25rem Roboto;
  --mat-sys-headline-medium-font: Roboto;
  --mat-sys-headline-medium-line-height: 2.25rem;
  --mat-sys-headline-medium-size: 1.75rem;
  --mat-sys-headline-medium-tracking: 0;
  --mat-sys-headline-medium-weight: 400;
  --mat-sys-headline-small: 400 1.5rem / 2rem Roboto;
  --mat-sys-headline-small-font: Roboto;
  --mat-sys-headline-small-line-height: 2rem;
  --mat-sys-headline-small-size: 1.5rem;
  --mat-sys-headline-small-tracking: 0;
  --mat-sys-headline-small-weight: 400;
  --mat-sys-label-large: 500 0.875rem / 1.25rem Roboto;
  --mat-sys-label-large-font: Roboto;
  --mat-sys-label-large-line-height: 1.25rem;
  --mat-sys-label-large-size: 0.875rem;
  --mat-sys-label-large-tracking: 0.006rem;
  --mat-sys-label-large-weight: 500;
  --mat-sys-label-large-weight-prominent: 700;
  --mat-sys-label-medium: 500 0.75rem / 1rem Roboto;
  --mat-sys-label-medium-font: Roboto;
  --mat-sys-label-medium-line-height: 1rem;
  --mat-sys-label-medium-size: 0.75rem;
  --mat-sys-label-medium-tracking: 0.031rem;
  --mat-sys-label-medium-weight: 500;
  --mat-sys-label-medium-weight-prominent: 700;
  --mat-sys-label-small: 500 0.688rem / 1rem Roboto;
  --mat-sys-label-small-font: Roboto;
  --mat-sys-label-small-line-height: 1rem;
  --mat-sys-label-small-size: 0.688rem;
  --mat-sys-label-small-tracking: 0.031rem;
  --mat-sys-label-small-weight: 500;
  --mat-sys-title-large: 400 1.375rem / 1.75rem Roboto;
  --mat-sys-title-large-font: Roboto;
  --mat-sys-title-large-line-height: 1.75rem;
  --mat-sys-title-large-size: 1.375rem;
  --mat-sys-title-large-tracking: 0;
  --mat-sys-title-large-weight: 400;
  --mat-sys-title-medium: 500 1rem / 1.5rem Roboto;
  --mat-sys-title-medium-font: Roboto;
  --mat-sys-title-medium-line-height: 1.5rem;
  --mat-sys-title-medium-size: 1rem;
  --mat-sys-title-medium-tracking: 0.009rem;
  --mat-sys-title-medium-weight: 500;
  --mat-sys-title-small: 500 0.875rem / 1.25rem Roboto;
  --mat-sys-title-small-font: Roboto;
  --mat-sys-title-small-line-height: 1.25rem;
  --mat-sys-title-small-size: 0.875rem;
  --mat-sys-title-small-tracking: 0.006rem;
  --mat-sys-title-small-weight: 500;
}
html {
  --mat-sys-corner-extra-large: 28px;
  --mat-sys-corner-extra-large-top: 28px 28px 0 0;
  --mat-sys-corner-extra-small: 4px;
  --mat-sys-corner-extra-small-top: 4px 4px 0 0;
  --mat-sys-corner-full: 9999px;
  --mat-sys-corner-large: 16px;
  --mat-sys-corner-large-end: 0 16px 16px 0;
  --mat-sys-corner-large-start: 16px 0 0 16px;
  --mat-sys-corner-large-top: 16px 16px 0 0;
  --mat-sys-corner-medium: 12px;
  --mat-sys-corner-none: 0;
  --mat-sys-corner-small: 8px;
}
html {
  --mat-sys-dragged-state-layer-opacity: 0.16;
  --mat-sys-focus-state-layer-opacity: 0.12;
  --mat-sys-hover-state-layer-opacity: 0.08;
  --mat-sys-pressed-state-layer-opacity: 0.12;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    Roboto,
    "Helvetica Neue",
    sans-serif;
}
html.light-theme {
  --slot-color-empty-bg: #671149;
  --slot-color-empty-text: #F7FDFC;
  --slot-color-empty-border: #8F1C5B;
  --slot-color-assigned-bg: #E75B95;
  --slot-color-assigned-text: #F7FDFC;
  --slot-color-assigned-border: #671149;
  --slot-color-submitted-bg: #E1FCF6;
  --slot-color-submitted-text: #671149;
  --slot-color-submitted-border: #5EA29B;
  --slot-color-completed-bg: #5EA29B;
  --slot-color-completed-text: #F7FDFC;
  --slot-color-completed-border: #E1FCF6;
  --slot-color-expired-bg: #9578F7;
  --slot-color-expired-text: #F7FDFC;
  --slot-color-expired-border: #E75B95;
  --slot-color-expire-soon-bg: #B65C22;
  --slot-color-expire-soon-text: #F7FDFC;
  --slot-color-expire-soon-border: #aa8d7a;
  --petal-color: #eeb9c6;
  --opacity-bg: 0.3;
}
html.light-theme {
  --mat-sys-background: #fff7db;
  --mat-sys-error: #ba1a1a;
  --mat-sys-error-container: #ffdad6;
  --mat-sys-inverse-on-surface: #f8f2cd;
  --mat-sys-inverse-primary: #e75b95;
  --mat-sys-inverse-surface: #343017;
  --mat-sys-on-background: #2d2916;
  --mat-sys-on-error: #ffffff;
  --mat-sys-on-error-container: #93000a;
  --mat-sys-on-primary: #ffffff;
  --mat-sys-on-primary-container: #5c1d3e;
  --mat-sys-on-primary-fixed: #2d0a1f;
  --mat-sys-on-primary-fixed-variant: #5c1d3e;
  --mat-sys-on-secondary: #ffffff;
  --mat-sys-on-secondary-container: #473c00;
  --mat-sys-on-secondary-fixed: #352c00;
  --mat-sys-on-secondary-fixed-variant: #473c00;
  --mat-sys-on-surface: #2d2916;
  --mat-sys-on-surface-variant: #4a454b;
  --mat-sys-on-tertiary: #ffffff;
  --mat-sys-on-tertiary-container: #264c4c;
  --mat-sys-on-tertiary-fixed: #0f2721;
  --mat-sys-on-tertiary-fixed-variant: #264c4c;
  --mat-sys-outline: #79747b;
  --mat-sys-outline-variant: #c7c2ca;
  --mat-sys-primary: #7a2654;
  --mat-sys-primary-container: #ffe8f1;
  --mat-sys-primary-fixed: #ffe8f1;
  --mat-sys-primary-fixed-dim: #e75b95;
  --mat-sys-scrim: #000000;
  --mat-sys-secondary: #5d4c00;
  --mat-sys-secondary-container: #d9b900;
  --mat-sys-secondary-fixed: #d9b900;
  --mat-sys-secondary-fixed-dim: #bfa000;
  --mat-sys-shadow: #000000;
  --mat-sys-surface: #fff7db;
  --mat-sys-surface-bright: #fff7db;
  --mat-sys-surface-container: #f3eddc;
  --mat-sys-surface-container-high: #ede7d2;
  --mat-sys-surface-container-highest: #eae4ae;
  --mat-sys-surface-container-low: #f9f3e6;
  --mat-sys-surface-container-lowest: #ffffff;
  --mat-sys-surface-dim: #e2dcc4;
  --mat-sys-surface-tint: #7a2654;
  --mat-sys-surface-variant: #e3dde6;
  --mat-sys-tertiary: #326063;
  --mat-sys-tertiary-container: #a1d4ce;
  --mat-sys-tertiary-fixed: #a1d4ce;
  --mat-sys-tertiary-fixed-dim: #7fb8b3;
  --mat-sys-neutral-variant20: #332f35;
  --mat-sys-neutral10: #2d2916;
}
html.light-theme {
  --mat-sys-level0:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
html.light-theme {
  --mat-sys-level1:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
html.light-theme {
  --mat-sys-level2:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
html.light-theme {
  --mat-sys-level3:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
html.light-theme {
  --mat-sys-level4:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
html.light-theme {
  --mat-sys-level5:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
html.light-theme {
  --mat-sys-body-large: 400 1rem / 1.5rem Roboto;
  --mat-sys-body-large-font: Roboto;
  --mat-sys-body-large-line-height: 1.5rem;
  --mat-sys-body-large-size: 1rem;
  --mat-sys-body-large-tracking: 0.031rem;
  --mat-sys-body-large-weight: 400;
  --mat-sys-body-medium: 400 0.875rem / 1.25rem Roboto;
  --mat-sys-body-medium-font: Roboto;
  --mat-sys-body-medium-line-height: 1.25rem;
  --mat-sys-body-medium-size: 0.875rem;
  --mat-sys-body-medium-tracking: 0.016rem;
  --mat-sys-body-medium-weight: 400;
  --mat-sys-body-small: 400 0.75rem / 1rem Roboto;
  --mat-sys-body-small-font: Roboto;
  --mat-sys-body-small-line-height: 1rem;
  --mat-sys-body-small-size: 0.75rem;
  --mat-sys-body-small-tracking: 0.025rem;
  --mat-sys-body-small-weight: 400;
  --mat-sys-display-large: 400 3.562rem / 4rem Roboto;
  --mat-sys-display-large-font: Roboto;
  --mat-sys-display-large-line-height: 4rem;
  --mat-sys-display-large-size: 3.562rem;
  --mat-sys-display-large-tracking: -0.016rem;
  --mat-sys-display-large-weight: 400;
  --mat-sys-display-medium: 400 2.812rem / 3.25rem Roboto;
  --mat-sys-display-medium-font: Roboto;
  --mat-sys-display-medium-line-height: 3.25rem;
  --mat-sys-display-medium-size: 2.812rem;
  --mat-sys-display-medium-tracking: 0;
  --mat-sys-display-medium-weight: 400;
  --mat-sys-display-small: 400 2.25rem / 2.75rem Roboto;
  --mat-sys-display-small-font: Roboto;
  --mat-sys-display-small-line-height: 2.75rem;
  --mat-sys-display-small-size: 2.25rem;
  --mat-sys-display-small-tracking: 0;
  --mat-sys-display-small-weight: 400;
  --mat-sys-headline-large: 400 2rem / 2.5rem Roboto;
  --mat-sys-headline-large-font: Roboto;
  --mat-sys-headline-large-line-height: 2.5rem;
  --mat-sys-headline-large-size: 2rem;
  --mat-sys-headline-large-tracking: 0;
  --mat-sys-headline-large-weight: 400;
  --mat-sys-headline-medium: 400 1.75rem / 2.25rem Roboto;
  --mat-sys-headline-medium-font: Roboto;
  --mat-sys-headline-medium-line-height: 2.25rem;
  --mat-sys-headline-medium-size: 1.75rem;
  --mat-sys-headline-medium-tracking: 0;
  --mat-sys-headline-medium-weight: 400;
  --mat-sys-headline-small: 400 1.5rem / 2rem Roboto;
  --mat-sys-headline-small-font: Roboto;
  --mat-sys-headline-small-line-height: 2rem;
  --mat-sys-headline-small-size: 1.5rem;
  --mat-sys-headline-small-tracking: 0;
  --mat-sys-headline-small-weight: 400;
  --mat-sys-label-large: 500 0.875rem / 1.25rem Roboto;
  --mat-sys-label-large-font: Roboto;
  --mat-sys-label-large-line-height: 1.25rem;
  --mat-sys-label-large-size: 0.875rem;
  --mat-sys-label-large-tracking: 0.006rem;
  --mat-sys-label-large-weight: 500;
  --mat-sys-label-large-weight-prominent: 700;
  --mat-sys-label-medium: 500 0.75rem / 1rem Roboto;
  --mat-sys-label-medium-font: Roboto;
  --mat-sys-label-medium-line-height: 1rem;
  --mat-sys-label-medium-size: 0.75rem;
  --mat-sys-label-medium-tracking: 0.031rem;
  --mat-sys-label-medium-weight: 500;
  --mat-sys-label-medium-weight-prominent: 700;
  --mat-sys-label-small: 500 0.688rem / 1rem Roboto;
  --mat-sys-label-small-font: Roboto;
  --mat-sys-label-small-line-height: 1rem;
  --mat-sys-label-small-size: 0.688rem;
  --mat-sys-label-small-tracking: 0.031rem;
  --mat-sys-label-small-weight: 500;
  --mat-sys-title-large: 400 1.375rem / 1.75rem Roboto;
  --mat-sys-title-large-font: Roboto;
  --mat-sys-title-large-line-height: 1.75rem;
  --mat-sys-title-large-size: 1.375rem;
  --mat-sys-title-large-tracking: 0;
  --mat-sys-title-large-weight: 400;
  --mat-sys-title-medium: 500 1rem / 1.5rem Roboto;
  --mat-sys-title-medium-font: Roboto;
  --mat-sys-title-medium-line-height: 1.5rem;
  --mat-sys-title-medium-size: 1rem;
  --mat-sys-title-medium-tracking: 0.009rem;
  --mat-sys-title-medium-weight: 500;
  --mat-sys-title-small: 500 0.875rem / 1.25rem Roboto;
  --mat-sys-title-small-font: Roboto;
  --mat-sys-title-small-line-height: 1.25rem;
  --mat-sys-title-small-size: 0.875rem;
  --mat-sys-title-small-tracking: 0.006rem;
  --mat-sys-title-small-weight: 500;
}
html.light-theme {
  --mat-sys-corner-extra-large: 28px;
  --mat-sys-corner-extra-large-top: 28px 28px 0 0;
  --mat-sys-corner-extra-small: 4px;
  --mat-sys-corner-extra-small-top: 4px 4px 0 0;
  --mat-sys-corner-full: 9999px;
  --mat-sys-corner-large: 16px;
  --mat-sys-corner-large-end: 0 16px 16px 0;
  --mat-sys-corner-large-start: 16px 0 0 16px;
  --mat-sys-corner-large-top: 16px 16px 0 0;
  --mat-sys-corner-medium: 12px;
  --mat-sys-corner-none: 0;
  --mat-sys-corner-small: 8px;
}
html.light-theme {
  --mat-sys-dragged-state-layer-opacity: 0.16;
  --mat-sys-focus-state-layer-opacity: 0.12;
  --mat-sys-hover-state-layer-opacity: 0.08;
  --mat-sys-pressed-state-layer-opacity: 0.12;
}
html.dark-theme {
  --slot-color-empty-bg: #671149;
  --slot-color-empty-text: #F7FDFC;
  --slot-color-empty-border: #8F1C5B;
  --slot-color-assigned-bg: #E75B95;
  --slot-color-assigned-text: #F7FDFC;
  --slot-color-assigned-border: #671149;
  --slot-color-submitted-bg: #E1FCF6;
  --slot-color-submitted-text: #671149;
  --slot-color-submitted-border: #5EA29B;
  --slot-color-completed-bg: #5EA29B;
  --slot-color-completed-text: #F7FDFC;
  --slot-color-completed-border: #E1FCF6;
  --slot-color-expired-bg: #9578F7;
  --slot-color-expired-text: #F7FDFC;
  --slot-color-expired-border: #E75B95;
  --slot-color-expire-soon-bg: #B65C22;
  --slot-color-expire-soon-text: #F7FDFC;
  --slot-color-expire-soon-border: #aa8d7a;
  --petal-color: #eeb9c6;
  --opacity-bg: 0.1;
}
html.dark-theme {
  --mat-sys-background: #17140a;
  --mat-sys-error: #ffb4ab;
  --mat-sys-error-container: #93000a;
  --mat-sys-inverse-on-surface: #343017;
  --mat-sys-inverse-primary: #7a2654;
  --mat-sys-inverse-surface: #eae4ae;
  --mat-sys-on-background: #eae4ae;
  --mat-sys-on-error: #690005;
  --mat-sys-on-error-container: #ffdad6;
  --mat-sys-on-primary: #42152e;
  --mat-sys-on-primary-container: #ffe8f1;
  --mat-sys-on-primary-fixed: #2d0a1f;
  --mat-sys-on-primary-fixed-variant: #5c1d3e;
  --mat-sys-on-secondary: #332c00;
  --mat-sys-on-secondary-container: #d9b900;
  --mat-sys-on-secondary-fixed: #352c00;
  --mat-sys-on-secondary-fixed-variant: #473c00;
  --mat-sys-on-surface: #eae4ae;
  --mat-sys-on-surface-variant: #e3dde6;
  --mat-sys-on-tertiary: #1a3e34;
  --mat-sys-on-tertiary-container: #a1d4ce;
  --mat-sys-on-tertiary-fixed: #0f2721;
  --mat-sys-on-tertiary-fixed-variant: #264c4c;
  --mat-sys-outline: #928d95;
  --mat-sys-outline-variant: #4a454b;
  --mat-sys-primary: #e75b95;
  --mat-sys-primary-container: #5c1d3e;
  --mat-sys-primary-fixed: #ffe8f1;
  --mat-sys-primary-fixed-dim: #e75b95;
  --mat-sys-scrim: #000000;
  --mat-sys-secondary: #bfa000;
  --mat-sys-secondary-container: #473c00;
  --mat-sys-secondary-fixed: #d9b900;
  --mat-sys-secondary-fixed-dim: #bfa000;
  --mat-sys-shadow: #000000;
  --mat-sys-surface: #17140a;
  --mat-sys-surface-bright: #3f3a1e;
  --mat-sys-surface-container: #241f10;
  --mat-sys-surface-container-high: #2f2a16;
  --mat-sys-surface-container-highest: #3a351c;
  --mat-sys-surface-container-low: #2d2916;
  --mat-sys-surface-container-lowest: #120f04;
  --mat-sys-surface-dim: #17140a;
  --mat-sys-surface-tint: #e75b95;
  --mat-sys-surface-variant: #4a454b;
  --mat-sys-tertiary: #7fb8b3;
  --mat-sys-tertiary-container: #264c4c;
  --mat-sys-tertiary-fixed: #a1d4ce;
  --mat-sys-tertiary-fixed-dim: #7fb8b3;
  --mat-sys-neutral-variant20: #332f35;
  --mat-sys-neutral10: #2d2916;
}
html.dark-theme {
  --mat-sys-level0:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
html.dark-theme {
  --mat-sys-level1:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
html.dark-theme {
  --mat-sys-level2:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
html.dark-theme {
  --mat-sys-level3:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
html.dark-theme {
  --mat-sys-level4:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
html.dark-theme {
  --mat-sys-level5:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
}
html.dark-theme {
  --mat-sys-body-large: 400 1rem / 1.5rem Roboto;
  --mat-sys-body-large-font: Roboto;
  --mat-sys-body-large-line-height: 1.5rem;
  --mat-sys-body-large-size: 1rem;
  --mat-sys-body-large-tracking: 0.031rem;
  --mat-sys-body-large-weight: 400;
  --mat-sys-body-medium: 400 0.875rem / 1.25rem Roboto;
  --mat-sys-body-medium-font: Roboto;
  --mat-sys-body-medium-line-height: 1.25rem;
  --mat-sys-body-medium-size: 0.875rem;
  --mat-sys-body-medium-tracking: 0.016rem;
  --mat-sys-body-medium-weight: 400;
  --mat-sys-body-small: 400 0.75rem / 1rem Roboto;
  --mat-sys-body-small-font: Roboto;
  --mat-sys-body-small-line-height: 1rem;
  --mat-sys-body-small-size: 0.75rem;
  --mat-sys-body-small-tracking: 0.025rem;
  --mat-sys-body-small-weight: 400;
  --mat-sys-display-large: 400 3.562rem / 4rem Roboto;
  --mat-sys-display-large-font: Roboto;
  --mat-sys-display-large-line-height: 4rem;
  --mat-sys-display-large-size: 3.562rem;
  --mat-sys-display-large-tracking: -0.016rem;
  --mat-sys-display-large-weight: 400;
  --mat-sys-display-medium: 400 2.812rem / 3.25rem Roboto;
  --mat-sys-display-medium-font: Roboto;
  --mat-sys-display-medium-line-height: 3.25rem;
  --mat-sys-display-medium-size: 2.812rem;
  --mat-sys-display-medium-tracking: 0;
  --mat-sys-display-medium-weight: 400;
  --mat-sys-display-small: 400 2.25rem / 2.75rem Roboto;
  --mat-sys-display-small-font: Roboto;
  --mat-sys-display-small-line-height: 2.75rem;
  --mat-sys-display-small-size: 2.25rem;
  --mat-sys-display-small-tracking: 0;
  --mat-sys-display-small-weight: 400;
  --mat-sys-headline-large: 400 2rem / 2.5rem Roboto;
  --mat-sys-headline-large-font: Roboto;
  --mat-sys-headline-large-line-height: 2.5rem;
  --mat-sys-headline-large-size: 2rem;
  --mat-sys-headline-large-tracking: 0;
  --mat-sys-headline-large-weight: 400;
  --mat-sys-headline-medium: 400 1.75rem / 2.25rem Roboto;
  --mat-sys-headline-medium-font: Roboto;
  --mat-sys-headline-medium-line-height: 2.25rem;
  --mat-sys-headline-medium-size: 1.75rem;
  --mat-sys-headline-medium-tracking: 0;
  --mat-sys-headline-medium-weight: 400;
  --mat-sys-headline-small: 400 1.5rem / 2rem Roboto;
  --mat-sys-headline-small-font: Roboto;
  --mat-sys-headline-small-line-height: 2rem;
  --mat-sys-headline-small-size: 1.5rem;
  --mat-sys-headline-small-tracking: 0;
  --mat-sys-headline-small-weight: 400;
  --mat-sys-label-large: 500 0.875rem / 1.25rem Roboto;
  --mat-sys-label-large-font: Roboto;
  --mat-sys-label-large-line-height: 1.25rem;
  --mat-sys-label-large-size: 0.875rem;
  --mat-sys-label-large-tracking: 0.006rem;
  --mat-sys-label-large-weight: 500;
  --mat-sys-label-large-weight-prominent: 700;
  --mat-sys-label-medium: 500 0.75rem / 1rem Roboto;
  --mat-sys-label-medium-font: Roboto;
  --mat-sys-label-medium-line-height: 1rem;
  --mat-sys-label-medium-size: 0.75rem;
  --mat-sys-label-medium-tracking: 0.031rem;
  --mat-sys-label-medium-weight: 500;
  --mat-sys-label-medium-weight-prominent: 700;
  --mat-sys-label-small: 500 0.688rem / 1rem Roboto;
  --mat-sys-label-small-font: Roboto;
  --mat-sys-label-small-line-height: 1rem;
  --mat-sys-label-small-size: 0.688rem;
  --mat-sys-label-small-tracking: 0.031rem;
  --mat-sys-label-small-weight: 500;
  --mat-sys-title-large: 400 1.375rem / 1.75rem Roboto;
  --mat-sys-title-large-font: Roboto;
  --mat-sys-title-large-line-height: 1.75rem;
  --mat-sys-title-large-size: 1.375rem;
  --mat-sys-title-large-tracking: 0;
  --mat-sys-title-large-weight: 400;
  --mat-sys-title-medium: 500 1rem / 1.5rem Roboto;
  --mat-sys-title-medium-font: Roboto;
  --mat-sys-title-medium-line-height: 1.5rem;
  --mat-sys-title-medium-size: 1rem;
  --mat-sys-title-medium-tracking: 0.009rem;
  --mat-sys-title-medium-weight: 500;
  --mat-sys-title-small: 500 0.875rem / 1.25rem Roboto;
  --mat-sys-title-small-font: Roboto;
  --mat-sys-title-small-line-height: 1.25rem;
  --mat-sys-title-small-size: 0.875rem;
  --mat-sys-title-small-tracking: 0.006rem;
  --mat-sys-title-small-weight: 500;
}
html.dark-theme {
  --mat-sys-corner-extra-large: 28px;
  --mat-sys-corner-extra-large-top: 28px 28px 0 0;
  --mat-sys-corner-extra-small: 4px;
  --mat-sys-corner-extra-small-top: 4px 4px 0 0;
  --mat-sys-corner-full: 9999px;
  --mat-sys-corner-large: 16px;
  --mat-sys-corner-large-end: 0 16px 16px 0;
  --mat-sys-corner-large-start: 16px 0 0 16px;
  --mat-sys-corner-large-top: 16px 16px 0 0;
  --mat-sys-corner-medium: 12px;
  --mat-sys-corner-none: 0;
  --mat-sys-corner-small: 8px;
}
html.dark-theme {
  --mat-sys-dragged-state-layer-opacity: 0.16;
  --mat-sys-focus-state-layer-opacity: 0.12;
  --mat-sys-hover-state-layer-opacity: 0.08;
  --mat-sys-pressed-state-layer-opacity: 0.12;
}
.cdk-overlay-dark-backdrop {
  backdrop-filter: blur(4px) !important;
}
body {
  background-color: var(--mat-sys-background);
}
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/assets/public/img/bg.png);
  background-size: contain;
  background-position: center;
  opacity: var(--opacity-bg);
  z-index: -1;
}
@media (max-width: 600px) {
  body::before {
    background-image: url(/assets/public/img/bg.png);
    background-size: contain;
    background-position: center;
  }
}

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