/* node_modules/prismjs/themes/prism-okaidia.css */
code[class*=language-],
pre[class*=language-] {
  color: #f8f8f2;
  background: none;
  text-shadow: 0 1px rgba(0, 0, 0, 0.3);
  font-family:
    Consolas,
    Monaco,
    "Andale Mono",
    "Ubuntu Mono",
    monospace;
  font-size: 1em;
  text-align: left;
  white-space: pre;
  word-spacing: normal;
  word-break: normal;
  word-wrap: normal;
  line-height: 1.5;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
pre[class*=language-] {
  padding: 1em;
  margin: .5em 0;
  overflow: auto;
  border-radius: 0.3em;
}
:not(pre) > code[class*=language-],
pre[class*=language-] {
  background: #272822;
}
:not(pre) > code[class*=language-] {
  padding: .1em;
  border-radius: .3em;
  white-space: normal;
}
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #8292a2;
}
.token.punctuation {
  color: #f8f8f2;
}
.token.namespace {
  opacity: .7;
}
.token.property,
.token.tag,
.token.constant,
.token.symbol,
.token.deleted {
  color: #f92672;
}
.token.boolean,
.token.number {
  color: #ae81ff;
}
.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #a6e22e;
}
.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string,
.token.variable {
  color: #f8f8f2;
}
.token.atrule,
.token.attr-value,
.token.function,
.token.class-name {
  color: #e6db74;
}
.token.keyword {
  color: #66d9ef;
}
.token.regex,
.token.important {
  color: #fd971f;
}
.token.important,
.token.bold {
  font-weight: bold;
}
.token.italic {
  font-style: italic;
}
.token.entity {
  cursor: help;
}

/* node_modules/prismjs/plugins/toolbar/prism-toolbar.css */
div.code-toolbar {
  position: relative;
}
div.code-toolbar > .toolbar {
  position: absolute;
  z-index: 10;
  top: .3em;
  right: .2em;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}
