/* src/styles.scss */
/*! tailwindcss v4.2.4 | MIT License | https://tailwindcss.com */
@layer properties;
:root,
:host {
  --default-font-family: "Open Sans", sans-serif;
  --color-black: #333;
  --color-white: #fff;
  --color-neutral-100: #f1f3f4;
  --color-neutral-200: #e2e6ea;
  --color-neutral-300: #d4d8dc;
  --color-neutral-400: #b3bfc7;
  --color-neutral-500: #b1bbc3;
  --color-neutral-600: #647887;
  --color-neutral-700: #50606c;
  --color-primary-100: #e1edff;
  --color-primary-200: #bdd8ff;
  --color-primary-300: #85bcd8;
  --color-primary-400: #0b7ab1;
  --color-primary-500: #085c85;
  --color-primary-600: #063d59;
  --color-secondary-100: #ebe4ff;
  --color-secondary-200: #d2c2ff;
  --color-secondary-300: #9d82c3;
  --color-secondary-400: #3c0687;
  --color-secondary-500: #28045a;
  --color-secondary-600: #063d59;
  --color-green-100: #ceedd5;
  --color-green-200: #97bfa0;
  --color-green-300: #2f7f42;
  --color-green-400: #235f31;
  --color-green-500: #173f21;
  --color-yellow-100: #fcecba;
  --color-yellow-200: #fadd85;
  --color-yellow-300: #e7c38e;
  --color-yellow-400: #cf881d;
  --color-yellow-500: #9a6516;
  --color-yellow-600: #67430f;
  --color-red-100: #fdccd0;
  --color-red-200: #fcacb2;
  --color-red-300: #da848b;
  --color-red-400: #b50917;
  --color-red-500: #870611;
  --color-red-600: #5a040b;
  --color-brand-anthem-light: #eaf0f6;
  --color-brand-anthem-dark: #2967a0;
  --color-brand-aetna-light: #f1ecf4;
  --color-brand-aetna-dark: #754593;
  --color-brand-humana-light: #f0f5eb;
  --color-brand-humana-dark: #6b9635;
  --color-brand-uhc-light: #e6eaf1;
  --color-brand-uhc-dark: #082872;
  --spacing: 0.25rem;
  --text-sm: 0.875rem;
  --text-sm--line-height: calc(1.25 / 0.875);
  --text-base: 1rem;
  --text-base--line-height: calc(1.5 / 1);
  --text-xl: 1.25rem;
  --text-xl--line-height: calc(1.75 / 1.25);
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
}
@layer mfe-mnc-notes {
  @layer theme;
  @layer utilities {
    .visible {
      visibility: visible;
    }
    .absolute {
      position: absolute;
    }
    .fixed {
      position: fixed;
    }
    .static {
      position: static;
    }
    .start {
      inset-inline-start: var(--spacing);
    }
    .end {
      inset-inline-end: var(--spacing);
    }
    .col-span-2 {
      grid-column: span 2 / span 2;
    }
    .col-span-4 {
      grid-column: span 4 / span 4;
    }
    .col-span-6 {
      grid-column: span 6 / span 6;
    }
    .col-span-12 {
      grid-column: span 12 / span 12;
    }
    .float-right {
      float: right;
    }
    .container {
      width: 100%;
    }
    @media (width >= 40rem) {
      .container {
        max-width: 40rem;
      }
    }
    @media (width >= 48rem) {
      .container {
        max-width: 48rem;
      }
    }
    @media (width >= 64rem) {
      .container {
        max-width: 64rem;
      }
    }
    @media (width >= 80rem) {
      .container {
        max-width: 80rem;
      }
    }
    @media (width >= 96rem) {
      .container {
        max-width: 96rem;
      }
    }
    .mx-1 {
      margin-inline: calc(var(--spacing) * 1);
    }
    .my-4 {
      margin-block: calc(var(--spacing) * 4);
    }
    .mt-0 {
      margin-top: calc(var(--spacing) * 0);
    }
    .mt-1 {
      margin-top: calc(var(--spacing) * 1);
    }
    .mt-2 {
      margin-top: calc(var(--spacing) * 2);
    }
    .mt-4 {
      margin-top: calc(var(--spacing) * 4);
    }
    .mt-6 {
      margin-top: calc(var(--spacing) * 6);
    }
    .mr-1 {
      margin-right: calc(var(--spacing) * 1);
    }
    .mr-2 {
      margin-right: calc(var(--spacing) * 2);
    }
    .mr-8 {
      margin-right: calc(var(--spacing) * 8);
    }
    .mb-0 {
      margin-bottom: calc(var(--spacing) * 0);
    }
    .mb-1 {
      margin-bottom: calc(var(--spacing) * 1);
    }
    .mb-2 {
      margin-bottom: calc(var(--spacing) * 2);
    }
    .mb-3 {
      margin-bottom: calc(var(--spacing) * 3);
    }
    .mb-4 {
      margin-bottom: calc(var(--spacing) * 4);
    }
    .mb-6 {
      margin-bottom: calc(var(--spacing) * 6);
    }
    .mb-8 {
      margin-bottom: calc(var(--spacing) * 8);
    }
    .ml-1 {
      margin-left: calc(var(--spacing) * 1);
    }
    .ml-2 {
      margin-left: calc(var(--spacing) * 2);
    }
    .ml-4 {
      margin-left: calc(var(--spacing) * 4);
    }
    .block {
      display: block;
    }
    .flex {
      display: flex;
    }
    .grid {
      display: grid;
    }
    .hidden {
      display: none;
    }
    .inline {
      display: inline;
    }
    .table {
      display: table;
    }
    .w-1\/6 {
      width: calc(1 / 6 * 100%);
    }
    .w-4\/12 {
      width: calc(4 / 12 * 100%);
    }
    .w-8\/12 {
      width: calc(8 / 12 * 100%);
    }
    .w-100 {
      width: calc(var(--spacing) * 100);
    }
    .w-auto {
      width: auto;
    }
    .w-full {
      width: 100%;
    }
    .flex-grow-3 {
      flex-grow: 3;
    }
    .grow {
      flex-grow: 1;
    }
    .rotate-90 {
      rotate: 90deg;
    }
    .transform {
      transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
    }
    .resize {
      resize: both;
    }
    .resize-y {
      resize: vertical;
    }
    .grid-cols-12 {
      grid-template-columns: repeat(12, minmax(0, 1fr));
    }
    .flex-col {
      flex-direction: column;
    }
    .flex-row {
      flex-direction: row;
    }
    .content-center {
      align-content: center;
    }
    .items-center {
      align-items: center;
    }
    .justify-between {
      justify-content: space-between;
    }
    .justify-center {
      justify-content: center;
    }
    .justify-end {
      justify-content: flex-end;
    }
    .justify-start {
      justify-content: flex-start;
    }
    .gap-2 {
      gap: calc(var(--spacing) * 2);
    }
    .gap-4 {
      gap: calc(var(--spacing) * 4);
    }
    .gap-x-4 {
      column-gap: calc(var(--spacing) * 4);
    }
    .rounded {
      border-radius: 0.25rem;
    }
    .border-b {
      border-bottom-style: var(--tw-border-style);
      border-bottom-width: 1px;
    }
    .border-neutral-400 {
      border-color: var(--color-neutral-400);
    }
    .p-0 {
      padding: calc(var(--spacing) * 0);
    }
    .p-2 {
      padding: calc(var(--spacing) * 2);
    }
    .pt-1 {
      padding-top: calc(var(--spacing) * 1);
    }
    .pt-2 {
      padding-top: calc(var(--spacing) * 2);
    }
    .pt-4 {
      padding-top: calc(var(--spacing) * 4);
    }
    .pr-1 {
      padding-right: calc(var(--spacing) * 1);
    }
    .pr-4 {
      padding-right: calc(var(--spacing) * 4);
    }
    .pb-0 {
      padding-bottom: calc(var(--spacing) * 0);
    }
    .pb-4 {
      padding-bottom: calc(var(--spacing) * 4);
    }
    .pl-1 {
      padding-left: calc(var(--spacing) * 1);
    }
    .pl-2 {
      padding-left: calc(var(--spacing) * 2);
    }
    .pl-3 {
      padding-left: calc(var(--spacing) * 3);
    }
    .text-right {
      text-align: right;
    }
    .text-base {
      font-size: var(--text-base);
      line-height: var(--tw-leading, var(--text-base--line-height));
    }
    .text-sm {
      font-size: var(--text-sm);
      line-height: var(--tw-leading, var(--text-sm--line-height));
    }
    .text-xl {
      font-size: var(--text-xl);
      line-height: var(--tw-leading, var(--text-xl--line-height));
    }
    .font-medium {
      --tw-font-weight: var(--font-weight-medium);
      font-weight: var(--font-weight-medium);
    }
    .font-normal {
      --tw-font-weight: var(--font-weight-normal);
      font-weight: var(--font-weight-normal);
    }
    .font-semibold {
      --tw-font-weight: var(--font-weight-semibold);
      font-weight: var(--font-weight-semibold);
    }
    .text-neutral-600 {
      color: var(--color-neutral-600);
    }
    .filter {
      filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
    }
    .duration-150 {
      --tw-duration: 150ms;
      transition-duration: 150ms;
    }
    @media (width >= 48rem) {
      .md\:col-span-1 {
        grid-column: span 1 / span 1;
      }
    }
    @media (width >= 48rem) {
      .md\:col-span-4 {
        grid-column: span 4 / span 4;
      }
    }
    @media (width >= 48rem) {
      .md\:col-span-6 {
        grid-column: span 6 / span 6;
      }
    }
    @media (width >= 48rem) {
      .md\:col-span-8 {
        grid-column: span 8 / span 8;
      }
    }
    @media (width >= 48rem) {
      .md\:col-span-11 {
        grid-column: span 11 / span 11;
      }
    }
    @media (width >= 64rem) {
      .lg\:col-span-3 {
        grid-column: span 3 / span 3;
      }
    }
    @media (width >= 64rem) {
      .lg\:col-span-4 {
        grid-column: span 4 / span 4;
      }
    }
    @media (width >= 64rem) {
      .lg\:col-span-6 {
        grid-column: span 6 / span 6;
      }
    }
    @media (width >= 64rem) {
      .lg\:col-span-8 {
        grid-column: span 8 / span 8;
      }
    }
    @media (width >= 64rem) {
      .lg\:col-span-12 {
        grid-column: span 12 / span 12;
      }
    }
  }
}
@layer mynexus-theme {
  mnc-notes- * .multiselect-fit-chips .p-multiselect-label {
    flex-wrap: wrap;
  }
}
.note-dialog .p-dialog-header {
  background-color: var(--color-secondary-400);
  padding-inline: calc(var(--spacing) * 4);
  padding-block: calc(var(--spacing) * 2);
  color: var(--color-white);
}
.note-dialog .p-dialog-title {
  font-size: var(--text-base);
  line-height: var(--tw-leading, var(--text-base--line-height));
}
.note-dialog .p-dialog-maximize-button,
.note-dialog .p-dialog-close-button {
  color: var(--color-white) !important;
}
.note-dialog .p-dialog-content {
  padding: calc(var(--spacing) * 4);
}
.note-service-line-sidebar-header {
  display: none;
}
.note-service-line-sidebar .note-service-line-sidebar-header {
  display: block;
}
.note-service-line-sidebar h5 {
  display: none;
}
.note-sm {
  max-width: 536px;
}
.note-md {
  max-width: 674px;
}
.note-lg {
  max-width: 812px;
}
.note-xl {
  max-width: 1373px;
}
.note-full {
  max-width: 100vw;
  min-width: 100vw;
}
.note-full .p-dialog-content {
  max-width: 100vw;
  min-width: 100vw;
}
.horizontal-divider {
  height: 1px;
  border-bottom: 1px solid var(--color-neutral-400);
}
.required-mark {
  color: var(--color-red-400);
}
@property --tw-rotate-x { syntax: "*"; inherits: false; }
@property --tw-rotate-y { syntax: "*"; inherits: false; }
@property --tw-rotate-z { syntax: "*"; inherits: false; }
@property --tw-skew-x { syntax: "*"; inherits: false; }
@property --tw-skew-y { syntax: "*"; inherits: false; }
@property --tw-border-style { syntax: "*"; inherits: false; initial-value: solid; }
@property --tw-font-weight { syntax: "*"; inherits: false; }
@property --tw-blur { syntax: "*"; inherits: false; }
@property --tw-brightness { syntax: "*"; inherits: false; }
@property --tw-contrast { syntax: "*"; inherits: false; }
@property --tw-grayscale { syntax: "*"; inherits: false; }
@property --tw-hue-rotate { syntax: "*"; inherits: false; }
@property --tw-invert { syntax: "*"; inherits: false; }
@property --tw-opacity { syntax: "*"; inherits: false; }
@property --tw-saturate { syntax: "*"; inherits: false; }
@property --tw-sepia { syntax: "*"; inherits: false; }
@property --tw-drop-shadow { syntax: "*"; inherits: false; }
@property --tw-drop-shadow-color { syntax: "*"; inherits: false; }
@property --tw-drop-shadow-alpha { syntax: "<percentage>"; inherits: false; initial-value: 100%; }
@property --tw-drop-shadow-size { syntax: "*"; inherits: false; }
@property --tw-duration { syntax: "*"; inherits: false; }
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *,
    ::before,
    ::after,
    ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
      --tw-font-weight: initial;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
      --tw-duration: initial;
    }
  }
}

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