@import "https://fonts.googleapis.com/css2?family=Public+Sans:wght@300;400;500;600&display=swap";

/* src/styles.scss */
a {
  color: #0b78f0;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a.bold {
  font-weight: 600;
}
a.bolder {
  font-weight: 700;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-15 {
  gap: 15px;
}
.mb-12 {
  margin-bottom: 12px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mix-blend {
  mix-blend-mode: difference;
}
.pbs-12 {
  padding-bottom: 3rem;
}
.flex {
  display: flex;
}
.flex-col {
  flex-direction: column;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.items-center {
  align-items: center;
}
.heading {
  font-size: 36px;
  text-shadow: 1px 1px 2px rgba(34, 34, 34, 0.5);
}
@media (max-width: 768px) {
  .heading {
    font-size: 25px;
  }
}
.sub-heading {
  font-size: 20px;
  text-shadow: 0 1px 0px rgba(199, 196, 196, 0.5);
}
@media (max-width: 768px) {
  .sub-heading {
    font-size: 20px;
  }
}
.sub-heading.light {
  color: white;
}
.sub-heading.dark {
  color: #515969;
}
h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.justify-center {
  justify-content: center;
}
.text-center {
  text-align: center;
}
.text-xl {
  font-size: 1.25rem;
}
.text-lg {
  font-size: 1.125rem;
}
.h-24 {
  height: 6rem;
}
.relative {
  position: relative;
}
.ml-10px {
  margin-left: 10px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-0 {
  margin-top: 0;
}
.mt-15 {
  margin-top: 15px;
}
.mb-0 {
  margin-bottom: 0;
}
.pl-3 {
  padding-left: 0.75rem;
}
.pr-4 {
  padding-right: 1rem;
}
.absolute {
  position: absolute;
}
.bottom-0 {
  bottom: 0;
}
.right-0 {
  right: 0;
}
.p-2 {
  padding: 0.5rem;
}
.w-100px {
  width: 100px;
}
.text-right {
  text-align: right;
}
.nowrap {
  white-space: nowrap;
}
.rounded-avatar {
  border-radius: 50%;
}
.error-alert {
  padding: 16px;
  background-color: #ffefef;
  border: 1px solid #f8d7da;
  color: #842029;
  border-radius: 8px;
}
.table-responsive {
  overflow: auto;
  width: 100%;
}
.center-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-mat-paginator {
  margin-bottom: 5px;
  background-color: rgba(249, 250, 251, 0.2);
}
.filters-section {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}
.search-wrapper {
  width: 30%;
  min-width: 220px;
}
.buttons-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.selected-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
  background: #f9fafb;
  border-radius: 6px;
  color: #1f2329;
  font-size: 0.9rem;
}
.filter-chip__value {
  font-weight: 600;
  margin-left: 0.25rem;
}
.filter-close {
  background: none;
  border: none;
  padding: 0.25rem;
  margin-left: 0.25rem;
}
.theme-dropdown-list,
.category-filter-list {
  position: absolute;
  z-index: 2000;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  min-width: 160px;
  max-width: 320px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  padding: 0.25rem 0;
  overflow: auto;
  max-height: 320px;
}
.theme-dropdown-item,
.category-filter-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #1f2329;
  font-size: 0.95rem;
  transition: background-color 160ms ease, color 160ms ease;
}
.theme-dropdown-item:hover,
.theme-dropdown-item:focus,
.category-filter-item:hover,
.category-filter-item:focus {
  background: #f3f4f6;
  outline: none;
}
.theme-dropdown-item.selected,
.category-filter-item.selected {
  background: #eef2ff;
}
.theme-dropdown-item:focus-visible,
.category-filter-item:focus-visible {
  box-shadow: inset 0 0 0 3px rgba(59, 130, 246, 0.12);
}
.loading-state {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}
.loading-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.empty-state {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
}
.bg-primary {
  background-color: #003b88;
}
.bg-secondary {
  background-color: #90c6ff;
}
.text-light {
  color: #d1d6dd;
}
.text-dark {
  color: #1f2329 !important;
}
.rotate-on-hover-20 {
  transition: transform 0.3s ease;
}
.rotate-on-hover-20:hover {
  transform: rotate(20deg);
}
.extend-on-hover {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  width: 36px;
  height: 36px;
  transition: width 0.3s ease 0.3s, border-radius 0.3s ease 0.3s;
}
.extend-on-hover .icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.extend-on-hover .label {
  opacity: 0;
  max-width: 0;
  transition:
    opacity 0.3s ease,
    max-width 0.3s ease,
    margin 0.3s ease;
}
.extend-on-hover:hover {
  transition: width 0.3s ease 0s, border-radius 0.3s ease 0s;
  width: 140px !important;
  border-radius: 8px !important;
}
.extend-on-hover:hover .icon {
  margin-left: 0;
  margin-right: 0;
  transform: rotate(20deg);
}
.extend-on-hover:hover .label {
  opacity: 1;
  max-width: 110px;
  margin-left: 4px;
  transition:
    opacity 0.3s ease 0.5s,
    max-width 0.3s ease 0.4s,
    margin 0.3s ease 0.4s;
}
.btn-circle-small.extend-on-hover:hover {
  width: 140px !important;
  min-width: 140px !important;
  max-width: 140px !important;
}
.btn {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
  color: white;
  border: none;
  border-radius: 20px !important;
  cursor: pointer;
  transition:
    background-color 200ms ease,
    transform 120ms ease,
    box-shadow 120ms ease;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: auto;
  padding: 8px 12px;
}
.btn.narrow {
  width: 80px;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-primary {
  background: #276749 !important;
  color: #1f2329;
  border: 1px solid rgba(31, 35, 41, 0.12);
  box-shadow: none;
  padding: 7px 12px;
}
.btn-primary:hover {
  background: rgb(220.8897959184, 223.3795918367, 228.1102040816);
}
.btn-primary:focus {
  outline: 3px solid hsl(210.8108108108, 100%, 118.2352941176%);
  outline-offset: 2px;
}
.btn-secondary {
  background-color: #6ecfa2 !important;
  color: #fff !important;
  box-shadow: 0 6px 14px rgba(144, 198, 255, 0.12);
  padding: 8px 14px;
}
.btn-secondary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(144, 198, 255, 0.14);
}
.btn-secondary:active {
  transform: translateY(0);
}
.btn-secondary:focus {
  outline: 1px solid #48bb78;
  outline-offset: 2px;
}
.btn-danger {
  background-color: #c53030;
  color: white;
}
.btn-link {
  color: #1f2329;
  font-weight: 550;
}
.btn-link:hover {
  color: rgb(9.0416666667, 10.2083333333, 11.9583333333);
}
.btn-success {
  background-color: #10b981;
  color: white;
}
.btn-success:hover {
  background-color: #059669;
}
.btn-neutral {
  background-color: #6b7280;
  color: white;
}
.btn-neutral:hover {
  background-color: #4b5563;
}
.btn-small {
  width: auto;
  padding: 4px 8px;
  font-size: 13px;
}
.btn-circle,
.btn-circle-large,
.btn-circle-medium,
.btn-circle-small,
.btn-circle-tiny {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0;
}
.btn-circle .icon,
.btn-circle-large .icon,
.btn-circle-medium .icon,
.btn-circle-small .icon,
.btn-circle-tiny .icon {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.btn-circle-tiny {
  border-radius: 12px;
  width: 24px;
  height: 24px;
}
.btn-circle-tiny .icon {
  height: 24px !important;
  width: 24px !important;
  font-size: 24px !important;
}
.btn-circle-small {
  border-radius: 18px !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  max-width: 36px !important;
  min-height: 36px !important;
  max-height: 36px !important;
}
.btn-circle-small .icon {
  height: 18px !important;
  width: 18px !important;
  font-size: 18px !important;
}
.btn-circle-medium {
  width: 48px;
  height: 48px;
  border-radius: 24px !important;
}
.btn-circle-large {
  width: 60px;
  height: 60px;
  border-radius: 30px;
}
.btn-circle-large .icon {
  margin-left: 12px;
  height: 36px;
  width: 36px;
  font-size: 36px;
}
.action-circle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eef2ff;
  border: none;
  cursor: pointer;
  transition:
    background-color 150ms ease,
    transform 150ms ease,
    box-shadow 150ms ease;
}
.action-circle-btn:hover {
  background: #e0e7ff;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(99, 102, 241, 0.18);
}
.action-circle-btn:active {
  transform: translateY(0);
  box-shadow: none;
}
.icon-button {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}
.icon-button:hover {
  opacity: 0.7;
}
.icon-button:focus {
  outline: 2px solid #90c6ff;
  outline-offset: 2px;
}
.edit-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 20;
  opacity: 0;
  transition: opacity 120ms ease, transform 120ms ease;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  padding: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}
.edit-btn:hover {
  transform: translateY(-1px);
}
.edit-btn:focus {
  opacity: 1;
}
.grid-card {
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f8fafc 100%);
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(71, 85, 105, 0.08);
  border-radius: 12px;
  color: rgba(19, 15, 15, 0.918);
  padding: 16px;
  margin: 16px 0;
  z-index: 10;
  width: 100%;
}
.card,
.left-image-card,
.right-image-card {
  display: flex;
  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f8fafc 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(71, 85, 105, 0.08);
  overflow: visible;
  position: relative;
  padding: 24px;
  margin: 15px 0;
}
.card-content,
.card-actions {
  color: #1f2329;
  flex: 1;
}
.card-content-vertical {
  color: #1f2329;
  flex: 1;
  flex-direction: column;
}
.card-header,
.card-header-uppercase {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #6c7689;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.card-header .dark,
.card-header-uppercase .dark {
  color: #1f2329;
}
@media (max-width: 768px) {
  .card-header,
  .card-header-uppercase {
    font-size: 0.9rem;
  }
}
.card-header-uppercase {
  text-transform: uppercase;
}
.card-content-value {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #111827;
}
@media (max-width: 768px) {
  .card-content-value {
    font-size: 1.2rem;
  }
}
.right-image-card .card-content {
  padding-right: 24px;
  padding-left: 12px;
}
@media (max-width: 768px) {
  .right-image-card .card-content {
    padding-right: 16px;
    width: 100%;
  }
}
.right-image-card .card-image {
  position: absolute;
  right: -20px;
  top: -30px;
  bottom: -10px;
  overflow: hidden;
  border-radius: 0 12px 12px 0;
}
.right-image-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 768px) {
  .right-image-card .card-image {
    display: none;
  }
}
@media (max-width: 768px) {
  .right-image-card {
    max-height: 80px;
    padding: 4px;
    margin: 2px;
  }
}
.left-image-card .card-content {
  padding-left: 48px;
  padding-right: 12px;
  margin-left: auto;
  width: 60%;
  text-align: right;
  flex-grow: 1;
}
@media (max-width: 768px) {
  .left-image-card .card-content {
    padding-left: 16px;
    width: 100%;
  }
}
.left-image-card .card-image {
  position: absolute;
  top: -20px;
  overflow: hidden;
  border-radius: 12px 0 0 12px;
}
.left-image-card .card-image img {
  width: 80%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (max-width: 768px) {
  .left-image-card .card-image {
    display: none;
  }
}
@media (max-width: 768px) {
  .left-image-card {
    max-height: 80px;
    padding: 4px;
    margin: 2px;
  }
}
.summary-card {
  padding: 8px;
  gap: 8px;
  height: 100%;
  margin: 0px;
}
.summary-card .icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  padding-right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.summary-card .card-title {
  font-size: 0.75rem;
  line-height: 1rem;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
  margin-bottom: 0;
  text-align: right;
  margin-left: auto;
}
.summary-card .card-value {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: auto;
}
.summary-card .card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
}
.summary-card.simple-numeric .card-content {
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .right-image-card .card-content,
  .left-image-card .card-content {
    text-align: left;
    margin-left: 0;
    padding: 16px;
  }
}
@media (max-width: 480px) {
  .right-image-card .card-content,
  .left-image-card .card-content {
    padding: 12px;
  }
}
@media (max-height: 200px) {
  .right-image-card .card-image,
  .left-image-card .card-image {
    top: 0;
    bottom: 0;
  }
}
.dashboard-page {
  padding: 24px;
  margin: 0 auto;
}
.stat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.loading-container {
  display: flex;
  justify-content: center;
  padding: 64px;
}
.no-data {
  padding: 32px;
  text-align: center;
  color: rgba(0, 0, 0, 0.38);
}
.stat-icon {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1565c0;
  color: #ffffff;
}
.stat-icon mat-icon {
  font-size: 28px;
  width: 28px;
  height: 28px;
}
.stat-icon.round {
  border-radius: 50%;
  background: #e0e0e0;
  color: inherit;
}
.stat-icon.round mat-icon {
  font-size: 28px;
  width: 28px;
  height: 28px;
}
.stat-icon.success {
  background: #2e7d32;
  color: #ffffff;
}
.stat-icon.failed {
  background: #b71c1c;
  color: #ffffff;
}
.stat-icon.warning {
  background: #e65100;
  color: #ffffff;
}
.stat-value {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}
.stat-label {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.54);
  margin-top: 2px;
}
.metric-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.875rem;
}
.metric-item mat-icon {
  font-size: 18px;
  width: 18px;
  height: 18px;
}
.stat-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
  color: #111827;
}
.stat-card mat-card-content {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px !important;
}
.stat-card .stat-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-card .stat-body .stat-value {
  color: #111827;
}
.stat-card .stat-body .stat-label {
  color: rgba(0, 0, 0, 0.6);
}
.chart-card,
.table-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}
.chart-card ::ng-deep .mat-mdc-card-title,
.table-card ::ng-deep .mat-mdc-card-title {
  color: #111827 !important;
}
.create-dialog {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.create-dialog::backdrop {
  background: rgba(0, 0, 0, 0.5);
}
.create-dialog .dialog-header {
  padding: 16px 24px;
  border-bottom: 1px solid #e0e0e0;
  background: #f8f9fa;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.create-dialog .dialog-header h2 {
  margin: 0;
}
.create-dialog .dialog-header .close-btn {
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: #666;
}
.create-dialog .dialog-header .close-btn:hover {
  color: #333;
}
.create-dialog .dialog-content {
  display: flex;
  flex: 1;
  overflow-y: auto;
  flex-direction: column;
  padding: 16px;
  gap: 8px;
}
.create-dialog .dialog-footer {
  display: flex;
  margin-top: auto;
  justify-content: flex-end;
  gap: 8px;
  padding: 16px;
}
.dialog-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(75, 85, 99, 0.6);
  overflow-y: auto;
  height: 100%;
  width: 100%;
  z-index: 50;
  display: flex;
  align-items: flex-start;
  padding-top: 5rem;
}
.dialog-card {
  margin: 0 auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  width: 24rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 1.25rem;
}
.dialog-body {
  margin-top: 0.75rem;
}
.dialog-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}
.form-row {
  margin-bottom: 1rem;
}
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
}
.form-input,
.form-select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  color: #111827;
  background: #ffffff;
  font-size: 0.95rem;
}
.form-input:focus,
.form-select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
  border-color: #2563eb;
}
.has-error {
  border-color: #ef4444 !important;
}
.field-error {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #dc2626;
}
.actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}
.btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-cancel {
  background: #e5e7eb;
  color: #1f2937;
}
.btn-primary {
  background: #2563eb;
  color: #ffffff;
}
.btn-primary:hover {
  background: #1e40af;
}
.spinner {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #ffffff;
  border-radius: 9999px;
  margin-right: 0.5rem;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.col-span-2 {
  grid-column: span 2;
}
.gid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}
@media screen and (max-width: 600px) {
  .gid-1 {
    grid-template-columns: 1fr;
  }
}
.grid-1-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media screen and (max-width: 600px) {
  .grid-1-1 {
    grid-template-columns: 1fr;
  }
}
.grid-1-3 {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 16px;
}
.grid-3-1 {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 16px;
}
.grid-1-1-1 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 992px) {
  .grid-1-1-1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-1-1-1 {
    gap: 4px;
  }
}
@media (max-width: 576px) {
  .grid-1-1-1 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}