div.code-toolbar:hover > .toolbar {
  opacity: 1;
}
div.code-toolbar:focus-within > .toolbar {
  opacity: 1;
}
div.code-toolbar > .toolbar > .toolbar-item {
  display: inline-block;
}
div.code-toolbar > .toolbar > .toolbar-item > a {
  cursor: pointer;
}
div.code-toolbar > .toolbar > .toolbar-item > button {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
div.code-toolbar > .toolbar > .toolbar-item > a,
div.code-toolbar > .toolbar > .toolbar-item > button,
div.code-toolbar > .toolbar > .toolbar-item > span {
  color: #bbb;
  font-size: .8em;
  padding: 0 .5em;
  background: #f5f2f0;
  background: rgba(224, 224, 224, 0.2);
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
  border-radius: .5em;
}
div.code-toolbar > .toolbar > .toolbar-item > a:hover,
div.code-toolbar > .toolbar > .toolbar-item > a:focus,
div.code-toolbar > .toolbar > .toolbar-item > button:hover,
div.code-toolbar > .toolbar > .toolbar-item > button:focus,
div.code-toolbar > .toolbar > .toolbar-item > span:hover,
div.code-toolbar > .toolbar > .toolbar-item > span:focus {
  color: inherit;
  text-decoration: none;
}

/* src/scss/styles.scss */
.mat-ripple {
  overflow: hidden;
  position: relative;
}
.mat-ripple:not(:empty) {
  transform: translateZ(0);
}
.mat-ripple.mat-ripple-unbounded {
  overflow: visible;
}
.mat-ripple-element {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1);
  transform: scale3d(0, 0, 0);
  background-color: var(--mat-ripple-color, rgba(0, 0, 0, 0.1));
}
.cdk-high-contrast-active .mat-ripple-element {
  display: none;
}
.cdk-drag-preview .mat-ripple-element,
.cdk-drag-placeholder .mat-ripple-element {
  display: none;
}
.cdk-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  left: 0;
}
[dir=rtl] .cdk-visually-hidden {
  left: auto;
  right: 0;
}
.cdk-overlay-container,
.cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  display: none;
}
.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}
.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  z-index: 1000;
  display: flex;
  max-width: 100%;
  max-height: 100%;
}
.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 1;
}
.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0.6;
}
.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, 0.32);
}
.cdk-overlay-transparent-backdrop {
  transition: visibility 1ms linear, opacity 1ms linear;
  visibility: hidden;
  opacity: 1;
}
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0;
  visibility: visible;
}
.cdk-overlay-backdrop-noop-animation {
  transition: none;
}
.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
}
.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}
textarea.cdk-textarea-autosize {
  resize: none;
}
textarea.cdk-textarea-autosize-measuring {
  padding: 2px 0 !important;
  box-sizing: content-box !important;
  height: auto !important;
  overflow: hidden !important;
}
textarea.cdk-textarea-autosize-measuring-firefox {
  padding: 2px 0 !important;
  box-sizing: content-box !important;
  height: 0 !important;
}
@keyframes cdk-text-field-autofill-start {
}
@keyframes cdk-text-field-autofill-end {
}
.cdk-text-field-autofill-monitored:-webkit-autofill {
  animation: cdk-text-field-autofill-start 0s 1ms;
}
.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
  animation: cdk-text-field-autofill-end 0s 1ms;
}
.mat-focus-indicator {
  position: relative;
}
.mat-focus-indicator::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  box-sizing: border-box;
  pointer-events: none;
  display: var(--mat-focus-indicator-display, none);
  border: var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);
  border-radius: var(--mat-focus-indicator-border-radius, 4px);
}
.mat-focus-indicator:focus::before {
  content: "";
}
.cdk-high-contrast-active {
  --mat-focus-indicator-display: block;
}
.mat-mdc-focus-indicator {
  position: relative;
}
.mat-mdc-focus-indicator::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  box-sizing: border-box;
  pointer-events: none;
  display: var(--mat-mdc-focus-indicator-display, none);
  border: var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);
  border-radius: var(--mat-mdc-focus-indicator-border-radius, 4px);
}
.mat-mdc-focus-indicator:focus::before {
  content: "";
}
.cdk-high-contrast-active {
  --mat-mdc-focus-indicator-display: block;
}
.mat-app-background {
  background-color: var(--mat-app-background-color, var(--mat-app-background, transparent));
  color: var(--mat-app-text-color, var(--mat-app-on-background, inherit));
}
.mat-elevation-z0,
.mat-mdc-elevation-specific.mat-elevation-z0 {
  box-shadow: var(--mat-app-elevation-shadow-level-0, none);
}
.mat-elevation-z1,
.mat-mdc-elevation-specific.mat-elevation-z1 {
  box-shadow: var(--mat-app-elevation-shadow-level-1, none);
}
.mat-elevation-z2,
.mat-mdc-elevation-specific.mat-elevation-z2 {
  box-shadow: var(--mat-app-elevation-shadow-level-2, none);
}
.mat-elevation-z3,
.mat-mdc-elevation-specific.mat-elevation-z3 {
  box-shadow: var(--mat-app-elevation-shadow-level-3, none);
}
.mat-elevation-z4,
.mat-mdc-elevation-specific.mat-elevation-z4 {
  box-shadow: var(--mat-app-elevation-shadow-level-4, none);
}
.mat-elevation-z5,
.mat-mdc-elevation-specific.mat-elevation-z5 {
  box-shadow: var(--mat-app-elevation-shadow-level-5, none);
}
.mat-elevation-z6,
.mat-mdc-elevation-specific.mat-elevation-z6 {
  box-shadow: var(--mat-app-elevation-shadow-level-6, none);
}
.mat-elevation-z7,
.mat-mdc-elevation-specific.mat-elevation-z7 {
  box-shadow: var(--mat-app-elevation-shadow-level-7, none);
}
.mat-elevation-z8,
.mat-mdc-elevation-specific.mat-elevation-z8 {
  box-shadow: var(--mat-app-elevation-shadow-level-8, none);
}
.mat-elevation-z9,
.mat-mdc-elevation-specific.mat-elevation-z9 {
  box-shadow: var(--mat-app-elevation-shadow-level-9, none);
}
.mat-elevation-z10,
.mat-mdc-elevation-specific.mat-elevation-z10 {
  box-shadow: var(--mat-app-elevation-shadow-level-10, none);
}
.mat-elevation-z11,
.mat-mdc-elevation-specific.mat-elevation-z11 {
  box-shadow: var(--mat-app-elevation-shadow-level-11, none);
}
.mat-elevation-z12,
.mat-mdc-elevation-specific.mat-elevation-z12 {
  box-shadow: var(--mat-app-elevation-shadow-level-12, none);
}
.mat-elevation-z13,
.mat-mdc-elevation-specific.mat-elevation-z13 {
  box-shadow: var(--mat-app-elevation-shadow-level-13, none);
}
.mat-elevation-z14,
.mat-mdc-elevation-specific.mat-elevation-z14 {
  box-shadow: var(--mat-app-elevation-shadow-level-14, none);
}
.mat-elevation-z15,
.mat-mdc-elevation-specific.mat-elevation-z15 {
  box-shadow: var(--mat-app-elevation-shadow-level-15, none);
}
.mat-elevation-z16,
.mat-mdc-elevation-specific.mat-elevation-z16 {
  box-shadow: var(--mat-app-elevation-shadow-level-16, none);
}
.mat-elevation-z17,
.mat-mdc-elevation-specific.mat-elevation-z17 {
  box-shadow: var(--mat-app-elevation-shadow-level-17, none);
}
.mat-elevation-z18,
.mat-mdc-elevation-specific.mat-elevation-z18 {
  box-shadow: var(--mat-app-elevation-shadow-level-18, none);
}
.mat-elevation-z19,
.mat-mdc-elevation-specific.mat-elevation-z19 {
  box-shadow: var(--mat-app-elevation-shadow-level-19, none);
}
.mat-elevation-z20,
.mat-mdc-elevation-specific.mat-elevation-z20 {
  box-shadow: var(--mat-app-elevation-shadow-level-20, none);
}
.mat-elevation-z21,
.mat-mdc-elevation-specific.mat-elevation-z21 {
  box-shadow: var(--mat-app-elevation-shadow-level-21, none);
}
.mat-elevation-z22,
.mat-mdc-elevation-specific.mat-elevation-z22 {
  box-shadow: var(--mat-app-elevation-shadow-level-22, none);
}
.mat-elevation-z23,
.mat-mdc-elevation-specific.mat-elevation-z23 {
  box-shadow: var(--mat-app-elevation-shadow-level-23, none);
}
.mat-elevation-z24,
.mat-mdc-elevation-specific.mat-elevation-z24 {
  box-shadow: var(--mat-app-elevation-shadow-level-24, none);
}
: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: rgba(26, 27, 31, 0.1);
  --mat-option-selected-state-label-text-color: #131c2b;
  --mat-option-label-text-color: #1a1b1f;
  --mat-option-hover-state-layer-color: rgba(26, 27, 31, 0.08);
  --mat-option-focus-state-layer-color: rgba(26, 27, 31, 0.12);
  --mat-option-selected-state-layer-color: #dae2f9;
  --mat-option-label-text-font: Roboto, sans-serif;
  --mat-option-label-text-line-height: 1.25rem;
  --mat-option-label-text-size: 1rem;
  --mat-option-label-text-tracking: 0.006rem;
  --mat-option-label-text-weight: 400;
  --mat-optgroup-label-text-color: #44474e;
  --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-full-pseudo-checkbox-selected-icon-color: #005cbb;
  --mat-full-pseudo-checkbox-selected-checkmark-color: #ffffff;
  --mat-full-pseudo-checkbox-unselected-icon-color: #44474e;
  --mat-full-pseudo-checkbox-disabled-selected-checkmark-color: #faf9fd;
  --mat-full-pseudo-checkbox-disabled-unselected-icon-color: rgba(26, 27, 31, 0.38);
  --mat-full-pseudo-checkbox-disabled-selected-icon-color: rgba(26, 27, 31, 0.38);
  --mat-minimal-pseudo-checkbox-selected-checkmark-color: #005cbb;
  --mat-minimal-pseudo-checkbox-disabled-selected-checkmark-color: rgba(26, 27, 31, 0.38);
  --mdc-elevated-card-container-color: #f4f3f6;
  --mdc-elevated-card-container-elevation:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-elevated-card-container-shape: 12px;
  --mdc-outlined-card-container-color: #faf9fd;
  --mdc-outlined-card-outline-color: #c4c6d0;
  --mdc-outlined-card-container-elevation:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-outlined-card-container-shape: 12px;
  --mdc-outlined-card-outline-width: 1px;
  --mat-card-subtitle-text-color: #1a1b1f;
  --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-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;
  --mdc-linear-progress-active-indicator-color: #005cbb;
  --mdc-linear-progress-track-color: #e0e2ec;
  --mdc-linear-progress-active-indicator-height: 4px;
  --mdc-linear-progress-track-height: 4px;
  --mdc-linear-progress-track-shape: 0;
  --mdc-plain-tooltip-container-color: #2f3033;
  --mdc-plain-tooltip-supporting-text-color: #f2f0f4;
  --mdc-plain-tooltip-supporting-text-line-height: 1rem;
  --mdc-plain-tooltip-supporting-text-font: Roboto, sans-serif;
  --mdc-plain-tooltip-supporting-text-size: 0.75rem;
  --mdc-plain-tooltip-supporting-text-weight: 400;
  --mdc-plain-tooltip-supporting-text-tracking: 0.025rem;
  --mdc-plain-tooltip-container-shape: 4px;
  --mdc-filled-text-field-caret-color: #005cbb;
  --mdc-filled-text-field-focus-active-indicator-color: #005cbb;
  --mdc-filled-text-field-focus-label-text-color: #005cbb;
  --mdc-filled-text-field-container-color: #e0e2ec;
  --mdc-filled-text-field-disabled-container-color: rgba(26, 27, 31, 0.04);
  --mdc-filled-text-field-label-text-color: #44474e;
  --mdc-filled-text-field-hover-label-text-color: #44474e;
  --mdc-filled-text-field-disabled-label-text-color: rgba(26, 27, 31, 0.38);
  --mdc-filled-text-field-input-text-color: #1a1b1f;
  --mdc-filled-text-field-disabled-input-text-color: rgba(26, 27, 31, 0.38);
  --mdc-filled-text-field-input-text-placeholder-color: #44474e;
  --mdc-filled-text-field-error-hover-label-text-color: #410002;
  --mdc-filled-text-field-error-focus-label-text-color: #ba1a1a;
  --mdc-filled-text-field-error-label-text-color: #ba1a1a;
  --mdc-filled-text-field-active-indicator-color: #44474e;
  --mdc-filled-text-field-disabled-active-indicator-color: rgba(26, 27, 31, 0.38);
  --mdc-filled-text-field-hover-active-indicator-color: #1a1b1f;
  --mdc-filled-text-field-error-active-indicator-color: #ba1a1a;
  --mdc-filled-text-field-error-focus-active-indicator-color: #ba1a1a;
  --mdc-filled-text-field-error-hover-active-indicator-color: #410002;
  --mdc-filled-text-field-label-text-font: Roboto, sans-serif;
  --mdc-filled-text-field-label-text-size: 1rem;
  --mdc-filled-text-field-label-text-tracking: 0.031rem;
  --mdc-filled-text-field-label-text-weight: 400;
  --mdc-filled-text-field-active-indicator-height: 1px;
  --mdc-filled-text-field-focus-active-indicator-height: 2px;
  --mdc-filled-text-field-container-shape: 4px;
  --mdc-outlined-text-field-caret-color: #005cbb;
  --mdc-outlined-text-field-focus-outline-color: #005cbb;
  --mdc-outlined-text-field-focus-label-text-color: #005cbb;
  --mdc-outlined-text-field-label-text-color: #44474e;
  --mdc-outlined-text-field-hover-label-text-color: #1a1b1f;
  --mdc-outlined-text-field-disabled-label-text-color: rgba(26, 27, 31, 0.38);
  --mdc-outlined-text-field-input-text-color: #1a1b1f;
  --mdc-outlined-text-field-disabled-input-text-color: rgba(26, 27, 31, 0.38);
  --mdc-outlined-text-field-input-text-placeholder-color: #44474e;
  --mdc-outlined-text-field-error-focus-label-text-color: #ba1a1a;
  --mdc-outlined-text-field-error-label-text-color: #ba1a1a;
  --mdc-outlined-text-field-error-hover-label-text-color: #410002;
  --mdc-outlined-text-field-outline-color: #74777f;
  --mdc-outlined-text-field-disabled-outline-color: rgba(26, 27, 31, 0.12);
  --mdc-outlined-text-field-hover-outline-color: #1a1b1f;
  --mdc-outlined-text-field-error-focus-outline-color: #ba1a1a;
  --mdc-outlined-text-field-error-hover-outline-color: #410002;
  --mdc-outlined-text-field-error-outline-color: #ba1a1a;
  --mdc-outlined-text-field-label-text-font: Roboto, sans-serif;
  --mdc-outlined-text-field-label-text-size: 1rem;
  --mdc-outlined-text-field-label-text-tracking: 0.031rem;
  --mdc-outlined-text-field-label-text-weight: 400;
  --mdc-outlined-text-field-outline-width: 1px;
  --mdc-outlined-text-field-focus-outline-width: 2px;
  --mdc-outlined-text-field-container-shape: 4px;
  --mat-form-field-focus-select-arrow-color: #005cbb;
  --mat-form-field-disabled-input-text-placeholder-color: rgba(26, 27, 31, 0.38);
  --mat-form-field-state-layer-color: #1a1b1f;
  --mat-form-field-error-text-color: #ba1a1a;
  --mat-form-field-select-option-text-color: #1a1b1f;
  --mat-form-field-select-disabled-option-text-color: rgba(26, 27, 31, 0.38);
  --mat-form-field-leading-icon-color: #44474e;
  --mat-form-field-disabled-leading-icon-color: rgba(26, 27, 31, 0.38);
  --mat-form-field-trailing-icon-color: #44474e;
  --mat-form-field-disabled-trailing-icon-color: rgba(26, 27, 31, 0.38);
  --mat-form-field-error-focus-trailing-icon-color: #ba1a1a;
  --mat-form-field-error-hover-trailing-icon-color: #410002;
  --mat-form-field-error-trailing-icon-color: #ba1a1a;
  --mat-form-field-enabled-select-arrow-color: #44474e;
  --mat-form-field-disabled-select-arrow-color: rgba(26, 27, 31, 0.38);
  --mat-form-field-hover-state-layer-opacity: 0.08;
  --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-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-focus-state-layer-opacity: 0;
  --mat-select-panel-background-color: #efedf0;
  --mat-select-enabled-trigger-text-color: #1a1b1f;
  --mat-select-disabled-trigger-text-color: rgba(26, 27, 31, 0.38);
  --mat-select-placeholder-text-color: #44474e;
  --mat-select-enabled-arrow-color: #44474e;
  --mat-select-disabled-arrow-color: rgba(26, 27, 31, 0.38);
  --mat-select-focused-arrow-color: #005cbb;
  --mat-select-invalid-arrow-color: #ba1a1a;
  --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-select-arrow-transform: translateY(-8px);
  --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-autocomplete-background-color: #efedf0;
  --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);
  --mdc-dialog-container-color: #faf9fd;
  --mdc-dialog-subhead-color: #1a1b1f;
  --mdc-dialog-supporting-text-color: #44474e;
  --mdc-dialog-subhead-font: Roboto, sans-serif;
  --mdc-dialog-subhead-line-height: 2rem;
  --mdc-dialog-subhead-size: 1.5rem;
  --mdc-dialog-subhead-weight: 400;
  --mdc-dialog-subhead-tracking: 0;
  --mdc-dialog-supporting-text-font: Roboto, sans-serif;
  --mdc-dialog-supporting-text-line-height: 1.25rem;
  --mdc-dialog-supporting-text-size: 0.875rem;
  --mdc-dialog-supporting-text-weight: 400;
  --mdc-dialog-supporting-text-tracking: 0.016rem;
  --mdc-dialog-container-shape: 28px;
  --mat-dialog-container-elevation-shadow: none;
  --mat-dialog-container-max-width: 560px;
  --mat-dialog-container-small-max-width: calc(100vw - 32px);
  --mat-dialog-container-min-width: 280px;
  --mat-dialog-actions-alignment: flex-end;
  --mat-dialog-actions-padding: 16px 24px;
  --mat-dialog-content-padding: 20px 24px;
  --mat-dialog-with-actions-content-padding: 20px 24px 0;
  --mat-dialog-headline-padding: 6px 24px 13px;
  --mdc-chip-outline-color: #74777f;
  --mdc-chip-disabled-outline-color: rgba(26, 27, 31, 0.12);
  --mdc-chip-focus-outline-color: #44474e;
  --mdc-chip-hover-state-layer-opacity: 0.08;
  --mdc-chip-selected-hover-state-layer-opacity: 0.08;
  --mdc-chip-disabled-label-text-color: rgba(26, 27, 31, 0.38);
  --mdc-chip-elevated-selected-container-color: #dae2f9;
  --mdc-chip-flat-disabled-selected-container-color: rgba(26, 27, 31, 0.12);
  --mdc-chip-focus-state-layer-color: #44474e;
  --mdc-chip-hover-state-layer-color: #44474e;
  --mdc-chip-selected-hover-state-layer-color: #131c2b;
  --mdc-chip-focus-state-layer-opacity: 0.12;
  --mdc-chip-selected-focus-state-layer-color: #131c2b;
  --mdc-chip-selected-focus-state-layer-opacity: 0.12;
  --mdc-chip-label-text-color: #44474e;
  --mdc-chip-selected-label-text-color: #131c2b;
  --mdc-chip-with-icon-icon-color: #44474e;
  --mdc-chip-with-icon-disabled-icon-color: #1a1b1f;
  --mdc-chip-with-icon-selected-icon-color: #131c2b;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-color: #1a1b1f;
  --mdc-chip-with-trailing-icon-trailing-icon-color: #44474e;
  --mdc-chip-label-text-font: Roboto, sans-serif;
  --mdc-chip-label-text-line-height: 1.25rem;
  --mdc-chip-label-text-size: 0.875rem;
  --mdc-chip-label-text-tracking: 0.006rem;
  --mdc-chip-label-text-weight: 500;
  --mdc-chip-container-height: 32px;
  --mdc-chip-container-shape-radius: 8px;
  --mdc-chip-with-avatar-avatar-shape-radius: 24px;
  --mdc-chip-with-avatar-avatar-size: 24px;
  --mdc-chip-with-icon-icon-size: 18px;
  --mdc-chip-outline-width: 1px;
  --mdc-chip-with-avatar-disabled-avatar-opacity: 0.38;
  --mdc-chip-flat-selected-outline-width: 0;
  --mdc-chip-with-trailing-icon-disabled-trailing-icon-opacity: 0.38;
  --mdc-chip-with-icon-disabled-icon-opacity: 0.38;
  --mdc-chip-elevated-container-color: transparent;
  --mat-chip-trailing-action-state-layer-color: #44474e;
  --mat-chip-selected-trailing-action-state-layer-color: #131c2b;
  --mat-chip-trailing-action-hover-state-layer-opacity: 0.08;
  --mat-chip-trailing-action-focus-state-layer-opacity: 0.12;
  --mat-chip-selected-disabled-trailing-icon-color: #1a1b1f;
  --mat-chip-selected-trailing-icon-color: #131c2b;
  --mat-chip-disabled-container-opacity: 1;
  --mat-chip-trailing-action-opacity: 1;
  --mat-chip-trailing-action-focus-opacity: 1;
  --mdc-switch-selected-focus-state-layer-opacity: 0.12;
  --mdc-switch-selected-hover-state-layer-opacity: 0.08;
  --mdc-switch-selected-pressed-state-layer-opacity: 0.12;
  --mdc-switch-unselected-focus-state-layer-opacity: 0.12;
  --mdc-switch-unselected-hover-state-layer-opacity: 0.08;
  --mdc-switch-unselected-pressed-state-layer-opacity: 0.12;
  --mdc-switch-selected-focus-state-layer-color: #005cbb;
  --mdc-switch-selected-handle-color: #ffffff;
  --mdc-switch-selected-hover-state-layer-color: #005cbb;
  --mdc-switch-selected-pressed-state-layer-color: #005cbb;
  --mdc-switch-selected-focus-handle-color: #d7e3ff;
  --mdc-switch-selected-hover-handle-color: #d7e3ff;
  --mdc-switch-selected-pressed-handle-color: #d7e3ff;
  --mdc-switch-selected-focus-track-color: #005cbb;
  --mdc-switch-selected-hover-track-color: #005cbb;
  --mdc-switch-selected-pressed-track-color: #005cbb;
  --mdc-switch-selected-track-color: #005cbb;
  --mdc-switch-disabled-selected-handle-color: #faf9fd;
  --mdc-switch-disabled-selected-icon-color: #1a1b1f;
  --mdc-switch-disabled-selected-track-color: #1a1b1f;
  --mdc-switch-disabled-unselected-handle-color: #1a1b1f;
  --mdc-switch-disabled-unselected-icon-color: #e0e2ec;
  --mdc-switch-disabled-unselected-track-color: #e0e2ec;
  --mdc-switch-selected-icon-color: #001b3f;
  --mdc-switch-unselected-focus-handle-color: #44474e;
  --mdc-switch-unselected-focus-state-layer-color: #1a1b1f;
  --mdc-switch-unselected-focus-track-color: #e0e2ec;
  --mdc-switch-unselected-handle-color: #74777f;
  --mdc-switch-unselected-hover-handle-color: #44474e;
  --mdc-switch-unselected-hover-state-layer-color: #1a1b1f;
  --mdc-switch-unselected-hover-track-color: #e0e2ec;
  --mdc-switch-unselected-icon-color: #e0e2ec;
  --mdc-switch-unselected-pressed-handle-color: #44474e;
  --mdc-switch-unselected-pressed-state-layer-color: #1a1b1f;
  --mdc-switch-unselected-pressed-track-color: #e0e2ec;
  --mdc-switch-unselected-track-color: #e0e2ec;
  --mdc-switch-disabled-selected-icon-opacity: 0.38;
  --mdc-switch-disabled-track-opacity: 0.12;
  --mdc-switch-disabled-unselected-icon-opacity: 0.38;
  --mdc-switch-handle-shape: 9999px;
  --mdc-switch-selected-icon-size: 16px;
  --mdc-switch-track-height: 32px;
  --mdc-switch-track-shape: 9999px;
  --mdc-switch-track-width: 52px;
  --mdc-switch-unselected-icon-size: 16px;
  --mdc-switch-state-layer-size: 40px;
  --mat-switch-track-outline-color: #74777f;
  --mat-switch-disabled-unselected-track-outline-color: #1a1b1f;
  --mat-switch-label-text-color: #1a1b1f;
  --mat-switch-label-text-font: Roboto, sans-serif;
  --mat-switch-label-text-line-height: 1.25rem;
  --mat-switch-label-text-size: 0.875rem;
  --mat-switch-label-text-tracking: 0.016rem;
  --mat-switch-label-text-weight: 400;
  --mat-switch-disabled-selected-handle-opacity: 1;
  --mat-switch-disabled-unselected-handle-opacity: 0.38;
  --mat-switch-unselected-handle-size: 16px;
  --mat-switch-selected-handle-size: 24px;
  --mat-switch-pressed-handle-size: 28px;
  --mat-switch-with-icon-handle-size: 24px;
  --mat-switch-selected-handle-horizontal-margin: 0 24px;
  --mat-switch-selected-with-icon-handle-horizontal-margin: 0 24px;
  --mat-switch-selected-pressed-handle-horizontal-margin: 0 22px;
  --mat-switch-unselected-handle-horizontal-margin: 0 8px;
  --mat-switch-unselected-with-icon-handle-horizontal-margin: 0 4px;
  --mat-switch-unselected-pressed-handle-horizontal-margin: 0 2px;
  --mat-switch-visible-track-opacity: 1;
  --mat-switch-hidden-track-opacity: 0;
  --mat-switch-visible-track-transition: opacity 75ms;
  --mat-switch-hidden-track-transition: opacity 75ms;
  --mat-switch-track-outline-width: 2px;
  --mat-switch-selected-track-outline-width: 2px;
  --mat-switch-selected-track-outline-color: transparent;
  --mat-switch-disabled-unselected-track-outline-width: 2px;
  --mdc-radio-disabled-selected-icon-color: #1a1b1f;
  --mdc-radio-disabled-unselected-icon-color: #1a1b1f;
  --mdc-radio-unselected-hover-icon-color: #1a1b1f;
  --mdc-radio-unselected-focus-icon-color: #1a1b1f;
  --mdc-radio-unselected-icon-color: #44474e;
  --mdc-radio-unselected-pressed-icon-color: #1a1b1f;
  --mdc-radio-selected-focus-icon-color: #005cbb;
  --mdc-radio-selected-hover-icon-color: #005cbb;
  --mdc-radio-selected-icon-color: #005cbb;
  --mdc-radio-selected-pressed-icon-color: #005cbb;
  --mdc-radio-state-layer-size: 40px;
  --mdc-radio-disabled-selected-icon-opacity: 0.38;
  --mdc-radio-disabled-unselected-icon-opacity: 0.38;
  --mat-radio-ripple-color: #1a1b1f;
  --mat-radio-checked-ripple-color: #005cbb;
  --mat-radio-disabled-label-color: rgba(26, 27, 31, 0.38);
  --mat-radio-label-text-color: #1a1b1f;
  --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-radio-touch-target-display: block;
  --mdc-slider-handle-elevation:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-slider-handle-color: #005cbb;
  --mdc-slider-focus-handle-color: #005cbb;
  --mdc-slider-hover-handle-color: #005cbb;
  --mdc-slider-active-track-color: #005cbb;
  --mdc-slider-inactive-track-color: #e0e2ec;
  --mdc-slider-with-tick-marks-inactive-container-color: #44474e;
  --mdc-slider-with-tick-marks-active-container-color: #ffffff;
  --mdc-slider-disabled-active-track-color: #1a1b1f;
  --mdc-slider-disabled-handle-color: #1a1b1f;
  --mdc-slider-disabled-inactive-track-color: #1a1b1f;
  --mdc-slider-label-container-color: #005cbb;
  --mdc-slider-label-label-text-color: #ffffff;
  --mdc-slider-with-overlap-handle-outline-color: #ffffff;
  --mdc-slider-with-tick-marks-disabled-container-color: #1a1b1f;
  --mdc-slider-label-label-text-font: Roboto, sans-serif;
  --mdc-slider-label-label-text-size: 0.75rem;
  --mdc-slider-label-label-text-line-height: 1rem;
  --mdc-slider-label-label-text-tracking: 0.031rem;
  --mdc-slider-label-label-text-weight: 500;
  --mdc-slider-active-track-height: 4px;
  --mdc-slider-active-track-shape: 9999px;
  --mdc-slider-handle-height: 20px;
  --mdc-slider-handle-shape: 9999px;
  --mdc-slider-handle-width: 20px;
  --mdc-slider-inactive-track-height: 4px;
  --mdc-slider-inactive-track-shape: 9999px;
  --mdc-slider-with-overlap-handle-outline-width: 1px;
  --mdc-slider-with-tick-marks-active-container-opacity: 0.38;
  --mdc-slider-with-tick-marks-container-shape: 9999px;
  --mdc-slider-with-tick-marks-container-size: 2px;
  --mdc-slider-with-tick-marks-inactive-container-opacity: 0.38;
  --mat-slider-ripple-color: #005cbb;
  --mat-slider-hover-state-layer-color: rgba(0, 92, 187, 0.05);
  --mat-slider-focus-state-layer-color: rgba(0, 92, 187, 0.2);
  --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-padding: 0;
  --mat-slider-value-indicator-text-transform: rotate(45deg);
  --mat-slider-value-indicator-container-transform: translateX(-50%) rotate(-45deg);
  --mat-slider-value-indicator-opacity: 1;
  --mat-menu-item-label-text-color: #1a1b1f;
  --mat-menu-item-icon-color: #44474e;
  --mat-menu-item-hover-state-layer-color: rgba(26, 27, 31, 0.08);
  --mat-menu-item-focus-state-layer-color: rgba(26, 27, 31, 0.12);
  --mat-menu-container-color: #efedf0;
  --mat-menu-divider-color: #e0e2ec;
  --mat-menu-item-label-text-font: Roboto, sans-serif;
  --mat-menu-item-label-text-size: 0.875rem;
  --mat-menu-item-label-text-tracking: 0.006rem;
  --mat-menu-item-label-text-line-height: 1.25rem;
  --mat-menu-item-label-text-weight: 500;
  --mat-menu-container-shape: 4px;
  --mat-menu-divider-bottom-spacing: 8px;
  --mat-menu-divider-top-spacing: 8px;
  --mat-menu-item-spacing: 12px;
  --mat-menu-item-icon-size: 24px;
  --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-base-elevation-level: 2;
  --mdc-list-list-item-container-color: transparent;
  --mdc-list-list-item-leading-avatar-color: #d7e3ff;
  --mdc-list-list-item-disabled-state-layer-color: #1a1b1f;
  --mdc-list-list-item-disabled-state-layer-opacity: 0.12;
  --mdc-list-list-item-label-text-color: #1a1b1f;
  --mdc-list-list-item-supporting-text-color: #44474e;
  --mdc-list-list-item-leading-icon-color: #44474e;
  --mdc-list-list-item-trailing-supporting-text-color: #44474e;
  --mdc-list-list-item-trailing-icon-color: #44474e;
  --mdc-list-list-item-selected-trailing-icon-color: #005cbb;
  --mdc-list-list-item-disabled-label-text-color: #1a1b1f;
  --mdc-list-list-item-disabled-leading-icon-color: #1a1b1f;
  --mdc-list-list-item-disabled-trailing-icon-color: #1a1b1f;
  --mdc-list-list-item-hover-label-text-color: #1a1b1f;
  --mdc-list-list-item-focus-label-text-color: #1a1b1f;
  --mdc-list-list-item-hover-state-layer-color: #1a1b1f;
  --mdc-list-list-item-hover-state-layer-opacity: 0.08;
  --mdc-list-list-item-focus-state-layer-color: #1a1b1f;
  --mdc-list-list-item-focus-state-layer-opacity: 0.12;
  --mdc-list-list-item-label-text-font: Roboto, sans-serif;
  --mdc-list-list-item-label-text-line-height: 1.5rem;
  --mdc-list-list-item-label-text-size: 1rem;
  --mdc-list-list-item-label-text-tracking: 0.031rem;
  --mdc-list-list-item-label-text-weight: 400;
  --mdc-list-list-item-supporting-text-font: Roboto, sans-serif;
  --mdc-list-list-item-supporting-text-line-height: 1.25rem;
  --mdc-list-list-item-supporting-text-size: 0.875rem;
  --mdc-list-list-item-supporting-text-tracking: 0.016rem;
  --mdc-list-list-item-supporting-text-weight: 400;
  --mdc-list-list-item-trailing-supporting-text-font: Roboto, sans-serif;
  --mdc-list-list-item-trailing-supporting-text-line-height: 1rem;
  --mdc-list-list-item-trailing-supporting-text-size: 0.688rem;
  --mdc-list-list-item-trailing-supporting-text-tracking: 0.031rem;
  --mdc-list-list-item-trailing-supporting-text-weight: 500;
  --mdc-list-list-item-one-line-container-height: 48px;
  --mdc-list-list-item-two-line-container-height: 64px;
  --mdc-list-list-item-three-line-container-height: 88px;
  --mdc-list-list-item-container-shape: 0;
  --mdc-list-list-item-leading-avatar-shape: 9999px;
  --mdc-list-list-item-leading-icon-size: 24px;
  --mdc-list-list-item-leading-avatar-size: 40px;
  --mdc-list-list-item-trailing-icon-size: 24px;
  --mdc-list-list-item-disabled-label-text-opacity: 0.3;
  --mdc-list-list-item-disabled-leading-icon-opacity: 0.38;
  --mdc-list-list-item-disabled-trailing-icon-opacity: 0.38;
  --mat-list-active-indicator-color: #dae2f9;
  --mat-list-list-item-leading-icon-start-space: 16px;
  --mat-list-list-item-leading-icon-end-space: 16px;
  --mat-list-active-indicator-shape: 9999px;
  --mat-paginator-container-text-color: #1a1b1f;
  --mat-paginator-container-background-color: #faf9fd;
  --mat-paginator-enabled-icon-color: #44474e;
  --mat-paginator-disabled-icon-color: rgba(26, 27, 31, 0.38);
  --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-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;
  --mdc-secondary-navigation-tab-container-height: 48px;
  --mdc-tab-indicator-active-indicator-color: #005cbb;
  --mdc-tab-indicator-active-indicator-height: 2px;
  --mdc-tab-indicator-active-indicator-shape: 0;
  --mat-tab-header-divider-color: #e0e2ec;
  --mat-tab-header-pagination-icon-color: #1a1b1f;
  --mat-tab-header-inactive-label-text-color: #1a1b1f;
  --mat-tab-header-active-label-text-color: #1a1b1f;
  --mat-tab-header-active-ripple-color: #1a1b1f;
  --mat-tab-header-inactive-ripple-color: #1a1b1f;
  --mat-tab-header-inactive-focus-label-text-color: #1a1b1f;
  --mat-tab-header-inactive-hover-label-text-color: #1a1b1f;
  --mat-tab-header-active-focus-label-text-color: #1a1b1f;
  --mat-tab-header-active-hover-label-text-color: #1a1b1f;
  --mat-tab-header-active-focus-indicator-color: #005cbb;
  --mat-tab-header-active-hover-indicator-color: #005cbb;
  --mat-tab-header-label-text-font: Roboto, sans-serif;
  --mat-tab-header-label-text-size: 0.875rem;
  --mat-tab-header-label-text-tracking: 0.006rem;
  --mat-tab-header-label-text-line-height: 1.25rem;
  --mat-tab-header-label-text-weight: 500;
  --mat-tab-header-divider-height: 1px;
  --mdc-checkbox-disabled-selected-checkmark-color: #faf9fd;
  --mdc-checkbox-selected-focus-state-layer-opacity: 0.12;
  --mdc-checkbox-selected-hover-state-layer-opacity: 0.08;
  --mdc-checkbox-selected-pressed-state-layer-opacity: 0.12;
  --mdc-checkbox-unselected-focus-state-layer-opacity: 0.12;
  --mdc-checkbox-unselected-hover-state-layer-opacity: 0.08;
  --mdc-checkbox-unselected-pressed-state-layer-opacity: 0.12;
  --mdc-checkbox-selected-pressed-icon-color: #005cbb;
  --mdc-checkbox-disabled-selected-icon-color: rgba(26, 27, 31, 0.38);
  --mdc-checkbox-disabled-unselected-icon-color: rgba(26, 27, 31, 0.38);
  --mdc-checkbox-selected-checkmark-color: #ffffff;
  --mdc-checkbox-selected-focus-icon-color: #005cbb;
  --mdc-checkbox-selected-hover-icon-color: #005cbb;
  --mdc-checkbox-selected-icon-color: #005cbb;
  --mdc-checkbox-unselected-focus-icon-color: #1a1b1f;
  --mdc-checkbox-unselected-hover-icon-color: #1a1b1f;
  --mdc-checkbox-unselected-icon-color: #44474e;
  --mdc-checkbox-selected-focus-state-layer-color: #005cbb;
  --mdc-checkbox-selected-hover-state-layer-color: #005cbb;
  --mdc-checkbox-selected-pressed-state-layer-color: #1a1b1f;
  --mdc-checkbox-unselected-focus-state-layer-color: #1a1b1f;
  --mdc-checkbox-unselected-hover-state-layer-color: #1a1b1f;
  --mdc-checkbox-unselected-pressed-state-layer-color: #005cbb;
  --mdc-checkbox-state-layer-size: 40px;
  --mat-checkbox-disabled-label-color: rgba(26, 27, 31, 0.38);
  --mat-checkbox-label-text-color: #1a1b1f;
  --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-checkbox-touch-target-display: block;
  --mdc-text-button-label-text-color: #005cbb;
  --mdc-text-button-disabled-label-text-color: rgba(26, 27, 31, 0.38);
  --mdc-text-button-label-text-font: Roboto, sans-serif;
  --mdc-text-button-label-text-size: 0.875rem;
  --mdc-text-button-label-text-tracking: 0.006rem;
  --mdc-text-button-label-text-weight: 500;
  --mdc-text-button-container-height: 40px;
  --mdc-text-button-container-shape: 9999px;
  --mdc-protected-button-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);
  --mdc-protected-button-disabled-container-elevation-shadow:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-focus-container-elevation-shadow:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mdc-protected-button-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);
  --mdc-protected-button-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);
  --mdc-protected-button-container-color: #faf9fd;
  --mdc-protected-button-label-text-color: #005cbb;
  --mdc-protected-button-disabled-container-color: rgba(26, 27, 31, 0.12);
  --mdc-protected-button-disabled-label-text-color: rgba(26, 27, 31, 0.38);
  --mdc-protected-button-label-text-font: Roboto, sans-serif;
  --mdc-protected-button-label-text-size: 0.875rem;
  --mdc-protected-button-label-text-tracking: 0.006rem;
  --mdc-protected-button-label-text-weight: 500;
  --mdc-protected-button-container-height: 40px;
  --mdc-protected-button-container-shape: 9999px;
  --mdc-filled-button-container-color: #005cbb;
  --mdc-filled-button-label-text-color: #ffffff;
  --mdc-filled-button-disabled-container-color: rgba(26, 27, 31, 0.12);
  --mdc-filled-button-disabled-label-text-color: rgba(26, 27, 31, 0.38);
  --mdc-filled-button-label-text-font: Roboto, sans-serif;
  --mdc-filled-button-label-text-size: 0.875rem;
  --mdc-filled-button-label-text-tracking: 0.006rem;
  --mdc-filled-button-label-text-weight: 500;
  --mdc-filled-button-container-height: 40px;
  --mdc-filled-button-container-shape: 9999px;
  --mdc-outlined-button-disabled-outline-color: rgba(26, 27, 31, 0.12);
  --mdc-outlined-button-disabled-label-text-color: rgba(26, 27, 31, 0.38);
  --mdc-outlined-button-label-text-color: #005cbb;
  --mdc-outlined-button-outline-color: #74777f;
  --mdc-outlined-button-label-text-font: Roboto, sans-serif;
  --mdc-outlined-button-label-text-size: 0.875rem;
  --mdc-outlined-button-label-text-tracking: 0.006rem;
  --mdc-outlined-button-label-text-weight: 500;
  --mdc-outlined-button-container-height: 40px;
  --mdc-outlined-button-outline-width: 1px;
  --mdc-outlined-button-container-shape: 9999px;
  --mat-text-button-state-layer-color: #005cbb;
  --mat-text-button-disabled-state-layer-color: #44474e;
  --mat-text-button-ripple-color: rgba(0, 92, 187, 0.12);
  --mat-text-button-hover-state-layer-opacity: 0.08;
  --mat-text-button-focus-state-layer-opacity: 0.12;
  --mat-text-button-pressed-state-layer-opacity: 0.12;
  --mat-text-button-touch-target-display: block;
  --mat-text-button-horizontal-padding: 12px;
  --mat-text-button-with-icon-horizontal-padding: 16px;
  --mat-text-button-icon-spacing: 8px;
  --mat-text-button-icon-offset: -4px;
  --mat-protected-button-state-layer-color: #005cbb;
  --mat-protected-button-disabled-state-layer-color: #44474e;
  --mat-protected-button-ripple-color: rgba(0, 92, 187, 0.12);
  --mat-protected-button-hover-state-layer-opacity: 0.08;
  --mat-protected-button-focus-state-layer-opacity: 0.12;
  --mat-protected-button-pressed-state-layer-opacity: 0.12;
  --mat-protected-button-touch-target-display: block;
  --mat-protected-button-horizontal-padding: 24px;
  --mat-protected-button-icon-spacing: 8px;
  --mat-protected-button-icon-offset: -8px;
  --mat-filled-button-state-layer-color: #ffffff;
  --mat-filled-button-disabled-state-layer-color: #44474e;
  --mat-filled-button-ripple-color: rgba(255, 255, 255, 0.12);
  --mat-filled-button-hover-state-layer-opacity: 0.08;
  --mat-filled-button-focus-state-layer-opacity: 0.12;
  --mat-filled-button-pressed-state-layer-opacity: 0.12;
  --mat-filled-button-touch-target-display: block;
  --mat-filled-button-horizontal-padding: 24px;
  --mat-filled-button-icon-spacing: 8px;
  --mat-filled-button-icon-offset: -8px;
  --mat-outlined-button-state-layer-color: #005cbb;
  --mat-outlined-button-disabled-state-layer-color: #44474e;
  --mat-outlined-button-ripple-color: rgba(0, 92, 187, 0.12);
  --mat-outlined-button-hover-state-layer-opacity: 0.08;
  --mat-outlined-button-focus-state-layer-opacity: 0.12;
  --mat-outlined-button-pressed-state-layer-opacity: 0.12;
  --mat-outlined-button-touch-target-display: block;
  --mat-outlined-button-horizontal-padding: 24px;
  --mat-outlined-button-icon-spacing: 8px;
  --mat-outlined-button-icon-offset: -8px;
  --mdc-icon-button-icon-color: #44474e;
  --mdc-icon-button-disabled-icon-color: rgba(26, 27, 31, 0.38);
  --mdc-icon-button-state-layer-size: 40px;
  --mdc-icon-button-icon-size: 24px;
  --mat-icon-button-state-layer-color: #44474e;
  --mat-icon-button-disabled-state-layer-color: #44474e;
  --mat-icon-button-ripple-color: rgba(68, 71, 78, 0.12);
  --mat-icon-button-hover-state-layer-opacity: 0.08;
  --mat-icon-button-focus-state-layer-opacity: 0.12;
  --mat-icon-button-pressed-state-layer-opacity: 0.12;
  --mat-icon-button-touch-target-display: block;
  --mdc-extended-fab-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-focus-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-pressed-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-extended-fab-label-text-font: Roboto, sans-serif;
  --mdc-extended-fab-label-text-size: 0.875rem;
  --mdc-extended-fab-label-text-tracking: 0.006rem;
  --mdc-extended-fab-label-text-weight: 500;
  --mdc-extended-fab-container-height: 56px;
  --mdc-extended-fab-container-shape: 16px;
  --mdc-fab-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-focus-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-pressed-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-container-color: #d7e3ff;
  --mdc-fab-container-shape: 16px;
  --mdc-fab-small-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-focus-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-hover-container-elevation-shadow:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-pressed-container-elevation-shadow:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mdc-fab-small-container-color: #d7e3ff;
  --mdc-fab-small-container-shape: 12px;
  --mat-fab-foreground-color: #001b3f;
  --mat-fab-state-layer-color: #001b3f;
  --mat-fab-ripple-color: rgba(0, 27, 63, 0.12);
  --mat-fab-hover-state-layer-opacity: 0.08;
  --mat-fab-focus-state-layer-opacity: 0.12;
  --mat-fab-pressed-state-layer-opacity: 0.12;
  --mat-fab-disabled-state-container-color: rgba(26, 27, 31, 0.12);
  --mat-fab-disabled-state-foreground-color: rgba(26, 27, 31, 0.38);
  --mat-fab-touch-target-display: block;
  --mat-fab-small-foreground-color: #001b3f;
  --mat-fab-small-state-layer-color: #001b3f;
  --mat-fab-small-ripple-color: rgba(0, 27, 63, 0.12);
  --mat-fab-small-hover-state-layer-opacity: 0.08;
  --mat-fab-small-focus-state-layer-opacity: 0.12;
  --mat-fab-small-pressed-state-layer-opacity: 0.12;
  --mat-fab-small-disabled-state-container-color: rgba(26, 27, 31, 0.12);
  --mat-fab-small-disabled-state-foreground-color: rgba(26, 27, 31, 0.38);
  --mdc-snackbar-container-color: #2f3033;
  --mdc-snackbar-supporting-text-color: #f2f0f4;
  --mdc-snackbar-supporting-text-font: Roboto, sans-serif;
  --mdc-snackbar-supporting-text-line-height: 1.25rem;
  --mdc-snackbar-supporting-text-size: 0.875rem;
  --mdc-snackbar-supporting-text-weight: 400;
  --mdc-snackbar-container-shape: 4px;
  --mat-snack-bar-button-color: #abc7ff;
  --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-headline-font: Roboto, sans-serif;
  --mat-table-header-headline-line-height: 1.25rem;
  --mat-table-header-headline-size: 0.875rem;
  --mat-table-header-headline-weight: 500;
  --mat-table-header-headline-tracking: 0.006rem;
  --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-weight: 400;
  --mat-table-row-item-label-text-tracking: 0.016rem;
  --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-weight: 400;
  --mat-table-footer-supporting-text-tracking: 0.016rem;
  --mat-table-header-container-height: 56px;
  --mat-table-footer-container-height: 52px;
  --mat-table-row-item-container-height: 52px;
  --mat-table-row-item-outline-width: 1px;
  --mdc-circular-progress-active-indicator-color: #005cbb;
  --mdc-circular-progress-active-indicator-width: 4px;
  --mdc-circular-progress-size: 48px;
  --mat-badge-background-color: #ba1a1a;
  --mat-badge-text-color: #ffffff;
  --mat-badge-disabled-state-background-color: rgba(186, 26, 26, 0.38);
  --mat-badge-disabled-state-text-color: #ffffff;
  --mat-badge-text-font: Roboto, sans-serif;
  --mat-badge-text-size: 0.688rem;
  --mat-badge-text-weight: 500;
  --mat-badge-large-size-text-size: 0.688rem;
  --mat-badge-container-shape: 9999px;
  --mat-badge-container-size: 16px;
  --mat-badge-small-size-container-size: 6px;
  --mat-badge-large-size-container-size: 16px;
  --mat-badge-legacy-container-size: unset;
  --mat-badge-legacy-small-size-container-size: unset;
  --mat-badge-legacy-large-size-container-size: unset;
  --mat-badge-container-offset: -12px 0;
  --mat-badge-small-size-container-offset: -6px 0;
  --mat-badge-large-size-container-offset: -12px 0;
  --mat-badge-container-overlap-offset: -12px;
  --mat-badge-small-size-container-overlap-offset: -6px;
  --mat-badge-large-size-container-overlap-offset: -12px;
  --mat-badge-container-padding: 0 4px;
  --mat-badge-small-size-container-padding: 0;
  --mat-badge-large-size-container-padding: 0 4px;
  --mat-badge-line-height: 16px;
  --mat-badge-small-size-text-size: 0;
  --mat-badge-small-size-line-height: 6px;
  --mat-badge-large-size-line-height: 16px;
  --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-bottom-sheet-container-shape: 28px;
  --mat-standard-button-toggle-hover-state-layer-opacity: 0.08;
  --mat-standard-button-toggle-focus-state-layer-opacity: 0.12;
  --mat-standard-button-toggle-text-color: #1a1b1f;
  --mat-standard-button-toggle-state-layer-color: #1a1b1f;
  --mat-standard-button-toggle-selected-state-background-color: #dae2f9;
  --mat-standard-button-toggle-selected-state-text-color: #131c2b;
  --mat-standard-button-toggle-disabled-state-text-color: rgba(26, 27, 31, 0.38);
  --mat-standard-button-toggle-disabled-selected-state-text-color: rgba(26, 27, 31, 0.38);
  --mat-standard-button-toggle-disabled-selected-state-background-color: rgba(26, 27, 31, 0.12);
  --mat-standard-button-toggle-divider-color: #74777f;
  --mat-standard-button-toggle-label-text-font: Roboto, sans-serif;
  --mat-standard-button-toggle-label-text-line-height: 1.25rem;
  --mat-standard-button-toggle-label-text-size: 0.875rem;
  --mat-standard-button-toggle-label-text-tracking: 0.006rem;
  --mat-standard-button-toggle-label-text-weight: 500;
  --mat-standard-button-toggle-height: 40px;
  --mat-standard-button-toggle-shape: 9999px;
  --mat-standard-button-toggle-background-color: transparent;
  --mat-standard-button-toggle-disabled-state-background-color: transparent;
  --mat-datepicker-calendar-date-selected-state-text-color: #ffffff;
  --mat-datepicker-calendar-date-selected-state-background-color: #005cbb;
  --mat-datepicker-calendar-date-selected-disabled-state-background-color: rgba(26, 27, 31, 0.38);
  --mat-datepicker-calendar-date-today-selected-state-outline-color: #005cbb;
  --mat-datepicker-calendar-date-focus-state-background-color: rgba(26, 27, 31, 0.12);
  --mat-datepicker-calendar-date-hover-state-background-color: rgba(26, 27, 31, 0.08);
  --mat-datepicker-toggle-active-state-icon-color: #44474e;
  --mat-datepicker-calendar-date-in-range-state-background-color: #d7e3ff;
  --mat-datepicker-calendar-date-in-comparison-range-state-background-color: #e0e0ff;
  --mat-datepicker-calendar-date-in-overlap-range-state-background-color: #dae2f9;
  --mat-datepicker-calendar-date-in-overlap-range-selected-state-background-color: #565e71;
  --mat-datepicker-toggle-icon-color: #44474e;
  --mat-datepicker-calendar-body-label-text-color: #1a1b1f;
  --mat-datepicker-calendar-period-button-text-color: #44474e;
  --mat-datepicker-calendar-period-button-icon-color: #44474e;
  --mat-datepicker-calendar-navigation-button-icon-color: #44474e;
  --mat-datepicker-calendar-header-text-color: #44474e;
  --mat-datepicker-calendar-date-today-outline-color: #005cbb;
  --mat-datepicker-calendar-date-today-disabled-state-outline-color: rgba(26, 27, 31, 0.38);
  --mat-datepicker-calendar-date-text-color: #1a1b1f;
  --mat-datepicker-calendar-date-disabled-state-text-color: rgba(26, 27, 31, 0.38);
  --mat-datepicker-calendar-date-preview-state-outline-color: #005cbb;
  --mat-datepicker-range-input-separator-color: #1a1b1f;
  --mat-datepicker-range-input-disabled-state-separator-color: rgba(26, 27, 31, 0.38);
  --mat-datepicker-range-input-disabled-state-text-color: rgba(26, 27, 31, 0.38);
  --mat-datepicker-calendar-container-background-color: #e9e7eb;
  --mat-datepicker-calendar-container-text-color: #1a1b1f;
  --mat-datepicker-calendar-text-font: Roboto, sans-serif;
  --mat-datepicker-calendar-text-size: 0.875rem;
  --mat-datepicker-calendar-body-label-text-size: 0.875rem;
  --mat-datepicker-calendar-body-label-text-weight: 500;
  --mat-datepicker-calendar-period-button-text-size: 0.875rem;
  --mat-datepicker-calendar-period-button-text-weight: 500;
  --mat-datepicker-calendar-header-text-size: 0.875rem;
  --mat-datepicker-calendar-header-text-weight: 500;
  --mat-datepicker-calendar-container-shape: 16px;
  --mat-datepicker-calendar-container-touch-shape: 28px;
  --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-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-header-divider-color: transparent;
  --mat-datepicker-calendar-date-outline-color: transparent;
  --mat-divider-color: #74777f;
  --mat-divider-width: 1px;
  --mat-expansion-container-background-color: #faf9fd;
  --mat-expansion-container-text-color: #1a1b1f;
  --mat-expansion-actions-divider-color: #74777f;
  --mat-expansion-header-hover-state-layer-color: rgba(26, 27, 31, 0.08);
  --mat-expansion-header-focus-state-layer-color: rgba(26, 27, 31, 0.12);
  --mat-expansion-header-disabled-state-text-color: rgba(26, 27, 31, 0.38);
  --mat-expansion-header-text-color: #1a1b1f;
  --mat-expansion-header-description-color: #44474e;
  --mat-expansion-header-indicator-color: #44474e;
  --mat-expansion-header-text-font: Roboto, sans-serif;
  --mat-expansion-header-text-size: 1rem;
  --mat-expansion-header-text-weight: 500;
  --mat-expansion-header-text-line-height: 1.5rem;
  --mat-expansion-header-text-tracking: 0.009rem;
  --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-collapsed-state-height: 48px;
  --mat-expansion-header-expanded-state-height: 64px;
  --mat-expansion-container-shape: 12px;
  --mat-expansion-legacy-header-indicator-display: none;
  --mat-expansion-header-indicator-display: inline-block;
  --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-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: rgba(45, 48, 56, 0.4);
  --mat-sidenav-container-shape: 16px;
  --mat-sidenav-container-elevation-shadow: none;
  --mat-sidenav-container-width: 360px;
  --mat-sidenav-container-divider-color: transparent;
  --mat-stepper-header-icon-foreground-color: #faf9fd;
  --mat-stepper-header-selected-state-icon-background-color: #005cbb;
  --mat-stepper-header-selected-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-container-color: #faf9fd;
  --mat-stepper-line-color: #74777f;
  --mat-stepper-header-hover-state-layer-color: rgba(47, 48, 51, 0.08);
  --mat-stepper-header-focus-state-layer-color: rgba(47, 48, 51, 0.12);
  --mat-stepper-header-label-text-color: #44474e;
  --mat-stepper-header-optional-label-text-color: #44474e;
  --mat-stepper-header-selected-state-label-text-color: #44474e;
  --mat-stepper-header-error-state-label-text-color: #ba1a1a;
  --mat-stepper-header-icon-background-color: #44474e;
  --mat-stepper-header-error-state-icon-foreground-color: #ba1a1a;
  --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-stepper-header-focus-state-layer-shape: 12px;
  --mat-stepper-header-hover-state-layer-shape: 12px;
  --mat-stepper-header-error-state-icon-background-color: transparent;
  --mat-sort-arrow-color: #1a1b1f;
  --mat-toolbar-container-background-color: #faf9fd;
  --mat-toolbar-container-text-color: #1a1b1f;
  --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-toolbar-standard-height: 64px;
  --mat-toolbar-mobile-height: 56px;
  --mat-tree-container-background-color: #faf9fd;
  --mat-tree-node-text-color: #1a1b1f;
  --mat-tree-node-text-font: Roboto, sans-serif;
  --mat-tree-node-text-size: 1rem;
  --mat-tree-node-text-weight: 400;
  --mat-tree-node-min-height: 48px;
}
.mat-theme-loaded-marker {
  display: none;
}
body.tour-open {
  overflow: hidden;
}
ngx-guided-tour .guided-tour-user-input-mask {
  z-index: 1081;
}
ngx-guided-tour .guided-tour-spotlight-overlay {
  z-index: 1082;
}
ngx-guided-tour .tour-orb {
  z-index: 1079;
  background-color: #625aff;
  box-shadow: 0 0 0.3rem 0.1rem #625aff;
}
ngx-guided-tour .tour-orb .tour-orb-ring::after {
  border: 1rem solid #625aff;
  box-shadow: 0 0 0.1rem 0.1rem #625aff;
}
ngx-guided-tour .tour-step {
  z-index: 1083;
}
ngx-guided-tour .tour-step.tour-bottom .tour-arrow::before,
ngx-guided-tour .tour-step.tour-bottom-right .tour-arrow::before,
ngx-guided-tour .tour-step.tour-bottom-left .tour-arrow::before {
  width: 0;
  height: 0;
  content: "";
  z-index: 2;
  border-bottom: 1rem solid #ffffff;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
}
ngx-guided-tour .tour-step.tour-top .tour-arrow::before,
ngx-guided-tour .tour-step.tour-top-right .tour-arrow::before,
ngx-guided-tour .tour-step.tour-top-left .tour-arrow::before {
  width: 0;
  height: 0;
  content: "";
  z-index: 2;
  border-top: 1rem solid #ffffff;
  border-left: 1rem solid transparent;
  border-right: 1rem solid transparent;
}
ngx-guided-tour .tour-step.tour-left .tour-arrow::before {
  width: 0;
  height: 0;
  content: "";
  z-index: 2;
  border-left: 1rem solid #ffffff;
  border-bottom: 1rem solid transparent;
  border-top: 1rem solid transparent;
}
ngx-guided-tour .tour-step.tour-right .tour-arrow::before {
  width: 0;
  height: 0;
  content: "";
  z-index: 2;
  border-right: 1rem solid #ffffff;
  border-bottom: 1rem solid transparent;
  border-top: 1rem solid transparent;
}
ngx-guided-tour .tour-step .tour-block {
  color: #231f1f;
  background-color: #ffffff;
  box-shadow: 0 0.4rem 0.6rem #4c4c4c;
}
ngx-guided-tour .tour-step .tour-buttons button.skip-button {
  color: #5e5e5e;
}
ngx-guided-tour .tour-step .tour-buttons .back-button {
  color: #007bff;
}
ngx-guided-tour .tour-step .tour-buttons .next-button {
  background-color: #007bff;
  color: #ffffff;
}
ngx-guided-tour .tour-step .tour-buttons .next-button:hover {
  background-color: #0069d9;
  color: #ffffff;
}
:root {
  --bh-core: #00205b;
  --bh-accent: #007eb4;
  --bh-black: #303235;
  --bh-core-01: #03060d;
  --bh-core-02: #00205b;
  --bh-core-03: #093582;
  --bh-core-04: #1c4ea5;
  --bh-core-05: #3a6cc1;
  --bh-core-06: #628dd6;
  --bh-core-07: #8eafe6;
  --bh-core-08: #b7ccf0;
  --bh-core-09: #d6e2f7;
  --bh-core-10: #ebf0fa;
  --bh-core-11: #f6f7fa;
  --bh-accent-01: #006894;
  --bh-accent-02: #007eb4;
  --bh-accent-03: #0b8ec6;
  --bh-accent-04: #20a0d6;
  --bh-accent-05: #41b2e3;
  --bh-accent-06: #6cc6ed;
  --bh-accent-07: #99d9f5;
  --bh-accent-08: #c1e9fa;
  --bh-accent-09: #ddf3fd;
  --bh-accent-10: #eefaff;
  --bh-accent-11: #f5fcff;
  --bh-black-01: #0b0c0d;
  --bh-black-02: #303235;
  --bh-black-03: #56595d;
  --bh-black-04: #7b7f84;
  --bh-black-05: #9ca0a5;
  --bh-black-06: #b8bbbf;
  --bh-black-07: #cfd1d3;
  --bh-black-08: #e1e1e2;
  --bh-black-09: #ededee;
  --bh-black-10: #f5f5f5;
  --bh-black-11: #fafafa;
  --bh-error: #da291c;
  --bh-success: #008522;
  --bh-alert: #0077c8;
  --bh-rating: #bf8900;
  --bh-white: #ffffff;
  --bh-true-black: #000000;
  --bh-profile-01: #bf2080;
  --bh-profile-02: #963a1d;
  --bh-profile-03: #607d0e;
  --bh-profile-04: #41058d;
  --bh-profile-05: #8447d2;
  --bh-profile-06: #8f0a52;
  --bh-profile-07: #145b53;
  --bh-profile-08: #98149b;
  --bh-primary-font-face: "utopia-std", serif;
  --bh-secondary-font-face: "Effra", sans-serif;
  --bh-card-shadow: 0 4px 15px 0 rgba(0 0 0 / 0.13);
}
.bh-heading-display-2 {
  font-family: var(--bh-primary-font-face);
  font-weight: 600;
  font-size: 63px;
  line-height: 77px;
  letter-spacing: -0.44px;
}
.bh-heading-h1 {
  font-family: var(--bh-primary-font-face);
  font-weight: 600;
  font-size: 37px;
  line-height: 46px;
  letter-spacing: -0.25px;
}
.bh-heading-h1b {
  font-family: var(--bh-secondary-font-face);
  font-weight: 400;
  font-size: 35px;
  line-height: 43px;
}
.bh-heading-h2 {
  font-family: var(--bh-primary-font-face);
  font-weight: 600;
  font-size: 27px;
  line-height: 33px;
}
.bh-heading-h2b {
  font-family: var(--bh-secondary-font-face);
  font-weight: 400;
  font-size: 25px;
  line-height: 27px;
}
.bh-heading-h3 {
  font-family: var(--bh-secondary-font-face);
  font-weight: 600;
  font-size: 21px;
  line-height: 26px;
}
.bh-heading-h3b {
  font-family: var(--bh-secondary-font-face);
  font-weight: bold;
  font-size: 19px;
  line-height: 23px;
  letter-spacing: 0.22px;
}
.bh-subtitle-1 {
  font-family: var(--bh-secondary-font-face);
  font-weight: bold;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.15px;
}
.bh-subtitle-2 {
  font-family: var(--bh-secondary-font-face);
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.15px;
}
.bh-body-1-main {
  font-family: var(--bh-secondary-font-face);
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0.49px;
}
.bh-body-1-strong {
  font-family: var(--bh-secondary-font-face);
  font-weight: bold;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.49px;
}
.bh-body-1-tight {
  font-family: var(--bh-secondary-font-face);
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.49px;
}
.bh-body-1-tight a {
  color: var(--bh-accent);
  text-decoration: none;
}
.bh-body-1-tight a:focus-visible {
  color: var(--bh-accent-03);
  box-shadow: none;
  outline-width: 2px;
  outline-style: solid;
  outline-color: var(--bh-accent-03);
  outline-offset: 2px;
  transition: none;
  text-decoration: none;
}
.bh-body-1-tight a:hover {
  color: var(--bh-accent-01);
  text-decoration: underline;
}
.bh-body-2-tight {
  font-family: var(--bh-secondary-font-face);
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.25px;
}
.bh-body-2-main {
  font-family: var(--bh-secondary-font-face);
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0.25px;
}
.bh-body-2-strong {
  font-family: var(--bh-secondary-font-face);
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.25px;
}
.bh-caption {
  font-family: var(--bh-secondary-font-face);
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0.4px;
}
.bh-overline {
  font-family: var(--bh-secondary-font-face);
  font-weight: 500;
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0.95px;
  text-transform: uppercase;
}
.bh-button-text {
  font-family: var(--bh-secondary-font-face);
  font-weight: 500;
  font-size: 15px;
  line-height: 17px;
  letter-spacing: 0.47px;
  display: block;
}
.bh-button-link {
  font-family: var(--bh-secondary-font-face);
  font-weight: 500;
  font-size: 15px;
  line-height: 17px;
  letter-spacing: 0.47px;
  color: var(--bh-accent);
  text-decoration: none;
  background: transparent;
  border: 0;
  padding: 0;
  display: block;
  inline-size: max-content;
}
.bh-button-link:focus-visible {
  color: var(--bh-accent-03);
  box-shadow: none;
  outline-width: 2px;
  outline-style: solid;
  outline-color: var(--bh-accent-03);
  outline-offset: 2px;
  transition: none;
  text-decoration: none;
}
.bh-button-link:hover {
  color: var(--bh-accent-01);
  text-decoration: underline;
}
.bh-outlined-3-button {
  font-family: var(--bh-secondary-font-face);
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid var(--bh-black-07);
  height: 36px;
  background-color: var(--bh-white);
  color: var(--bh-black-03);
  letter-spacing: 0.47px;
  transition: background-color 0.2s ease-out;
  text-decoration: none;
  padding: 0 16px;
  display: inline-block;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.bh-outlined-3-button[href] {
  line-height: 34px;
}
.bh-outlined-3-button--loading {
  background-color: var(--bh-black-10);
  color: transparent;
  position: relative;
}
.bh-outlined-3-button--loading::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  border: 2px solid var(--bh-accent);
  border-radius: 50%;
  border-top-color: transparent;
  transform-origin: center center;
  animation: rotate 2s infinite linear;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bh-outlined-3-button--small {
  height: 30px;
  padding: 0 8px;
}
.bh-outlined-3-button--small[href] {
  line-height: 28px;
}
.bh-outlined-3-button--small.bh-outlined-3-button--loading::after {
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  border-width: 1px;
}
.bh-outlined-3-button--large {
  height: 48px;
}
.bh-outlined-3-button--large[href] {
  line-height: 46px;
}
.bh-outlined-3-button--large.bh-outlined-3-button--loading::after {
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
}
.bh-outlined-3-button:focus-visible {
  border: 1px solid var(--bh-accent-03);
  box-shadow: inset 0 0 0 1px var(--bh-accent-03);
  color: var(--bh-black-04);
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}
.bh-outlined-3-button:focus-visible.bh-outlined-3-button--loading {
  color: transparent;
}
.bh-outlined-3-button:hover {
  text-decoration: none;
  background-color: var(--bh-black-10);
  color: var(--bh-black);
  border: 1px solid var(--bh-black-07);
}
.bh-outlined-3-button:focus-visible:hover {
  border: 1px solid var(--bh-accent-03);
}
.bh-outlined-3-button:not(:disabled):active,
.bh-outlined-3-button:not(:disabled).active {
  background-color: var(--bh-black-10);
  outline: 0;
  box-shadow: none;
  border: 1px solid var(--bh-black-07);
  color: var(--bh-black);
}
.bh-outlined-3-button:focus:active {
  box-shadow: none;
}
.bh-outlined-3-button--loading:hover,
.bh-outlined-3-button--loading:not(:disabled):active,
.bh-outlined-3-button--loading:not(:disabled).active {
  color: transparent;
}
.bh-outlined-3-button:disabled {
  background-color: var(--bh-black-08);
  color: var(--bh-black-04);
  cursor: not-allowed;
  border: 1px solid transparent;
}
.bh-primary-button {
  font-family: var(--bh-secondary-font-face);
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  border: 0;
  height: 36px;
  background-color: var(--bh-accent);
  color: var(--bh-white);
  letter-spacing: 0.47px;
  transition: background-color 0.2s ease-out;
  text-decoration: none;
  padding: 0 16px;
  display: inline-block;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.bh-primary-button[href] {
  line-height: 36px;
}
.bh-primary-button--loading {
  color: transparent;
  background-color: var(--bh-accent-01);
  position: relative;
}
.bh-primary-button--loading::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  border: 2px solid var(--bh-white);
  border-radius: 50%;
  border-top-color: transparent;
  transform-origin: center center;
  animation: rotate 2s infinite linear;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bh-primary-button--icon-l,
.bh-primary-button--icon-r {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bh-primary-button--icon-l svg,
.bh-primary-button--icon-r svg {
  width: 24px;
  flex: 0 0 24px;
  vertical-align: middle;
}
.bh-primary-button--icon-l svg path,
.bh-primary-button--icon-r svg path {
  fill: var(--bh-white);
}
.bh-primary-button--icon-l.bh-primary-button--loading svg path,
.bh-primary-button--icon-r.bh-primary-button--loading svg path {
  fill: transparent;
}
.bh-primary-button--small {
  height: 30px;
  padding: 0 8px;
}
.bh-primary-button--small[href] {
  line-height: 30px;
}
.bh-primary-button--small.bh-primary-button--loading::after {
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  border-width: 1px;
}
.bh-primary-button--small.bh-primary-button--icon-l svg,
.bh-primary-button--small.bh-primary-button--icon-r svg {
  width: 16px;
  flex: 0 0 16px;
}
.bh-primary-button--large {
  height: 48px;
}
.bh-primary-button--large[href] {
  line-height: 48px;
}
.bh-primary-button--large.bh-primary-button--loading::after {
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
}
.bh-primary-button:focus-visible {
  background-color: var(--bh-accent-03);
  box-shadow: inset 0 0 0 2px var(--bh-accent-03), inset 0 0 0 3px var(--bh-white);
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}
.bh-primary-button:hover {
  background-color: var(--bh-accent-01);
  text-decoration: none;
  color: var(--bh-white);
}
.bh-primary-button--loading:hover {
  color: transparent;
}
.bh-primary-button:not(:disabled):active,
.bh-primary-button:not(:disabled).active {
  background-color: var(--bh-accent-01);
}
.bh-primary-button:focus-visible:active {
  box-shadow: none;
}
.bh-primary-button:disabled {
  background-color: var(--bh-black-08);
  color: var(--bh-black-04);
  cursor: not-allowed;
}
.bh-primary-button:disabled.bh-primary-button--icon-l svg path,
.bh-primary-button:disabled.bh-primary-button--icon-r svg path {
  fill: var(--bh-black-04);
}
.bh-primary-button--loading:disabled {
  color: transparent;
}
.bh-outlined-1-button {
  font-family: var(--bh-secondary-font-face);
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid var(--bh-black-07);
  height: 36px;
  background-color: var(--bh-white);
  color: var(--bh-accent);
  letter-spacing: 0.47px;
  transition: background-color 0.2s ease-out;
  text-decoration: none;
  padding: 0 16px;
  display: inline-block;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.bh-outlined-1-button[href] {
  line-height: 34px;
}
.bh-outlined-1-button--loading {
  background-color: var(--bh-accent-10);
  color: transparent;
  position: relative;
}
.bh-outlined-1-button--loading::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  border: 2px solid var(--bh-accent);
  border-radius: 50%;
  border-top-color: transparent;
  transform-origin: center center;
  animation: rotate 2s infinite linear;
}
.bh-outlined-1-button--loading:disabled::after {
  border: 2px solid var(--bh-white);
  border-top-color: transparent;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bh-outlined-1-button--icon-l,
.bh-outlined-1-button--icon-r {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bh-outlined-1-button--icon-l svg,
.bh-outlined-1-button--icon-r svg {
  width: 24px;
  flex: 0 0 24px;
  vertical-align: middle;
}
.bh-outlined-1-button--icon-l svg path,
.bh-outlined-1-button--icon-r svg path {
  fill: var(--bh-accent);
}
.bh-outlined-1-button--icon-l.bh-outlined-1-button--loading svg path,
.bh-outlined-1-button--icon-r.bh-outlined-1-button--loading svg path {
  fill: transparent;
}
.bh-outlined-1-button--small {
  height: 30px;
  padding: 0 8px;
}
.bh-outlined-1-button--small[href] {
  line-height: 28px;
}
.bh-outlined-1-button--small.bh-outlined-1-button--loading::after {
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  border-width: 1px;
}
.bh-outlined-1-button--small.bh-outlined-1-button--icon-l svg,
.bh-outlined-1-button--small.bh-outlined-1-button--icon-r svg {
  width: 16px;
  flex: 0 0 16px;
}
.bh-outlined-1-button--large {
  height: 48px;
}
.bh-outlined-1-button--large[href] {
  line-height: 46px;
}
.bh-outlined-1-button--large.bh-outlined-1-button--loading::after {
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
}
.bh-outlined-1-button:focus-visible {
  border: 1px solid var(--bh-accent-03);
  box-shadow: inset 0 0 0 1px var(--bh-accent-03);
  color: var(--bh-accent-03);
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}
.bh-outlined-1-button:focus-visible.bh-outlined-1-button--loading {
  color: transparent;
}
.bh-outlined-1-button:hover {
  text-decoration: none;
  background-color: var(--bh-accent-10);
  color: var(--bh-accent-01);
  border: 1px solid var(--bh-black-07);
}
.bh-outlined-1-button:focus-visible:hover {
  border: 1px solid var(--bh-accent-03);
}
.bh-outlined-1-button:not(:disabled):active,
.bh-outlined-1-button:not(:disabled).active {
  background-color: var(--bh-accent-10);
  outline: 0;
  box-shadow: none;
  border: 1px solid var(--bh-black-07);
  color: var(--bh-accent-01);
}
.bh-outlined-1-button:focus-visible:active {
  box-shadow: none;
}
.bh-outlined-1-button--loading:hover,
.bh-outlined-1-button--loading:not(:disabled):active,
.bh-outlined-1-button--loading:not(:disabled).active {
  color: transparent;
}
.bh-outlined-1-button.bh-outlined-1-button--icon-l:hover svg path,
.bh-outlined-1-button.bh-outlined-1-button--icon-r:hover svg path {
  fill: var(--bh-accent-01);
}
.bh-outlined-1-button:disabled {
  background-color: var(--bh-black-08);
  color: var(--bh-black-04);
  cursor: not-allowed;
  border: 1px solid transparent;
}
.bh-outlined-1-button:disabled.bh-outlined-1-button--icon-l svg path,
.bh-outlined-1-button:disabled.bh-outlined-1-button--icon-r svg path {
  fill: var(--bh-black-04);
}
.bh-outlined-1-button--loading:disabled {
  color: transparent;
}
.bh-text-button {
  font-family: var(--bh-secondary-font-face);
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid transparent;
  height: 36px;
  background-color: var(--bh-white);
  color: var(--bh-accent);
  letter-spacing: 0.47px;
  transition: background-color 0.2s ease-out;
  text-decoration: none;
  padding: 0 16px;
  display: inline-block;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.bh-text-button[href] {
  line-height: 34px;
}
.bh-text-button--loading {
  background-color: var(--bh-accent-10);
  color: transparent;
  position: relative;
}
.bh-text-button--loading::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  border: 2px solid var(--bh-accent);
  border-radius: 50%;
  border-top-color: transparent;
  transform-origin: center center;
  animation: rotate 2s infinite linear;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.bh-text-button--icon-l,
.bh-text-button--icon-r {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bh-text-button--icon-l svg,
.bh-text-button--icon-r svg {
  width: 24px;
  flex: 0 0 24px;
  vertical-align: middle;
}
.bh-text-button--icon-l svg path,
.bh-text-button--icon-r svg path {
  fill: var(--bh-accent);
}
.bh-text-button--icon-l.bh-text-button--loading svg path,
.bh-text-button--icon-r.bh-text-button--loading svg path {
  fill: transparent;
}
.bh-text-button--small {
  height: 30px;
  padding: 0 8px;
}
.bh-text-button--small[href] {
  line-height: 28px;
}
.bh-text-button--small.bh-text-button--loading::after {
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  border-width: 1px;
}
.bh-text-button--small.bh-text-button--icon-l svg,
.bh-text-button--small.bh-text-button--icon-r svg {
  width: 16px;
  flex: 0 0 16px;
}
.bh-text-button--large {
  height: 48px;
}
.bh-text-button--large[href] {
  line-height: 46px;
}
.bh-text-button--large.bh-text-button--loading::after {
  width: 24px;
  height: 24px;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
}
.bh-text-button:focus-visible {
  border: 1px solid var(--bh-accent-03);
  box-shadow: inset 0 0 0 1px var(--bh-accent-03);
  color: var(--bh-accent-03);
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}
.bh-text-button:focus-visible.bh-text-button--loading {
  color: transparent;
}
.bh-text-button:hover {
  text-decoration: none;
  background-color: var(--bh-accent-10);
  color: var(--bh-accent-01);
  border: 1px solid transparent;
}
.bh-text-button:focus-visible:hover {
  border: 1px solid var(--bh-accent-03);
}
.bh-text-button:not(:disabled):active,
.bh-text-button:not(:disabled).active {
  background-color: var(--bh-accent-10);
  outline: 0;
  box-shadow: none;
  border: 1px solid transparent;
  color: var(--bh-accent-01);
}
.bh-text-button:focus-visible:active {
  box-shadow: none;
}
.bh-text-button--loading:hover,
.bh-text-button--loading:not(:disabled):active,
.bh-text-button--loading:not(:disabled).active {
  color: transparent;
  border: 1px solid var(--bh-accent-09);
}
.bh-text-button:disabled {
  background-color: var(--bh-black-08);
  color: var(--bh-black-04);
  cursor: not-allowed;
}
.bh-text-button:disabled.bh-text-button--icon-l svg path,
.bh-text-button:disabled.bh-text-button--icon-r svg path {
  fill: var(--bh-black-04);
}
.bh-text-button--loading:disabled {
  color: transparent;
}
.bh-select {
  border: 0;
  padding: 0;
  margin: 0;
}
.bh-select-label {
  font-family: var(--bh-secondary-font-face);
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0.49px;
  color: var(--bh-black);
  display: block;
  margin-bottom: 4px;
}
.bh-select-field {
  background: var(--bh-white) url("./media/bh-ic-select-5IKERM47.svg") no-repeat right 10px center;
  background-size: 24px 24px;
  font-family: var(--bh-secondary-font-face);
  width: 100%;
  height: 48px;
  border-radius: 4px;
  border: 1px solid var(--bh-black-07);
  padding: 0 40px 0 12px;
  color: var(--bh-black);
  font-size: 19px;
  letter-spacing: 0.22px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.bh-select-field:focus-visible,
.bh-select-field:active {
  outline: 0;
  box-shadow: none;
  border-color: var(--bh-accent);
}
.bh-select-field::-ms-expand {
  display: none;
}
.bh-select-helper,
.bh-select-error {
  font-family: var(--bh-secondary-font-face);
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0.4px;
  margin-top: 4px;
}
.bh-select-error {
  display: none;
}
.bh-select.bh-form-field-disabled .bh-select-label,
.bh-select.bh-form-field-disabled .bh-select-helper {
  color: var(--bh-black-05);
}
.bh-select.bh-form-field-disabled .bh-select-field {
  color: var(--bh-black-05);
  background: var(--bh-black-09) url("./media/bh-ic-select-disabled-E2LV4CNE.svg") no-repeat right 10px center;
  background-size: 24px 24px;
  cursor: not-allowed;
}
.bh-select.bh-form-field-disabled .bh-select-field:focus-visible,
.bh-select.bh-form-field-disabled .bh-select-field:active {
  border-color: var(--bh-black-07);
}
.bh-select.bh-form-field-error .bh-select-field {
  border-color: var(--bh-error);
}
.bh-select.bh-form-field-error .bh-select-field:focus-visible,
.bh-select.bh-form-field-error .bh-select-field:active {
  border-color: var(--bh-accent);
}
.bh-select.bh-form-field-error .bh-select-error {
  display: block;
  color: var(--bh-error);
}
.bh-text-input-field {
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
}
.bh-text-input-field-label {
  font-family: var(--bh-secondary-font-face);
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0.49px;
  color: var(--bh-black);
  display: block;
  margin-bottom: 4px;
}
.bh-text-input-field-input {
  font-family: var(--bh-secondary-font-face);
  width: 100%;
  height: 48px;
  line-height: 19px;
  border-radius: 4px;
  border: 1px solid var(--bh-black-07);
  padding: 0 12px;
  color: var(--bh-black);
  font-size: 19px;
  letter-spacing: 0.22px;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.bh-text-input-field-input:focus-visible,
.bh-text-input-field-input:active {
  outline: 0;
  box-shadow: none;
  border-color: var(--bh-accent);
}
.bh-text-input-field-input.placeholder {
  color: var(--bh-black-04);
  line-height: 19px;
  opacity: 1;
}
.bh-text-input-field-input:-moz-placeholder {
  color: var(--bh-black-04);
  line-height: 19px;
  opacity: 1;
}
.bh-text-input-field-input::-moz-placeholder {
  color: var(--bh-black-04);
  line-height: 19px;
  opacity: 1;
}
.bh-text-input-field-input:-ms-input-placeholder {
  color: var(--bh-black-04);
  line-height: 19px;
  opacity: 1;
}
.bh-text-input-field-input::-webkit-input-placeholder {
  color: var(--bh-black-04);
  line-height: 19px;
  opacity: 1;
}
.bh-text-input-field-input::placeholder {
  color: var(--bh-black-04);
  line-height: 19px;
  opacity: 1;
}
.bh-text-input-field-helper,
.bh-text-input-field-error {
  font-family: var(--bh-secondary-font-face);
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0.4px;
  margin-top: 4px;
}
.bh-text-input-field-error {
  display: none;
}
.bh-text-input-field.bh-form-field-disabled .bh-text-input-field-label,
.bh-text-input-field.bh-form-field-disabled .bh-text-input-field-helper {
  color: var(--bh-black-05);
}
.bh-text-input-field.bh-form-field-disabled .bh-text-input-field-input {
  background-color: var(--bh-black-09);
  color: var(--bh-black-05);
  cursor: not-allowed;
}
.bh-text-input-field.bh-form-field-disabled .bh-text-input-field-input:focus-visible,
.bh-text-input-field.bh-form-field-disabled .bh-text-input-field-input:active {
  border-color: var(--bh-black-07);
}
.bh-text-input-field.bh-form-field-disabled .bh-text-input-field-input.placeholder {
  color: var(--bh-black-05);
  opacity: 1;
}
.bh-text-input-field.bh-form-field-disabled .bh-text-input-field-input:-moz-placeholder {
  color: var(--bh-black-05);
  opacity: 1;
}
.bh-text-input-field.bh-form-field-disabled .bh-text-input-field-input::-moz-placeholder {
  color: var(--bh-black-05);
  opacity: 1;
}
.bh-text-input-field.bh-form-field-disabled .bh-text-input-field-input:-ms-input-placeholder {
  color: var(--bh-black-05);
  opacity: 1;
}
.bh-text-input-field.bh-form-field-disabled .bh-text-input-field-input::-webkit-input-placeholder {
  color: var(--bh-black-05);
  opacity: 1;
}
.bh-text-input-field.bh-form-field-disabled .bh-text-input-field-input::placeholder {
  color: var(--bh-black-05);
  opacity: 1;
}
.bh-text-input-field.bh-form-field-error .bh-text-input-field-input {
  border-color: var(--bh-error);
}
.bh-text-input-field.bh-form-field-error .bh-text-input-field-input:focus-visible,
.bh-text-input-field.bh-form-field-error .bh-text-input-field-input:active {
  border-color: var(--bh-accent);
}
.bh-text-input-field.bh-form-field-error .bh-text-input-field-error {
  display: block;
  color: var(--bh-error);
}
.bh-text-input-horiz {
  width: 440px;
  max-width: 100%;
}
.bh-text-input-horiz-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.bh-text-input-horiz-label {
  width: 28%;
}
.bh-text-input-horiz-right-side {
  width: 66%;
}
.bh-text-input-horiz-input {
  height: 32px;
  line-height: 32px;
  font-size: 15px;
  padding: 0 8px;
}
@media (width <= 640px) {
  .bh-text-input-horiz-input {
    font-size: 16px;
  }
}
.bh-text-input-textarea {
  width: 100%;
}
.bh-text-input-textarea-wrap {
  position: relative;
}
.bh-text-input-textarea-input {
  min-height: 94px;
  height: 94px;
  line-height: 23px;
  padding: 10px 25px 12px 12px;
  display: block;
  resize: vertical;
}
.bh-text-input-textarea.bh-form-field-disabled .bh-text-input-textarea-wrap::after {
  background-color: var(--bh-black-09);
}
.bh-text-input-textarea .bh-text-input-textarea-generic-error {
  display: none;
}
.bh-chip {
  font-family: var(--bh-secondary-font-face);
  font-size: 15px;
  border-radius: 16px;
  border: 0;
  line-height: 17px;
  background-color: var(--bh-black-09);
  color: var(--bh-black);
  letter-spacing: 0.25px;
  transition: background-color 0.2s ease-out;
  text-decoration: none;
  padding: 7.5px 12px;
  margin: 10px;
  display: inline-flex;
  align-items: center;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.bh-chip:focus-visible {
  box-shadow: inset 0 0 0 2px var(--bh-accent-04);
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}
.bh-chip:hover {
  background-color: var(--bh-black-07);
  color: var(--bh-black);
}
.bh-chip:not(:disabled):active,
.bh-chip:not(:disabled).active {
  background-color: var(--bh-black-07);
}
.bh-checkbox-group {
  border: 0;
  padding: 0;
  margin: 0;
}
.bh-checkbox-group-legend {
  font-family: var(--bh-secondary-font-face);
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0.49px;
  padding: 0;
  margin-bottom: 4px;
}
.bh-checkbox-group-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.bh-checkbox-group--stacked .bh-checkbox-group-flex {
  flex-direction: column;
}
.bh-checkbox-group-input {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.bh-checkbox-group-input:checked ~ .bh-checkbox-group-checkbox {
  background: transparent;
  border-color: var(--bh-accent);
}
.bh-checkbox-group-input:checked ~ .bh-checkbox-group-checkbox .bh-checkbox-group-checkmark polyline {
  stroke-dashoffset: 0;
}
.bh-checkbox-group-input:checked ~ .bh-checkbox-group-checkbox:before {
  opacity: 0;
  transform: scale(3.5);
  transition: all 0.6s ease-in-out;
}
.bh-checkbox-group-input:checked:hover ~ .bh-checkbox-group-checkbox,
.bh-checkbox-group-input:checked:active ~ .bh-checkbox-group-checkbox {
  background: transparent;
  border-color: var(--bh-accent);
}
.bh-checkbox-group-input:checked:hover ~ .bh-checkbox-group-checkbox .bh-checkbox-group-checkmark polyline,
.bh-checkbox-group-input:checked:active ~ .bh-checkbox-group-checkbox .bh-checkbox-group-checkmark polyline {
  stroke-dashoffset: 0;
}
.bh-checkbox-group-input:checked:hover ~ .bh-checkbox-group-checkbox:before,
.bh-checkbox-group-input:checked:active ~ .bh-checkbox-group-checkbox:before {
  opacity: 0;
  transform: scale(3.5);
  transition: all 0.6s ease-in-out;
}
.bh-checkbox-group-input:not(:disabled):focus-visible,
.bh-checkbox-group-input:not(:disabled):active {
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}
.bh-checkbox-group-input:not(:disabled):focus-visible ~ .bh-checkbox-group-checkbox,
.bh-checkbox-group-input:not(:disabled):active ~ .bh-checkbox-group-checkbox {
  border-color: var(--bh-accent-01);
}
.bh-checkbox-group-input:not(:disabled):checked:focus-visible ~ .bh-checkbox-group-checkbox,
.bh-checkbox-group-input:not(:disabled):checked:active ~ .bh-checkbox-group-checkbox {
  border-color: var(--bh-accent-01);
}
.bh-checkbox-group-input:not(:disabled):active ~ .bh-checkbox-group-checkbox {
  border-color: var(--bh-accent);
}
.bh-checkbox-group-input:not(:disabled):checked:active ~ .bh-checkbox-group-checkbox {
  border-color: var(--bh-accent);
}
.bh-checkbox-group-input:disabled ~ .bh-checkbox-group-checkbox,
.bh-checkbox-group-input:disabled:checked ~ .bh-checkbox-group-checkbox {
  border-color: var(--bh-black-05);
  cursor: not-allowed;
}
.bh-checkbox-group-input:disabled:checked ~ .bh-checkbox-group-checkbox .bh-checkbox-group-checkmark {
  stroke: var(--bh-black-05);
}
.bh-checkbox-group-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 23px;
  position: relative;
  padding: 0;
}
.bh-checkbox-group-label:hover input:not(:disabled) + .bh-checkbox-group-checkbox {
  border-color: var(--bh-accent);
}
.bh-checkbox-group-checkbox {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid var(--bh-black-03);
  border-radius: 3px;
  transform: scale(1);
  transition: all 0.2s ease-in-out;
  flex: 0 0 18px;
  margin: 1px 0 0 3px;
}
.bh-checkbox-group-checkmark {
  position: absolute;
  top: 2px;
  left: 1px;
  fill: none;
  stroke: var(--bh-accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transform: rotate(6deg);
  transition-delay: 0.1s;
  transition: all 0.3s ease-in-out;
}
.bh-checkbox-group-dot {
  width: 10px;
  height: 10px;
  background-color: var(--bh-accent);
  border-radius: 50%;
  display: none;
}
.bh-checkbox-group-label-copy {
  font-family: var(--bh-secondary-font-face);
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.49px;
  color: var(--bh-black);
  padding-left: 8px;
}
.bh-checkbox-group-helper,
.bh-checkbox-group-error {
  font-family: var(--bh-secondary-font-face);
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0.4px;
}
.bh-checkbox-group-error {
  display: none;
  margin-bottom: 4px;
}
.bh-checkbox-group.bh-form-field-disabled .bh-checkbox-group-legend,
.bh-checkbox-group.bh-form-field-disabled .bh-checkbox-group-label,
.bh-checkbox-group.bh-form-field-disabled .bh-checkbox-group-helper {
  color: var(--bh-black-05);
}
.bh-checkbox-group.bh-form-field-disabled .bh-checkbox-group-input,
.bh-checkbox-group.bh-form-field-disabled .bh-checkbox-group-input:hover {
  cursor: not-allowed;
}
.bh-checkbox-group.bh-form-field-disabled .bh-checkbox-group-label,
.bh-checkbox-group.bh-form-field-disabled .bh-checkbox-group-label:hover {
  cursor: not-allowed;
}
.bh-checkbox-group.bh-form-field-disabled .bh-checkbox-group-label .bh-checkbox-group-checkbox,
.bh-checkbox-group.bh-form-field-disabled .bh-checkbox-group-label:hover .bh-checkbox-group-checkbox {
  border-color: var(--bh-black-05);
  cursor: not-allowed;
}
.bh-checkbox-group.bh-form-field-disabled .bh-checkbox-group-label .bh-checkbox-group-checkbox .bh-checkbox-group-checkmark polyline,
.bh-checkbox-group.bh-form-field-disabled .bh-checkbox-group-label:hover .bh-checkbox-group-checkbox .bh-checkbox-group-checkmark polyline {
  stroke-dashoffset: 16px;
}
.bh-checkbox-group.bh-form-field-disabled .bh-checkbox-group-label .bh-checkbox-group-label-copy,
.bh-checkbox-group.bh-form-field-disabled .bh-checkbox-group-label:hover .bh-checkbox-group-label-copy {
  color: var(--bh-black-05);
  cursor: not-allowed;
}
.bh-checkbox-group.bh-form-field-disabled .bh-checkbox-group-input:focus:active ~ .bh-checkbox-group-checkbox {
  box-shadow: none;
}
.bh-checkbox-group.bh-form-field-error .bh-checkbox-group-error {
  display: block;
  color: var(--bh-error);
}
.bh-checkbox-group--chip .bh-checkbox-group-flex {
  gap: 8px;
}
.bh-checkbox-group--chip .bh-checkbox-group-input:checked ~ .bh-checkbox-group-chip {
  background-color: var(--bh-core);
  color: var(--bh-white);
}
.bh-checkbox-group--chip .bh-checkbox-group-input:not(:disabled):focus-visible,
.bh-checkbox-group--chip .bh-checkbox-group-input:not(:disabled):active {
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}
.bh-checkbox-group--chip .bh-checkbox-group-input:not(:disabled):focus-visible ~ .bh-checkbox-group-chip,
.bh-checkbox-group--chip .bh-checkbox-group-input:not(:disabled):active ~ .bh-checkbox-group-chip {
  outline: 2px solid var(--bh-accent-03);
}
.bh-checkbox-group--chip .bh-checkbox-group-chip {
  margin: 0;
}
.bh-radio-group {
  border: 0;
  padding: 0;
  margin: 0;
}
.bh-radio-group-legend {
  font-family: var(--bh-secondary-font-face);
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0.49px;
  padding: 0;
  margin-bottom: 4px;
}
.bh-radio-group-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.bh-radio-group--stacked .bh-radio-group-flex {
  flex-direction: column;
}
.bh-radio-group-input {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
}
.bh-radio-group-input:focus-visible ~ .bh-radio-group-button {
  border-color: var(--bh-accent-03);
  outline: 2px solid var(--bh-accent-03);
  outline-offset: 2px;
}
.bh-radio-group-input:focus-visible ~ .bh-radio-group-button .bh-radio-group-dot {
  display: inline-block;
  background-color: var(--bh-accent-03);
}
.bh-radio-group-input:focus-visible:hover ~ .bh-radio-group-button,
.bh-radio-group-input:focus-visible:active ~ .bh-radio-group-button {
  border-color: var(--bh-accent-01);
}
.bh-radio-group-input:focus-visible:hover ~ .bh-radio-group-button .bh-radio-group-dot,
.bh-radio-group-input:focus-visible:active ~ .bh-radio-group-button .bh-radio-group-dot {
  background-color: var(--bh-accent-01);
}
.bh-radio-group-input:checked ~ .bh-radio-group-button {
  border-color: var(--bh-accent);
}
.bh-radio-group-input:checked ~ .bh-radio-group-button .bh-radio-group-dot {
  display: inline-block;
}
.bh-radio-group-input:checked:hover ~ .bh-radio-group-button,
.bh-radio-group-input:checked:active ~ .bh-radio-group-button {
  border-color: var(--bh-accent-01);
}
.bh-radio-group-input:checked:hover ~ .bh-radio-group-button .bh-radio-group-dot,
.bh-radio-group-input:checked:active ~ .bh-radio-group-button .bh-radio-group-dot {
  background-color: var(--bh-accent-01);
}
.bh-radio-group-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 23px;
  position: relative;
  padding: 2px 0 0 2px;
}
.bh-radio-group-label:hover .bh-radio-group-button {
  border-color: var(--bh-black);
}
.bh-radio-group-button {
  flex: 0 0 20px;
  border: 2px solid var(--bh-black-03);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.bh-radio-group-dot {
  width: 10px;
  height: 10px;
  background-color: var(--bh-accent);
  border-radius: 50%;
  display: none;
}
.bh-radio-group-label-copy {
  font-family: var(--bh-secondary-font-face);
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.49px;
  color: var(--bh-black);
  padding-left: 8px;
}
.bh-radio-group-helper,
.bh-radio-group-error {
  font-family: var(--bh-secondary-font-face);
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0.4px;
}
.bh-radio-group-error {
  display: none;
  margin-bottom: 4px;
}
.bh-radio-group.bh-form-field-disabled .bh-radio-group-legend,
.bh-radio-group.bh-form-field-disabled .bh-radio-group-label,
.bh-radio-group.bh-form-field-disabled .bh-radio-group-helper {
  color: var(--bh-black-05);
}
.bh-radio-group.bh-form-field-disabled .bh-radio-group-input,
.bh-radio-group.bh-form-field-disabled .bh-radio-group-input:hover {
  cursor: not-allowed;
}
.bh-radio-group.bh-form-field-disabled .bh-radio-group-label,
.bh-radio-group.bh-form-field-disabled .bh-radio-group-label:hover {
  cursor: not-allowed;
}
.bh-radio-group.bh-form-field-disabled .bh-radio-group-label .bh-radio-group-button,
.bh-radio-group.bh-form-field-disabled .bh-radio-group-label:hover .bh-radio-group-button {
  border-color: var(--bh-black-05);
}
.bh-radio-group.bh-form-field-disabled .bh-radio-group-label .bh-radio-group-button .bh-radio-group-dot,
.bh-radio-group.bh-form-field-disabled .bh-radio-group-label:hover .bh-radio-group-button .bh-radio-group-dot {
  background-color: var(--bh-black-05);
}
.bh-radio-group.bh-form-field-disabled .bh-radio-group-label .bh-radio-group-label-copy,
.bh-radio-group.bh-form-field-disabled .bh-radio-group-label:hover .bh-radio-group-label-copy {
  color: var(--bh-black-05);
  cursor: not-allowed;
}
.bh-radio-group.bh-form-field-disabled:focus:active ~ .bh-radio-group-button {
  box-shadow: none;
}
.bh-radio-group .bh-radio-group-input[disabled] ~ .bh-radio-group-button {
  border-color: var(--bh-black-05);
  cursor: not-allowed;
}
.bh-radio-group .bh-radio-group-input[disabled] ~ .bh-radio-group-button .bh-radio-group-dot {
  background-color: var(--bh-black-05);
}
.bh-radio-group .bh-radio-group-input[disabled] ~ .bh-radio-group-label-copy {
  color: var(--bh-black-05);
  cursor: not-allowed;
}
.bh-radio-group .bh-radio-group-input[disabled] ~ .bh-radio-group-label-copy svg path {
  fill: var(--bh-black-05);
}
.bh-radio-group.bh-form-field-error .bh-radio-group-error {
  display: block;
  color: var(--bh-error);
}
.bh-toggle-switch {
  position: relative;
}
.bh-toggle-switch-track-outer {
  width: 58px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin-bottom: 0;
}
.bh-toggle-switch-track {
  box-sizing: border-box;
  background-color: rgba(123, 127, 132, 0.38);
  width: 34px;
  height: 14px;
  border-radius: 7px;
  transition: opacity 90ms cubic-bezier(0.4, 0, 0.2, 1), background-color 90ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.bh-toggle-switch-thumb {
  opacity: 1;
  height: 20px;
  width: 20px;
  border-radius: 10px;
  background-color: var(--bh-white);
  box-shadow:
    0 1px 1px 0 rgba(0, 0, 0, 0.14),
    0 2px 1px -1px rgba(0, 0, 0, 0.12),
    0 1px 3px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  top: -3px;
  left: -2px;
  transition: box-shadow 90ms cubic-bezier(0.4, 0, 0.2, 1), left 90ms cubic-bezier(0.4, 0, 0.2, 1);
}
.bh-toggle-switch-thumb:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transition: background-color 90ms cubic-bezier(0.4, 0, 0.2, 1), left 90ms cubic-bezier(0.4, 0, 0.2, 1);
}
.bh-toggle-switch:hover .bh-toggle-switch-checkbox:not(:disabled) + .bh-toggle-switch-track-outer .bh-toggle-switch-thumb:after {
  opacity: 1;
}
.bh-toggle-switch-checkbox {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
}
.bh-toggle-switch-checkbox:checked + .bh-toggle-switch-track-outer .bh-toggle-switch-track {
  background-color: rgba(0, 126, 180, 0.38);
}
.bh-toggle-switch-checkbox:checked + .bh-toggle-switch-track-outer .bh-toggle-switch-thumb {
  left: 16px;
  background-color: var(--bh-accent-03);
  transition: box-shadow 90ms cubic-bezier(0.4, 0, 0.2, 1), left 90ms cubic-bezier(0.4, 0, 0.2, 1);
}
.bh-toggle-switch-checkbox:checked + .bh-toggle-switch-track-outer .bh-toggle-switch-thumb:after {
  box-shadow: 0 0 0 10px rgba(11, 142, 198, 0.08);
  transition: box-shadow 90ms cubic-bezier(0.4, 0, 0.2, 1), left 90ms cubic-bezier(0.4, 0, 0.2, 1);
}
.bh-toggle-switch:hover .bh-toggle-switch-checkbox:not(:disabled):checked + .bh-toggle-switch-track-outer .bh-toggle-switch-thumb:after {
  opacity: 1;
}
.bh-toggle-switch-checkbox:not(:disabled):focus-visible,
.bh-toggle-switch-checkbox:not(:disabled):active {
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}
.bh-toggle-switch-checkbox:not(:disabled):focus-visible + .bh-toggle-switch-track-outer .bh-toggle-switch-thumb:after,
.bh-toggle-switch-checkbox:not(:disabled):active + .bh-toggle-switch-track-outer .bh-toggle-switch-thumb:after {
  opacity: 1;
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.16);
}
.bh-toggle-switch-checkbox:not(:disabled):checked:focus-visible + .bh-toggle-switch-track-outer .bh-toggle-switch-thumb:after,
.bh-toggle-switch-checkbox:not(:disabled):checked:active + .bh-toggle-switch-track-outer .bh-toggle-switch-thumb:after {
  opacity: 1;
  box-shadow: 0 0 0 10px rgba(11, 142, 198, 0.16);
}
.bh-toggle-switch.bh-form-field-disabled {
  opacity: 0.38;
}
.bh-toggle-switch.bh-form-field-disabled .bh-toggle-switch-track-outer {
  cursor: not-allowed;
}
.bh-toggle-switch.bh-form-field-disabled .bh-toggle-switch-checkbox:disabled {
  cursor: not-allowed;
}
.bh-search-field {
  margin: 0;
  font-family: var(--bh-secondary-font-face);
  width: 100%;
  max-width: 100%;
  height: 36px;
  font-size: 15px;
  color: var(--bh-black);
  box-sizing: border-box;
  border: 1px solid var(--bh-black-07);
  border-radius: 18px;
  padding: 0 8px 0 38px;
  letter-spacing: 0.22px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: var(--bh-white) url("./media/bh-ic-search-gray-SW6FI5MP.svg") no-repeat center left 12px;
  background-size: 18px 18px;
}
.bh-search-field:focus,
.bh-search-field:active {
  outline: 0;
  box-shadow: none;
  border-color: var(--bh-accent);
}
.bh-search-field.placeholder {
  color: var(--bh-black-04);
  opacity: 1;
}
.bh-search-field:-moz-placeholder {
  color: var(--bh-black-04);
  opacity: 1;
}
.bh-search-field::-moz-placeholder {
  color: var(--bh-black-04);
  opacity: 1;
}
.bh-search-field:-ms-input-placeholder {
  color: var(--bh-black-04);
  opacity: 1;
}
.bh-search-field::-webkit-input-placeholder {
  color: var(--bh-black-04);
  opacity: 1;
}
.bh-search-field::placeholder {
  color: var(--bh-black-04);
  opacity: 1;
}
@media screen and (max-width: 480px) {
  .bh-search-field {
    font-size: 16px;
  }
}
.bh-search-field.bh-form-field-disabled {
  background-color: var(--bh-black-09);
  color: var(--bh-black-05);
  cursor: not-allowed;
}
.bh-search-field.bh-form-field-disabled:focus,
.bh-search-field.bh-form-field-disabled:active {
  border-color: var(--bh-black-07);
}
.bh-search-field.bh-form-field-disabled.placeholder {
  color: var(--bh-black-05);
  opacity: 1;
}
.bh-search-field.bh-form-field-disabled:-moz-placeholder {
  color: var(--bh-black-05);
  opacity: 1;
}
.bh-search-field.bh-form-field-disabled::-moz-placeholder {
  color: var(--bh-black-05);
  opacity: 1;
}
.bh-search-field.bh-form-field-disabled:-ms-input-placeholder {
  color: var(--bh-black-05);
  opacity: 1;
}
.bh-search-field.bh-form-field-disabled::-webkit-input-placeholder {
  color: var(--bh-black-05);
  opacity: 1;
}
.bh-search-field.bh-form-field-disabled::placeholder {
  color: var(--bh-black-05);
  opacity: 1;
}
.bh-search-field.bh-form-field-disabled::-webkit-search-cancel-button {
  display: none;
}
.bh-search-field--on-dark {
  border-color: transparent;
}
.bh-search-field--large {
  height: 48px;
  font-size: 23px;
  padding: 0 12px 0 48px;
  border-radius: 24px;
  background-size: 24px 24px;
}
.bh-search-field--large::-webkit-search-cancel-button {
  background-size: 24px 24px;
  background-position: center right -2px;
  height: 24px;
  width: 26px;
}
.bh-progress-indicator {
  margin: 0px 24px 0px 24px;
}
.bh-progress-indicator-circular {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border: 0.25rem solid var(--bh-accent);
  border-radius: 50%;
  border-top-color: transparent;
  animation: rotate 2s infinite linear;
}
.bh-progress-indicator-circular--surface {
  display: inline-flex;
  padding: 14px;
  align-items: flex-start;
  height: 72px;
  width: 72px;
  border-radius: 4px;
  background-color: var(--bh-white);
  box-shadow:
    0px 16px 24px 2px rgba(0, 0, 0, 0.14),
    0px 6px 30px 5px rgba(0, 0, 0, 0.12),
    0px 8px 10px -5px rgba(0, 0, 0, 0.2);
}
.bh-stacked-buttons {
  width: 100%;
}
.bh-stacked-buttons button {
  display: block;
  margin: 0 auto;
}
.bh-stacked-buttons button + button {
  margin-top: 6px;
}
.bh-side-by-side-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.bh-side-by-side-buttons button {
  margin: 10px 6px;
}
.bh-side-by-side-buttons button:last-child {
  margin-right: 0;
}
.bh-notification-active-alert {
  display: none;
  align-items: flex-start;
  padding: 0px;
  margin: 0;
  border-radius: 4px;
  background-color: var(--bh-white);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.13);
}
.bh-notification-active-alert.open {
  display: flex;
  z-index: 998;
}
.bh-notification-active-alert-trigger {
  cursor: pointer;
}
.bh-notification-active-alert .bh-notification-active-alert-copy {
  margin: 0;
  padding: 15px 12px;
  gap: 12px;
}
.bh-notification-active-alert .bh-notification-active-alert-copy-link {
  font-weight: 500;
  letter-spacing: 0.47px;
  padding-left: 12px;
  cursor: pointer;
}
.bh-notification-active-alert .bh-notification-active-alert-copy-link-view-details {
  display: inline-flex;
}
.bh-notification-active-alert .bh-notification-active-alert-copy-link-see-more {
  display: none;
}
.bh-notification-active-alert .bh-notification-active-alert-copy-link-see-less {
  float: right;
}
.bh-notification-active-alert-stacked-link {
  align-items: flex-start;
  align-self: stretch;
  padding-top: 20px;
  display: none;
  cursor: pointer;
}
.bh-notification-active-alert-icon {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 24px;
}
.bh-notification-active-alert-icon-close {
  height: 20px;
  display: block;
  flex: 0 0 20px;
  max-width: 20px;
}
.bh-notification-active-alert-icon-box {
  display: flex;
  padding: 12px 8px;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
  border-radius: 4px 0px 0px 4px;
  background: var(--bh-alert);
  flex: 0 0 40px;
}
.bh-notification-active-alert-icon-box--confirmation {
  background: var(--bh-success);
}
.bh-notification-active-alert-icon-box--error {
  background: var(--bh-error);
}
.bh-notification-active-alert-close {
  cursor: pointer;
  padding-top: 8px;
  padding-left: 10px;
  padding-bottom: 20px;
  border: 0;
  background-color: transparent;
}
.bh-notification-active-alert--full {
  width: calc(100% - 20px);
  left: 10px;
}
.bh-notification-inline {
  display: none;
  align-items: flex-start;
  padding: 12px;
  margin: 0;
  border-radius: 4px;
  background-color: var(--bh-white);
  box-shadow: none;
  width: 100%;
}
.bh-notification-inline--info {
  border: 1px solid var(--bh-alert);
}
.bh-notification-inline--confirmation {
  border: 1px solid var(--bh-success);
}
.bh-notification-inline--error {
  border: 1px solid var(--bh-error);
  padding: 0;
}
.bh-notification-inline.open {
  display: flex;
}
.bh-notification-inline .bh-notification-inline-copy {
  font-family: var(--bh-secondary-font-face);
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.25px;
  color: var(--bh-black);
  margin: 0;
  padding: 3px 8px;
  flex-grow: 1;
}
.bh-notification-inline-icon {
  width: 24px;
  height: 24px;
  display: block;
  flex: 0 0 24px;
}
.bh-notification-inline-close {
  cursor: pointer;
  min-width: 24px;
  padding: 0;
  border: 0;
  background-color: transparent;
}
.bh-notification-inline-close:focus {
  outline: 2px solid var(--bh-accent-03);
}
.bh-notification-inline--error--alt {
  border: 1px solid var(--bh-black-07);
  align-items: stretch;
}
.bh-notification-inline--error--alt .bh-notification-inline-icon-block {
  background-color: var(--bh-error);
  padding: 12px 8px;
  display: flex;
  align-items: flex-start;
}
.bh-notification-inline--error--alt .bh-notification-inline-copy {
  padding: 15px 12px;
}
.bh-progress-bar {
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  background-color: var(--bh-white);
}
@media screen and (max-width: 767px) {
  .bh-progress-bar {
    padding: 0 16px;
  }
}
.bh-progress-bar--halves .bh-progress-bar-step {
  width: calc(50% - 1px);
}
.bh-progress-bar--thirds .bh-progress-bar-step {
  width: calc(33.333% - 1.333px);
}
.bh-progress-bar--quarters .bh-progress-bar-step {
  width: calc(25% - 1.5px);
}
.bh-progress-bar--fifths .bh-progress-bar-step {
  width: calc(20% - 1.6px);
}
.bh-progress-bar--sixths .bh-progress-bar-step {
  width: calc(16.667% - 1.667px);
}
.bh-progress-bar--sevenths .bh-progress-bar-step {
  width: calc(14.286% - 1.714px);
}
.bh-progress-bar-step {
  height: 8px;
  background-color: var(--bh-core-10);
}
.bh-progress-bar-step.bh-progress-bar-step-filled {
  background-color: var(--bh-core);
}
.bh-loading-group {
  max-width: 100%;
}
.bh-loading-placeholder {
  position: relative;
  display: inline-block;
  background: var(--bh-white);
  width: 993px;
  max-width: 100%;
  height: 200px;
  padding: 16px 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .bh-loading-placeholder {
    padding: 16px;
  }
}
@keyframes loadingBars {
  0% {
    background-position: -100% 0;
  }
  100% {
    background-position: 100% 0;
  }
}
.bh-loading-placeholder::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background-color: var(--bh-black-09);
  animation: loadingBars 1.75s linear infinite;
  background:
    linear-gradient(
      110deg,
      var(--bh-black-09) 24%,
      var(--bh-black-08) 52%,
      var(--bh-black-09) 60%);
  background-size: 50%;
  mix-blend-mode: overlay;
}
.bh-loading-placeholder .bar {
  position: relative;
  width: 100%;
  height: 20px;
  flex: 0 0 20px;
  margin-bottom: 16px;
  border-radius: 4px;
  background-color: var(--bh-black-05);
}
.bh-loading-placeholder .bar--1 {
  width: 70%;
}
.bh-loading-placeholder .bar--2,
.bh-loading-placeholder .bar--3 {
  width: 100%;
}
.bh-loading-placeholder--text-only {
  border: 0;
  box-shadow: none;
  padding: 0;
  max-width: 100%;
  height: 42px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .bh-loading-placeholder--text-only {
    padding: 0 16px;
  }
}
.bh-loading-placeholder--text-only .bar {
  height: 27px;
  flex: 0 0 27px;
}
.bh-loading-placeholder--text-only .bar--1 {
  width: 368px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .bh-loading-placeholder--text-only .bar--1 {
    width: 270px;
  }
}
:root {
  --mat-select-focused-arrow-color: var(--bh-black);
  --mdc-filled-text-field-focus-label-text-color: var(--bh-black);
  --mdc-outlined-text-field-outline-color: var(--bh-black-07);
  --mdc-outlined-text-field-hover-outline-color: var(--bh-black-07);
  --mdc-outlined-text-field-focus-outline-color: var(--bh-accent-03);
}
.cdk-overlay-pane.mat-mdc-dialog-panel.bh-dialog {
  max-width: 1200px;
}
.bh-dialog .mat-mdc-dialog-inner-container,
.bh-dialog-small .mat-mdc-dialog-inner-container,
.bh-dialog-medium .mat-mdc-dialog-inner-container,
.bh-dialog-large .mat-mdc-dialog-inner-container {
  width: 560px;
  max-width: 100%;
}
.bh-dialog .mat-mdc-dialog-surface,
.bh-dialog-small .mat-mdc-dialog-surface,
.bh-dialog-medium .mat-mdc-dialog-surface,
.bh-dialog-large .mat-mdc-dialog-surface {
  border-radius: 4px;
  padding: 40px;
  background-color: var(--bh-white);
}
.bh-dialog .mat-mdc-dialog-title::before,
.bh-dialog-small .mat-mdc-dialog-title::before,
.bh-dialog-medium .mat-mdc-dialog-title::before,
.bh-dialog-large .mat-mdc-dialog-title::before {
  display: none;
}
.bh-dialog .mat-mdc-dialog-container .mat-mdc-dialog-title.bh-heading-h1b,
.bh-dialog-small .mat-mdc-dialog-container .mat-mdc-dialog-title.bh-heading-h1b,
.bh-dialog-medium .mat-mdc-dialog-container .mat-mdc-dialog-title.bh-heading-h1b,
.bh-dialog-large .mat-mdc-dialog-container .mat-mdc-dialog-title.bh-heading-h1b {
  color: var(--bh-black);
  margin: 0 0 8px;
  padding: 0;
  font-family: var(--bh-secondary-font-face);
  font-weight: 400;
  font-size: 35px;
  line-height: 43px;
  letter-spacing: 0.25px;
}
.bh-dialog .mat-mdc-dialog-container .mat-mdc-dialog-title.bh-heading-h3b,
.bh-dialog-small .mat-mdc-dialog-container .mat-mdc-dialog-title.bh-heading-h3b,
.bh-dialog-medium .mat-mdc-dialog-container .mat-mdc-dialog-title.bh-heading-h3b,
.bh-dialog-large .mat-mdc-dialog-container .mat-mdc-dialog-title.bh-heading-h3b {
  color: var(--bh-black);
  margin: 0 0 8px;
  padding: 0;
  font-family: var(--bh-secondary-font-face);
  font-weight: bold;
  font-size: 19px;
  line-height: 23px;
  letter-spacing: 0.22px;
}
.bh-dialog .mat-mdc-dialog-content > :last-child,
.bh-dialog-small .mat-mdc-dialog-content > :last-child,
.bh-dialog-medium .mat-mdc-dialog-content > :last-child,
.bh-dialog-large .mat-mdc-dialog-content > :last-child {
  color: var(--bh-black-03);
  margin-bottom: 24px;
  font-family: var(--bh-secondary-font-face);
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.49px;
}
.bh-dialog .mat-mdc-dialog-title + .mat-mdc-dialog-content,
.bh-dialog .mat-mdc-dialog-actions,
.bh-dialog-small .mat-mdc-dialog-title + .mat-mdc-dialog-content,
.bh-dialog-small .mat-mdc-dialog-actions,
.bh-dialog-medium .mat-mdc-dialog-title + .mat-mdc-dialog-content,
.bh-dialog-medium .mat-mdc-dialog-actions,
.bh-dialog-large .mat-mdc-dialog-title + .mat-mdc-dialog-content,
.bh-dialog-large .mat-mdc-dialog-actions {
  padding: 0;
}
@media (width < 480px) {
  .bh-dialog .mat-mdc-dialog-actions,
  .bh-dialog-small .mat-mdc-dialog-actions,
  .bh-dialog-medium .mat-mdc-dialog-actions,
  .bh-dialog-large .mat-mdc-dialog-actions {
    padding-top: 16px;
  }
}
.bh-dialog .mat-mdc-dialog-actions,
.bh-dialog-small .mat-mdc-dialog-actions,
.bh-dialog-medium .mat-mdc-dialog-actions,
.bh-dialog-large .mat-mdc-dialog-actions {
  min-height: 0;
}
.bh-dialog .bh-side-by-side-buttons,
.bh-dialog-small .bh-side-by-side-buttons,
.bh-dialog-medium .bh-side-by-side-buttons,
.bh-dialog-large .bh-side-by-side-buttons {
  gap: 8px;
}
.bh-dialog button,
.bh-dialog-small button,
.bh-dialog-medium button,
.bh-dialog-large button {
  margin: 0;
}
.bh-dialog-small .mat-mdc-dialog-inner-container,
.bh-dialog-small-small .mat-mdc-dialog-inner-container,
.bh-dialog-medium-small .mat-mdc-dialog-inner-container,
.bh-dialog-large-small .mat-mdc-dialog-inner-container {
  max-width: 280px;
}
.bh-dialog-small .mat-mdc-dialog-surface,
.bh-dialog-small-small .mat-mdc-dialog-surface,
.bh-dialog-medium-small .mat-mdc-dialog-surface,
.bh-dialog-large-small .mat-mdc-dialog-surface {
  padding: 24px;
}
.bh-dialog-medium .mat-mdc-dialog-inner-container,
.bh-dialog-small-medium .mat-mdc-dialog-inner-container,
.bh-dialog-medium-medium .mat-mdc-dialog-inner-container,
.bh-dialog-large-medium .mat-mdc-dialog-inner-container {
  max-width: 500px;
}
@media (width < 640px) {
  .bh-dialog-medium .mat-mdc-dialog-inner-container,
  .bh-dialog-small-medium .mat-mdc-dialog-inner-container,
  .bh-dialog-medium-medium .mat-mdc-dialog-inner-container,
  .bh-dialog-large-medium .mat-mdc-dialog-inner-container {
    max-width: 100%;
  }
}
.bh-dialog-medium .mat-mdc-dialog-surface,
.bh-dialog-small-medium .mat-mdc-dialog-surface,
.bh-dialog-medium-medium .mat-mdc-dialog-surface,
.bh-dialog-large-medium .mat-mdc-dialog-surface {
  padding: 24px;
}
.bh-dialog-large .mat-mdc-dialog-inner-container,
.bh-dialog-small-large .mat-mdc-dialog-inner-container,
.bh-dialog-medium-large .mat-mdc-dialog-inner-container,
.bh-dialog-large-large .mat-mdc-dialog-inner-container {
  max-width: 560px;
}
@media (width < 640px) {
  .bh-dialog-large .mat-mdc-dialog-inner-container,
  .bh-dialog-small-large .mat-mdc-dialog-inner-container,
  .bh-dialog-medium-large .mat-mdc-dialog-inner-container,
  .bh-dialog-large-large .mat-mdc-dialog-inner-container {
    max-width: 100%;
  }
}
.bh-dialog-large .mat-mdc-dialog-surface,
.bh-dialog-small-large .mat-mdc-dialog-surface,
.bh-dialog-medium-large .mat-mdc-dialog-surface,
.bh-dialog-large-large .mat-mdc-dialog-surface {
  padding: 40px;
}
@media (width < 640px) {
  .bh-dialog-large .mat-mdc-dialog-surface,
  .bh-dialog-small-large .mat-mdc-dialog-surface,
  .bh-dialog-medium-large .mat-mdc-dialog-surface,
  .bh-dialog-large-large .mat-mdc-dialog-surface {
    padding: 24px;
  }
}
.bh-dialog-large .mat-mdc-dialog-content > :last-child,
.bh-dialog-small-large .mat-mdc-dialog-content > :last-child,
.bh-dialog-medium-large .mat-mdc-dialog-content > :last-child,
.bh-dialog-large-large .mat-mdc-dialog-content > :last-child {
  line-height: 25px;
}
.bh-dialog-session .mat-mdc-dialog-inner-container {
  width: 560px;
  max-width: 100%;
}
.bh-dialog-session-heading {
  margin-bottom: 8px;
  color: var(--bh-black);
}
.bh-dialog-session-body {
  margin-bottom: 8px;
  color: var(--bh-black-03);
}
.bh-dialog-session-body--expired {
  margin-bottom: 24px;
}
.bh-dialog-session-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.bh-dialog-session-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
}
.bh-dialog-session-time {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--bh-core);
}
.bh-dialog-save-prompt {
  max-height: 100%;
}
.bh-dialog-save-prompt .mat-mdc-dialog-content {
  max-height: 80vh !important;
}
.bh-dialog-save-prompt .bh-progress-indicator-circular,
.bh-dialog-save-chat .bh-progress-indicator-circular,
.bh-dialog-share-project .bh-progress-indicator-circular {
  margin: 40px auto;
  display: block;
}
.bh-dialog-save-prompt .mat-mdc-dialog-container .mat-mdc-dialog-content,
.bh-dialog-save-chat .mat-mdc-dialog-container .mat-mdc-dialog-content,
.bh-dialog-share-project .mat-mdc-dialog-container .mat-mdc-dialog-content {
  padding: 0;
}
.bh-dialog-save-prompt .mat-mdc-dialog-content,
.bh-dialog-save-chat .mat-mdc-dialog-content,
.bh-dialog-share-project .mat-mdc-dialog-content {
  position: relative;
}
.bh-dialog-save-prompt .save-prompts-admin,
.bh-dialog-save-chat .save-prompts-admin,
.bh-dialog-share-project .save-prompts-admin {
  position: absolute;
  top: 0;
  right: 0;
}
.bh-dialog-save-prompt .save-prompts-admin .bh-toggle-switch,
.bh-dialog-save-chat .save-prompts-admin .bh-toggle-switch,
.bh-dialog-share-project .save-prompts-admin .bh-toggle-switch {
  display: flex;
  align-items: center;
}
.bh-dialog-save-prompt .save-prompts-admin .save-prompts-toggle-text,
.bh-dialog-save-chat .save-prompts-admin .save-prompts-toggle-text,
.bh-dialog-share-project .save-prompts-admin .save-prompts-toggle-text {
  color: var(--bh-black-03);
  margin-right: 6px;
}
.bh-dialog-save-prompt .save-prompts-heading,
.bh-dialog-save-prompt .save-chat-heading,
.bh-dialog-save-chat .save-prompts-heading,
.bh-dialog-save-chat .save-chat-heading,
.bh-dialog-share-project .save-prompts-heading,
.bh-dialog-share-project .save-chat-heading {
  color: var(--bh-black);
  margin-bottom: 16px;
}
.bh-dialog-save-prompt .save-prompts-notification,
.bh-dialog-save-chat .save-prompts-notification,
.bh-dialog-share-project .save-prompts-notification {
  margin-bottom: 16px;
  box-shadow: none;
  border: 1px solid var(--bh-black-07);
  display: inline-flex;
}
.bh-dialog-save-prompt .save-prompts-intro,
.bh-dialog-save-prompt .save-chat-intro,
.bh-dialog-save-chat .save-prompts-intro,
.bh-dialog-save-chat .save-chat-intro,
.bh-dialog-share-project .save-prompts-intro,
.bh-dialog-share-project .save-chat-intro {
  color: var(--bh-black-03);
  margin-bottom: 16px;
}
.bh-dialog-save-prompt .char-count-prompt-title,
.bh-dialog-save-prompt .char-count-chat-title,
.bh-dialog-save-chat .char-count-prompt-title,
.bh-dialog-save-chat .char-count-chat-title,
.bh-dialog-share-project .char-count-prompt-title,
.bh-dialog-share-project .char-count-chat-title {
  height: 48px;
  min-height: 48px;
  resize: none;
}
.bh-dialog-save-prompt .bh-existing-folders-menu-trigger,
.bh-dialog-save-prompt .save-prompts-menu-tags,
.bh-dialog-save-chat .bh-existing-folders-menu-trigger,
.bh-dialog-save-chat .save-prompts-menu-tags,
.bh-dialog-share-project .bh-existing-folders-menu-trigger,
.bh-dialog-share-project .save-prompts-menu-tags {
  font-family: var(--bh-secondary-font-face);
  width: 300px;
  max-width: 100%;
  font-weight: 400;
  height: 48px;
  border-radius: 4px;
  border: 1px solid var(--bh-black-07);
  padding: 0 12px;
  color: var(--bh-black);
  font-size: 19px;
  letter-spacing: 0.22px;
  cursor: pointer;
  background-color: var(--bh-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bh-dialog-save-prompt .bh-existing-folders-menu-trigger svg path,
.bh-dialog-save-prompt .save-prompts-menu-tags svg path,
.bh-dialog-save-chat .bh-existing-folders-menu-trigger svg path,
.bh-dialog-save-chat .save-prompts-menu-tags svg path,
.bh-dialog-share-project .bh-existing-folders-menu-trigger svg path,
.bh-dialog-share-project .save-prompts-menu-tags svg path {
  fill: var(--bh-black);
}
.bh-dialog-save-prompt .bh-existing-folders-menu-trigger:active,
.bh-dialog-save-prompt .bh-existing-folders-menu-trigger:active:focus,
.bh-dialog-save-prompt .save-prompts-menu-tags:active,
.bh-dialog-save-prompt .save-prompts-menu-tags:active:focus,
.bh-dialog-save-chat .bh-existing-folders-menu-trigger:active,
.bh-dialog-save-chat .bh-existing-folders-menu-trigger:active:focus,
.bh-dialog-save-chat .save-prompts-menu-tags:active,
.bh-dialog-save-chat .save-prompts-menu-tags:active:focus,
.bh-dialog-share-project .bh-existing-folders-menu-trigger:active,
.bh-dialog-share-project .bh-existing-folders-menu-trigger:active:focus,
.bh-dialog-share-project .save-prompts-menu-tags:active,
.bh-dialog-share-project .save-prompts-menu-tags:active:focus {
  color: var(--bh-black);
  background-color: var(--bh-white);
  border: 1px solid var(--bh-black-07);
}
.bh-dialog-save-prompt .bh-existing-folders-menu-trigger .folder-name-text-selected,
.bh-dialog-save-chat .bh-existing-folders-menu-trigger .folder-name-text-selected,
.bh-dialog-share-project .bh-existing-folders-menu-trigger .folder-name-text-selected {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.bh-dialog-save-prompt .bh-existing-folders-menu-trigger .menu-trigger-icon,
.bh-dialog-save-chat .bh-existing-folders-menu-trigger .menu-trigger-icon,
.bh-dialog-share-project .bh-existing-folders-menu-trigger .menu-trigger-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
.bh-dialog-save-prompt .save-prompts-menu-tags,
.bh-dialog-save-chat .save-prompts-menu-tags,
.bh-dialog-share-project .save-prompts-menu-tags {
  width: 250px;
  max-width: 100%;
}
.bh-dialog-save-prompt .save-prompts-field,
.bh-dialog-save-prompt .save-chat-field,
.bh-dialog-save-chat .save-prompts-field,
.bh-dialog-save-chat .save-chat-field,
.bh-dialog-share-project .save-prompts-field,
.bh-dialog-share-project .save-chat-field {
  margin-bottom: 16px;
}
.bh-dialog-save-prompt .save-prompts-field.save-prompts-flex,
.bh-dialog-save-prompt .save-prompts-field.save-chat-flex,
.bh-dialog-save-prompt .save-chat-field.save-prompts-flex,
.bh-dialog-save-prompt .save-chat-field.save-chat-flex,
.bh-dialog-save-chat .save-prompts-field.save-prompts-flex,
.bh-dialog-save-chat .save-prompts-field.save-chat-flex,
.bh-dialog-save-chat .save-chat-field.save-prompts-flex,
.bh-dialog-save-chat .save-chat-field.save-chat-flex,
.bh-dialog-share-project .save-prompts-field.save-prompts-flex,
.bh-dialog-share-project .save-prompts-field.save-chat-flex,
.bh-dialog-share-project .save-chat-field.save-prompts-flex,
.bh-dialog-share-project .save-chat-field.save-chat-flex {
  display: flex;
  align-items: center;
  gap: 24px;
}
.bh-dialog-save-prompt .save-prompts-field.save-prompt-file-upload,
.bh-dialog-save-prompt .save-chat-field.save-prompt-file-upload,
.bh-dialog-save-chat .save-prompts-field.save-prompt-file-upload,
.bh-dialog-save-chat .save-chat-field.save-prompt-file-upload,
.bh-dialog-share-project .save-prompts-field.save-prompt-file-upload,
.bh-dialog-share-project .save-chat-field.save-prompt-file-upload {
  display: flex;
  padding: 10px;
  gap: 10px;
  border-radius: 4px;
  background: var(--bh-black-10);
}
.bh-dialog-save-prompt .save-prompts-generate,
.bh-dialog-save-prompt .save-chat-helper,
.bh-dialog-save-chat .save-prompts-generate,
.bh-dialog-save-chat .save-chat-helper,
.bh-dialog-share-project .save-prompts-generate,
.bh-dialog-share-project .save-chat-helper {
  margin-bottom: 20px;
}
.bh-dialog-save-prompt .save-chat-generate,
.bh-dialog-save-chat .save-chat-generate,
.bh-dialog-share-project .save-chat-generate {
  margin-bottom: 4px;
}
.bh-dialog-save-prompt .save-prompts-inner-buttons,
.bh-dialog-save-chat .save-prompts-inner-buttons,
.bh-dialog-share-project .save-prompts-inner-buttons {
  justify-content: flex-end;
  margin-top: 12px;
}
.bh-dialog-save-prompt .save-prompts-checkbox-text,
.bh-dialog-save-chat .save-prompts-checkbox-text,
.bh-dialog-share-project .save-prompts-checkbox-text {
  font-family: var(--bh-secondary-font-face);
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.25px;
  padding-top: 1px;
  padding-left: 11px;
}
.bh-dialog.bh-dialog-share-project .mat-mdc-dialog-inner-container {
  width: 1133px;
  max-width: 100%;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-heading-flex {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-heading {
  color: var(--bh-black);
  margin-bottom: 8px;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-intro {
  color: var(--bh-black-03);
  margin-bottom: 16px;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-project-approver-input-field {
  margin-bottom: 24px;
  border: 0;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-project-approver {
  position: relative;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-project-approver--sharing {
  display: flex;
  gap: 16px;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-project-label-2 {
  color: var(--bh-black);
}
.bh-dialog.bh-dialog-share-project .bh-project-share-search-input {
  border-radius: 4px;
  font-family: var(--bh-secondary-font-face);
  font-size: 19px;
  font-style: normal;
  font-weight: 400;
  line-height: 23px;
  letter-spacing: 0.218px;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-search-loader {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin: 8px 16px;
  border-width: 3px;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-search-results {
  position: absolute;
  top: 48px;
  left: 0;
  border-radius: 4px;
  width: 414px;
  max-width: 100%;
  padding: 8px 0;
  background-color: var(--bh-white);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.13);
  z-index: 999;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-search-no-results {
  color: var(--bh-black);
  margin: 0 16px;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-search-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-search-button {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 0;
  padding: 12px 0 0 24px;
  background-color: transparent;
  width: 100%;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-search-button:hover {
  background-color: var(--bh-accent-11);
}
.bh-dialog.bh-dialog-share-project .bh-project-share-search-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: cover;
  border-radius: 50%;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-search-copy {
  border-bottom: 1px solid var(--bh-black-08);
  padding: 0 24px 11px 0;
  text-align: left;
  flex-grow: 1;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-search-name {
  margin-bottom: 3px;
  color: var(--bh-black);
  display: block;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-search-title {
  color: var(--bh-black-03);
  text-transform: uppercase;
  line-height: 17px;
  display: block;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-search-email {
  word-break: break-all;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-search-flex {
  padding: 12px 0;
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-search-flex--share-search {
  width: auto;
  gap: 8px;
  max-width: calc(100% - 92px);
  flex-wrap: wrap;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-search-chosen {
  border-radius: 3px;
  border: 1px solid var(--bh-black-06);
  background-color: var(--bh-black-11);
  color: var(--bh-black-03);
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 3px 3px 8px;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-search-remove {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  padding: 0;
  border: 0;
  background: transparent;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-search-remove svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}
.bh-dialog.bh-dialog-share-project .bh-project-share-responsibility {
  border-radius: 4px;
  padding: 10px;
  background-color: var(--bh-black-10);
}
.bh-dialog.bh-dialog-share-project .mat-mdc-table {
  margin-bottom: 24px;
  background-color: var(--bh-white);
  min-height: 80px;
}
.bh-dialog.bh-dialog-agents .mat-mdc-dialog-container .mat-mdc-dialog-content {
  padding: 34px;
}
@media (width <= 640px) {
  .bh-dialog.bh-dialog-agents .mat-mdc-dialog-container .mat-mdc-dialog-content {
    padding: 16px;
  }
}
.bh-dialog.bh-dialog-agents .bh-dialog-agents-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.bh-dialog.bh-dialog-agents .bh-dialog-agents-close-button {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0;
  padding: 0;
  background-color: transparent;
}
.bh-dialog.bh-dialog-agents .bh-dialog-agents-close-button svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
.bh-dialog.bh-dialog-agents .bh-dialog-agents-name {
  color: var(--bh-black);
  margin-bottom: 9px;
}
.bh-dialog.bh-dialog-agents .bh-dialog-agents-description {
  color: var(--bh-black);
  margin-bottom: 16px;
}
.bh-dialog.bh-dialog-agents .bh-dialog-agents-partial-width {
  width: 780px;
  max-width: 100%;
}
.bh-dialog.bh-dialog-agents .bh-dialog-agents-flex-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
}
.bh-dialog.bh-dialog-agents .bh-subtitle-1 {
  color: var(--bh-black);
  margin-bottom: 8px;
}
.bh-dialog.bh-dialog-agents .bh-body-2-main {
  color: var(--bh-black);
  margin-bottom: 24px;
}
.bh-dialog.bh-dialog-agents .bh-dialog-agents-list {
  padding-left: 8px;
  list-style: none;
}
.bh-dialog.bh-dialog-agents .bh-dialog-agents-flex-groups {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.bh-dialog.bh-dialog-agents .bh-dialog-agents-flex-group {
  width: calc(50% - 8px);
}
@media (width <= 800px) {
  .bh-dialog.bh-dialog-agents .bh-dialog-agents-flex-group {
    width: 100%;
  }
}
.bh-dialog.bh-dialog-agents .bh-dialog-agents-flex-chips {
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 0;
}
.bh-dialog.bh-dialog-agents .bh-chip {
  margin: 0;
}
.bh-dialog.bh-dialog-agents .bh-dialog-agents-hr {
  width: 100%;
  height: 1px;
  background-color: var(--bh-black-08);
  border: 0;
  margin: 12px 0 36px;
}
.bh-dialog.bh-dialog-agents .bh-dialog-agents-footer {
  color: var(--bh-black-03);
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
@media (width <= 640px) {
  .bh-dialog.bh-dialog-agents .bh-dialog-agents-footer {
    flex-direction: column;
  }
}
.bh-dialog.bh-dialog-agents .bh-dialog-agents-footer a {
  text-decoration: underline;
}
.one-drive-picker-modal .mat-mdc-dialog-surface {
  border-radius: 4px;
}
.banner-prompts-filters--modal .mat-mdc-form-field:not(.mat-form-field-disabled) .mat-mdc-floating-label.mdc-floating-label {
  margin-top: -12px;
}
.bh-prompt-library-content-filter-flex.banner-prompts-filters .mat-mdc-form-field {
  width: 175px;
  height: 34px;
}
.bh-prompt-library-content-filter-flex.banner-prompts-filters .mat-mdc-text-field-wrapper {
  border-radius: 16px;
}
.bh-prompt-library-content-filter-flex.banner-prompts-filters .mat-mdc-form-field-subscript-wrapper,
.bh-prompt-library-content-filter-flex.banner-prompts-filters .mat-mdc-form-field-focus-overlay {
  display: none !important;
}
.bh-prompt-library-content-filter-flex.banner-prompts-filters .mat-mdc-form-field:not(.mat-form-field-disabled) .mat-mdc-floating-label.mdc-floating-label {
  font-family: var(--bh-secondary-font-face);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.245px;
  color: var(--bh-black);
  margin-top: -10px;
}
.bh-prompt-library-content-filter-flex.banner-prompts-filters .mat-mdc-form-field-infix {
  padding: 0;
  min-height: 32px;
}
.bh-prompt-library-content-filter-flex.banner-prompts-filters .mat-mdc-text-field-wrapper {
  border-radius: 16px;
}
.bh-prompt-library-content-filter-flex.banner-prompts-filters .mat-form-field-appearance-fill .mat-mdc-select-arrow-wrapper {
  transform: translateY(0);
}
.bh-prompt-library-content-filter-flex.banner-prompts-filters.banner-prompts-filters--modal .mat-form-field-appearance-fill .mat-mdc-select-arrow-wrapper {
  transform: translateY(-1px);
}
.bh-prompt-library-content-filter-flex.banner-prompts-filters .mat-mdc-select-min-line {
  display: none;
}
.bh-prompt-library-content-filter-flex.banner-prompts-filters .mdc-text-field--filled .mdc-floating-label--float-above {
  transform: translateY(-9px);
}
.banner-prompts-filters-div {
  padding: 16px 16px 8px;
  border-top: 1px solid var(--bh-black-07);
}
.banner-prompts-filters-div-button {
  width: 100%;
}
.cdk-overlay-pane.mat-mdc-dialog-panel.bh-dialog-alert {
  width: 894px;
  max-width: 100%;
}
.cdk-overlay-pane.mat-mdc-dialog-panel.bh-dialog-alert.bh-dialog-alert-2 {
  width: 550px;
  max-width: 100%;
}
.cdk-overlay-pane.mat-mdc-dialog-panel.bh-dialog-alert.bh-dialog-alert-2 markdown p {
  font-family: var(--bh-secondary-font-face);
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.25px;
  margin-bottom: 0;
}
.page-chat .bh-dialog-alert {
  margin-top: 75px !important;
}
@media (width <= 640px) {
  .page-chat .bh-dialog-alert {
    margin-top: 45px !important;
  }
}
@media (width <= 640px) {
  .page-landing .bh-dialog-alert {
    margin-top: 45px !important;
  }
}
.bh-dialog-alert {
  background-color: transparent;
}
.bh-dialog-alert .mat-mdc-dialog-inner-container {
  width: 894px;
  max-width: 100%;
  background-color: transparent;
  border-radius: 4px;
}
.bh-dialog-alert.bh-dialog-alert-2 .mat-mdc-dialog-inner-container {
  width: 550px;
}
.bh-dialog-alert.bh-dialog-alert-2 .bh-notification-active-alert-copy {
  gap: 5px;
}
.bh-dialog-alert .mat-mdc-dialog-surface {
  border-radius: 0;
  padding: 0;
  background-color: transparent;
}
.bh-dialog-alert .mat-mdc-dialog-container {
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.13);
  width: calc(100% - 32px);
  margin-left: 16px;
  background-color: transparent;
  border-radius: 4px;
}
.bh-dialog-alert .bh-notification-active-alert {
  box-shadow: none;
  position: relative;
  top: 0;
}
.bh-dialog-alert .bh-notification-active-alert-icon-box {
  background-color: var(--bh-error);
}
.bh-dialog-alert .bh-notification-active-alert-icon-box--info {
  background-color: var(--bh-alert);
}
.bh-dialog-alert .bh-notification-active-alert-icon-box--info svg {
  transform: rotate(180deg);
}
.bh-dialog-alert .bh-notification-active-alert-icon-box--confirmation {
  background-color: var(--bh-success);
}
.bh-dialog-alert .bh-notification-active-alert-close {
  position: absolute;
  top: 0;
  right: 0;
}
.bh-dialog-alert .bh-notification-active-alert-close:focus-visible {
  outline: 2px solid var(--bh-accent-03);
  outline-offset: -3px;
}
.bh-dialog-alert .bh-notification-active-alert .bh-notification-active-alert-copy {
  display: flex;
  flex-wrap: wrap;
  padding: 15px 32px 15px 12px;
}
.bh-dialog-alert .mat-mdc-dialog-container .mat-mdc-dialog-content {
  background-color: transparent;
  padding: 0;
}
.bh-dialog .mat-mdc-dialog-inner-container {
  width: 1200px;
  max-width: 100%;
}
.bh-dialog-session .mat-mdc-dialog-inner-container {
  width: 560px;
  max-width: 100%;
}
.cdk-overlay-pane.mat-mdc-dialog-panel.bh-dialog-terms {
  max-width: 800px;
}
.bh-dialog-terms .mat-mdc-dialog-content {
  max-height: 75vh;
  text-align: center;
}
.bh-dialog-terms .mat-mdc-dialog-inner-container {
  width: 800px;
  max-width: 100%;
}
.bh-dialog-terms .mat-mdc-dialog-surface {
  border-radius: 4px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.13);
  padding: 40px;
}
@media (width < 640px) {
  .bh-dialog-terms .mat-mdc-dialog-surface {
    padding: 24px;
  }
}
.bh-dialog-terms .mat-mdc-dialog-actions {
  padding: 10px 0 0;
  display: flex;
  flex-direction: column;
}
.cdk-overlay-pane.mat-mdc-dialog-panel.bh-dialog-files {
  max-width: 1200px;
}
.mat-mdc-tooltip-surface {
  font-family: var(--bh-secondary-font-face) !important;
  font-size: 14px !important;
}
.bh-dialog-prompts .mat-mdc-dialog-container-with-actions .mat-mdc-dialog-content {
  padding: 0;
}
.bh-dialog-prompts .mat-mdc-dialog-inner-container {
  width: 1200px;
  max-width: 100%;
}
.bh-dialog-prompts .mat-mdc-dialog-actions {
  padding: 0;
}
.bh-dialog-prompts .mat-mdc-dialog-surface {
  border-radius: 4px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.13);
  padding: 32px 32px 24px;
  background-color: var(--bh-white);
}
@media (width < 640px) {
  .bh-dialog-prompts .mat-mdc-dialog-surface {
    padding: 24px;
  }
}
.bh-dialog-prompts .mat-mdc-dialog-surface .mat-mdc-dialog-component-host {
  position: relative;
}
.bh-dialog-files .bh-notification-active-alert.open {
  margin-bottom: 24px;
  box-shadow: none;
  display: flex;
  justify-content: center;
}
.bh-dialog-files .bh-notification-active-alert.open.active-tour {
  display: none !important;
}
.bh-dialog-files .bh-notification-active-alert.open .bh-notification-active-alert-inner {
  border: 1px solid var(--bh-black-07);
  border-radius: 4px;
  display: flex;
  justify-content: center;
}
.bh-dialog-files .bh-notification-active-alert.open .bh-notification-active-alert-icon-box {
  background-color: var(--bh-error);
}
.bh-dialog-files .bh-notification-active-alert.open .bh-notification-active-alert-icon-box--info {
  background-color: var(--bh-alert);
}
.bh-dialog-files .bh-notification-active-alert.open .bh-notification-active-alert-icon-box--info svg {
  transform: rotate(180deg);
}
.bh-dialog-files .bh-notification-active-alert.open .bh-notification-active-alert-copy {
  color: var(--bh-black);
  flex-grow: 1;
}
.bh-dialog-files .bh-notification-active-alert.open .bh-notification-active-alert-close {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  flex: 0 0 40px;
}
.bh-dialog-files .mat-mdc-dialog-container-with-actions .mat-mdc-dialog-content {
  padding: 0;
}
@media (height < 800px) {
  .bh-dialog-files .mat-mdc-dialog-container-with-actions .mat-mdc-dialog-content {
    max-height: 55vh;
  }
}
@media (height < 600px) {
  .bh-dialog-files .mat-mdc-dialog-container-with-actions .mat-mdc-dialog-content {
    max-height: 45vh;
  }
}
@media (height < 500px) {
  .bh-dialog-files .mat-mdc-paginator {
    margin: 0 0 -10px;
  }
}
.bh-dialog-files .mat-mdc-dialog-inner-container {
  width: 1200px;
  max-width: 100%;
}
.bh-dialog-files .mat-mdc-dialog-actions {
  padding: 0;
}
.bh-dialog-files .mat-mdc-dialog-surface {
  border-radius: 4px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.13);
  padding: 32px 32px 24px;
  background-color: var(--bh-white);
}
@media (width < 640px) {
  .bh-dialog-files .mat-mdc-dialog-surface {
    padding: 24px;
  }
}
.bh-dialog-files .mat-mdc-dialog-surface .mat-mdc-dialog-component-host {
  position: relative;
}
.bh-dialog-files .mat-mdc-table {
  width: 100%;
}
.bh-dialog-files .mat-mdc-table .mat-mdc-header-cell,
.bh-dialog-files .mat-mdc-table .mat-mdc-cell {
  font-family: var(--bh-secondary-font-face);
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.25px;
  border: 0;
  padding: 10px 16px 10px 0;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-header-row {
  background-color: var(--bh-white);
  height: 44px;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-header-row .mat-mdc-header-cell {
  border-top: 1px solid var(--bh-black-08);
  border-bottom: 1px solid var(--bh-black-08);
  font-weight: bold;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-header-row .mat-mdc-header-cell.cdk-program-focused .mat-sort-header-container {
  border: 0 !important;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-header-row .mat-mdc-header-cell:first-child {
  border-left: 1px solid var(--bh-black-08);
  border-radius: 4px 0 0 0;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-header-row .mat-mdc-header-cell:last-child {
  border-right: 1px solid var(--bh-black-08);
  border-radius: 0 4px 0 0;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-header-row .mat-mdc-header-cell .mat-sort-header-arrow {
  position: relative;
  transform: translateY(0%) !important;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-header-row .mat-mdc-header-cell .mat-sort-header-arrow:hover {
  transform: translateY(0%) !important;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-header-row .mat-mdc-header-cell .mat-sort-header-stem {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M5.99995 8.6667C5.81106 8.6667 5.65273 8.60281 5.52495 8.47503C5.39717 8.34726 5.33328 8.18892 5.33328 8.00003V3.88337L4.08328 5.13337C3.96106 5.25559 3.80828 5.3167 3.62495 5.3167C3.44162 5.3167 3.28328 5.25559 3.14995 5.13337C3.01662 5.00003 2.94995 4.8417 2.94995 4.65837C2.94995 4.47503 3.01662 4.3167 3.14995 4.18337L5.53328 1.80003C5.59995 1.73337 5.67217 1.68614 5.74995 1.65837C5.82773 1.63059 5.91106 1.6167 5.99995 1.6167C6.08884 1.6167 6.17217 1.63059 6.24995 1.65837C6.32773 1.68614 6.39995 1.73337 6.46662 1.80003L8.86662 4.20003C8.99995 4.33337 9.06384 4.48892 9.05828 4.6667C9.05273 4.84448 8.98328 5.00003 8.84995 5.13337C8.71662 5.25559 8.56106 5.31948 8.38329 5.32503C8.20551 5.33059 8.04995 5.2667 7.91662 5.13337L6.66662 3.88337V8.00003C6.66662 8.18892 6.60273 8.34726 6.47495 8.47503C6.34717 8.60281 6.18884 8.6667 5.99995 8.6667ZM9.99995 14.3834C9.91106 14.3834 9.82773 14.3695 9.74995 14.3417C9.67217 14.3139 9.59995 14.2667 9.53328 14.2L7.13328 11.8C6.99995 11.6667 6.93606 11.5111 6.94162 11.3334C6.94717 11.1556 7.01662 11 7.14995 10.8667C7.28328 10.7445 7.43884 10.6806 7.61662 10.675C7.7944 10.6695 7.94995 10.7334 8.08328 10.8667L9.33328 12.1167V8.00003C9.33328 7.81114 9.39717 7.65281 9.52495 7.52503C9.65273 7.39725 9.81106 7.33337 9.99995 7.33337C10.1888 7.33337 10.3472 7.39725 10.475 7.52503C10.6027 7.65281 10.6666 7.81114 10.6666 8.00003V12.1167L11.9166 10.8667C12.0388 10.7445 12.1916 10.6834 12.375 10.6834C12.5583 10.6834 12.7166 10.7445 12.85 10.8667C12.9833 11 13.05 11.1584 13.05 11.3417C13.05 11.525 12.9833 11.6834 12.85 11.8167L10.4666 14.2C10.4 14.2667 10.3277 14.3139 10.25 14.3417C10.1722 14.3695 10.0888 14.3834 9.99995 14.3834Z" fill="%23303235"/></svg>');
  width: 18px;
  height: 18px;
  position: absolute;
  top: -2px;
  left: 0;
  background-color: var(--bh-white);
}
.bh-dialog-files .mat-mdc-table .bh-files-table-header-row .mat-mdc-header-cell .mat-sort-header-indicator {
  display: none;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-body-row {
  height: 44px;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-body-row:nth-child(odd) {
  background-color: var(--bh-black-11);
}
.bh-dialog-files .mat-mdc-table .bh-files-table-body-row:nth-child(even) {
  background-color: var(--bh-white);
}
.bh-dialog-files .mat-mdc-table .bh-files-table-body-row .mat-mdc-cell {
  border-bottom: 1px solid var(--bh-black-08);
}
.bh-dialog-files .mat-mdc-table .bh-files-table-body-row .mat-mdc-cell .bh-files-icon-block {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-body-row .mat-mdc-cell .bh-files-icon-pdf {
  width: 16px;
  height: 18px;
  flex: 0 0 16px;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-body-row .mat-mdc-cell .bh-files-icon-docx,
.bh-dialog-files .mat-mdc-table .bh-files-table-body-row .mat-mdc-cell .bh-files-icon-xlsx {
  width: 18px;
  height: auto;
  flex: 0 0 18px;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-body-row .mat-mdc-cell .bh-files-icon-csv {
  width: 22px;
  height: auto;
  flex: 0 0 22px;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-body-row .mat-mdc-cell .bh-files-icon-txt {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-body-row .mat-mdc-cell .bh-files-title {
  cursor: pointer;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-body-row .mat-mdc-cell .bh-progress-indicator-circular {
  margin: 0;
  border-width: 2px;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-checked {
  min-width: 44px;
  width: 44px;
  max-width: 44px;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-checked--hidden {
  min-width: 4px;
  width: 4px;
  max-width: 4px;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-checked.mat-mdc-cell {
  padding-right: 8px;
  padding-left: 3px;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-checked .bh-checkbox-group {
  display: flex;
  justify-content: center;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-checked .bh-checkbox-group-flex {
  margin: 0;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-name-span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-date {
  min-width: 100px;
  width: 100px;
  max-width: 100px;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-size {
  min-width: 100px;
  width: 100px;
  max-width: 100px;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-status {
  min-width: 140px;
  width: 140px;
  max-width: 140px;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-status-span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.bh-dialog-files .mat-mdc-table .bh-files-table-status svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}
.bh-dialog-files .bh-side-by-side-buttons {
  width: 100%;
  justify-content: flex-end;
}
.bh-dialog-files .bh-dialog-files-tour {
  margin-right: auto;
}
@media (width <= 1000px) {
  .bh-dialog-files .bh-dialog-files-tour {
    display: none;
  }
}
.bh-dialog-files .mat-sort-header-arrow {
  opacity: 1 !important;
}
.bh-dialog-files .delete-message-intro {
  display: block;
  margin-bottom: 8px;
}
.bh-dialog-files .delete-message-list {
  display: block;
  margin-bottom: 8px;
  padding-left: 8px;
}
.bh-dialog-files .delete-message-more {
  margin-bottom: 12px;
}
.bh-dialog-files .delete-message-flex-buttons {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}
.bh-dialog-files .bh-notification-active-alert--reupload {
  position: relative;
  min-height: 145px;
}
.bh-dialog-files .bh-notification-active-alert-inner--reupload {
  width: 560px;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
  background-color: var(--bh-white);
}
.bh-dialog-files .bh-notification-active-alert-inner--limits {
  width: 560px;
  max-width: 100%;
}
.bh-dialog-files .bh-notification-active-alert.open .bh-notification-active-alert-close.delete-message-delete,
.bh-dialog-files .bh-notification-active-alert.open .bh-notification-active-alert-close.delete-message-cancel {
  width: auto;
  height: auto;
  flex: 0 0 auto;
  align-items: flex-start;
  align-self: flex-end;
  padding: 0;
  display: inline-flex;
}
.bh-dialog-files .bh-notification-active-alert.open .bh-notification-active-alert-close.delete-message-delete.no-files,
.bh-dialog-files .bh-notification-active-alert.open .bh-notification-active-alert-close.delete-message-cancel.no-files {
  padding: 16px;
}
.bh-dialog-files .bh-files-paginator-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.bh-dialog-files .bh-files-paginator-copy {
  color: var(--bh-black);
}
.bh-dialog-files .bh-files-quick-delete {
  border: 0;
  padding: 0;
  background-color: transparent;
  color: var(--bh-black-03);
  display: flex;
  align-items: center;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  margin-left: 5px;
}
.bh-dialog-files .bh-files-quick-delete .mat-icon {
  font-size: 21px;
  display: flex;
  align-items: center;
}
.bh-dialog-files .checkbox-hidden {
  opacity: 0;
}
.bh-dialog-files .bh-side-by-side-buttons .bh-dialog-files-uploads {
  display: flex;
}
.bh-dialog-files .bh-side-by-side-buttons .bh-dialog-files-uploads button.bh-dialog-files-uploads-local {
  padding-right: 8px;
}
.bh-dialog-files .bh-side-by-side-buttons .bh-dialog-files-uploads button.bh-dialog-files-uploads-menu-trigger {
  border-radius: 0 4px 4px 0;
  margin-left: 0;
  padding: 0 7px;
}
.cdk-overlay-pane.mat-mdc-dialog-panel.bh-dialog-prompt {
  max-width: 100%;
}
.bh-dialog.bh-dialog-prompt .mat-mdc-dialog-inner-container {
  width: 100%;
  max-width: 100%;
}
.bh-dialog.bh-dialog-prompt .mat-mdc-dialog-surface {
  padding: 0;
}
.bh-dialog.bh-help-center-vimeo .mat-mdc-dialog-inner-container {
  width: 900px;
  max-width: 100%;
}
.cdk-global-overlay-wrapper:has(.bh-dialog-large.bh-dialog-one-drive) {
  z-index: 9999;
}
.bh-dialog-large.bh-dialog-one-drive {
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.13);
}
.bh-dialog-large.bh-dialog-one-drive .mat-mdc-dialog-inner-container {
  width: 380px;
  max-width: 100%;
}
.bh-dialog-large.bh-dialog-one-drive .mat-mdc-dialog-surface {
  padding: 24px;
}
.bh-dialog-large.bh-dialog-one-drive .confirmation-flex {
  display: flex;
  gap: 24px;
  align-items: center;
}
.bh-dialog-large.bh-dialog-one-drive .confirmation-flex .bh-progress-indicator {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  margin: 0;
}
.bh-dialog-large.bh-dialog-one-drive .confirmation-flex .bh-body-1-main {
  color: var(--bh-black);
  margin-bottom: 0;
}
.mat-mdc-paginator {
  background-color: transparent !important;
  margin: 20px 0 10px;
}
.mat-mdc-paginator .mat-mdc-paginator-container {
  padding: 0;
}
.mat-mdc-paginator .mat-mdc-paginator-range-label,
.mat-mdc-paginator .mat-mdc-paginator-page-size-label {
  font-family: var(--bh-secondary-font-face);
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0.25px;
}
.mat-mdc-paginator .mat-mdc-select-value-text {
  font-family: var(--bh-secondary-font-face);
  font-size: 15px;
}
.mat-mdc-paginator .mat-mdc-paginator-navigation-previous,
.mat-mdc-paginator .mat-mdc-paginator-navigation-next {
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  min-width: 48px;
  height: 40px;
  color: var(--bh-black-03);
  background-color: var(--bh-white);
  font-family: var(--bh-secondary-font-face);
  font-size: 15px;
  line-height: 26px;
  font-weight: 500;
  letter-spacing: 0.47px;
  text-align: center;
  border: 1px solid var(--bh-black-07);
  border-right: 0;
  border-radius: 4px 0 0 4px;
}
.mat-mdc-paginator .mat-mdc-paginator-navigation-previous:focus,
.mat-mdc-paginator .mat-mdc-paginator-navigation-next:focus {
  border: 1px solid var(--bh-accent-03);
  box-shadow: inset 0 0 0 1px var(--bh-accent-03);
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
  color: var(--bh-accent-03);
}
.mat-mdc-paginator .mat-mdc-paginator-navigation-previous.mat-mdc-icon-button .mat-mdc-button-persistent-ripple,
.mat-mdc-paginator .mat-mdc-paginator-navigation-next.mat-mdc-icon-button .mat-mdc-button-persistent-ripple {
  border-radius: initial;
  display: none;
}
.mat-mdc-paginator .mat-mdc-paginator-navigation-previous.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before,
.mat-mdc-paginator .mat-mdc-paginator-navigation-next.mat-mdc-icon-button .mat-mdc-button-persistent-ripple::before {
  display: none;
}
.mat-mdc-paginator .mat-mdc-paginator-navigation-previous .mat-mdc-focus-indicator,
.mat-mdc-paginator .mat-mdc-paginator-navigation-previous .mat-mdc-button-touch-target,
.mat-mdc-paginator .mat-mdc-paginator-navigation-previous .mat-ripple.mat-mdc-button-ripple,
.mat-mdc-paginator .mat-mdc-paginator-navigation-next .mat-mdc-focus-indicator,
.mat-mdc-paginator .mat-mdc-paginator-navigation-next .mat-mdc-button-touch-target,
.mat-mdc-paginator .mat-mdc-paginator-navigation-next .mat-ripple.mat-mdc-button-ripple {
  display: none !important;
}
.mat-mdc-paginator .mat-mdc-paginator-navigation-previous:hover,
.mat-mdc-paginator .mat-mdc-paginator-navigation-next:hover {
  background-color: var(--bh-black-10);
}
.mat-mdc-paginator .mat-mdc-paginator-navigation-next {
  border-radius: 0 4px 4px 0;
  border: 1px solid var(--bh-black-07);
}
.mat-mdc-menu-panel.bh-menu {
  border-radius: 4px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.13);
  min-width: 100px;
}
.mat-mdc-menu-panel.bh-menu .mat-mdc-menu-content {
  padding: 18px;
  background-color: var(--bh-white);
}
.mat-mdc-menu-panel.bh-menu .bh-sidebar-list-menu {
  padding: 0;
  list-style: none;
  margin: 0;
}
.mat-mdc-menu-panel.bh-menu .bh-sidebar-list-menu-item {
  margin-bottom: 16px;
}
.mat-mdc-menu-panel.bh-menu .bh-sidebar-list-menu-item:last-child {
  margin-bottom: 0;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--model-settings {
  width: 340px;
  max-width: 340px !important;
  margin-bottom: 12px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--model-settings .mat-mdc-select-value {
  width: auto;
  font-size: 17px;
  line-height: 21px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--model-settings .mat-mdc-select-min-line {
  font-family: var(--bh-secondary-font-face);
}
.mat-mdc-menu-panel.bh-menu.bh-menu--model-settings .mat-mdc-select-trigger {
  justify-content: space-between;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--model-settings .mat-mdc-select-arrow-wrapper {
  margin-top: 1px;
  margin-left: 0;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--model-settings .mdc-slider__thumb-knob {
  background-color: var(--bh-white);
  border: 1px solid var(--bh-black-8);
  width: 25px;
  height: 25px;
  box-shadow:
    0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 2px 1px -1px rgba(0, 0, 0, 0.12),
    0 0 3px 0 rgba(0, 0, 0, 0.2);
}
.mat-mdc-menu-panel.bh-menu.bh-menu--model-settings .mdc-slider__track .mdc-slider__track--inactive {
  background-color: rgba(123, 127, 132, 0.9);
}
.mat-mdc-menu-panel.bh-menu.bh-menu--model-settings .mdc-slider__track .mdc-slider__track--active_fill {
  border-color: rgba(11, 142, 198, 0.95);
}
.mat-mdc-menu-panel.bh-menu.bh-menu--model-settings .mdc-slider__track .mat-mdc-slider .mdc-slider__tick-marks {
  margin-top: 3px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--model-settings .mdc-slider__thumb.mat-mdc-slider-visual-thumb.mdc-slider__thumb--with-indicator .mat-mdc-focus-indicator {
  display: none;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--model-settings .mdc-slider__thumb.mat-mdc-slider-visual-thumb.mdc-slider__thumb--with-indicator .mdc-slider__thumb-knob {
  position: relative;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--model-settings .mdc-slider__thumb.mat-mdc-slider-visual-thumb.mdc-slider__thumb--with-indicator .mdc-slider__thumb-knob::after {
  content: "";
  width: 25px;
  height: 25px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.08);
}
.mat-mdc-menu-panel.bh-menu.bh-menu--files-attached,
.mat-mdc-menu-panel.bh-menu .bh-menu--agents {
  min-width: 200px;
  width: auto;
  max-width: 520px;
  margin-bottom: 4px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--files-attached .mat-mdc-menu-content,
.mat-mdc-menu-panel.bh-menu .bh-menu--agents .mat-mdc-menu-content {
  border: 1px solid var(--bh-black-07);
  border-radius: 4px;
  padding: 16px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders {
  width: 400px;
  max-width: 100%;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .folder-structure-flex {
  display: flex;
  justify-content: space-between;
  padding: 12px 16px 0;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .folder-structure-success {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--bh-black);
  padding: 4px 16px 8px;
  font-weight: 400;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .folder-structure-success svg {
  display: inline-flex;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .folder-structure-new {
  padding: 4px 8px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .folder-structure-new.bh-primary-button--small.bh-primary-button--icon-l svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .bh-text-input-field {
  padding: 4px 4px 4px 16px;
  font-weight: 400;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .bh-text-input-field--new-folder .file-label-flex {
  padding-left: 28px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .bh-text-input-field--new-folder img {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .bh-text-input-field--new-folder .bh-text-input-error {
  margin: 4px 0 0 68px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .bh-text-input-field--new-folder .new-folder-buttons {
  margin: 8px 0 0 68px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .bh-text-input-field--new-subfolder .file-label-flex {
  padding-left: 44px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .bh-text-input-field--new-subfolder .bh-text-input-error {
  margin: 4px 0 0 72px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .bh-text-input-field--new-subfolder .new-folder-buttons {
  margin: 8px 0 0 72px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .bh-text-input-save,
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .bh-text-input-cancel {
  margin: 0;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .bh-text-input-error {
  display: flex;
  margin-left: 32px;
  color: var(--bh-error);
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .mat-mdc-menu-content {
  padding: 0;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .bh-text-input-field-helper {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .folder-list-radio-group {
  padding: 0 16px 16px;
  max-height: 300px;
  overflow: auto;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .folder-list-title {
  color: var(--bh-black);
  margin-bottom: 12px;
  padding: 0;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .folder-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .folder-list.folder-list-1 {
  padding-left: 16px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .folder-list.folder-list-1.folder-list-banner-prompts {
  margin-left: -16px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .folder-list.subfolder-list {
  padding-left: 32px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .folder-select {
  width: 100%;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .file-label-flex {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .file-folder-icon {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .folder-name {
  height: 48px;
  padding: 0;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .folder-name-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--existing-folders .select-button-container {
  border-top: 1px solid var(--bh-black-07);
  padding: 16px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--bordered {
  border: 1px solid var(--bh-black-07);
}
.mat-mdc-menu-panel.bh-menu.bh-menu--bordered .mat-mdc-menu-content {
  padding: 0;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--bordered .bh-bordered-list-menu {
  padding: 8px 4px;
  list-style: none;
  margin: 0;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--bordered .bh-bordered-list-menu-item {
  margin: 0;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--bordered .bh-bordered-list-menu-item:last-child {
  margin-bottom: 0;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--bordered .bh-bordered-list-menu-item--bordered {
  border-top: 1px solid var(--bh-black-07);
  border-bottom: 1px solid var(--bh-black-07);
}
.mat-mdc-menu-panel.bh-menu.bh-menu--bordered .bh-bordered-list-menu-button {
  font-weight: 400;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.49px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--bordered .bh-bordered-list-menu-button svg {
  width: 24px;
  flex: 0 0 24px;
  vertical-align: middle;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--bordered .bh-bordered-list-menu-button svg path {
  fill: var(--bh-accent);
}
.mat-mdc-menu-panel.bh-menu.bh-menu--bordered .bh-bordered-list-menu-button:hover,
.mat-mdc-menu-panel.bh-menu.bh-menu--bordered .bh-bordered-list-menu-button:focus-visible,
.mat-mdc-menu-panel.bh-menu.bh-menu--bordered .bh-bordered-list-menu-button:active {
  text-decoration: none;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--bordered .bh-bordered-list-menu-button:hover svg path,
.mat-mdc-menu-panel.bh-menu.bh-menu--bordered .bh-bordered-list-menu-button:focus-visible svg path,
.mat-mdc-menu-panel.bh-menu.bh-menu--bordered .bh-bordered-list-menu-button:active svg path {
  fill: var(--bh-accent-01);
}
.mat-mdc-menu-panel.bh-menu.bh-menu--bordered .bh-bordered-list-menu-button:disabled {
  color: var(--bh-black-05);
  cursor: not-allowed;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--bordered .bh-bordered-list-menu-button:disabled svg path {
  fill: var(--bh-black-05);
}
.mat-mdc-menu-panel.bh-menu.bh-menu--workspaces {
  min-width: 218px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--project-prompts {
  width: 206px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--assign-tags {
  width: 250px;
  max-width: 100%;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--assign-tags .mat-mdc-menu-content {
  padding: 16px 16px 0;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--assign-tags .mat-mdc-form-field {
  width: 100%;
  font-family: var(--bh-secondary-font-face) !important;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--assign-tags .mat-mdc-select-min-line {
  font-family: var(--bh-secondary-font-face) !important;
  text-transform: capitalize;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--assign-tags .mdc-text-field--filled:not(.mdc-text-field--disabled) {
  background-color: var(--bh-white);
  border: 1px solid var(--bh-black-07) !important;
  border-radius: 4px !important;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--assign-tags .mat-mdc-form-field:not(.mat-form-field-disabled) .mat-mdc-floating-label.mdc-floating-label {
  font-family: var(--bh-secondary-font-face) !important;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--sort-filter {
  --mat-menu-item-label-text-weight: 400;
  min-width: 360px;
  max-width: 100% !important;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--sort-filter .mat-mdc-menu-content {
  padding: 0;
  background-color: var(--bh-white);
}
.mat-mdc-menu-panel.bh-menu.bh-menu--sort-filter .bh-sort-filter-menu-clear[disabled],
.mat-mdc-menu-panel.bh-menu.bh-menu--sort-filter .bh-sort-filter-menu-clear[disabled]:hover,
.mat-mdc-menu-panel.bh-menu.bh-menu--sort-filter .bh-sort-filter-menu-clear[disabled]:active {
  color: var(--bh-black-04);
  text-decoration: none;
  cursor: not-allowed;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--sort-filter .bh-sort-filter-menu-top {
  padding: 16px;
  border-bottom: 1px solid var(--bh-black-08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--sort-filter .bh-sort-filter-menu-scrollable {
  max-height: 400px;
  overflow-y: auto;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--sort-filter .bh-sort-filter-menu-title {
  color: var(--bh-black);
}
.mat-mdc-menu-panel.bh-menu.bh-menu--sort-filter .bh-sort-filter-menu-filter-close {
  border: 0;
  padding: 0;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--sort-filter .bh-sort-filter-menu-filter-close svg {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--sort-filter .bh-sort-filter-menu-filter-close:focus-visible {
  outline: 2px solid var(--bh-accent-03);
}
.mat-mdc-menu-panel.bh-menu.bh-menu--sort-filter .bh-sort-filter-menu-group {
  padding: 13px 16px;
  border-bottom: 1px solid var(--bh-black-08);
}
.mat-mdc-menu-panel.bh-menu.bh-menu--sort-filter .bh-sort-filter-menu-group:last-child {
  border-bottom: 0;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--sort-filter .bh-sort-filter-menu-filter-title {
  color: var(--bh-black);
  margin-bottom: 4px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--sort-filter .bh-sort-filter-menu-bottom {
  border-top: 1px solid var(--bh-black-08);
  padding: 16px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--sort-filter .bh-sort-filter-menu-results {
  width: 100%;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--servicenow {
  width: 280px;
  max-width: 280px;
  margin-bottom: 12px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--servicenow .bh-servicenow-menu-header {
  color: var(--bh-black);
}
.mat-mdc-menu-panel.bh-menu.bh-menu--input-context {
  width: 280px;
  max-width: 280px;
  padding: 8px 0 12px;
  background-color: var(--bh-white);
}
.mat-mdc-menu-panel.bh-menu.bh-menu--input-context .mat-mdc-menu-content {
  padding: 0;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--input-context .bh-context-menu-group {
  padding: 4px 10px 12px 16px;
  border-bottom: 1px solid var(--bh-black-08);
}
.mat-mdc-menu-panel.bh-menu.bh-menu--input-context .bh-context-menu-group:last-child {
  border-bottom: 0;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--input-context .bh-context-menu-group.disabled {
  padding-bottom: 3px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--input-context .bh-toggle-switch {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--input-context .bh-toggle-switch-track-outer {
  width: 42px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--input-context .bh-extended-thinking-switch-label {
  display: flex;
  gap: 10px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--input-context .bh-context-menu-switch-label {
  color: var(--bh-black);
  font-weight: 400;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--input-context .bh-extended-thinking-switch-info {
  margin-top: 4px;
  color: var(--bh-black);
  margin-bottom: 0;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--publish {
  width: 177px;
  max-width: 242px;
  background-color: var(--bh-white);
  margin-top: 2px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--publish .mat-mdc-menu-content {
  padding: 0;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--publish .bh-outlined-1-button {
  width: 100%;
  justify-content: space-between;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--uploads {
  width: 248px;
  max-width: 248px;
  background-color: var(--bh-white);
  margin-top: 8px;
  margin-bottom: 8px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--uploads .mat-mdc-menu-content {
  padding: 16px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--uploads .bh-dialog-files-menu-button {
  padding: 8px 0;
  margin-bottom: 8px;
  border: 0;
  background-color: transparent;
  color: var(--bh-black);
}
.mat-mdc-menu-panel.bh-menu.bh-menu--uploads .bh-dialog-files-menu-button:last-child {
  margin-bottom: 0;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--uploads .bh-dialog-files-menu-button:hover {
  color: var(--bh-black-01);
}
.mat-mdc-menu-panel.bh-menu.bh-menu--voice {
  width: 280px;
  max-width: 280px;
  background-color: var(--bh-white);
  margin-top: 10px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--voice .bh-voice-menu-label {
  color: var(--bh-black);
  margin-bottom: 12px;
  font-weight: bold;
  font-family: var(--bh-secondary-font-face);
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0.49px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--voice .bh-voice-menu-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--voice .bh-radio-group-flex {
  margin-top: 8px;
  margin-bottom: 32px;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--voice .bh-voice-menu-radio-input.bh-radio-group-input:checked:focus ~ .bh-radio-group-button,
.mat-mdc-menu-panel.bh-menu.bh-menu--voice .bh-voice-menu-radio-input.bh-radio-group-input:checked:hover ~ .bh-radio-group-button,
.mat-mdc-menu-panel.bh-menu.bh-menu--voice .bh-voice-menu-radio-input.bh-radio-group-input:checked:active ~ .bh-radio-group-button {
  background-color: transparent;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--voice .bh-voice-menu-radio-input.bh-radio-group-input:checked:focus ~ .bh-radio-group-button .bh-radio-group-dot,
.mat-mdc-menu-panel.bh-menu.bh-menu--voice .bh-voice-menu-radio-input.bh-radio-group-input:checked:hover ~ .bh-radio-group-button .bh-radio-group-dot,
.mat-mdc-menu-panel.bh-menu.bh-menu--voice .bh-voice-menu-radio-input.bh-radio-group-input:checked:active ~ .bh-radio-group-button .bh-radio-group-dot {
  background-color: transparent;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--voice .bh-radio-group-label-copy {
  padding: 0;
  font-weight: 400;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--voice .bh-radio-group-input ~ .bh-radio-group-button,
.mat-mdc-menu-panel.bh-menu.bh-menu--voice .bh-radio-group-input:checked ~ .bh-radio-group-button {
  flex: 0 0 24px;
  border: 0;
  border-radius: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--voice .bh-radio-group-dot {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background-color: transparent;
  border-radius: 50%;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--voice .bh-voice-menu-switch-label {
  color: var(--bh-black);
  font-weight: 400;
}
.mat-mdc-menu-panel.bh-menu.bh-menu--voice .bh-voice-menu-switch-toggle {
  margin-right: -12px;
}
.mat-mdc-menu-panel {
  max-width: 300px !important;
}
.bh-icon-picker {
  height: 48px;
}
.bh-icon-picker .mat-mdc-menu-content {
  padding: 16px 16px 0;
}
.bh-icon-picker .mat-mdc-form-field {
  width: 100%;
  font-family: var(--bh-secondary-font-face) !important;
}
.bh-icon-picker .mat-mdc-select-min-line {
  font-family: var(--bh-secondary-font-face) !important;
  padding-left: 32px;
  text-transform: lowercase;
}
.bh-icon-picker .mdc-text-field--filled:not(.mdc-text-field--disabled) {
  background-color: var(--bh-white);
  border: 1px solid var(--bh-black-07) !important;
  border-radius: 4px !important;
}
.bh-icon-picker .mat-mdc-form-field:not(.mat-form-field-disabled) .mat-mdc-floating-label.mdc-floating-label {
  font-family: var(--bh-secondary-font-face) !important;
  font-size: 19px;
  letter-spacing: 0.22px;
  margin-top: -5px;
}
.bh-icon-picker .mat-mdc-form-field-subscript-wrapper {
  display: none;
}
.bh-icon-picker .mdc-text-field--filled .mdc-floating-label--float-above {
  transform: none;
}
.bh-icon-picker .mat-form-field-appearance-fill .mat-mdc-select-arrow-wrapper {
  margin-top: -10px;
}
.bh-icon-picker .mat-mdc-floating-label {
  transition: none !important;
}
.bh-icon-picker .mdc-floating-label--float-above {
  transition: none !important;
  margin-top: -16px !important;
}
.bh-icon-picker .mdc-text-field--filled .mat-mdc-select-arrow-wrapper {
  margin-top: -8px !important;
}
.bh-icon-picker-panel {
  display: flex;
  flex-wrap: wrap;
}
.bh-icon-picker-panel .mat-icon {
  color: var(--bh-accent);
}
.bh-icon-picker-panel .mat-icon--project {
  color: var(--bh-core);
}
.bh-icon-picker-panel .mat-mdc-option {
  padding: 0 10px;
}
.bh-icon-picker-panel .mat-mdc-option .mat-icon {
  margin-right: 0;
}
.bh-icon-picker-panel .mdc-list-item {
  border: 2px solid transparent;
}
.bh-icon-picker-panel .mdc-list-item--selected {
  border: 2px solid var(--bh-accent-03);
  border-radius: 4px;
}
.bh-icon-picker-panel .mat-pseudo-checkbox {
  display: none;
}
.cdk-overlay-pane div.mat-mdc-select-panel {
  padding: 8px 0 !important;
  max-height: none !important;
}
.cdk-overlay-pane div.mat-mdc-select-panel .mat-pseudo-checkbox-full {
  background-color: var(--bh-white) !important;
  width: 18px;
  height: 18px;
  border: 2px solid var(--bh-black-03) !important;
  border-radius: 3px;
}
.cdk-overlay-pane div.mat-mdc-select-panel .mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked {
  border-color: var(--bh-accent-01) !important;
}
.cdk-overlay-pane div.mat-mdc-select-panel .mat-pseudo-checkbox-full.mat-pseudo-checkbox-checked::after {
  color: var(--bh-accent-01) !important;
}
.cdk-overlay-pane div.mat-mdc-select-panel .mat-mdc-option:focus.mdc-list-item,
.cdk-overlay-pane div.mat-mdc-select-panel .mat-mdc-option.mat-mdc-option-active.mdc-list-item {
  background-color: transparent;
}
.cdk-overlay-pane div.mat-mdc-select-panel .mat-mdc-option.mdc-list-item.banner-prompts-filter-list-option {
  align-items: center;
  text-transform: capitalize;
}
.cdk-overlay-pane div.mat-mdc-select-panel .mat-mdc-option.mdc-list-item.model-option {
  align-items: flex-start;
}
.mat-mdc-form-field-focus-overlay,
.mat-mdc-option .mat-mdc-option-ripple {
  display: none !important;
}
.mdc-line-ripple {
  display: none !important;
}
.cdk-overlay-pane div.mat-mdc-select-panel {
  margin-top: 2px;
  padding: 16px 0;
  background-color: var(--bh-white);
}
.cdk-overlay-pane .mat-mdc-option {
  min-height: initial;
  overflow: initial;
  height: 48px;
}
.cdk-overlay-pane .mat-mdc-option.mdc-list-item {
  align-items: center;
}
.cdk-overlay-pane .mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled):not(.mat-mdc-option-multiple) {
  background-color: transparent;
}
.cdk-overlay-pane .mat-mdc-option .mdc-list-item__primary-text {
  font-family: var(--bh-secondary-font-face);
}
.cdk-overlay-pane .mat-mdc-option:hover:not(.mdc-list-item--disabled) {
  background-color: transparent;
  color: var(--bh-black);
}
.cdk-overlay-pane .mat-pseudo-checkbox-minimal {
  margin-top: 10px;
}
.cdk-overlay-pane .mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--bh-success);
  display: block;
  position: relative;
  top: -3px;
  left: -3px;
}
.cdk-overlay-pane .mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked::after {
  color: var(--bh-success);
  width: 11px;
  height: 4px;
  top: -3px;
  left: -1px;
}
.drag-item {
  background: var(--bh-white);
}
.cdk-drag-preview {
  background-color: var(--bh-white);
  list-style: none;
  box-sizing: border-box;
  border-radius: 4px;
  box-shadow:
    0 5px 5px -3px rgba(0, 0, 0, 0.2),
    0 8px 10px 1px rgba(0, 0, 0, 0.14),
    0 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.cdk-drag-placeholder {
  opacity: 0.5;
  background-color: var(--bh-black-07);
  border-radius: 4px;
}
.cdk-drag-placeholder button {
  opacity: 0;
}
.cdk-drag-placeholder .mat-icon {
  display: none;
}
.cdk-drag-placeholder span {
  color: transparent;
}
.cdk-drag-animating {
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
.drag-list.cdk-drop-list-dragging .drag-item {
  cursor: grabbing;
}
.drag-list.cdk-drop-list-dragging .drag-item:not(.cdk-drag-placeholder) {
  transition: transform 250ms cubic-bezier(0, 0, 0.2, 1);
}
mat-spinner {
  width: 24px !important;
  height: 100%;
}
.cdk-overlay-container {
  z-index: 5000;
}
body ngx-guided-tour .guided-tour-spotlight-overlay {
  box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5), 0 0 1.5rem rgba(0, 0, 0, 0.5);
}
@media (width < 640px) {
  body ngx-guided-tour .tour-step.page-tour-step {
    width: 70%;
  }
}
body ngx-guided-tour .tour-step .tour-block {
  padding: 16px;
  border-radius: 4px;
}
body ngx-guided-tour .tour-step h2.tour-title {
  padding-bottom: 0;
  font-weight: 400;
  font-size: 25px;
  line-height: 27px;
  margin-bottom: 8px;
  color: var(--bh-black);
}
body ngx-guided-tour .tour-step h3.tour-title {
  padding-bottom: 0;
  font-size: 19px;
  line-height: 23px;
  letter-spacing: 0.22px;
  margin-bottom: 6px;
  color: var(--bh-black);
}
body ngx-guided-tour .tour-step .tour-content,
body ngx-guided-tour .tour-step .tour-content p {
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.25px;
  color: var(--bh-black);
  padding-bottom: 16px;
  min-height: 0;
}
body ngx-guided-tour .tour-step .tour-content p {
  padding-bottom: 4px;
}
body ngx-guided-tour .tour-step .tour-content p:last-child {
  margin-bottom: 0;
}
body ngx-guided-tour .tour-step .tour-content h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--bh-black);
}
body ngx-guided-tour .tour-step .tour-content h2 img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}
body ngx-guided-tour .tour-step .tour-buttons {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
body ngx-guided-tour .tour-step .tour-buttons button.skip-button.link-button {
  padding-left: 8px;
  border-left: 1px solid transparent;
  margin-right: auto;
}
body ngx-guided-tour .tour-step .tour-buttons .skip-button.link-button,
body ngx-guided-tour .tour-step .tour-buttons .back-button.link-button {
  font-family: var(--bh-secondary-font-face);
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid transparent;
  background-color: var(--bh-white);
  color: var(--bh-accent);
  letter-spacing: 0.47px;
  transition: background-color 0.2s ease-out;
  text-decoration: none;
  display: inline-block;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  height: 30px;
  padding: 0 8px;
}
body ngx-guided-tour .tour-step .tour-buttons .skip-button.link-button:focus-visible,
body ngx-guided-tour .tour-step .tour-buttons .back-button.link-button:focus-visible {
  border: 1px solid var(--bh-accent-03);
  box-shadow: inset 0 0 0 1px var(--bh-accent-03);
  color: var(--bh-accent-03);
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}
body ngx-guided-tour .tour-step .tour-buttons .skip-button.link-button:focus-visible.bh-text-button--loading,
body ngx-guided-tour .tour-step .tour-buttons .back-button.link-button:focus-visible.bh-text-button--loading {
  color: transparent;
}
body ngx-guided-tour .tour-step .tour-buttons .skip-button.link-button:hover,
body ngx-guided-tour .tour-step .tour-buttons .back-button.link-button:hover {
  text-decoration: none;
  background-color: var(--bh-accent-10);
  color: var(--bh-accent-01);
  border: 1px solid transparent;
}
body ngx-guided-tour .tour-step .tour-buttons .skip-button.link-button:focus-visible:hover,
body ngx-guided-tour .tour-step .tour-buttons .back-button.link-button:focus-visible:hover {
  border: 1px solid var(--bh-accent-03);
}
body ngx-guided-tour .tour-step .tour-buttons .skip-button {
  order: 1;
}
body ngx-guided-tour .tour-step .tour-buttons .back-button {
  order: 2;
}
body ngx-guided-tour .tour-step .tour-buttons .next-button {
  order: 3;
  font-family: var(--bh-secondary-font-face);
  font-size: 15px;
  font-weight: 500;
  border-radius: 4px;
  border: 0;
  background-color: var(--bh-accent);
  color: var(--bh-white);
  letter-spacing: 0.47px;
  transition: background-color 0.2s ease-out;
  text-decoration: none;
  display: inline-block;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  height: 30px;
  padding: 0 8px;
}
body ngx-guided-tour .tour-step .tour-buttons .next-button:focus-visible {
  background-color: var(--bh-accent-03);
  box-shadow: inset 0 0 0 2px var(--bh-accent-03), inset 0 0 0 3px var(--bh-white);
  outline-color: transparent;
  outline-width: 2px;
  outline-style: dotted;
}
body ngx-guided-tour .tour-step .tour-buttons .next-button:hover {
  background-color: var(--bh-accent-01);
  text-decoration: none;
  color: var(--bh-white);
}
.cdk-global-overlay-wrapper {
  overflow: auto !important;
}
.cdk-overlay-container {
  z-index: 1000 !important;
}
.ngx-guided-tour-backdrop {
  z-index: 10000 !important;
}
.ngx-guided-tour-step {
  z-index: 10001 !important;
}
.mat-dialog-container {
  z-index: 9999 !important;
}
.mdc-linear-progress {
  border-radius: 4px !important;
  width: 375px !important;
  max-width: 100% !important;
}
.mdc-linear-progress__bar-inner {
  border-color: var(--bh-black-01) !important;
}
.bh-progress-bar-full .mdc-linear-progress__bar-inner {
  border-color: var(--bh-success) !important;
}
.mdc-linear-progress__buffer-bar {
  background-color: var(--bh-black-08) !important;
}
.mat-mdc-table {
  width: 100%;
  margin-bottom: 30px;
}
.mat-mdc-table .mat-mdc-header-cell,
.mat-mdc-table .mat-mdc-cell {
  font-family: var(--bh-secondary-font-face);
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.25px;
  border: 0;
  padding: 10px 16px 10px 0;
}
.mat-mdc-table .bh-users-table-header-row {
  background-color: var(--bh-white);
  height: 44px;
}
.mat-mdc-table .bh-users-table-header-row .mat-mdc-header-cell {
  border-top: 1px solid var(--bh-black-08);
  border-bottom: 1px solid var(--bh-black-08);
  font-weight: bold;
}
.mat-mdc-table .bh-users-table-header-row .mat-mdc-header-cell.cdk-program-focused .mat-sort-header-container {
  border: 0 !important;
}
.mat-mdc-table .bh-users-table-header-row .mat-mdc-header-cell:first-child {
  border-left: 1px solid var(--bh-black-08);
  border-radius: 4px 0 0 0;
}
.mat-mdc-table .bh-users-table-header-row .mat-mdc-header-cell:last-child {
  border-right: 1px solid var(--bh-black-08);
  border-radius: 0 4px 0 0;
}
.mat-mdc-table .bh-users-table-header-row .mat-mdc-header-cell .mat-sort-header-arrow {
  position: relative;
  transform: translateY(0%) !important;
}
.mat-mdc-table .bh-users-table-header-row .mat-mdc-header-cell .mat-sort-header-arrow:hover {
  transform: translateY(0%) !important;
}
.mat-mdc-table .bh-users-table-header-row .mat-mdc-header-cell .mat-sort-header-stem {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M5.99995 8.6667C5.81106 8.6667 5.65273 8.60281 5.52495 8.47503C5.39717 8.34726 5.33328 8.18892 5.33328 8.00003V3.88337L4.08328 5.13337C3.96106 5.25559 3.80828 5.3167 3.62495 5.3167C3.44162 5.3167 3.28328 5.25559 3.14995 5.13337C3.01662 5.00003 2.94995 4.8417 2.94995 4.65837C2.94995 4.47503 3.01662 4.3167 3.14995 4.18337L5.53328 1.80003C5.59995 1.73337 5.67217 1.68614 5.74995 1.65837C5.82773 1.63059 5.91106 1.6167 5.99995 1.6167C6.08884 1.6167 6.17217 1.63059 6.24995 1.65837C6.32773 1.68614 6.39995 1.73337 6.46662 1.80003L8.86662 4.20003C8.99995 4.33337 9.06384 4.48892 9.05828 4.6667C9.05273 4.84448 8.98328 5.00003 8.84995 5.13337C8.71662 5.25559 8.56106 5.31948 8.38329 5.32503C8.20551 5.33059 8.04995 5.2667 7.91662 5.13337L6.66662 3.88337V8.00003C6.66662 8.18892 6.60273 8.34726 6.47495 8.47503C6.34717 8.60281 6.18884 8.6667 5.99995 8.6667ZM9.99995 14.3834C9.91106 14.3834 9.82773 14.3695 9.74995 14.3417C9.67217 14.3139 9.59995 14.2667 9.53328 14.2L7.13328 11.8C6.99995 11.6667 6.93606 11.5111 6.94162 11.3334C6.94717 11.1556 7.01662 11 7.14995 10.8667C7.28328 10.7445 7.43884 10.6806 7.61662 10.675C7.7944 10.6695 7.94995 10.7334 8.08328 10.8667L9.33328 12.1167V8.00003C9.33328 7.81114 9.39717 7.65281 9.52495 7.52503C9.65273 7.39725 9.81106 7.33337 9.99995 7.33337C10.1888 7.33337 10.3472 7.39725 10.475 7.52503C10.6027 7.65281 10.6666 7.81114 10.6666 8.00003V12.1167L11.9166 10.8667C12.0388 10.7445 12.1916 10.6834 12.375 10.6834C12.5583 10.6834 12.7166 10.7445 12.85 10.8667C12.9833 11 13.05 11.1584 13.05 11.3417C13.05 11.525 12.9833 11.6834 12.85 11.8167L10.4666 14.2C10.4 14.2667 10.3277 14.3139 10.25 14.3417C10.1722 14.3695 10.0888 14.3834 9.99995 14.3834Z" fill="%23303235"/></svg>');
  width: 18px;
  height: 18px;
  position: absolute;
  top: -2px;
  left: 0;
  background-color: var(--bh-white);
}
.mat-mdc-table .bh-users-table-header-row .mat-mdc-header-cell .mat-sort-header-indicator {
  display: none;
}
.mat-mdc-table .bh-users-table-body-row {
  height: 44px;
}
.mat-mdc-table .bh-users-table-body-row:nth-child(odd) {
  background-color: var(--bh-black-11);
}
.mat-mdc-table .bh-users-table-body-row:nth-child(even) {
  background-color: var(--bh-white);
}
.mat-mdc-table .bh-users-table-body-row .mat-mdc-cell {
  border-bottom: 1px solid var(--bh-black-08);
}
.mat-mdc-table .bh-users-table-body-row .mat-mdc-cell .bh-files-icon-block {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.mat-mdc-table .bh-users-table-body-row .mat-mdc-cell .bh-files-icon-pdf {
  width: 16px;
  height: 18px;
  flex: 0 0 16px;
}
.mat-mdc-table .bh-users-table-body-row .mat-mdc-cell .bh-files-icon-docx,
.mat-mdc-table .bh-users-table-body-row .mat-mdc-cell .bh-files-icon-xlsx {
  width: 18px;
  height: auto;
  flex: 0 0 18px;
}
.mat-mdc-table .bh-users-table-body-row .mat-mdc-cell .bh-files-icon-csv {
  width: 22px;
  height: auto;
  flex: 0 0 22px;
}
.mat-mdc-table .bh-users-table-body-row .mat-mdc-cell .bh-files-icon-txt {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
.mat-mdc-table .bh-users-table-body-row .mat-mdc-cell .bh-files-title {
  cursor: pointer;
}
.mat-mdc-table .bh-users-table-body-row .mat-mdc-cell .bh-progress-indicator-circular {
  margin: 0;
  border-width: 2px;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}
.mat-mdc-table .bh-users-table-checked {
  min-width: 44px;
  width: 44px;
  max-width: 44px;
  padding-right: 8px;
  padding-left: 3px;
}
.mat-mdc-table .bh-users-table-checked--hidden {
  min-width: 4px;
  width: 4px;
  max-width: 4px;
}
.mat-mdc-table .bh-users-table-checked .bh-checkbox-group {
  display: flex;
  justify-content: center;
}
.mat-mdc-table .bh-users-table-checked .bh-checkbox-group-flex {
  margin: 0;
}
.mat-mdc-table .bh-users-table-name {
  min-width: calc(50% - 22px);
  width: calc(50% - 22px);
  max-width: calc(50% - 22px);
  color: var(--bh-core);
}
.mat-mdc-table .bh-users-table-name-span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mat-mdc-table .bh-users-table-name .bh-users-table-avatar {
  width: 32px;
  height: 32px;
  margin-right: 20px;
  object-fit: cover;
  border-radius: 50%;
}
.mat-mdc-table .bh-users-table-title {
  min-width: calc(50% - 22px);
  width: calc(50% - 22px);
  max-width: calc(50% - 22px);
}
.mat-mdc-table .bh-users-table-status {
  min-width: 200px;
  width: 200px;
  max-width: 200px;
}
.mat-mdc-table .bh-users-table-status-span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.mat-mdc-table .bh-users-table-status svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin {
  margin-bottom: 44px;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .mat-mdc-header-row .mat-mdc-header-cell:first-child {
  border-left: 1px solid var(--bh-black-08);
  border-right: 1px solid var(--bh-black-08);
  border-radius: 4px 4px 0 0;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .mdc-data-table__content {
  padding: 3px 0;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .mat-mdc-header-cell {
  width: 100%;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-users-table-body-row {
  height: auto;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-users-table-body-row .mat-mdc-cell {
  border-bottom: 0;
  padding: 6px 0 0 !important;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-users-table-body-row:nth-child(odd) {
  background-color: var(--bh-white);
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-heading-flex {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 2.67%;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-heading-flex .bh-project-share-section-name {
  min-width: 38%;
  width: 38%;
  max-width: 38%;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-heading-flex .bh-project-share-section-title {
  min-width: 25%;
  width: 25%;
  max-width: 25%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-heading-flex .bh-project-share-section-access {
  min-width: 18%;
  width: 18%;
  max-width: 18%;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-heading-flex .bh-project-share-section-status {
  min-width: 11%;
  width: 11%;
  max-width: 11%;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-section-name {
  min-width: 100%;
  width: 100%;
  max-width: 100%;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-details {
  border: 1px solid var(--bh-black-09);
  border-radius: 6px;
  padding: 4px 0;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-details.with-files[open] {
  border-color: var(--bh-accent);
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-details.with-files[open] .bh-project-share-section-arrow {
  transform: rotate(90deg);
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-details.with-files .bh-project-share-summary {
  cursor: pointer;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-section-arrow {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 16px;
  cursor: default;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-summary .bh-project-share-section-name-span {
  min-width: 36.5%;
  width: 36.5%;
  max-width: 36.5%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-summary .bh-project-share-section-title {
  min-width: 25%;
  width: 25%;
  max-width: 25%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-summary .bh-project-share-section-access {
  min-width: 18%;
  width: 18%;
  max-width: 18%;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-summary .bh-project-share-section-access .bh-toggle-switch {
  width: 34px;
  flex: 0 0 34px;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-summary .bh-project-share-section-access .bh-toggle-switch-track-outer {
  margin-left: -10px;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-summary .bh-project-share-section-status {
  min-width: 11%;
  width: 11%;
  max-width: 11%;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-file-list {
  border-radius: 6px;
  padding: 24px;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-file-list .bh-project-share-table-padding {
  padding: 7px 24px 24px 24px;
  background-color: var(--bh-black-11);
  border-radius: 6px;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-file-list .mat-mdc-table {
  background-color: var(--bh-black-11);
  border-radius: 6px;
  margin-bottom: 0;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-file-list .mat-mdc-table .bh-users-table-header-row {
  background-color: transparent;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-file-list .mat-mdc-table .bh-users-table-header-row .mat-mdc-header-cell:first-child,
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-file-list .mat-mdc-table .bh-users-table-header-row .mat-mdc-header-cell {
  border: 0;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-file-list .mat-mdc-table .bh-users-table-body-row .mat-mdc-cell {
  padding-top: 12px !important;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-file-list .mat-mdc-table .bh-project-share-section-files {
  min-width: 37%;
  width: 37%;
  max-width: 37%;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-file-list .mat-mdc-table .bh-project-share-section-status {
  min-width: 14%;
  width: 14%;
  max-width: 14%;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-file-list .mat-mdc-table .bh-project-share-section-date {
  min-width: 17%;
  width: 17%;
  max-width: 17%;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-file-list .mat-mdc-table .bh-project-share-section-owner {
  min-width: 20%;
  width: 20%;
  max-width: 20%;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-file-list .mat-mdc-table .bh-project-share-section-rerequest {
  min-width: 12%;
  width: 12%;
  max-width: 12%;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-file-list .mat-mdc-table .bh-users-table-body-row:nth-child(odd),
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-file-list .mat-mdc-table .bh-users-table-body-row:nth-child(even) {
  background-color: transparent;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-file-list .mat-mdc-table .bh-users-table-body-row:last-child {
  border-radius: 0 0 6px 6px;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-file-list .mat-mdc-table .bh-files-table-name-span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-project-share-file-list .mat-mdc-table .status-chip {
  color: var(--bh-black-03);
  display: inline-flex;
  padding: 2px 8px 3px 8px;
  align-items: flex-start;
  gap: 10px;
  border-radius: 3px;
  border: 1px solid var(--bh-black-06);
  background: var(--bh-white);
}
.mat-mdc-table.bh-users-table.bh-users-table--admin .bh-files-table.bh-files-table--admin .bh-files-table-name-span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bh-project-split .mdc-text-field--filled:not(.mdc-text-field--disabled) {
  background-color: var(--bh-white);
  padding: 0;
}
.bh-project-split .mdc-text-field--no-label .mat-mdc-form-field-infix {
  padding: 0;
}
.bh-project-split .mat-mdc-select-trigger {
  height: 48px;
}
.bh-project-split .mat-mdc-select-arrow-wrapper {
  display: none;
}
.bh-project-split .mat-mdc-form-field-subscript-wrapper {
  display: none;
}
.bh-project-split .mat-mdc-select-value {
  height: 48px;
  line-height: 45px;
  padding: 0 40px 0 12px;
}
.bh-project-split .bh-project-split-model-select .mdc-text-field {
  padding: 0;
}
.bh-project-split .bh-project-split-model-select.mat-form-field-disabled .mdc-text-field--filled.mdc-text-field--disabled {
  background-color: var(--bh-white);
  padding: 0;
}
.bh-project-split .bh-project-split-model-select.mat-form-field-disabled .mdc-text-field--filled.mdc-text-field--disabled .bh-project-split-model-select-field.bh-select-field {
  background: var(--bh-black-09);
  color: var(--bh-black-05);
  cursor: not-allowed;
}
div.mat-mdc-select-panel.bh-project-split-model-panel {
  border-radius: 6px;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.13);
  background-color: var(--bh-white);
  margin-top: 0;
  padding: 0 !important;
}
div.mat-mdc-select-panel.bh-project-split-model-panel .bh-project-split-model-description {
  border-bottom: 1px solid var(--bh-black-08);
  padding-bottom: 12px;
  padding: 0 0 12px 48px;
}
div.mat-mdc-select-panel.bh-project-split-model-panel .bh-project-split-model-description:last-child {
  border-bottom: 0;
}
div.mat-mdc-select-panel.bh-project-split-model-panel .mat-mdc-option {
  height: 37px !important;
  padding-top: 12px;
}
div.mat-mdc-select-panel.bh-project-split-model-panel .mat-mdc-option .mat-icon,
div.mat-mdc-select-panel.bh-project-split-model-panel .mat-mdc-option svg {
  margin-right: 8px;
}
div.mat-mdc-select-panel.bh-project-split-model-panel .mat-mdc-option svg {
  margin-left: 3px;
}
div.mat-mdc-select-panel.bh-project-split-model-panel .mat-mdc-option .mdc-list-item__primary-text {
  display: flex;
  align-items: center;
}
div.mat-mdc-select-panel.bh-project-split-model-panel .mat-mdc-option .mat-pseudo-checkbox-minimal {
  margin-right: 4px;
  display: none;
}
.mat-mdc-tab:focus-visible,
.mat-mdc-tab:focus {
  border-radius: 4px !important;
}
.mat-mdc-tab:focus-visible .mdc-tab__content,
.mat-mdc-tab:focus .mdc-tab__content {
  outline: 2px solid var(--bh-accent-03) !important;
  outline-offset: -2px;
  background-color: var(--bh-white) !important;
}
.expand-button {
  display: none;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html,
body {
  height: 100%;
}
body {
  position: relative;
  background-color: var(--bh-white);
  font-family: var(--bh-secondary-font-face);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--bh-black-04);
  margin: 0;
  zoom: 1;
}
body.overlay-open {
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  body.mobile-overlay-open {
    overflow: hidden;
  }
}
@media screen and (min-width: 641px) {
  body.desktop-overlay-open {
    overflow: hidden;
  }
}
body.sidebar-open .bh-scroll,
body.sidebar-open .bh-progress-stepper-section--fixed {
  padding-left: 294px;
}
@media (width <= 640px) {
  body.sidebar-open .bh-scroll,
  body.sidebar-open .bh-progress-stepper-section--fixed {
    padding-left: 0;
  }
}
body.sidebar-open .bh-fixed-project-buttons-left {
  padding-left: 230px;
}
body.sidebar-open .bh-main-content {
  padding-left: 294px;
}
@media screen and (max-width: 1000px) {
  body.sidebar-open .bh-main-content {
    padding-left: 64px;
  }
}
@media screen and (max-width: 640px) {
  body.sidebar-open .bh-main-content {
    padding-left: 0;
  }
}
.bh-main-content {
  width: 100%;
  height: 100%;
  padding: 70px 0 0 64px;
  display: flex;
  flex-direction: column;
}
@media (width <= 640px) {
  .bh-main-content {
    padding: 97px 0 0;
  }
}
.bh-main-content.bh-main-content--no-header {
  padding-top: 0;
}
@media (width <= 640px) {
  .bh-main-content.bh-main-content--no-header {
    padding-top: 41px;
  }
}
::selection {
  background-color: var(--bh-accent-07);
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 400;
  line-height: 1.2;
  overflow-wrap: break-word;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.5rem;
}
h5 {
  font-size: 1.25rem;
}
img,
picture,
video,
canvas,
iframe {
  display: block;
  max-width: 100%;
}
img {
  border-style: none;
  vertical-align: middle;
  border: 0;
}
input,
textarea,
button,
select,
label,
a {
  -webkit-tap-highlight-color: transparent;
}
input,
textarea,
button,
select,
optgroup {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: var(--bh-accent);
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: var(--bh-accent-01);
  text-decoration: underline;
}
a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}
p {
  line-height: 28px;
  text-rendering: optimizeLegibility;
}
ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}
input,
textarea,
button,
select,
label,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
[type=button],
[type=submit] {
  -webkit-appearance: button;
}
button,
select {
  text-transform: none;
}
button,
input {
  overflow: visible;
}
button {
  cursor: pointer;
}
.inner-width {
  width: 90%;
  margin: 0 auto;
}
@media (width <= 850px) {
  .inner-width {
    width: 100%;
  }
}
.custom-tooltip .mdc-tooltip__surface {
  max-width: unset;
  font-family: var(--bh-secondary-font-face);
  font-size: 14px;
  text-align: center;
}
.custom-tooltip--attach .mdc-tooltip__surface {
  max-width: 260px;
  display: flex;
  justify-content: center;
  text-align: center !important;
}
.custom-tooltip--upload .mdc-tooltip__surface {
  max-width: 250px;
  display: flex;
  justify-content: center;
  text-align: center !important;
}
.custom-tooltip--info .mdc-tooltip__surface {
  max-width: 300px;
  display: flex;
  justify-content: center;
  text-align: center !important;
}
.custom-tooltip--enhanced-prompt .mdc-tooltip__surface {
  max-width: 360px;
  display: flex;
  justify-content: flex-start;
}
.custom-tooltip--quick-access .mdc-tooltip__surface {
  max-width: 250px;
  display: flex;
  justify-content: center;
  text-align: center !important;
}
.custom-tooltip--delete-folder .mdc-tooltip__surface {
  max-width: 210px;
  display: flex;
  justify-content: center;
  text-align: center !important;
}
.custom-tooltip--prompt-modal .mdc-tooltip__surface {
  max-width: 150px;
  display: flex;
  justify-content: center;
  text-align: center !important;
}
.custom-tooltip--delete-chats .mdc-tooltip__surface {
  max-width: 270px;
  display: flex;
  justify-content: center;
  text-align: left !important;
}
.custom-tooltip--profile-loading .mdc-tooltip__surface {
  max-width: 210px;
  display: flex;
  justify-content: center;
  text-align: center !important;
}
.custom-tooltip--file-in-progress .mdc-tooltip__surface {
  max-width: 210px;
  display: flex;
  justify-content: center;
  text-align: center !important;
}
.custom-tooltip--project-share .mdc-tooltip__surface {
  max-width: 220px;
  display: flex;
  justify-content: flex-start;
  text-align: left !important;
}
.custom-tooltip--file-source .mdc-tooltip__surface {
  max-width: 464px;
  display: flex;
  justify-content: flex-start;
  text-align: left !important;
  white-space: pre-line;
  padding: 16px !important;
}
.warning-text {
  color: var(--bh-error);
}
.bh-header-group.sidebar-open .bh-sidebar-subnav:hover:not(:has(.bh-sidebar-list:hover)) .bh-sidebar-icon-button,
.bh-header-group.sidebar-open .bh-sidebar-subnav:hover:not(:has(.bh-sidebar-list:hover)) .bh-sidebar-nav-header {
  background-color: var(--bh-core-09);
}
.bh-system-output-response-text,
.bh-user-input-response {
}
.bh-system-output-response-text h1,
.bh-user-input-response h1 {
  font-family: var(--bh-secondary-font-face);
  font-weight: 400;
  font-size: 35px;
  line-height: 43px;
  letter-spacing: 0.25px;
  margin-bottom: 16px;
}
.bh-system-output-response-text h2,
.bh-user-input-response h2 {
  font-family: var(--bh-secondary-font-face);
  font-weight: 400;
  font-size: 25px;
  line-height: 27px;
  margin-top: 24px;
  margin-bottom: 12px;
}
.bh-system-output-response-text h2:first-child,
.bh-user-input-response h2:first-child {
  margin-top: 0;
}
.bh-system-output-response-text h3,
.bh-user-input-response h3 {
  font-family: var(--bh-secondary-font-face);
  font-weight: 700;
  font-size: 19px;
  line-height: 23px;
  letter-spacing: 0.218px;
  margin-top: 24px;
  margin-bottom: 8px;
}
.bh-system-output-response-text h3:first-child,
.bh-user-input-response h3:first-child {
  margin-top: 0;
}
.bh-system-output-response-text h3:has(+ ul, + ol, + dl),
.bh-user-input-response h3:has(+ ul, + ol, + dl) {
  font-weight: bold;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.49px;
}
.bh-system-output-response-text h4,
.bh-user-input-response h4 {
  font-family: var(--bh-secondary-font-face);
  font-weight: bold;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.15px;
  margin-bottom: 8px;
}
.bh-system-output-response-text h5,
.bh-user-input-response h5 {
  font-family: var(--bh-secondary-font-face);
  font-weight: bold;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0.15px;
  margin-bottom: 8px;
}
.bh-system-output-response-text figcaption,
.bh-user-input-response figcaption {
  font-family: var(--bh-secondary-font-face);
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0.4px;
}
.bh-system-output-response-text p,
.bh-user-input-response p {
  font-family: var(--bh-secondary-font-face);
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0.49px;
  margin-bottom: 12px;
}
.bh-system-output-response-text p:last-child,
.bh-user-input-response p:last-child {
  margin-bottom: 0;
}
.bh-system-output-response-text .bh-user-input--upload p,
.bh-user-input-response .bh-user-input--upload p {
  font-family: var(--bh-secondary-font-face);
  font-size: 13px;
  line-height: 17px;
  letter-spacing: 0.4px;
  margin: 0;
  color: var(--bh-black);
  word-break: break-word;
}
.bh-system-output-response-text li > p,
.bh-user-input-response li > p {
  margin-bottom: 0;
}
.bh-system-output-response-text a,
.bh-user-input-response a {
  color: var(--bh-accent);
  text-decoration: none;
  word-break: break-all;
}
.bh-system-output-response-text a:focus-visible,
.bh-user-input-response a:focus-visible {
  color: var(--bh-accent-03);
  box-shadow: none;
  outline-width: 2px;
  outline-style: solid;
  outline-color: var(--bh-accent-03);
  outline-offset: 2px;
  transition: none;
  text-decoration: none;
}
.bh-system-output-response-text a:hover,
.bh-user-input-response a:hover {
  color: var(--bh-accent-01);
  text-decoration: underline;
}
.bh-system-output-response-text blockquote,
.bh-user-input-response blockquote {
  border-left: 3px solid var(--bh-core-06);
  padding: 5px 10px;
  margin: 12px auto;
}
.bh-system-output-response-text img,
.bh-user-input-response img {
  display: block;
  margin: 16px 0;
  max-width: 100%;
}
.bh-system-output-response-text img.no-margin,
.bh-user-input-response img.no-margin {
  margin: 0;
}
.bh-system-output-response-text ul,
.bh-system-output-response-text ol,
.bh-system-output-response-text dl,
.bh-user-input-response ul,
.bh-user-input-response ol,
.bh-user-input-response dl {
  padding-left: 32px;
  margin: 0 0 24px;
}
.bh-system-output-response-text ul:last-child,
.bh-system-output-response-text ol:last-child,
.bh-system-output-response-text dl:last-child,
.bh-user-input-response ul:last-child,
.bh-user-input-response ol:last-child,
.bh-user-input-response dl:last-child {
  margin-bottom: 0;
}
.bh-system-output-response-text ul:has(.bh-checkbox-group),
.bh-system-output-response-text ol:has(.bh-checkbox-group),
.bh-system-output-response-text dl:has(.bh-checkbox-group),
.bh-user-input-response ul:has(.bh-checkbox-group),
.bh-user-input-response ol:has(.bh-checkbox-group),
.bh-user-input-response dl:has(.bh-checkbox-group) {
  padding-left: 8px;
}
.bh-system-output-response-text ul li,
.bh-system-output-response-text ol li,
.bh-system-output-response-text dl li,
.bh-user-input-response ul li,
.bh-user-input-response ol li,
.bh-user-input-response dl li {
  margin-bottom: 8px;
  line-height: 23px;
}
.bh-system-output-response-text ul li:last-child,
.bh-system-output-response-text ol li:last-child,
.bh-system-output-response-text dl li:last-child,
.bh-user-input-response ul li:last-child,
.bh-user-input-response ol li:last-child,
.bh-user-input-response dl li:last-child {
  margin-bottom: 0;
}
.bh-system-output-response-text ul li:has(.bh-checkbox-group),
.bh-system-output-response-text ol li:has(.bh-checkbox-group),
.bh-system-output-response-text dl li:has(.bh-checkbox-group),
.bh-user-input-response ul li:has(.bh-checkbox-group),
.bh-user-input-response ol li:has(.bh-checkbox-group),
.bh-user-input-response dl li:has(.bh-checkbox-group) {
  list-style: none;
  display: flex;
  gap: 4px;
  align-items: start;
}
.bh-system-output-response-text ul ul,
.bh-system-output-response-text ul ol,
.bh-system-output-response-text ul dl,
.bh-system-output-response-text ol ul,
.bh-system-output-response-text ol ol,
.bh-system-output-response-text ol dl,
.bh-system-output-response-text dl ul,
.bh-system-output-response-text dl ol,
.bh-system-output-response-text dl dl,
.bh-user-input-response ul ul,
.bh-user-input-response ul ol,
.bh-user-input-response ul dl,
.bh-user-input-response ol ul,
.bh-user-input-response ol ol,
.bh-user-input-response ol dl,
.bh-user-input-response dl ul,
.bh-user-input-response dl ol,
.bh-user-input-response dl dl {
  padding-top: 8px;
  padding-left: 10px;
  list-style-type: disc;
}
.bh-system-output-response-text ol:has(ul, ol, dl) > li,
.bh-system-output-response-text ol:has(ul, ol, dl) > li p,
.bh-system-output-response-text ul:has(ul, ol, dl) > li,
.bh-system-output-response-text ul:has(ul, ol, dl) > li p,
.bh-system-output-response-text dl:has(ul, ol, dl) > li,
.bh-system-output-response-text dl:has(ul, ol, dl) > li p,
.bh-user-input-response ol:has(ul, ol, dl) > li,
.bh-user-input-response ol:has(ul, ol, dl) > li p,
.bh-user-input-response ul:has(ul, ol, dl) > li,
.bh-user-input-response ul:has(ul, ol, dl) > li p,
.bh-user-input-response dl:has(ul, ol, dl) > li,
.bh-user-input-response dl:has(ul, ol, dl) > li p {
  font-family: var(--bh-secondary-font-face);
  font-weight: bold;
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.49px;
  margin-bottom: 24px;
}
.bh-system-output-response-text ol:has(ul, ol, dl) > li:not(:has(ul, ol, dl)),
.bh-system-output-response-text ol:has(ul, ol, dl) > li p:not(:has(ul, ol, dl)),
.bh-system-output-response-text ul:has(ul, ol, dl) > li:not(:has(ul, ol, dl)),
.bh-system-output-response-text ul:has(ul, ol, dl) > li p:not(:has(ul, ol, dl)),
.bh-system-output-response-text dl:has(ul, ol, dl) > li:not(:has(ul, ol, dl)),
.bh-system-output-response-text dl:has(ul, ol, dl) > li p:not(:has(ul, ol, dl)),
.bh-user-input-response ol:has(ul, ol, dl) > li:not(:has(ul, ol, dl)),
.bh-user-input-response ol:has(ul, ol, dl) > li p:not(:has(ul, ol, dl)),
.bh-user-input-response ul:has(ul, ol, dl) > li:not(:has(ul, ol, dl)),
.bh-user-input-response ul:has(ul, ol, dl) > li p:not(:has(ul, ol, dl)),
.bh-user-input-response dl:has(ul, ol, dl) > li:not(:has(ul, ol, dl)),
.bh-user-input-response dl:has(ul, ol, dl) > li p:not(:has(ul, ol, dl)) {
  margin-bottom: 8px;
}
.bh-system-output-response-text ol:has(ul, ol, dl) > li:last-child,
.bh-system-output-response-text ol:has(ul, ol, dl) > li p:last-child,
.bh-system-output-response-text ul:has(ul, ol, dl) > li:last-child,
.bh-system-output-response-text ul:has(ul, ol, dl) > li p:last-child,
.bh-system-output-response-text dl:has(ul, ol, dl) > li:last-child,
.bh-system-output-response-text dl:has(ul, ol, dl) > li p:last-child,
.bh-user-input-response ol:has(ul, ol, dl) > li:last-child,
.bh-user-input-response ol:has(ul, ol, dl) > li p:last-child,
.bh-user-input-response ul:has(ul, ol, dl) > li:last-child,
.bh-user-input-response ul:has(ul, ol, dl) > li p:last-child,
.bh-user-input-response dl:has(ul, ol, dl) > li:last-child,
.bh-user-input-response dl:has(ul, ol, dl) > li p:last-child {
  margin-bottom: 0;
}
.bh-system-output-response-text ol:has(ul, ol, dl) > li p,
.bh-system-output-response-text ul:has(ul, ol, dl) > li p,
.bh-system-output-response-text dl:has(ul, ol, dl) > li p,
.bh-user-input-response ol:has(ul, ol, dl) > li p,
.bh-user-input-response ul:has(ul, ol, dl) > li p,
.bh-user-input-response dl:has(ul, ol, dl) > li p {
  margin: 0;
}
.bh-system-output-response-text ol:has(ul, ol, dl) ul li,
.bh-system-output-response-text ol:has(ul, ol, dl) ol li,
.bh-system-output-response-text ol:has(ul, ol, dl) dl li,
.bh-system-output-response-text ul:has(ul, ol, dl) ul li,
.bh-system-output-response-text ul:has(ul, ol, dl) ol li,
.bh-system-output-response-text ul:has(ul, ol, dl) dl li,
.bh-system-output-response-text dl:has(ul, ol, dl) ul li,
.bh-system-output-response-text dl:has(ul, ol, dl) ol li,
.bh-system-output-response-text dl:has(ul, ol, dl) dl li,
.bh-user-input-response ol:has(ul, ol, dl) ul li,
.bh-user-input-response ol:has(ul, ol, dl) ol li,
.bh-user-input-response ol:has(ul, ol, dl) dl li,
.bh-user-input-response ul:has(ul, ol, dl) ul li,
.bh-user-input-response ul:has(ul, ol, dl) ol li,
.bh-user-input-response ul:has(ul, ol, dl) dl li,
.bh-user-input-response dl:has(ul, ol, dl) ul li,
.bh-user-input-response dl:has(ul, ol, dl) ol li,
.bh-user-input-response dl:has(ul, ol, dl) dl li {
  line-height: 25px;
  letter-spacing: 0.49px;
  font-weight: 400;
}
.bh-system-output-response-text ol + ul,
.bh-system-output-response-text ol + ol,
.bh-user-input-response ol + ul,
.bh-user-input-response ol + ol {
  padding-top: 0;
  padding-left: 50px;
}
.bh-system-output-response-text .bh-checkbox-group,
.bh-user-input-response .bh-checkbox-group {
  display: inline-block;
  margin-right: 6px;
}
.bh-system-output-response-text .bh-checkbox-group-checkbox,
.bh-user-input-response .bh-checkbox-group-checkbox {
  margin-top: 2px;
}
.bh-system-output-response-text .bh-checkbox-group-checkbox:hover,
.bh-system-output-response-text .bh-checkbox-group-checkbox:active,
.bh-user-input-response .bh-checkbox-group-checkbox:hover,
.bh-user-input-response .bh-checkbox-group-checkbox:active {
  border-color: var(--bh-accent);
}
.bh-system-output-response-text .bh-checkbox-group-checkbox .bh-checkbox-group-label,
.bh-user-input-response .bh-checkbox-group-checkbox .bh-checkbox-group-label {
  display: inline-flex;
}
.bh-system-output-response-text .bh-checkbox-group-checkbox.bh-checkbox-group-checkbox--checked,
.bh-user-input-response .bh-checkbox-group-checkbox.bh-checkbox-group-checkbox--checked {
  border-color: var(--bh-accent);
}
.bh-system-output-response-text .bh-checkbox-group-checkbox.bh-checkbox-group-checkbox--checked .bh-checkbox-group-bot-checkmark,
.bh-user-input-response .bh-checkbox-group-checkbox.bh-checkbox-group-checkbox--checked .bh-checkbox-group-bot-checkmark {
  position: absolute;
  top: 2px;
  left: 1px;
  width: 12px;
  height: 10px;
  background-image: url('data:image/svg+xml;utf8,<svg width="12" height="10" viewBox="0 0 12 10" xmlns="http://www.w3.org/2000/svg"><polyline stroke-dashoffset="0px" points="1.5 6 4.5 9 10.5 1" fill="none" stroke="%23007eb4" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" stroke-dasharray="16px"/></svg>');
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(6deg);
  transition-delay: 0.1s;
  transition: all 0.3s ease-in-out;
}
.bh-system-output-response-text hr,
.bh-user-input-response hr {
  border: 0;
  border-bottom: 1px solid var(--bh-black-08);
  margin: 24px 0;
}
.bh-system-output-response-text table,
.bh-user-input-response table {
  color: var(--bh-black);
  font-family: var(--bh-secondary-font-face);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.245px;
  line-height: 18px;
  background-color: var(--bh-white);
  border-collapse: collapse;
  margin: 16px 0 24px;
  border: 1px solid var(--bh-black-08);
  border-radius: 3px 3px 0 0;
  display: block;
  overflow-x: auto;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
}
.bh-system-output-response-text table:first-child,
.bh-user-input-response table:first-child {
  margin-top: 0;
}
.bh-system-output-response-text table:last-child,
.bh-user-input-response table:last-child {
  margin-bottom: 0;
}
.bh-system-output-response-text table thead tr,
.bh-user-input-response table thead tr {
  border-bottom: 1px solid var(--bh-black-08);
}
.bh-system-output-response-text table thead th,
.bh-user-input-response table thead th {
  border: 1px solid var(--bh-black-08);
  border-top: 0;
  padding: 16px 10px;
  font-family: var(--bh-secondary-font-face);
  font-size: 17px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.146px;
  background-color: var(--bh-white);
}
.bh-system-output-response-text table tbody tr:nth-child(odd),
.bh-user-input-response table tbody tr:nth-child(odd) {
  background-color: var(--bh-black-11);
}
.bh-system-output-response-text table tbody tr td,
.bh-user-input-response table tbody tr td {
  border: 1px solid var(--bh-black-08);
}
.bh-system-output-response-text table tbody tr:last-child td,
.bh-user-input-response table tbody tr:last-child td {
  border-bottom: 0;
}
.bh-system-output-response-text table th,
.bh-system-output-response-text table td,
.bh-user-input-response table th,
.bh-user-input-response table td {
  padding: 8px 8px 8px 18px;
  vertical-align: top;
  box-sizing: border-box;
  text-align: left;
}
.bh-system-output-response-text table th:first-child,
.bh-system-output-response-text table td:first-child,
.bh-user-input-response table th:first-child,
.bh-user-input-response table td:first-child {
  border-left: 0;
}
.bh-system-output-response-text table th:last-child,
.bh-system-output-response-text table td:last-child,
.bh-user-input-response table th:last-child,
.bh-user-input-response table td:last-child {
  border-right: 0;
}
.bh-system-output-response-text code,
.bh-user-input-response code {
  background-color: var(--bh-black-01);
  color: var(--bh-accent-07);
  padding: 3px 5px;
  display: inline-block;
  margin: 0 3px;
  font-size: 14px;
  line-height: 20px;
}
.bh-system-output-response-text code::selection,
.bh-user-input-response code::selection {
  color: var(--bh-black-01);
}
.bh-system-output-response-text pre,
.bh-user-input-response pre {
  margin: 12px 0;
  min-width: 200px;
}
.bh-system-output-response-text pre code,
.bh-user-input-response pre code {
  padding: 38px 20px 12px;
  max-width: 100%;
  overflow-x: auto;
  display: block;
  margin: 0;
}
.bh-system-output-response-text .code-toolbar:first-child pre,
.bh-user-input-response .code-toolbar:first-child pre {
  margin: 0 0 12px;
}
.bh-system-output-response-text pre[class*=language-],
.bh-user-input-response pre[class*=language-] {
  padding: 0;
}
.bh-system-output-response-text :not(pre) > code[class*=language-],
.bh-system-output-response-text pre[class*=language-],
.bh-user-input-response :not(pre) > code[class*=language-],
.bh-user-input-response pre[class*=language-] {
  background: transparent;
}
.bh-system-output-response-text div.code-toolbar,
.bh-user-input-response div.code-toolbar {
  position: relative;
}
.bh-system-output-response-text div.code-toolbar .toolbar,
.bh-user-input-response div.code-toolbar .toolbar {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0.2em;
  transition: opacity 0.3s ease-in-out;
  opacity: 1;
  display: flex;
  width: 100%;
  top: 0;
  left: 0;
  right: initial;
  padding: 3px 8px;
}
.bh-system-output-response-text div.code-toolbar:hover .toolbar,
.bh-user-input-response div.code-toolbar:hover .toolbar {
  opacity: 1;
}
.bh-system-output-response-text div.code-toolbar:focus-within .toolbar,
.bh-user-input-response div.code-toolbar:focus-within .toolbar {
  opacity: 1;
}
.bh-system-output-response-text div.code-toolbar .toolbar > .toolbar-item,
.bh-user-input-response div.code-toolbar .toolbar > .toolbar-item {
  display: inline-block;
}
.bh-system-output-response-text div.code-toolbar .toolbar > .toolbar-item > a,
.bh-user-input-response div.code-toolbar .toolbar > .toolbar-item > a {
  cursor: pointer;
}
.bh-system-output-response-text div.code-toolbar .toolbar > .toolbar-item > button,
.bh-user-input-response div.code-toolbar .toolbar > .toolbar-item > button {
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  line-height: normal;
  overflow: visible;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.bh-system-output-response-text div.code-toolbar .toolbar > .toolbar-item > a,
.bh-system-output-response-text div.code-toolbar .toolbar > .toolbar-item > button,
.bh-system-output-response-text div.code-toolbar .toolbar > .toolbar-item > span,
.bh-user-input-response div.code-toolbar .toolbar > .toolbar-item > a,
.bh-user-input-response div.code-toolbar .toolbar > .toolbar-item > button,
.bh-user-input-response div.code-toolbar .toolbar > .toolbar-item > span {
  color: var(--bh-black-07);
  font-size: 0.8em;
  padding: 0 0.5em;
  background: #f5f2f0;
  background: rgba(224, 224, 224, 0.2);
  box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.2);
  border-radius: 0.5em;
}
.bh-system-output-response-text div.code-toolbar .toolbar > .toolbar-item > button,
.bh-user-input-response div.code-toolbar .toolbar > .toolbar-item > button {
  padding: 1px 6px;
}
.bh-system-output-response-text div.code-toolbar .toolbar > .toolbar-item > span,
.bh-user-input-response div.code-toolbar .toolbar > .toolbar-item > span {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  font-size: 12px;
}
.bh-system-output-response-text div.code-toolbar .toolbar > .toolbar-item > a:hover,
.bh-system-output-response-text div.code-toolbar .toolbar > .toolbar-item > a:focus,
.bh-system-output-response-text div.code-toolbar .toolbar > .toolbar-item > button:hover,
.bh-system-output-response-text div.code-toolbar .toolbar > .toolbar-item > button:focus,
.bh-user-input-response div.code-toolbar .toolbar > .toolbar-item > a:hover,
.bh-user-input-response div.code-toolbar .toolbar > .toolbar-item > a:focus,
.bh-user-input-response div.code-toolbar .toolbar > .toolbar-item > button:hover,
.bh-user-input-response div.code-toolbar .toolbar > .toolbar-item > button:focus {
  color: var(--bh-black-09);
  text-decoration: none;
}
.bh-system-output-response-text div.code-toolbar .toolbar > .toolbar-item > span:hover,
.bh-system-output-response-text div.code-toolbar .toolbar > .toolbar-item > span:focus,
.bh-user-input-response div.code-toolbar .toolbar > .toolbar-item > span:hover,
.bh-user-input-response div.code-toolbar .toolbar > .toolbar-item > span:focus {
  color: var(--bh-black-07);
}
.bh-system-output-response-text div.code-toolbar .toolbar > .toolbar-item:nth-child(1),
.bh-user-input-response div.code-toolbar .toolbar > .toolbar-item:nth-child(1) {
  order: 3;
  margin-left: 8px;
}
.bh-system-output-response-text div.code-toolbar .toolbar > .toolbar-item:nth-child(2),
.bh-user-input-response div.code-toolbar .toolbar > .toolbar-item:nth-child(2) {
  order: 1;
  margin-right: auto;
}
.bh-system-output-response-text div.code-toolbar .toolbar > .toolbar-item:nth-child(3),
.bh-user-input-response div.code-toolbar .toolbar > .toolbar-item:nth-child(3) {
  order: 2;
}
.bh-system-output-response-text .streaming-active ul,
.bh-system-output-response-text .streaming-active ul *,
.bh-system-output-response-text .streaming-active ol,
.bh-system-output-response-text .streaming-active ol *,
.bh-system-output-response-text .streaming-active li,
.bh-system-output-response-text .streaming-active li *,
.bh-system-output-response-text .streaming-active p,
.bh-system-output-response-text .streaming-active p *,
.bh-system-output-response-text .streaming-active td,
.bh-system-output-response-text .streaming-active td *,
.bh-user-input-response .streaming-active ul,
.bh-user-input-response .streaming-active ul *,
.bh-user-input-response .streaming-active ol,
.bh-user-input-response .streaming-active ol *,
.bh-user-input-response .streaming-active li,
.bh-user-input-response .streaming-active li *,
.bh-user-input-response .streaming-active p,
.bh-user-input-response .streaming-active p *,
.bh-user-input-response .streaming-active td,
.bh-user-input-response .streaming-active td * {
  font-size: 17px !important;
  line-height: 25px !important;
  letter-spacing: 0.49px !important;
  font-weight: 400 !important;
  font-family: var(--bh-secondary-font-face) !important;
}
.bh-system-output-response-text .streaming-active div.code-toolbar .toolbar > .toolbar-item > span,
.bh-user-input-response .streaming-active div.code-toolbar .toolbar > .toolbar-item > span {
  font-size: 12px !important;
}
.bh-system-output-response-text .streaming-active code,
.bh-system-output-response-text .streaming-active code span,
.bh-user-input-response .streaming-active code,
.bh-user-input-response .streaming-active code span {
  font-size: 14px !important;
  line-height: 20px !important;
}
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts ul,
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts ul *,
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts ol,
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts ol *,
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts li,
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts li *,
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts p,
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts p *,
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts td,
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts td *,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts ul,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts ul *,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts ol,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts ol *,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts li,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts li *,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts p,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts p *,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts td,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts td * {
  font-family: var(--bh-secondary-font-face) !important;
  font-size: 13px !important;
  line-height: 17px !important;
  letter-spacing: 0.4px !important;
  font-style: italic !important;
  color: var(--bh-black-03) !important;
}
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts p code,
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts li code,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts p code,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts li code {
  color: var(--bh-accent-07) !important;
}
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts li,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts li {
  margin-bottom: 0 !important;
}
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts--final ul,
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts--final ul *,
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts--final ol,
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts--final ol *,
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts--final li,
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts--final li *,
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts--final p,
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts--final p *,
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts--final td,
.bh-system-output-response-text .bh-system-output-extended-thinking-inner-thoughts--final td *,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts--final ul,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts--final ul *,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts--final ol,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts--final ol *,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts--final li,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts--final li *,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts--final p,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts--final p *,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts--final td,
.bh-user-input-response .bh-system-output-extended-thinking-inner-thoughts--final td * {
  font-style: normal !important;
}
.bh-system-output-response-group .bh-system-output-response-avatar:has(+ div > div h1:first-child),
.bh-system-output-response-group .bh-system-output-response-avatar:has(+ div > div h2:first-child),
.bh-system-output-response-group .bh-system-output-response-avatar:has(+ div > div h3:first-child),
.bh-system-output-response-group .bh-system-output-response-avatar:has(+ div > div h4:first-child),
.bh-system-output-response-group .bh-system-output-response-avatar:has(+ div > div h5:first-child) {
  margin-top: 4px;
}
.bh-release-content .bh-release-content-description ul,
.bh-release-content .bh-release-content-description ol {
  padding-left: 18px;
  margin-bottom: 0;
}
.bh-release-content .bh-release-content-description li {
  margin-bottom: 8px;
}
.bh-release-content .bh-release-content-description li:last-child {
  margin-bottom: 0;
}
.bh-release-content .bh-release-content-description p {
  font-family: var(--bh-secondary-font-face);
  font-size: 17px;
  line-height: 20px;
  letter-spacing: 0.49px;
  color: var(--bh-black-03);
}
.bh-release-content .bh-release-content-description p:last-child {
  margin-bottom: 0;
}
.bh-scroll {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 44px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0) 0%,
      var(--bh-white) 100%);
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-left: 64px;
  z-index: 199;
  transition: opacity 250ms;
  opacity: 0;
  pointer-events: none;
}
.bh-scroll.fade-in {
  opacity: 1;
  transition: opacity 250ms;
  pointer-events: all;
}
@media (width <= 640px) {
  .bh-scroll {
    padding-left: 0;
  }
}
.bh-scroll.chat-page {
  bottom: 140px;
}
@media (width < 779px) {
  .bh-scroll.chat-page {
    bottom: 160px;
  }
}
@media (width < 513px) {
  .bh-scroll.chat-page {
    bottom: 170px;
  }
}
.bh-scroll-button {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  border: 2px solid var(--bh-white);
  background: var(--bh-accent);
  box-shadow: 0px 0px 16px 2px rgba(0, 0, 0, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
}
.bh-scroll svg {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
}
.bh-fixed-project-buttons {
  display: flex;
  box-shadow: none;
}
.bh-fixed-project-buttons .bh-new-project-content-project-buttons {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0 48px 0 0;
}
.bh-fixed-project-buttons .bh-new-project-content-project-buttons .bh-fixed-project-buttons-left,
.bh-fixed-project-buttons .bh-new-project-content-project-buttons .bh-fixed-project-buttons-right {
  position: fixed;
  top: 0;
  height: 135px;
  display: flex;
  align-items: center;
  z-index: 101;
}
@media (width <= 930px) {
  .bh-fixed-project-buttons .bh-new-project-content-project-buttons .bh-fixed-project-buttons-left.split,
  .bh-fixed-project-buttons .bh-new-project-content-project-buttons .bh-fixed-project-buttons-right.split {
    position: absolute;
  }
}
@media (width <= 850px) {
  .bh-fixed-project-buttons .bh-new-project-content-project-buttons .bh-fixed-project-buttons-left,
  .bh-fixed-project-buttons .bh-new-project-content-project-buttons .bh-fixed-project-buttons-right {
    top: 50px;
  }
}
@media (width <= 640px) {
  .bh-fixed-project-buttons .bh-new-project-content-project-buttons .bh-fixed-project-buttons-left,
  .bh-fixed-project-buttons .bh-new-project-content-project-buttons .bh-fixed-project-buttons-right {
    top: 93px;
  }
}
.bh-fixed-project-buttons .bh-new-project-content-project-buttons .bh-fixed-project-buttons-left {
  left: 93px;
}
@media (width <= 640px) {
  .bh-fixed-project-buttons .bh-new-project-content-project-buttons .bh-fixed-project-buttons-left {
    left: 10px;
  }
}
.bh-fixed-project-buttons .bh-new-project-content-project-buttons .bh-fixed-project-buttons-right {
  right: 48px;
}
@media (width <= 640px) {
  .bh-fixed-project-buttons .bh-new-project-content-project-buttons .bh-fixed-project-buttons-right {
    right: 16px;
  }
}
@media (width <= 1350px) {
  body.sidebar-open .bh-progress-stepper-section {
    height: 155px !important;
  }
}
@media (width <= 1350px) {
  body.sidebar-open .bh-progress-stepper {
    margin-top: -82px;
  }
}
@media (width <= 1350px) {
  body.sidebar-open .bh-progress-stepper-between {
    width: 15vw !important;
  }
}
@media (width <= 1200px) {
  body.sidebar-open .bh-progress-stepper-between {
    width: 12vw !important;
  }
}
@media (width <= 1000px) {
  body.sidebar-open .bh-progress-stepper-between {
    width: 8vw !important;
  }
}
@media (width <= 1350px) {
  body.sidebar-open .bh-fixed-project-buttons .bh-new-project-content-project-buttons .bh-fixed-project-buttons-left,
  body.sidebar-open .bh-fixed-project-buttons .bh-new-project-content-project-buttons .bh-fixed-project-buttons-right {
    top: 50px !important;
  }
}
.bh-progress-stepper-section--fixed {
  padding: 0 0 0 64px;
}
@media (width <= 640px) {
  .bh-progress-stepper-section--fixed {
    padding-left: 0;
  }
}
.one-drive-picker-hidden-dialog {
  opacity: 0;
  pointer-events: none;
}
.one-drive-picker-visible-dialog {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}
.cdk-overlay-backdrop ~ .cdk-overlay-backdrop ~ .cdk-overlay-backdrop {
  display: none;
}

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