.grid-1-1-1-1 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.grid-1-1-1-1-1 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.grid-1-1-1-1-1-1 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 12px;
}
.template-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 992px) {
  .template-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .template-gallery {
    grid-template-columns: 1fr;
  }
}
.template-card {
  display: flex;
  flex-direction: column;
  position: relative;
}
.template-card:hover .edit-btn,
.template-card:focus-within .edit-btn {
  opacity: 1;
}
.template-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.table-container,
.table-outer-container {
  flex: 1;
  overflow: auto;
  min-height: 100%;
  border-radius: 8px;
  background: #fff;
}
.mat-mdc-table {
  width: 100%;
  height: calc(100% - 65px);
  border-radius: 12px;
  overflow: hidden;
}
.mat-mdc-table .mat-mdc-header-row {
  background-color: #f9fafb;
}
.mat-mdc-table .mat-mdc-row {
  background: none;
  border-bottom: solid 1px #d1d6dd;
  padding: 10px 0;
  transition: background 0.2s;
}
.mat-mdc-table .mat-mdc-row:hover {
  background:
    linear-gradient(
      65deg,
      rgba(237, 137, 54, 0.2) 20%,
      rgba(249, 250, 251, 0.2) 80%);
  border-radius: 8px;
}
.mat-mdc-table .mat-mdc-row .mat-mdc-cell {
  border-bottom: 1px solid #d1d6dd;
  border-top: 1px solid transparent;
  cursor: pointer;
  padding: 4px 8px;
  background: none;
}
.custom-mat-paginator {
  margin-bottom: 5px;
  background-color: rgba(249, 250, 251, 0.2);
  border-radius: 0 0 12px 12px;
}
.nav-icon {
  padding: 2px;
}
.icon-financial {
  color: #38a169;
}
.icon-error {
  color: #e53e3e;
}
.icon-general {
  color: #1f2329;
}
.icon-hint {
  color: #90c6ff;
}
.icon-16 {
  width: 16px;
  height: 16px;
}
.icon-24 {
  width: 24px;
  height: 24px;
}
.icon-24-margins {
  width: 24px;
  height: 24px;
}
.icon-24-margins .icon {
  width: 16px;
  height: 16px;
  margin: auto;
}
.icon-32 {
  width: 32px;
  height: 32px;
}
.icon-32 .icon {
  width: 24px;
  height: 24px;
}
.icon-64 {
  width: 64px;
  height: 64px;
}
.mat-elevation-z0,
.mat-mdc-elevation-specific.mat-elevation-z0 {
  box-shadow: var(--mat-app-elevation-shadow-level-0, 0px 0px 0px 0px --mat-sys-shadow, 0px 0px 0px 0px --mat-sys-shadow, 0px 0px 0px 0px --mat-sys-shadow);
}
.mat-elevation-z1,
.mat-mdc-elevation-specific.mat-elevation-z1 {
  box-shadow: var(--mat-app-elevation-shadow-level-1, 0px 2px 1px -1px --mat-sys-shadow, 0px 1px 1px 0px --mat-sys-shadow, 0px 1px 3px 0px --mat-sys-shadow);
}
.mat-elevation-z2,
.mat-mdc-elevation-specific.mat-elevation-z2 {
  box-shadow: var(--mat-app-elevation-shadow-level-2, 0px 3px 1px -2px --mat-sys-shadow, 0px 2px 2px 0px --mat-sys-shadow, 0px 1px 5px 0px --mat-sys-shadow);
}
.mat-elevation-z3,
.mat-mdc-elevation-specific.mat-elevation-z3 {
  box-shadow: var(--mat-app-elevation-shadow-level-3, 0px 3px 3px -2px --mat-sys-shadow, 0px 3px 4px 0px --mat-sys-shadow, 0px 1px 8px 0px --mat-sys-shadow);
}
.mat-elevation-z4,
.mat-mdc-elevation-specific.mat-elevation-z4 {
  box-shadow: var(--mat-app-elevation-shadow-level-4, 0px 2px 4px -1px --mat-sys-shadow, 0px 4px 5px 0px --mat-sys-shadow, 0px 1px 10px 0px --mat-sys-shadow);
}
.mat-elevation-z5,
.mat-mdc-elevation-specific.mat-elevation-z5 {
  box-shadow: var(--mat-app-elevation-shadow-level-5, 0px 3px 5px -1px --mat-sys-shadow, 0px 5px 8px 0px --mat-sys-shadow, 0px 1px 14px 0px --mat-sys-shadow);
}
.mat-elevation-z6,
.mat-mdc-elevation-specific.mat-elevation-z6 {
  box-shadow: var(--mat-app-elevation-shadow-level-6, 0px 3px 5px -1px --mat-sys-shadow, 0px 6px 10px 0px --mat-sys-shadow, 0px 1px 18px 0px --mat-sys-shadow);
}
.mat-elevation-z7,
.mat-mdc-elevation-specific.mat-elevation-z7 {
  box-shadow: var(--mat-app-elevation-shadow-level-7, 0px 4px 5px -2px --mat-sys-shadow, 0px 7px 10px 1px --mat-sys-shadow, 0px 2px 16px 1px --mat-sys-shadow);
}
.mat-elevation-z8,
.mat-mdc-elevation-specific.mat-elevation-z8 {
  box-shadow: var(--mat-app-elevation-shadow-level-8, 0px 5px 5px -3px --mat-sys-shadow, 0px 8px 10px 1px --mat-sys-shadow, 0px 3px 14px 2px --mat-sys-shadow);
}
.mat-elevation-z9,
.mat-mdc-elevation-specific.mat-elevation-z9 {
  box-shadow: var(--mat-app-elevation-shadow-level-9, 0px 5px 6px -3px --mat-sys-shadow, 0px 9px 12px 1px --mat-sys-shadow, 0px 3px 16px 2px --mat-sys-shadow);
}
.mat-elevation-z10,
.mat-mdc-elevation-specific.mat-elevation-z10 {
  box-shadow: var(--mat-app-elevation-shadow-level-10, 0px 6px 6px -3px --mat-sys-shadow, 0px 10px 14px 1px --mat-sys-shadow, 0px 4px 18px 3px --mat-sys-shadow);
}
.mat-elevation-z11,
.mat-mdc-elevation-specific.mat-elevation-z11 {
  box-shadow: var(--mat-app-elevation-shadow-level-11, 0px 6px 7px -4px --mat-sys-shadow, 0px 11px 15px 1px --mat-sys-shadow, 0px 4px 20px 3px --mat-sys-shadow);
}
.mat-elevation-z12,
.mat-mdc-elevation-specific.mat-elevation-z12 {
  box-shadow: var(--mat-app-elevation-shadow-level-12, 0px 7px 8px -4px --mat-sys-shadow, 0px 12px 17px 2px --mat-sys-shadow, 0px 5px 22px 4px --mat-sys-shadow);
}
.mat-elevation-z13,
.mat-mdc-elevation-specific.mat-elevation-z13 {
  box-shadow: var(--mat-app-elevation-shadow-level-13, 0px 7px 8px -4px --mat-sys-shadow, 0px 13px 19px 2px --mat-sys-shadow, 0px 5px 24px 4px --mat-sys-shadow);
}
.mat-elevation-z14,
.mat-mdc-elevation-specific.mat-elevation-z14 {
  box-shadow: var(--mat-app-elevation-shadow-level-14, 0px 7px 9px -4px --mat-sys-shadow, 0px 14px 21px 2px --mat-sys-shadow, 0px 5px 26px 4px --mat-sys-shadow);
}
.mat-elevation-z15,
.mat-mdc-elevation-specific.mat-elevation-z15 {
  box-shadow: var(--mat-app-elevation-shadow-level-15, 0px 8px 9px -5px --mat-sys-shadow, 0px 15px 22px 2px --mat-sys-shadow, 0px 6px 28px 5px --mat-sys-shadow);
}
.mat-elevation-z16,
.mat-mdc-elevation-specific.mat-elevation-z16 {
  box-shadow: var(--mat-app-elevation-shadow-level-16, 0px 8px 10px -5px --mat-sys-shadow, 0px 16px 24px 2px --mat-sys-shadow, 0px 6px 30px 5px --mat-sys-shadow);
}
.mat-elevation-z17,
.mat-mdc-elevation-specific.mat-elevation-z17 {
  box-shadow: var(--mat-app-elevation-shadow-level-17, 0px 8px 11px -5px --mat-sys-shadow, 0px 17px 26px 2px --mat-sys-shadow, 0px 6px 32px 5px --mat-sys-shadow);
}
.mat-elevation-z18,
.mat-mdc-elevation-specific.mat-elevation-z18 {
  box-shadow: var(--mat-app-elevation-shadow-level-18, 0px 9px 11px -5px --mat-sys-shadow, 0px 18px 28px 2px --mat-sys-shadow, 0px 7px 34px 6px --mat-sys-shadow);
}
.mat-elevation-z19,
.mat-mdc-elevation-specific.mat-elevation-z19 {
  box-shadow: var(--mat-app-elevation-shadow-level-19, 0px 9px 12px -6px --mat-sys-shadow, 0px 19px 29px 2px --mat-sys-shadow, 0px 7px 36px 6px --mat-sys-shadow);
}
.mat-elevation-z20,
.mat-mdc-elevation-specific.mat-elevation-z20 {
  box-shadow: var(--mat-app-elevation-shadow-level-20, 0px 10px 13px -6px --mat-sys-shadow, 0px 20px 31px 3px --mat-sys-shadow, 0px 8px 38px 7px --mat-sys-shadow);
}
.mat-elevation-z21,
.mat-mdc-elevation-specific.mat-elevation-z21 {
  box-shadow: var(--mat-app-elevation-shadow-level-21, 0px 10px 13px -6px --mat-sys-shadow, 0px 21px 33px 3px --mat-sys-shadow, 0px 8px 40px 7px --mat-sys-shadow);
}
.mat-elevation-z22,
.mat-mdc-elevation-specific.mat-elevation-z22 {
  box-shadow: var(--mat-app-elevation-shadow-level-22, 0px 10px 14px -6px --mat-sys-shadow, 0px 22px 35px 3px --mat-sys-shadow, 0px 8px 42px 7px --mat-sys-shadow);
}
.mat-elevation-z23,
.mat-mdc-elevation-specific.mat-elevation-z23 {
  box-shadow: var(--mat-app-elevation-shadow-level-23, 0px 11px 14px -7px --mat-sys-shadow, 0px 23px 36px 3px --mat-sys-shadow, 0px 9px 44px 8px --mat-sys-shadow);
}
.mat-elevation-z24,
.mat-mdc-elevation-specific.mat-elevation-z24 {
  box-shadow: var(--mat-app-elevation-shadow-level-24, 0px 11px 15px -7px --mat-sys-shadow, 0px 24px 38px 3px --mat-sys-shadow, 0px 9px 46px 8px --mat-sys-shadow);
}
html {
  --mat-sys-on-surface: initial;
}
.mat-app-background {
  background-color: var(--mat-app-background-color, var(--mat-sys-background, transparent));
  color: var(--mat-app-text-color, var(--mat-sys-on-background, inherit));
}
:root {
  --mat-app-background-color: #faf9fd;
  --mat-app-text-color: #1a1b1f;
  --mat-app-elevation-shadow-level-0:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-1:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-2:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-3:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-4:
    0px 2px 4px -1px rgba(0, 0, 0, 0.2),
    0px 4px 5px 0px rgba(0, 0, 0, 0.14),
    0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-5:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 5px 8px 0px rgba(0, 0, 0, 0.14),
    0px 1px 14px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-6:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-7:
    0px 4px 5px -2px rgba(0, 0, 0, 0.2),
    0px 7px 10px 1px rgba(0, 0, 0, 0.14),
    0px 2px 16px 1px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-8:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-9:
    0px 5px 6px -3px rgba(0, 0, 0, 0.2),
    0px 9px 12px 1px rgba(0, 0, 0, 0.14),
    0px 3px 16px 2px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-10:
    0px 6px 6px -3px rgba(0, 0, 0, 0.2),
    0px 10px 14px 1px rgba(0, 0, 0, 0.14),
    0px 4px 18px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-11:
    0px 6px 7px -4px rgba(0, 0, 0, 0.2),
    0px 11px 15px 1px rgba(0, 0, 0, 0.14),
    0px 4px 20px 3px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-12:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-13:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 13px 19px 2px rgba(0, 0, 0, 0.14),
    0px 5px 24px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-14:
    0px 7px 9px -4px rgba(0, 0, 0, 0.2),
    0px 14px 21px 2px rgba(0, 0, 0, 0.14),
    0px 5px 26px 4px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-15:
    0px 8px 9px -5px rgba(0, 0, 0, 0.2),
    0px 15px 22px 2px rgba(0, 0, 0, 0.14),
    0px 6px 28px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-16:
    0px 8px 10px -5px rgba(0, 0, 0, 0.2),
    0px 16px 24px 2px rgba(0, 0, 0, 0.14),
    0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-17:
    0px 8px 11px -5px rgba(0, 0, 0, 0.2),
    0px 17px 26px 2px rgba(0, 0, 0, 0.14),
    0px 6px 32px 5px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-18:
    0px 9px 11px -5px rgba(0, 0, 0, 0.2),
    0px 18px 28px 2px rgba(0, 0, 0, 0.14),
    0px 7px 34px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-19:
    0px 9px 12px -6px rgba(0, 0, 0, 0.2),
    0px 19px 29px 2px rgba(0, 0, 0, 0.14),
    0px 7px 36px 6px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-20:
    0px 10px 13px -6px rgba(0, 0, 0, 0.2),
    0px 20px 31px 3px rgba(0, 0, 0, 0.14),
    0px 8px 38px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-21:
    0px 10px 13px -6px rgba(0, 0, 0, 0.2),
    0px 21px 33px 3px rgba(0, 0, 0, 0.14),
    0px 8px 40px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-22:
    0px 10px 14px -6px rgba(0, 0, 0, 0.2),
    0px 22px 35px 3px rgba(0, 0, 0, 0.14),
    0px 8px 42px 7px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-23:
    0px 11px 14px -7px rgba(0, 0, 0, 0.2),
    0px 23px 36px 3px rgba(0, 0, 0, 0.14),
    0px 9px 44px 8px rgba(0, 0, 0, 0.12);
  --mat-app-elevation-shadow-level-24:
    0px 11px 15px -7px rgba(0, 0, 0, 0.2),
    0px 24px 38px 3px rgba(0, 0, 0, 0.14),
    0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  --mat-ripple-color: color-mix(in srgb, #1a1b1f 10%, transparent);
  --mat-option-focus-state-layer-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-option-hover-state-layer-color: color-mix(in srgb, #1a1b1f 8%, transparent);
  --mat-option-label-text-color: #1a1b1f;
  --mat-option-selected-state-label-text-color: #3e4759;
  --mat-option-selected-state-layer-color: #dae2f9;
  --mat-optgroup-label-text-color: #44474e;
  --mat-pseudo-checkbox-full-disabled-selected-checkmark-color: #faf9fd;
  --mat-pseudo-checkbox-full-disabled-selected-icon-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-pseudo-checkbox-full-disabled-unselected-icon-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-pseudo-checkbox-full-selected-checkmark-color: #ffffff;
  --mat-pseudo-checkbox-full-selected-icon-color: #005cbb;
  --mat-pseudo-checkbox-full-unselected-icon-color: #44474e;
  --mat-pseudo-checkbox-minimal-disabled-selected-checkmark-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-pseudo-checkbox-minimal-selected-checkmark-color: #005cbb;
  --mat-option-label-text-size: 1rem;
  --mat-option-label-text-weight: 400;
  --mat-option-label-text-font: Roboto, sans-serif;
  --mat-option-label-text-line-height: 1.25rem;
  --mat-option-label-text-tracking: 0.006rem;
  --mat-optgroup-label-text-font: Roboto, sans-serif;
  --mat-optgroup-label-text-line-height: 1.25rem;
  --mat-optgroup-label-text-size: 0.875rem;
  --mat-optgroup-label-text-tracking: 0.006rem;
  --mat-optgroup-label-text-weight: 500;
  --mat-card-elevated-container-shape: 12px;
  --mat-card-filled-container-shape: 12px;
  --mat-card-outlined-container-shape: 12px;
  --mat-card-outlined-outline-width: 1px;
  --mat-card-elevated-container-color: #f4f3f6;
  --mat-card-elevated-container-elevation:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-card-filled-container-color: #e3e2e6;
  --mat-card-filled-container-elevation:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-card-outlined-container-color: #faf9fd;
  --mat-card-outlined-container-elevation:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-card-outlined-outline-color: #c4c6d0;
  --mat-card-subtitle-text-color: #1a1b1f;
  --mat-card-subtitle-text-font: Roboto, sans-serif;
  --mat-card-subtitle-text-line-height: 1.5rem;
  --mat-card-subtitle-text-size: 1rem;
  --mat-card-subtitle-text-tracking: 0.009rem;
  --mat-card-subtitle-text-weight: 500;
  --mat-card-title-text-font: Roboto, sans-serif;
  --mat-card-title-text-line-height: 1.75rem;
  --mat-card-title-text-size: 1.375rem;
  --mat-card-title-text-tracking: 0;
  --mat-card-title-text-weight: 400;
  --mat-progress-bar-active-indicator-height: 4px;
  --mat-progress-bar-track-height: 4px;
  --mat-progress-bar-track-shape: 0;
  --mat-progress-bar-active-indicator-color: #005cbb;
  --mat-progress-bar-track-color: #e0e2ec;
  --mat-tooltip-container-color: #2f3033;
  --mat-tooltip-container-shape: 4px;
  --mat-tooltip-supporting-text-color: #f2f0f4;
  --mat-tooltip-supporting-text-font: Roboto, sans-serif;
  --mat-tooltip-supporting-text-line-height: 1rem;
  --mat-tooltip-supporting-text-size: 0.75rem;
  --mat-tooltip-supporting-text-tracking: 0.025rem;
  --mat-tooltip-supporting-text-weight: 400;
  --mat-form-field-filled-active-indicator-height: 1px;
  --mat-form-field-filled-focus-active-indicator-height: 2px;
  --mat-form-field-filled-container-shape: 4px;
  --mat-form-field-outlined-outline-width: 1px;
  --mat-form-field-outlined-focus-outline-width: 2px;
  --mat-form-field-outlined-container-shape: 4px;
  --mat-form-field-disabled-input-text-placeholder-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-disabled-leading-icon-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-disabled-select-arrow-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-disabled-trailing-icon-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-enabled-select-arrow-color: #44474e;
  --mat-form-field-error-focus-trailing-icon-color: #ba1a1a;
  --mat-form-field-error-hover-trailing-icon-color: #93000a;
  --mat-form-field-error-text-color: #ba1a1a;
  --mat-form-field-error-trailing-icon-color: #ba1a1a;
  --mat-form-field-filled-active-indicator-color: #44474e;
  --mat-form-field-filled-caret-color: #005cbb;
  --mat-form-field-filled-container-color: #e0e2ec;
  --mat-form-field-filled-disabled-active-indicator-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-filled-disabled-container-color: color-mix(in srgb, #1a1b1f 4%, transparent);
  --mat-form-field-filled-disabled-input-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-filled-disabled-label-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-filled-error-active-indicator-color: #ba1a1a;
  --mat-form-field-filled-error-caret-color: #ba1a1a;
  --mat-form-field-filled-error-focus-active-indicator-color: #ba1a1a;
  --mat-form-field-filled-error-focus-label-text-color: #ba1a1a;
  --mat-form-field-filled-error-hover-active-indicator-color: #93000a;
  --mat-form-field-filled-error-hover-label-text-color: #93000a;
  --mat-form-field-filled-error-label-text-color: #ba1a1a;
  --mat-form-field-filled-focus-active-indicator-color: #005cbb;
  --mat-form-field-filled-focus-label-text-color: #005cbb;
  --mat-form-field-filled-hover-active-indicator-color: #1a1b1f;
  --mat-form-field-filled-hover-label-text-color: #44474e;
  --mat-form-field-filled-input-text-color: #1a1b1f;
  --mat-form-field-filled-input-text-placeholder-color: #44474e;
  --mat-form-field-filled-label-text-color: #44474e;
  --mat-form-field-focus-select-arrow-color: #005cbb;
  --mat-form-field-focus-state-layer-opacity: 0;
  --mat-form-field-hover-state-layer-opacity: 0.08;
  --mat-form-field-leading-icon-color: #44474e;
  --mat-form-field-outlined-caret-color: #005cbb;
  --mat-form-field-outlined-disabled-input-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-outlined-disabled-label-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-outlined-disabled-outline-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-form-field-outlined-error-caret-color: #ba1a1a;
  --mat-form-field-outlined-error-focus-label-text-color: #ba1a1a;
  --mat-form-field-outlined-error-focus-outline-color: #ba1a1a;
  --mat-form-field-outlined-error-hover-label-text-color: #93000a;
  --mat-form-field-outlined-error-hover-outline-color: #93000a;
  --mat-form-field-outlined-error-label-text-color: #ba1a1a;
  --mat-form-field-outlined-error-outline-color: #ba1a1a;
  --mat-form-field-outlined-focus-label-text-color: #005cbb;
  --mat-form-field-outlined-focus-outline-color: #005cbb;
  --mat-form-field-outlined-hover-label-text-color: #1a1b1f;
  --mat-form-field-outlined-hover-outline-color: #1a1b1f;
  --mat-form-field-outlined-input-text-color: #1a1b1f;
  --mat-form-field-outlined-input-text-placeholder-color: #44474e;
  --mat-form-field-outlined-label-text-color: #44474e;
  --mat-form-field-outlined-outline-color: #74777f;
  --mat-form-field-select-disabled-option-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-form-field-select-option-text-color: #1a1b1f;
  --mat-form-field-state-layer-color: #1a1b1f;
  --mat-form-field-trailing-icon-color: #44474e;
  --mat-form-field-container-height: 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;
  --mat-form-field-container-text-font: Roboto, sans-serif;
  --mat-form-field-container-text-line-height: 1.5rem;
  --mat-form-field-container-text-size: 1rem;
  --mat-form-field-container-text-tracking: 0.031rem;
  --mat-form-field-container-text-weight: 400;
  --mat-form-field-subscript-text-font: Roboto, sans-serif;
  --mat-form-field-subscript-text-line-height: 1rem;
  --mat-form-field-subscript-text-size: 0.75rem;
  --mat-form-field-subscript-text-tracking: 0.025rem;
  --mat-form-field-subscript-text-weight: 400;
  --mat-form-field-outlined-label-text-font: Roboto, sans-serif;
  --mat-form-field-outlined-label-text-size: 1rem;
  --mat-form-field-outlined-label-text-tracking: 0.031rem;
  --mat-form-field-outlined-label-text-weight: 400;
  --mat-form-field-filled-label-text-font: Roboto, sans-serif;
  --mat-form-field-filled-label-text-size: 1rem;
  --mat-form-field-filled-label-text-tracking: 0.031rem;
  --mat-form-field-filled-label-text-weight: 400;
  --mat-select-container-elevation-shadow:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mat-select-panel-background-color: #efedf0;
  --mat-select-enabled-trigger-text-color: #1a1b1f;
  --mat-select-disabled-trigger-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-select-placeholder-text-color: #44474e;
  --mat-select-enabled-arrow-color: #44474e;
  --mat-select-disabled-arrow-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-select-focused-arrow-color: #005cbb;
  --mat-select-invalid-arrow-color: #ba1a1a;
  --mat-select-arrow-transform: translateY(-8px);
  --mat-select-trigger-text-font: Roboto, sans-serif;
  --mat-select-trigger-text-line-height: 1.5rem;
  --mat-select-trigger-text-size: 1rem;
  --mat-select-trigger-text-tracking: 0.031rem;
  --mat-select-trigger-text-weight: 400;
  --mat-autocomplete-container-shape: 4px;
  --mat-autocomplete-container-elevation-shadow:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mat-autocomplete-background-color: #efedf0;
  --mat-dialog-actions-alignment: flex-end;
  --mat-dialog-actions-padding: 16px 24px;
  --mat-dialog-container-elevation-shadow: none;
  --mat-dialog-container-max-width: 560px;
  --mat-dialog-container-min-width: 280px;
  --mat-dialog-container-shape: 28px;
  --mat-dialog-container-small-max-width: calc(100vw - 32px);
  --mat-dialog-content-padding: 20px 24px;
  --mat-dialog-headline-padding: 6px 24px 13px;
  --mat-dialog-with-actions-content-padding: 20px 24px 0;
  --mat-dialog-container-color: #faf9fd;
  --mat-dialog-subhead-color: #1a1b1f;
  --mat-dialog-supporting-text-color: #44474e;
  --mat-dialog-subhead-font: Roboto, sans-serif;
  --mat-dialog-subhead-line-height: 2rem;
  --mat-dialog-subhead-size: 1.5rem;
  --mat-dialog-subhead-tracking: 0;
  --mat-dialog-subhead-weight: 400;
  --mat-dialog-supporting-text-font: Roboto, sans-serif;
  --mat-dialog-supporting-text-line-height: 1.25rem;
  --mat-dialog-supporting-text-size: 0.875rem;
  --mat-dialog-supporting-text-tracking: 0.016rem;
  --mat-dialog-supporting-text-weight: 400;
  --mat-chip-container-shape-radius: 8px;
  --mat-chip-disabled-container-opacity: 1;
  --mat-chip-elevated-container-color: transparent;
  --mat-chip-flat-selected-outline-width: 0;
  --mat-chip-outline-width: 1px;
  --mat-chip-trailing-action-focus-opacity: 1;
  --mat-chip-trailing-action-opacity: 1;
  --mat-chip-with-avatar-avatar-shape-radius: 24px;
  --mat-chip-with-avatar-avatar-size: 24px;
  --mat-chip-with-avatar-disabled-avatar-opacity: 0.38;
  --mat-chip-with-icon-disabled-icon-opacity: 0.38;
  --mat-chip-with-icon-icon-size: 18px;
  --mat-chip-with-trailing-icon-disabled-trailing-icon-opacity: 0.38;
  --mat-chip-disabled-label-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-chip-disabled-outline-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-chip-elevated-selected-container-color: #dae2f9;
  --mat-chip-flat-disabled-selected-container-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-chip-focus-outline-color: #44474e;
  --mat-chip-focus-state-layer-color: #44474e;
  --mat-chip-focus-state-layer-opacity: 0.12;
  --mat-chip-hover-state-layer-color: #44474e;
  --mat-chip-hover-state-layer-opacity: 0.08;
  --mat-chip-label-text-color: #44474e;
  --mat-chip-outline-color: #74777f;
  --mat-chip-selected-disabled-trailing-icon-color: #1a1b1f;
  --mat-chip-selected-focus-state-layer-color: #3e4759;
  --mat-chip-selected-focus-state-layer-opacity: 0.12;
  --mat-chip-selected-hover-state-layer-color: #3e4759;
  --mat-chip-selected-hover-state-layer-opacity: 0.08;
  --mat-chip-selected-label-text-color: #3e4759;
  --mat-chip-selected-trailing-action-state-layer-color: #3e4759;
  --mat-chip-selected-trailing-icon-color: #3e4759;
  --mat-chip-trailing-action-focus-state-layer-opacity: 0.12;
  --mat-chip-trailing-action-hover-state-layer-opacity: 0.08;
  --mat-chip-trailing-action-state-layer-color: #44474e;
  --mat-chip-with-icon-disabled-icon-color: #1a1b1f;
  --mat-chip-with-icon-icon-color: #44474e;
  --mat-chip-with-icon-selected-icon-color: #3e4759;
  --mat-chip-with-trailing-icon-disabled-trailing-icon-color: #1a1b1f;
  --mat-chip-with-trailing-icon-trailing-icon-color: #44474e;
  --mat-chip-container-height: 32px;
  --mat-chip-label-text-font: Roboto, sans-serif;
  --mat-chip-label-text-line-height: 1.25rem;
  --mat-chip-label-text-size: 0.875rem;
  --mat-chip-label-text-tracking: 0.006rem;
  --mat-chip-label-text-weight: 500;
  --mat-slide-toggle-disabled-selected-handle-opacity: 1;
  --mat-slide-toggle-disabled-selected-icon-opacity: 0.38;
  --mat-slide-toggle-disabled-track-opacity: 0.12;
  --mat-slide-toggle-disabled-unselected-handle-opacity: 0.38;
  --mat-slide-toggle-disabled-unselected-icon-opacity: 0.38;
  --mat-slide-toggle-disabled-unselected-track-outline-width: 2px;
  --mat-slide-toggle-handle-shape: 9999px;
  --mat-slide-toggle-hidden-track-opacity: 0;
  --mat-slide-toggle-hidden-track-transition: opacity 75ms;
  --mat-slide-toggle-pressed-handle-size: 28px;
  --mat-slide-toggle-selected-handle-horizontal-margin: 0 24px;
  --mat-slide-toggle-selected-handle-size: 24px;
  --mat-slide-toggle-selected-icon-size: 16px;
  --mat-slide-toggle-selected-pressed-handle-horizontal-margin: 0 22px;
  --mat-slide-toggle-selected-track-outline-color: transparent;
  --mat-slide-toggle-selected-track-outline-width: 2px;
  --mat-slide-toggle-selected-with-icon-handle-horizontal-margin: 0 24px;
  --mat-slide-toggle-state-layer-size: 40px;
  --mat-slide-toggle-track-height: 32px;
  --mat-slide-toggle-track-outline-width: 2px;
  --mat-slide-toggle-track-shape: 9999px;
  --mat-slide-toggle-track-width: 52px;
  --mat-slide-toggle-unselected-handle-horizontal-margin: 0 8px;
  --mat-slide-toggle-unselected-handle-size: 16px;
  --mat-slide-toggle-unselected-icon-size: 16px;
  --mat-slide-toggle-unselected-pressed-handle-horizontal-margin: 0 2px;
  --mat-slide-toggle-unselected-with-icon-handle-horizontal-margin: 0 4px;
  --mat-slide-toggle-visible-track-opacity: 1;
  --mat-slide-toggle-visible-track-transition: opacity 75ms;
  --mat-slide-toggle-with-icon-handle-size: 24px;
  --mat-slide-toggle-touch-target-size: 48px;
  --mat-slide-toggle-disabled-label-text-color: #1a1b1f;
  --mat-slide-toggle-disabled-selected-handle-color: #faf9fd;
  --mat-slide-toggle-disabled-selected-icon-color: #1a1b1f;
  --mat-slide-toggle-disabled-selected-track-color: #1a1b1f;
  --mat-slide-toggle-disabled-unselected-handle-color: #1a1b1f;
  --mat-slide-toggle-disabled-unselected-icon-color: #e0e2ec;
  --mat-slide-toggle-disabled-unselected-track-color: #e0e2ec;
  --mat-slide-toggle-disabled-unselected-track-outline-color: #1a1b1f;
  --mat-slide-toggle-label-text-color: #1a1b1f;
  --mat-slide-toggle-selected-focus-handle-color: #d7e3ff;
  --mat-slide-toggle-selected-focus-state-layer-color: #005cbb;
  --mat-slide-toggle-selected-focus-state-layer-opacity: 0.12;
  --mat-slide-toggle-selected-focus-track-color: #005cbb;
  --mat-slide-toggle-selected-handle-color: #ffffff;
  --mat-slide-toggle-selected-hover-handle-color: #d7e3ff;
  --mat-slide-toggle-selected-hover-state-layer-color: #005cbb;
  --mat-slide-toggle-selected-hover-state-layer-opacity: 0.08;
  --mat-slide-toggle-selected-hover-track-color: #005cbb;
  --mat-slide-toggle-selected-icon-color: #00458f;
  --mat-slide-toggle-selected-pressed-handle-color: #d7e3ff;
  --mat-slide-toggle-selected-pressed-state-layer-color: #005cbb;
  --mat-slide-toggle-selected-pressed-state-layer-opacity: 0.12;
  --mat-slide-toggle-selected-pressed-track-color: #005cbb;
  --mat-slide-toggle-selected-track-color: #005cbb;
  --mat-slide-toggle-track-outline-color: #74777f;
  --mat-slide-toggle-unselected-focus-handle-color: #44474e;
  --mat-slide-toggle-unselected-focus-state-layer-color: #1a1b1f;
  --mat-slide-toggle-unselected-focus-state-layer-opacity: 0.12;
  --mat-slide-toggle-unselected-focus-track-color: #e0e2ec;
  --mat-slide-toggle-unselected-handle-color: #74777f;
  --mat-slide-toggle-unselected-hover-handle-color: #44474e;
  --mat-slide-toggle-unselected-hover-state-layer-color: #1a1b1f;
  --mat-slide-toggle-unselected-hover-state-layer-opacity: 0.08;
  --mat-slide-toggle-unselected-hover-track-color: #e0e2ec;
  --mat-slide-toggle-unselected-icon-color: #e0e2ec;
  --mat-slide-toggle-unselected-pressed-handle-color: #44474e;
  --mat-slide-toggle-unselected-pressed-state-layer-color: #1a1b1f;
  --mat-slide-toggle-unselected-pressed-state-layer-opacity: 0.12;
  --mat-slide-toggle-unselected-pressed-track-color: #e0e2ec;
  --mat-slide-toggle-unselected-track-color: #e0e2ec;
  --mat-slide-toggle-touch-target-display: block;
  --mat-slide-toggle-label-text-font: Roboto, sans-serif;
  --mat-slide-toggle-label-text-line-height: 1.25rem;
  --mat-slide-toggle-label-text-size: 0.875rem;
  --mat-slide-toggle-label-text-tracking: 0.016rem;
  --mat-slide-toggle-label-text-weight: 400;
  --mat-radio-disabled-unselected-icon-opacity: 0.38;
  --mat-radio-disabled-selected-icon-opacity: 0.38;
  --mat-radio-touch-target-size: 48px;
  --mat-radio-checked-ripple-color: #005cbb;
  --mat-radio-disabled-label-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-radio-disabled-selected-icon-color: #1a1b1f;
  --mat-radio-disabled-unselected-icon-color: #1a1b1f;
  --mat-radio-label-text-color: #1a1b1f;
  --mat-radio-ripple-color: #1a1b1f;
  --mat-radio-selected-focus-icon-color: #005cbb;
  --mat-radio-selected-hover-icon-color: #005cbb;
  --mat-radio-selected-icon-color: #005cbb;
  --mat-radio-selected-pressed-icon-color: #005cbb;
  --mat-radio-unselected-focus-icon-color: #1a1b1f;
  --mat-radio-unselected-hover-icon-color: #1a1b1f;
  --mat-radio-unselected-icon-color: #44474e;
  --mat-radio-unselected-pressed-icon-color: #1a1b1f;
  --mat-radio-touch-target-display: block;
  --mat-radio-state-layer-size: 40px;
  --mat-radio-label-text-font: Roboto, sans-serif;
  --mat-radio-label-text-line-height: 1.25rem;
  --mat-radio-label-text-size: 0.875rem;
  --mat-radio-label-text-tracking: 0.016rem;
  --mat-radio-label-text-weight: 400;
  --mat-slider-value-indicator-opacity: 1;
  --mat-slider-value-indicator-padding: 0;
  --mat-slider-value-indicator-width: 28px;
  --mat-slider-value-indicator-height: 28px;
  --mat-slider-value-indicator-caret-display: none;
  --mat-slider-value-indicator-border-radius: 50% 50% 50% 0;
  --mat-slider-value-indicator-text-transform: rotate(45deg);
  --mat-slider-value-indicator-container-transform: translateX(-50%) rotate(-45deg);
  --mat-slider-active-track-height: 4px;
  --mat-slider-handle-height: 20px;
  --mat-slider-handle-width: 20px;
  --mat-slider-inactive-track-height: 4px;
  --mat-slider-with-overlap-handle-outline-width: 1px;
  --mat-slider-with-tick-marks-active-container-opacity: 0.38;
  --mat-slider-with-tick-marks-container-size: 2px;
  --mat-slider-with-tick-marks-inactive-container-opacity: 0.38;
  --mat-slider-value-indicator-transform-origin: 0 28px;
  --mat-slider-active-track-color: #005cbb;
  --mat-slider-active-track-shape: 9999px;
  --mat-slider-disabled-active-track-color: #1a1b1f;
  --mat-slider-disabled-handle-color: #1a1b1f;
  --mat-slider-disabled-inactive-track-color: #1a1b1f;
  --mat-slider-focus-handle-color: #005cbb;
  --mat-slider-focus-state-layer-color: color-mix(in srgb, #005cbb 20%, transparent);
  --mat-slider-handle-color: #005cbb;
  --mat-slider-handle-elevation:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-slider-handle-shape: 9999px;
  --mat-slider-hover-handle-color: #005cbb;
  --mat-slider-hover-state-layer-color: color-mix(in srgb, #005cbb 5%, transparent);
  --mat-slider-inactive-track-color: #e0e2ec;
  --mat-slider-inactive-track-shape: 9999px;
  --mat-slider-label-container-color: #005cbb;
  --mat-slider-label-label-text-color: #ffffff;
  --mat-slider-ripple-color: #005cbb;
  --mat-slider-with-overlap-handle-outline-color: #ffffff;
  --mat-slider-with-tick-marks-active-container-color: #ffffff;
  --mat-slider-with-tick-marks-container-shape: 9999px;
  --mat-slider-with-tick-marks-disabled-container-color: #1a1b1f;
  --mat-slider-with-tick-marks-inactive-container-color: #44474e;
  --mat-slider-label-label-text-font: Roboto, sans-serif;
  --mat-slider-label-label-text-line-height: 1rem;
  --mat-slider-label-label-text-size: 0.75rem;
  --mat-slider-label-label-text-tracking: 0.031rem;
  --mat-slider-label-label-text-weight: 500;
  --mat-menu-divider-bottom-spacing: 8px;
  --mat-menu-divider-top-spacing: 8px;
  --mat-menu-item-icon-size: 24px;
  --mat-menu-item-spacing: 12px;
  --mat-menu-item-leading-spacing: 12px;
  --mat-menu-item-trailing-spacing: 12px;
  --mat-menu-item-with-icon-leading-spacing: 12px;
  --mat-menu-item-with-icon-trailing-spacing: 12px;
  --mat-menu-container-shape: 4px;
  --mat-menu-divider-color: #e0e2ec;
  --mat-menu-item-label-text-color: #1a1b1f;
  --mat-menu-item-icon-color: #44474e;
  --mat-menu-item-hover-state-layer-color: color-mix(in srgb, #1a1b1f 8%, transparent);
  --mat-menu-item-focus-state-layer-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-menu-container-color: #efedf0;
  --mat-menu-container-elevation-shadow:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mat-menu-item-label-text-font: Roboto, sans-serif;
  --mat-menu-item-label-text-line-height: 1.25rem;
  --mat-menu-item-label-text-size: 0.875rem;
  --mat-menu-item-label-text-tracking: 0.006rem;
  --mat-menu-item-label-text-weight: 500;
  --mat-list-active-indicator-color: #dae2f9;
  --mat-list-active-indicator-shape: 9999px;
  --mat-list-list-item-container-color: transparent;
  --mat-list-list-item-container-shape: 0;
  --mat-list-list-item-disabled-label-text-color: #1a1b1f;
  --mat-list-list-item-disabled-label-text-opacity: 0.3;
  --mat-list-list-item-disabled-leading-icon-color: #1a1b1f;
  --mat-list-list-item-disabled-leading-icon-opacity: 0.38;
  --mat-list-list-item-disabled-state-layer-color: #1a1b1f;
  --mat-list-list-item-disabled-state-layer-opacity: 0.12;
  --mat-list-list-item-disabled-trailing-icon-color: #1a1b1f;
  --mat-list-list-item-disabled-trailing-icon-opacity: 0.38;
  --mat-list-list-item-focus-label-text-color: #1a1b1f;
  --mat-list-list-item-focus-state-layer-color: #1a1b1f;
  --mat-list-list-item-focus-state-layer-opacity: 0.12;
  --mat-list-list-item-hover-label-text-color: #1a1b1f;
  --mat-list-list-item-hover-state-layer-color: #1a1b1f;
  --mat-list-list-item-hover-state-layer-opacity: 0.08;
  --mat-list-list-item-label-text-color: #1a1b1f;
  --mat-list-list-item-leading-avatar-color: #d7e3ff;
  --mat-list-list-item-leading-avatar-shape: 9999px;
  --mat-list-list-item-leading-avatar-size: 40px;
  --mat-list-list-item-leading-icon-color: #44474e;
  --mat-list-list-item-leading-icon-size: 24px;
  --mat-list-list-item-selected-trailing-icon-color: #005cbb;
  --mat-list-list-item-supporting-text-color: #44474e;
  --mat-list-list-item-trailing-icon-color: #44474e;
  --mat-list-list-item-trailing-icon-size: 24px;
  --mat-list-list-item-trailing-supporting-text-color: #44474e;
  --mat-list-list-item-leading-icon-start-space: 16px;
  --mat-list-list-item-leading-icon-end-space: 16px;
  --mat-list-list-item-one-line-container-height: 48px;
  --mat-list-list-item-two-line-container-height: 64px;
  --mat-list-list-item-three-line-container-height: 88px;
  --mat-list-list-item-label-text-font: Roboto, sans-serif;
  --mat-list-list-item-label-text-line-height: 1.5rem;
  --mat-list-list-item-label-text-size: 1rem;
  --mat-list-list-item-label-text-tracking: 0.031rem;
  --mat-list-list-item-label-text-weight: 400;
  --mat-list-list-item-supporting-text-font: Roboto, sans-serif;
  --mat-list-list-item-supporting-text-line-height: 1.25rem;
  --mat-list-list-item-supporting-text-size: 0.875rem;
  --mat-list-list-item-supporting-text-tracking: 0.016rem;
  --mat-list-list-item-supporting-text-weight: 400;
  --mat-list-list-item-trailing-supporting-text-font: Roboto, sans-serif;
  --mat-list-list-item-trailing-supporting-text-line-height: 1rem;
  --mat-list-list-item-trailing-supporting-text-size: 0.688rem;
  --mat-list-list-item-trailing-supporting-text-tracking: 0.031rem;
  --mat-list-list-item-trailing-supporting-text-weight: 500;
  --mat-paginator-page-size-select-width: 84px;
  --mat-paginator-page-size-select-touch-target-height: 48px;
  --mat-paginator-container-text-color: #1a1b1f;
  --mat-paginator-container-background-color: #faf9fd;
  --mat-paginator-disabled-icon-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-paginator-enabled-icon-color: #44474e;
  --mat-paginator-container-size: 56px;
  --mat-paginator-form-field-container-height: 40px;
  --mat-paginator-form-field-container-vertical-padding: 8px;
  --mat-paginator-touch-target-display: block;
  --mat-paginator-container-text-font: Roboto, sans-serif;
  --mat-paginator-container-text-line-height: 1rem;
  --mat-paginator-container-text-size: 0.75rem;
  --mat-paginator-container-text-tracking: 0.025rem;
  --mat-paginator-container-text-weight: 400;
  --mat-paginator-select-trigger-text-size: 0.75rem;
  --mat-tab-active-indicator-height: 2px;
  --mat-tab-active-indicator-shape: 0;
  --mat-tab-divider-height: 1px;
  --mat-tab-active-focus-indicator-color: #005cbb;
  --mat-tab-active-focus-label-text-color: #1a1b1f;
  --mat-tab-active-hover-indicator-color: #005cbb;
  --mat-tab-active-hover-label-text-color: #1a1b1f;
  --mat-tab-active-indicator-color: #005cbb;
  --mat-tab-active-label-text-color: #1a1b1f;
  --mat-tab-active-ripple-color: #1a1b1f;
  --mat-tab-divider-color: #e0e2ec;
  --mat-tab-inactive-focus-label-text-color: #1a1b1f;
  --mat-tab-inactive-hover-label-text-color: #1a1b1f;
  --mat-tab-inactive-label-text-color: #1a1b1f;
  --mat-tab-inactive-ripple-color: #1a1b1f;
  --mat-tab-pagination-icon-color: #1a1b1f;
  --mat-tab-disabled-ripple-color: #44474e;
  --mat-tab-container-height: 48px;
  --mat-tab-label-text-font: Roboto, sans-serif;
  --mat-tab-label-text-line-height: 1.25rem;
  --mat-tab-label-text-size: 0.875rem;
  --mat-tab-label-text-tracking: 0.006rem;
  --mat-tab-label-text-weight: 500;
  --mat-checkbox-selected-focus-state-layer-opacity: 0.12;
  --mat-checkbox-selected-hover-state-layer-opacity: 0.08;
  --mat-checkbox-selected-pressed-state-layer-opacity: 0.12;
  --mat-checkbox-unselected-focus-state-layer-opacity: 0.12;
  --mat-checkbox-unselected-hover-state-layer-opacity: 0.08;
  --mat-checkbox-unselected-pressed-state-layer-opacity: 0.12;
  --mat-checkbox-touch-target-size: 48px;
  --mat-checkbox-disabled-label-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-checkbox-disabled-selected-checkmark-color: #faf9fd;
  --mat-checkbox-disabled-selected-icon-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-checkbox-disabled-unselected-icon-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-checkbox-label-text-color: #1a1b1f;
  --mat-checkbox-selected-checkmark-color: #ffffff;
  --mat-checkbox-selected-focus-icon-color: #005cbb;
  --mat-checkbox-selected-focus-state-layer-color: #005cbb;
  --mat-checkbox-selected-hover-icon-color: #005cbb;
  --mat-checkbox-selected-hover-state-layer-color: #005cbb;
  --mat-checkbox-selected-icon-color: #005cbb;
  --mat-checkbox-selected-pressed-icon-color: #005cbb;
  --mat-checkbox-selected-pressed-state-layer-color: #1a1b1f;
  --mat-checkbox-unselected-focus-icon-color: #1a1b1f;
  --mat-checkbox-unselected-focus-state-layer-color: #1a1b1f;
  --mat-checkbox-unselected-hover-icon-color: #1a1b1f;
  --mat-checkbox-unselected-hover-state-layer-color: #1a1b1f;
  --mat-checkbox-unselected-icon-color: #44474e;
  --mat-checkbox-unselected-pressed-state-layer-color: #005cbb;
  --mat-checkbox-touch-target-display: block;
  --mat-checkbox-state-layer-size: 40px;
  --mat-checkbox-label-text-font: Roboto, sans-serif;
  --mat-checkbox-label-text-line-height: 1.25rem;
  --mat-checkbox-label-text-size: 0.875rem;
  --mat-checkbox-label-text-tracking: 0.016rem;
  --mat-checkbox-label-text-weight: 400;
  --mat-button-filled-container-shape: 9999px;
  --mat-button-filled-horizontal-padding: 24px;
  --mat-button-filled-icon-offset: -8px;
  --mat-button-filled-icon-spacing: 8px;
  --mat-button-filled-touch-target-size: 48px;
  --mat-button-outlined-container-shape: 9999px;
  --mat-button-outlined-horizontal-padding: 24px;
  --mat-button-outlined-icon-offset: -8px;
  --mat-button-outlined-icon-spacing: 8px;
  --mat-button-outlined-outline-width: 1px;
  --mat-button-outlined-touch-target-size: 48px;
  --mat-button-protected-container-shape: 9999px;
  --mat-button-protected-horizontal-padding: 24px;
  --mat-button-protected-icon-offset: -8px;
  --mat-button-protected-icon-spacing: 8px;
  --mat-button-protected-touch-target-size: 48px;
  --mat-button-text-container-shape: 9999px;
  --mat-button-text-horizontal-padding: 12px;
  --mat-button-text-icon-offset: -4px;
  --mat-button-text-icon-spacing: 8px;
  --mat-button-text-with-icon-horizontal-padding: 16px;
  --mat-button-text-touch-target-size: 48px;
  --mat-button-tonal-container-shape: 9999px;
  --mat-button-tonal-horizontal-padding: 24px;
  --mat-button-tonal-icon-offset: -8px;
  --mat-button-tonal-icon-spacing: 8px;
  --mat-button-tonal-touch-target-size: 48px;
  --mat-button-filled-container-color: #005cbb;
  --mat-button-filled-disabled-container-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-button-filled-disabled-label-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-button-filled-disabled-state-layer-color: #44474e;
  --mat-button-filled-focus-state-layer-opacity: 0.12;
  --mat-button-filled-hover-state-layer-opacity: 0.08;
  --mat-button-filled-label-text-color: #ffffff;
  --mat-button-filled-pressed-state-layer-opacity: 0.12;
  --mat-button-filled-ripple-color: color-mix(in srgb, #ffffff 12%, transparent);
  --mat-button-filled-state-layer-color: #ffffff;
  --mat-button-outlined-disabled-label-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-button-outlined-disabled-outline-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-button-outlined-disabled-state-layer-color: #44474e;
  --mat-button-outlined-focus-state-layer-opacity: 0.12;
  --mat-button-outlined-hover-state-layer-opacity: 0.08;
  --mat-button-outlined-label-text-color: #005cbb;
  --mat-button-outlined-outline-color: #74777f;
  --mat-button-outlined-pressed-state-layer-opacity: 0.12;
  --mat-button-outlined-ripple-color: color-mix(in srgb, #005cbb 12%, transparent);
  --mat-button-outlined-state-layer-color: #005cbb;
  --mat-button-protected-container-color: #faf9fd;
  --mat-button-protected-container-elevation-shadow:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-button-protected-disabled-container-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-button-protected-disabled-container-elevation-shadow:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-button-protected-disabled-label-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-button-protected-disabled-state-layer-color: #44474e;
  --mat-button-protected-focus-container-elevation-shadow:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-button-protected-focus-state-layer-opacity: 0.12;
  --mat-button-protected-hover-container-elevation-shadow:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-button-protected-hover-state-layer-opacity: 0.08;
  --mat-button-protected-label-text-color: #005cbb;
  --mat-button-protected-pressed-container-elevation-shadow:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-button-protected-pressed-state-layer-opacity: 0.12;
  --mat-button-protected-ripple-color: color-mix(in srgb, #005cbb 12%, transparent);
  --mat-button-protected-state-layer-color: #005cbb;
  --mat-button-text-disabled-label-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-button-text-disabled-state-layer-color: #44474e;
  --mat-button-text-focus-state-layer-opacity: 0.12;
  --mat-button-text-hover-state-layer-opacity: 0.08;
  --mat-button-text-label-text-color: #005cbb;
  --mat-button-text-pressed-state-layer-opacity: 0.12;
  --mat-button-text-ripple-color: color-mix(in srgb, #005cbb 12%, transparent);
  --mat-button-text-state-layer-color: #005cbb;
  --mat-button-tonal-container-color: #dae2f9;
  --mat-button-tonal-disabled-container-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-button-tonal-disabled-label-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-button-tonal-disabled-state-layer-color: #44474e;
  --mat-button-tonal-focus-state-layer-opacity: 0.12;
  --mat-button-tonal-hover-state-layer-opacity: 0.08;
  --mat-button-tonal-label-text-color: #3e4759;
  --mat-button-tonal-pressed-state-layer-opacity: 0.12;
  --mat-button-tonal-ripple-color: color-mix(in srgb, #3e4759 12%, transparent);
  --mat-button-tonal-state-layer-color: #3e4759;
  --mat-button-filled-touch-target-display: block;
  --mat-button-filled-container-height: 40px;
  --mat-button-outlined-container-height: 40px;
  --mat-button-outlined-touch-target-display: block;
  --mat-button-protected-touch-target-display: block;
  --mat-button-protected-container-height: 40px;
  --mat-button-text-touch-target-display: block;
  --mat-button-text-container-height: 40px;
  --mat-button-tonal-container-height: 40px;
  --mat-button-tonal-touch-target-display: block;
  --mat-button-filled-label-text-font: Roboto, sans-serif;
  --mat-button-filled-label-text-size: 0.875rem;
  --mat-button-filled-label-text-tracking: 0.006rem;
  --mat-button-filled-label-text-weight: 500;
  --mat-button-outlined-label-text-font: Roboto, sans-serif;
  --mat-button-outlined-label-text-size: 0.875rem;
  --mat-button-outlined-label-text-tracking: 0.006rem;
  --mat-button-outlined-label-text-weight: 500;
  --mat-button-protected-label-text-font: Roboto, sans-serif;
  --mat-button-protected-label-text-size: 0.875rem;
  --mat-button-protected-label-text-tracking: 0.006rem;
  --mat-button-protected-label-text-weight: 500;
  --mat-button-text-label-text-font: Roboto, sans-serif;
  --mat-button-text-label-text-size: 0.875rem;
  --mat-button-text-label-text-tracking: 0.006rem;
  --mat-button-text-label-text-weight: 500;
  --mat-button-tonal-label-text-font: Roboto, sans-serif;
  --mat-button-tonal-label-text-size: 0.875rem;
  --mat-button-tonal-label-text-tracking: 0.006rem;
  --mat-button-tonal-label-text-weight: 500;
  --mat-icon-button-icon-size: 24px;
  --mat-icon-button-container-shape: 9999px;
  --mat-icon-button-touch-target-size: 48px;
  --mat-icon-button-disabled-icon-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-icon-button-disabled-state-layer-color: #44474e;
  --mat-icon-button-focus-state-layer-opacity: 0.12;
  --mat-icon-button-hover-state-layer-opacity: 0.08;
  --mat-icon-button-icon-color: #44474e;
  --mat-icon-button-pressed-state-layer-opacity: 0.12;
  --mat-icon-button-ripple-color: color-mix(in srgb, #44474e 12%, transparent);
  --mat-icon-button-state-layer-color: #44474e;
  --mat-icon-button-touch-target-display: block;
  --mat-icon-button-state-layer-size: 40px;
  --mat-fab-container-shape: 16px;
  --mat-fab-extended-container-height: 56px;
  --mat-fab-extended-container-shape: 16px;
  --mat-fab-small-container-shape: 12px;
  --mat-fab-touch-target-size: 48px;
  --mat-fab-small-touch-target-size: 48px;
  --mat-fab-container-color: #d7e3ff;
  --mat-fab-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-fab-disabled-state-container-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-fab-disabled-state-foreground-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-fab-extended-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-fab-extended-focus-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-fab-extended-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-fab-extended-pressed-container-elevation-shadow: 6;
  --mat-fab-focus-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-fab-focus-state-layer-opacity: 0.12;
  --mat-fab-foreground-color: #00458f;
  --mat-fab-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-fab-hover-state-layer-opacity: 0.08;
  --mat-fab-pressed-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-fab-pressed-state-layer-opacity: 0.12;
  --mat-fab-ripple-color: color-mix(in srgb, #00458f 12%, transparent);
  --mat-fab-small-container-color: #d7e3ff;
  --mat-fab-small-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-fab-small-disabled-state-container-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-fab-small-disabled-state-foreground-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-fab-small-focus-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-fab-small-focus-state-layer-opacity: 0.12;
  --mat-fab-small-foreground-color: #00458f;
  --mat-fab-small-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-fab-small-hover-state-layer-opacity: 0.08;
  --mat-fab-small-pressed-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-fab-small-pressed-state-layer-opacity: 0.12;
  --mat-fab-small-ripple-color: color-mix(in srgb, #00458f 12%, transparent);
  --mat-fab-small-state-layer-color: #00458f;
  --mat-fab-state-layer-color: #00458f;
  --mat-fab-touch-target-display: block;
  --mat-fab-extended-label-text-font: Roboto, sans-serif;
  --mat-fab-extended-label-text-size: 0.875rem;
  --mat-fab-extended-label-text-tracking: 0.006rem;
  --mat-fab-extended-label-text-weight: 500;
  --mat-snack-bar-container-shape: 4px;
  --mat-snack-bar-button-color: #abc7ff;
  --mat-snack-bar-container-color: #2f3033;
  --mat-snack-bar-supporting-text-color: #f2f0f4;
  --mat-snack-bar-supporting-text-font: Roboto, sans-serif;
  --mat-snack-bar-supporting-text-line-height: 1.25rem;
  --mat-snack-bar-supporting-text-size: 0.875rem;
  --mat-snack-bar-supporting-text-weight: 400;
  --mat-table-row-item-outline-width: 1px;
  --mat-table-background-color: #faf9fd;
  --mat-table-header-headline-color: #1a1b1f;
  --mat-table-row-item-label-text-color: #1a1b1f;
  --mat-table-row-item-outline-color: #74777f;
  --mat-table-header-container-height: 56px;
  --mat-table-footer-container-height: 52px;
  --mat-table-row-item-container-height: 52px;
  --mat-table-header-headline-font: Roboto, sans-serif;
  --mat-table-header-headline-line-height: 1.25rem;
  --mat-table-header-headline-size: 0.875rem;
  --mat-table-header-headline-tracking: 0.006rem;
  --mat-table-header-headline-weight: 500;
  --mat-table-row-item-label-text-font: Roboto, sans-serif;
  --mat-table-row-item-label-text-line-height: 1.25rem;
  --mat-table-row-item-label-text-size: 0.875rem;
  --mat-table-row-item-label-text-tracking: 0.016rem;
  --mat-table-row-item-label-text-weight: 400;
  --mat-table-footer-supporting-text-font: Roboto, sans-serif;
  --mat-table-footer-supporting-text-line-height: 1.25rem;
  --mat-table-footer-supporting-text-size: 0.875rem;
  --mat-table-footer-supporting-text-tracking: 0.016rem;
  --mat-table-footer-supporting-text-weight: 400;
  --mat-progress-spinner-size: 48px;
  --mat-progress-spinner-active-indicator-width: 4px;
  --mat-progress-spinner-active-indicator-color: #005cbb;
  --mat-badge-container-offset: -12px 0;
  --mat-badge-container-overlap-offset: -12px;
  --mat-badge-container-padding: 0 4px;
  --mat-badge-container-shape: 9999px;
  --mat-badge-container-size: 16px;
  --mat-badge-large-size-container-offset: -12px 0;
  --mat-badge-large-size-container-overlap-offset: -12px;
  --mat-badge-large-size-container-padding: 0 4px;
  --mat-badge-large-size-container-size: 16px;
  --mat-badge-legacy-container-size: unset;
  --mat-badge-legacy-large-size-container-size: unset;
  --mat-badge-legacy-small-size-container-size: unset;
  --mat-badge-small-size-container-offset: -6px 0;
  --mat-badge-small-size-container-overlap-offset: -6px;
  --mat-badge-small-size-container-padding: 0;
  --mat-badge-small-size-container-size: 6px;
  --mat-badge-background-color: #ba1a1a;
  --mat-badge-disabled-state-background-color: color-mix(in srgb, #ba1a1a 38%, transparent);
  --mat-badge-disabled-state-text-color: #ffffff;
  --mat-badge-text-color: #ffffff;
  --mat-badge-large-size-line-height: 16px;
  --mat-badge-large-size-text-size: 0.688rem;
  --mat-badge-line-height: 16px;
  --mat-badge-small-size-line-height: 6px;
  --mat-badge-small-size-text-size: 0;
  --mat-badge-text-font: Roboto, sans-serif;
  --mat-badge-text-size: 0.688rem;
  --mat-badge-text-weight: 500;
  --mat-bottom-sheet-container-shape: 28px;
  --mat-bottom-sheet-container-text-color: #1a1b1f;
  --mat-bottom-sheet-container-background-color: #f4f3f6;
  --mat-bottom-sheet-container-text-font: Roboto, sans-serif;
  --mat-bottom-sheet-container-text-line-height: 1.5rem;
  --mat-bottom-sheet-container-text-size: 1rem;
  --mat-bottom-sheet-container-text-tracking: 0.031rem;
  --mat-bottom-sheet-container-text-weight: 400;
  --mat-button-toggle-focus-state-layer-opacity: 0.12;
  --mat-button-toggle-hover-state-layer-opacity: 0.08;
  --mat-button-toggle-shape: 28px;
  --mat-button-toggle-background-color: transparent;
  --mat-button-toggle-disabled-selected-state-background-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-button-toggle-disabled-selected-state-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-button-toggle-disabled-state-background-color: transparent;
  --mat-button-toggle-disabled-state-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-button-toggle-divider-color: #74777f;
  --mat-button-toggle-selected-state-background-color: #dae2f9;
  --mat-button-toggle-selected-state-text-color: #3e4759;
  --mat-button-toggle-state-layer-color: #1a1b1f;
  --mat-button-toggle-text-color: #1a1b1f;
  --mat-button-toggle-height: 40px;
  --mat-button-toggle-label-text-font: Roboto, sans-serif;
  --mat-button-toggle-label-text-line-height: 1.25rem;
  --mat-button-toggle-label-text-size: 0.875rem;
  --mat-button-toggle-label-text-tracking: 0.006rem;
  --mat-button-toggle-label-text-weight: 500;
  --mat-datepicker-calendar-container-elevation-shadow:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-container-shape: 16px;
  --mat-datepicker-calendar-container-touch-elevation-shadow:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-datepicker-calendar-container-touch-shape: 28px;
  --mat-datepicker-calendar-body-label-text-color: #1a1b1f;
  --mat-datepicker-calendar-container-background-color: #e9e7eb;
  --mat-datepicker-calendar-container-text-color: #1a1b1f;
  --mat-datepicker-calendar-date-disabled-state-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-datepicker-calendar-date-focus-state-background-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-datepicker-calendar-date-hover-state-background-color: color-mix(in srgb, #1a1b1f 8%, transparent);
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: #e0e0ff;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #565e71;
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #dae2f9;
  --mat-datepicker-calendar-date-in-range-state-background-color: #d7e3ff;
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-datepicker-calendar-date-preview-state-outline-color: #005cbb;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-datepicker-calendar-date-selected-state-background-color: #005cbb;
  --mat-datepicker-calendar-date-selected-state-text-color: #ffffff;
  --mat-datepicker-calendar-date-text-color: #1a1b1f;
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-datepicker-calendar-date-today-outline-color: #005cbb;
  --mat-datepicker-calendar-date-today-selected-state-outline-color: #005cbb;
  --mat-datepicker-calendar-header-divider-color: transparent;
  --mat-datepicker-calendar-header-text-color: #44474e;
  --mat-datepicker-calendar-navigation-button-icon-color: #44474e;
  --mat-datepicker-calendar-period-button-icon-color: #44474e;
  --mat-datepicker-calendar-period-button-text-color: #44474e;
  --mat-datepicker-range-input-disabled-state-separator-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-datepicker-range-input-disabled-state-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-datepicker-range-input-separator-color: #1a1b1f;
  --mat-datepicker-toggle-active-state-icon-color: #005cbb;
  --mat-datepicker-toggle-icon-color: #44474e;
  --mat-datepicker-calendar-body-label-text-size: 0.875rem;
  --mat-datepicker-calendar-body-label-text-weight: 500;
  --mat-datepicker-calendar-header-text-size: 0.875rem;
  --mat-datepicker-calendar-header-text-weight: 500;
  --mat-datepicker-calendar-period-button-text-size: 0.875rem;
  --mat-datepicker-calendar-period-button-text-weight: 500;
  --mat-datepicker-calendar-text-font: Roboto, sans-serif;
  --mat-datepicker-calendar-text-size: 0.875rem;
  --mat-divider-width: 1px;
  --mat-divider-color: #c4c6d0;
  --mat-expansion-container-shape: 12px;
  --mat-expansion-header-indicator-display: inline-block;
  --mat-expansion-legacy-header-indicator-display: none;
  --mat-expansion-container-elevation-shadow:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  --mat-expansion-actions-divider-color: #74777f;
  --mat-expansion-container-background-color: #faf9fd;
  --mat-expansion-container-text-color: #1a1b1f;
  --mat-expansion-header-description-color: #44474e;
  --mat-expansion-header-disabled-state-text-color: color-mix(in srgb, #1a1b1f 38%, transparent);
  --mat-expansion-header-focus-state-layer-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-expansion-header-hover-state-layer-color: color-mix(in srgb, #1a1b1f 8%, transparent);
  --mat-expansion-header-indicator-color: #44474e;
  --mat-expansion-header-text-color: #1a1b1f;
  --mat-expansion-header-collapsed-state-height: 48px;
  --mat-expansion-header-expanded-state-height: 64px;
  --mat-expansion-container-text-font: Roboto, sans-serif;
  --mat-expansion-container-text-line-height: 1.5rem;
  --mat-expansion-container-text-size: 1rem;
  --mat-expansion-container-text-tracking: 0.031rem;
  --mat-expansion-container-text-weight: 400;
  --mat-expansion-header-text-font: Roboto, sans-serif;
  --mat-expansion-header-text-line-height: 1.5rem;
  --mat-expansion-header-text-size: 1rem;
  --mat-expansion-header-text-tracking: 0.009rem;
  --mat-expansion-header-text-weight: 500;
  --mat-grid-list-tile-header-primary-text-size: 400 1rem / 1.5rem Roboto, sans-serif;
  --mat-grid-list-tile-header-secondary-text-size: 400 0.875rem / 1.25rem Roboto, sans-serif;
  --mat-grid-list-tile-footer-primary-text-size: 400 1rem / 1.5rem Roboto, sans-serif;
  --mat-grid-list-tile-footer-secondary-text-size: 400 0.875rem / 1.25rem Roboto, sans-serif;
  --mat-icon-color: inherit;
  --mat-sidenav-container-shape: 16px;
  --mat-sidenav-container-elevation-shadow: none;
  --mat-sidenav-container-width: 360px;
  --mat-sidenav-container-divider-color: transparent;
  --mat-sidenav-container-background-color: #faf9fd;
  --mat-sidenav-container-text-color: #44474e;
  --mat-sidenav-content-background-color: #faf9fd;
  --mat-sidenav-content-text-color: #1a1b1f;
  --mat-sidenav-scrim-color: color-mix(in srgb, #2d3038 40%, transparent);
  --mat-stepper-header-error-state-icon-background-color: transparent;
  --mat-stepper-header-focus-state-layer-shape: 12px;
  --mat-stepper-header-hover-state-layer-shape: 12px;
  --mat-stepper-container-color: #faf9fd;
  --mat-stepper-header-done-state-icon-background-color: #005cbb;
  --mat-stepper-header-done-state-icon-foreground-color: #ffffff;
  --mat-stepper-header-edit-state-icon-background-color: #005cbb;
  --mat-stepper-header-edit-state-icon-foreground-color: #ffffff;
  --mat-stepper-header-error-state-icon-foreground-color: #ba1a1a;
  --mat-stepper-header-error-state-label-text-color: #ba1a1a;
  --mat-stepper-header-focus-state-layer-color: color-mix(in srgb, #1a1b1f 12%, transparent);
  --mat-stepper-header-hover-state-layer-color: color-mix(in srgb, #1a1b1f 8%, transparent);
  --mat-stepper-header-icon-background-color: #44474e;
  --mat-stepper-header-icon-foreground-color: #faf9fd;
  --mat-stepper-header-label-text-color: #44474e;
  --mat-stepper-header-optional-label-text-color: #44474e;
  --mat-stepper-header-selected-state-icon-background-color: #005cbb;
  --mat-stepper-header-selected-state-icon-foreground-color: #ffffff;
  --mat-stepper-header-selected-state-label-text-color: #44474e;
  --mat-stepper-line-color: #74777f;
  --mat-stepper-header-height: 72px;
  --mat-stepper-container-text-font: Roboto, sans-serif;
  --mat-stepper-header-label-text-font: Roboto, sans-serif;
  --mat-stepper-header-label-text-size: 0.875rem;
  --mat-stepper-header-label-text-weight: 500;
  --mat-stepper-header-error-state-label-text-size: 0.875rem;
  --mat-stepper-header-selected-state-label-text-size: 0.875rem;
  --mat-stepper-header-selected-state-label-text-weight: 500;
  --mat-stepper-header-height: 72px;
  --mat-sort-arrow-color: #1a1b1f;
  --mat-toolbar-container-background-color: #faf9fd;
  --mat-toolbar-container-text-color: #1a1b1f;
  --mat-toolbar-standard-height: 64px;
  --mat-toolbar-mobile-height: 56px;
  --mat-toolbar-title-text-font: Roboto, sans-serif;
  --mat-toolbar-title-text-line-height: 1.75rem;
  --mat-toolbar-title-text-size: 1.375rem;
  --mat-toolbar-title-text-tracking: 0;
  --mat-toolbar-title-text-weight: 400;
  --mat-tree-container-background-color: #faf9fd;
  --mat-tree-node-text-color: #1a1b1f;
  --mat-tree-node-min-height: 48px;
  --mat-tree-node-text-font: Roboto, sans-serif;
  --mat-tree-node-text-size: 1rem;
  --mat-tree-node-text-weight: 400;
  --mat-timepicker-container-shape: 4px;
  --mat-timepicker-container-background-color: #efedf0;
  --mat-timepicker-container-elevation-shadow:
    0px 3px 1px -2px rgba(0, 0, 0, 0.2),
    0px 2px 2px 0px rgba(0, 0, 0, 0.14),
    0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
html,
body {
  height: 100%;
  width: 100%;
}
body {
  font-weight: 400;
  font-family: "Candara", sans-serif;
  font-size: 1.1rem;
  background-color: #f9fafb;
  color: #1f2329;
  margin: 0;
  padding: 0;
}
* {
  box-sizing: inherit;
}
.main__footer {
  background: transparent;
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  z-index: 100;
}
.copyright__text {
  letter-spacing: 0.1rem;
  color: white;
}
@media only screen and (max-width: 300px) {
  .slide-menu {
    width: 100%;
  }
}
.cdk-overlay-container {
  z-index: 1100 !important;
}
.timeframe-field {
  display: block;
}
.timeframe-field .timeframe-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--form-spacing);
}
.timeframe-field .timeframe-input {
  display: flex;
  flex-direction: column;
}
.timeframe-field .timeframe-input label {
  font-size: var(--form-font-size-small);
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--form-text-secondary);
}
.field-label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 12px;
  color: #41424e !important;
  font-family: "Candara", sans-serif;
  font-weight: 600 !important;
  letter-spacing: 1.5px;
}
.field-label .required-indicator {
  color: var(--form-error-color);
  font-weight: 700 !important;
  font-size: 1.1em;
}
.field-label.uppercase {
  text-transform: uppercase;
}
.field-label.bold {
  font-weight: 700 !important;
}
.multi-select-dropdown {
  min-height: 100px;
}
.multi-select-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: var(--form-spacing-small);
  background: rgba(0, 0, 0, 0.01);
  border-radius: var(--form-border-radius);
}
.multi-select-chips .chip-option {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 2px solid var(--form-border-color);
  border-radius: 1.5rem;
  background-color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  font-weight: 500;
  font-size: 0.9rem;
}
.multi-select-chips .chip-option input[type=checkbox] {
  display: none;
}
.multi-select-chips .chip-option:has(input:checked) {
  background:
    linear-gradient(
      135deg,
      var(--form-primary-color),
      var(--form-primary-hover));
  color: white;
  border-color: var(--form-primary-color);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}
.multi-select-chips .chip-option.selected {
  background:
    linear-gradient(
      135deg,
      var(--form-primary-color),
      var(--form-primary-hover));
  color: white;
  border-color: var(--form-primary-color);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
  transform: translateY(-2px);
}
.multi-select-chips .chip-option:hover {
  background-color: var(--form-secondary-hover);
  border-color: var(--form-primary-color);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}
.multi-select-chips .chip-option:has(input:checked):hover,
.multi-select-chips .chip-option.selected:hover {
  background:
    linear-gradient(
      135deg,
      var(--form-primary-hover),
      var(--form-primary-color));
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}
.multi-select-list {
  border: 2px solid var(--form-border-color);
  border-radius: var(--form-border-radius);
  max-height: 200px;
  overflow-y: auto;
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.multi-select-list .list-option {
  display: flex;
  align-items: center;
  gap: var(--form-spacing-small);
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
.multi-select-list .list-option::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--form-primary-color);
  transform: scaleY(0);
  transition: transform 0.2s ease;
}
.multi-select-list .list-option:last-child {
  border-bottom: none;
}
.multi-select-list .list-option:hover {
  background-color: rgba(37, 99, 235, 0.05);
  padding-left: 1.25rem;
}
.multi-select-list .list-option:hover::before {
  transform: scaleY(1);
}
.multi-select-list .list-option input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: var(--form-primary-color);
}
.multi-select-list .list-option span {
  cursor: pointer;
  font-weight: normal;
  color: var(--form-text-color);
  -webkit-user-select: none;
  user-select: none;
}
.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: var(--form-spacing-small);
}
.checkbox-option,
.radio-option {
  display: flex;
  align-items: center;
  gap: var(--form-spacing-small);
  font-weight: normal;
  margin-bottom: 0;
  color: var(--form-text-color);
}
.checkbox-option input,
.radio-option input {
  width: auto;
  margin: 0;
  cursor: pointer;
  accent-color: var(--form-primary-color);
}
.checkbox-option span,
.checkbox-option label,
.radio-option span,
.radio-option label {
  cursor: pointer;
}
:host(.full-width) {
  width: 100% !important;
}
.full-width {
  width: 100% !important;
}
.generic-form-renderer {
  width: 100%;
  --form-text-color: #1f2937;
  --form-text-secondary: #64748b;
  --form-border-color: #d1d5db;
  --form-border-focus: #2563eb;
  --form-border-radius: 0.375rem;
  --form-bg-disabled: #f3f4f6;
  --form-error-color: #ef4444;
  --form-primary-color: #2563eb;
  --form-primary-hover: #1d4ed8;
  --form-secondary-color: white;
  --form-secondary-text-color: var(--form-text-secondary);
  --form-secondary-hover: #f8fafc;
  --form-heading-color: #6d6d6e;
  --form-input-padding: 0.625rem;
  --form-font-size: 1rem;
  --form-font-size-small: 0.875rem;
  --form-spacing: 1rem;
  --form-spacing-small: 0.5rem;
  --form-spacing-large: 1.5rem;
  --form-shadow-focus: 0 0 0 3px rgba(37, 99, 235, 0.1);
  --form-group-bg: #ffffff;
  --form-group-border: rgba(0, 0, 0, 0.08);
  --form-section-bg: #f9fafb;
  --form-accent-left: var(--form-primary-color);
}
.generic-form-renderer .form-description {
  margin-bottom: var(--form-spacing-large);
  padding: var(--form-spacing);
  background: var(--form-section-bg);
  border-left: 4px solid var(--form-accent-left);
  border-radius: var(--form-border-radius);
}
.generic-form-renderer .form-description p {
  color: var(--form-text-secondary);
  margin: 0;
  line-height: 1.6;
}
.generic-form-renderer form {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--form-spacing);
  align-items: start;
  padding: var(--form-spacing);
  background: var(--form-section-bg);
  border-radius: calc(var(--form-border-radius) * 2);
}
.generic-form-renderer .form-group {
  display: flex;
  flex-direction: column;
  gap: var(--form-spacing-small);
}
.generic-form-renderer .button-group {
  grid-column: 1/-1;
  display: flex;
  gap: var(--form-spacing);
  justify-content: flex-end;
  padding-top: var(--form-spacing-large);
  margin-top: var(--form-spacing-large);
  border-top: 2px solid var(--form-group-border);
}
.form-heading {
  margin: var(--form-spacing-large) 0 var(--form-spacing) 0;
  color: var(--form-heading-color);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-bottom: var(--form-spacing-small);
  border-bottom: 3px solid var(--form-accent-left);
  position: relative;
}
.form-divider {
  margin: var(--form-spacing-large) 0;
  border: none;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      transparent,
      var(--form-border-color),
      transparent);
  position: relative;
}
.form-spacer {
  margin: var(--form-spacing) 0;
}
.translate-editable {
  outline: 2px solid rgba(46, 160, 67, 0.75);
  outline-offset: 2px;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  transition: outline-color 0.15s;
}
.translate-editable:hover {
  outline-color: rgb(46, 160, 67);
  box-shadow: 0 0 0 4px rgba(46, 160, 67, 0.12);
}
.translate-editable:hover::after {
  content: "click to edit";
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(27, 94, 32, 0.9);
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 10000;
}
.cdk-overlay-container .cdk-drag-preview {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 10000 !important;
  pointer-events: none !important;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  background: var(--app-surface-color, #ffffff);
  border: 2px solid var(--app-primary-color, #1976d2);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 120px;
  max-width: 420px;
  overflow: hidden;
  white-space: nowrap;
  color: inherit;
  font-family: "Candara", sans-serif;
  font-size: 1.1rem;
  line-height: 1;
}
.cdk-overlay-container .cdk-drag-preview::-webkit-scrollbar {
  display: none;
}
.cdk-overlay-container .cdk-drag-preview .activity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.cdk-overlay-container .cdk-drag-preview .activity-item mat-icon {
  font-size: 20px;
  width: 20px;
  height: 20px;
  color: var(--app-primary-color, #1976d2);
}
.cdk-overlay-container .cdk-drag-preview .activity-item .activity-name {
  font-weight: 500;
  font-size: 13px;
  text-overflow: ellipsis;
  overflow: hidden;
}
.cdk-overlay-container .cdk-drag-preview .activity-item .activity-desc {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.6);
  text-overflow: ellipsis;
  overflow: hidden;
}

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