@charset "UTF-8";

/* src/styles.scss */
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes opacity-smooth {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.error-list {
  animation: slide-in 300ms;
  list-style-type: none;
}
.error-list .error-list-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-right: 15px;
  width: 100%;
}
.error-list .error-list-item mat-error {
  display: flex;
  flex-grow: 1;
}
.error-list .error-list-item::before {
  content: "\2022";
  color: #c4432b;
  font-size: 30px;
  margin-right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error-list .valid mat-error {
  color: #627805 !important;
}
.error-list .valid::before {
  color: #627805;
}
.error-list .valid::after {
  content: "";
  background-image: url(/assets/icons/check_green.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 17px;
  height: 13px;
}
.search-icon {
  color: #71717a;
}
.input-prefix {
  font-size: 1.1rem;
  font-weight: 400;
  color: inherit;
  padding-right: 2px;
}
.empty-list {
  text-align: center;
  margin: 100px auto;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
  color: #52525b;
}
mat-mdc-input-element::placeholder {
  color: blue;
}
mat-form-field.mat-mdc-form-field {
  width: 100%;
}
mat-form-field.mat-mdc-form-field .mat-mdc-form-field-icon-suffix,
mat-form-field.mat-mdc-form-field .mat-mdc-form-field-icon-prefix {
  color: #71717a;
}
mat-form-field.mat-mdc-form-field .mat-mdc-form-field-icon-suffix > .mat-icon,
mat-form-field.mat-mdc-form-field .mat-mdc-form-field-icon-prefix > .mat-icon {
  padding: 0 2px 0 12px;
}
mat-form-field.mat-mdc-form-field .mdc-text-field {
  border-radius: 12px;
  border: 1px solid #e4e4e7;
  display: flex;
  align-items: center;
}
mat-form-field.mat-mdc-form-field .mdc-text-field--filled {
  background-color: var(--mat-sys-background);
}
mat-form-field.mat-mdc-form-field .mdc-text-field--filled .mat-mdc-form-field-flex .mat-mdc-form-field-infix input,
mat-form-field.mat-mdc-form-field .mdc-text-field--filled .mat-mdc-form-field-flex .mat-mdc-form-field-infix textarea {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
}
mat-form-field.mat-mdc-form-field .mdc-text-field--filled .mat-mdc-form-field-flex .mat-mdc-form-field-infix input::placeholder,
mat-form-field.mat-mdc-form-field .mdc-text-field--filled .mat-mdc-form-field-flex .mat-mdc-form-field-infix textarea::placeholder {
  color: #a1a1aa;
}
mat-form-field.mat-mdc-form-field .mdc-text-field--filled .mat-mdc-form-field-flex .mat-mdc-form-field-infix .mat-mdc-select-placeholder {
  color: #a1a1aa;
}
mat-form-field.mat-mdc-form-field .mdc-text-field--focused {
  border: 1px solid #1c75bc;
  box-shadow: 0px 0px 3.9px 0px #6fb3ea;
}
mat-form-field.mat-mdc-form-field .mdc-text-field--disabled {
  background-color: #f4f4f5 !important;
}
mat-form-field.mat-mdc-form-field .mdc-text-field--disabled .mat-mdc-form-field-flex .mat-mdc-form-field-infix input {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
  color: #a1a1aa;
}
mat-form-field.mat-mdc-form-field .mdc-text-field--invalid:not(--focused) {
  border: 1px solid #c4432b;
}
mat-form-field.mat-mdc-form-field .mat-mdc-form-field-subscript-wrapper,
mat-form-field.mat-mdc-form-field .mat-mdc-form-field-bottom-align::before {
  display: none;
}
mat-form-field.mat-mdc-form-field .mat-mdc-text-field-wrapper {
  height: 50px;
}
mat-form-field.mat-mdc-form-field .mdc-text-field--outlined .mat-mdc-form-field-infix,
mat-form-field.mat-mdc-form-field .mdc-text-field--no-label .mat-mdc-form-field-infix {
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
}
mat-form-field.mat-mdc-form-field .mdc-line-ripple::before,
mat-form-field.mat-mdc-form-field .mdc-line-ripple::after {
  display: none;
}
mat-form-field.mat-mdc-form-field .mat-mdc-form-field-icon-suffix {
  padding: 0 4px;
}
mat-error {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.25rem;
  letter-spacing: -0.25px;
  color: #c4432b !important;
  animation: slide-in 300ms;
}
.mat-mdc-form-field-error {
  color: #c4432b !important;
}
mat-label {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
  margin-bottom: 6px !important;
  color: var(--mat-sys-on-surface);
  display: block;
}
.required::after {
  content: "*";
  color: #c4432b;
  margin-left: 6px;
  font-size: 20px;
}
mat-hint {
  display: block;
  text-align: end;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.25rem;
  letter-spacing: -0.25px;
  color: #71717a;
}
.mat-mdc-menu-panel {
  border-radius: 12px !important;
}
.mat-mdc-menu-content {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e4e4e7;
}
.mat-mdc-menu-content .mat-mdc-menu-item {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
}
.mat-mdc-menu-content .mat-mdc-menu-item mat-icon {
  font-family: "Material Icons Outlined";
  color: inherit;
}
.mat-mdc-menu-content .mat-mdc-menu-item.warning > * {
  color: #c4432b;
}
mat-select {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
}
mat-select .mat-mdc-select-value {
  color: var(--mat-sys-on-surface);
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
}
mat-select .mat-mdc-select-arrow {
  display: none;
}
mat-select ::after {
  content: "";
  background-image: url("./media/arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
  width: 14px;
  height: 22px;
  position: absolute;
  right: 0;
  top: 20%;
}
mat-select-trigger {
  display: block;
  overflow: hidden;
  width: calc(100% - 18px);
}
.mat-mdc-select-disabled .mat-mdc-select-trigger .mat-mdc-select-value {
  color: #a1a1aa;
}
.mat-mdc-select-disabled ::after {
  display: none !important;
}
.mat-mdc-select-panel-above div.mat-mdc-select-panel {
  border-radius: 16px !important;
}
mat-option.mat-mdc-option.mdc-list-item {
  min-height: 40px;
  color: var(--mat-sys-on-surface);
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
}
mat-option.mat-mdc-option.mdc-list-item:not(:last-child) {
  border-bottom: 1px solid #e4e4e7;
}
mat-option.mat-mdc-option.mdc-list-item .mat-pseudo-checkbox {
  display: none;
}
mat-option.mat-mdc-option.mdc-list-item--selected.mat-mdc-option-multiple {
  background-color: var(--mat-option-hover-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-hover-state-layer-opacity) * 100%), transparent)) !important;
}
mat-option.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled):not(.mat-mdc-option-multiple) {
  background-color: transparent !important;
}
mat-option.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled):not(.mat-mdc-option-multiple):hover,
mat-option.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled):not(.mat-mdc-option-multiple):focus,
mat-option.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled):not(.mat-mdc-option-multiple):active,
mat-option.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled):not(.mat-mdc-option-multiple).mat-mdc-option-active {
  background-color: var(--mat-option-hover-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-hover-state-layer-opacity) * 100%), transparent)) !important;
}
.mdc-list-item--selected:not(.mdc-list-item--disabled):not(.mat-mdc-option-multiple) .mdc-list-item__primary-text {
  color: #1c75bc;
}
mat-option.mat-mdc-option.mdc-list-item mat-checkbox.mat-mdc-checkbox-checked .mdc-label {
  color: #1c75bc;
}
.cdk-overlay-pane {
  box-shadow: 0px 0px 9px 0px #d4d4d8;
  margin-top: 1px;
  border-radius: 12px !important;
  background-color: #ffffff;
}
.cdk-overlay-pane:not(.mat-mdc-autocomplete-panel-above) div.mat-mdc-autocomplete-panel {
  border-radius: 12px !important;
}
.autocomplete-clear {
  color: var(--mat-on-surface) !important;
}
mat-checkbox .mdc-label {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.25rem;
  letter-spacing: -0.25px;
}
mat-checkbox .mdc-checkbox__background {
  border-radius: 4px;
  border: 1px solid #d4d4d8;
  width: 17px;
  height: 17px;
  margin-left: -4px;
}
mat-checkbox .mdc-form-field .mdc-checkbox {
  padding-left: 0;
}
mat-checkbox .mat-mdc-checkbox .mat-mdc-checkbox-ripple,
mat-checkbox .mdc-checkbox__ripple {
  display: none !important;
}
mat-checkbox .mdc-checkbox:hover .mdc-checkbox__native-control:checked + .mdc-checkbox__ripple,
mat-checkbox .mdc-checkbox:focus-within .mdc-checkbox__native-control:checked + .mdc-checkbox__ripple {
  background-color: transparent;
}
mat-checkbox .mdc-checkbox:hover > .mdc-checkbox__native-control:not(:checked) ~ .mdc-checkbox__background,
mat-checkbox .mdc-checkbox:focus-within > .mdc-checkbox__native-control:not(:checked) ~ .mdc-checkbox__background,
mat-checkbox .mdc-checkbox:hover > .mdc-checkbox__native-control:not(:indeterminate) ~ .mdc-checkbox__background,
mat-checkbox .mdc-checkbox:focus-within > .mdc-checkbox__native-control:not(:indeterminate) ~ .mdc-checkbox__background {
  border-color: #71717a;
}
mat-checkbox .mdc-checkbox__native-control:checked ~ .mdc-checkbox__background > .mdc-checkbox__checkmark {
  transition: opacity 180ms cubic-bezier(0, 0, 0.2, 1), transform 180ms cubic-bezier(0, 0, 0.2, 1);
  width: 13px;
  height: 12px;
  color: white;
  left: 1px;
  top: 1px;
}
mat-checkbox .mdc-checkbox__native-control:enabled:checked ~ .mdc-checkbox__background,
mat-checkbox .mdc-checkbox__native-control:enabled:indeterminate ~ .mdc-checkbox__background {
  background-color: #1c75bc !important;
  border-color: #1c75bc !important;
}
mat-checkbox .mdc-checkbox__native-control:disabled:checked ~ .mdc-checkbox__background,
mat-checkbox .mdc-checkbox__native-control:disabled:indeterminate ~ .mdc-checkbox__background {
  background-color: #d4d4d8;
  border-color: #d4d4d8 !important;
}
.mat-mdc-checkbox.mat-mdc-checkbox-disabled label {
  color: #d4d4d8 !important;
}
.mdc-checkbox--disabled .mdc-checkbox__background {
  border-color: #f4f4f5 !important;
}
mat-radio-button .mdc-radio {
  width: auto !important;
  height: auto !important;
}
mat-radio-button .mdc-label {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.25rem;
  letter-spacing: -0.25px;
  color: var(--mat-sys-on-surface);
  font-size: 1rem;
}
mat-radio-button .mdc-form-field .mdc-radio {
  padding: 0 4px 0 0;
}
mat-radio-button .mdc-form-field .mdc-radio .mdc-radio__background {
  width: 1rem;
  height: 1rem;
}
mat-radio-button .mat-internal-form-field {
  align-items: flex-end;
}
mat-radio-button .mat-internal-form-field .mdc-radio--disabled + label {
  color: #d4d4d8;
}
mat-radio-button .mdc-radio__native-control:checked + .mdc-radio__background .mdc-radio__outer-circle {
  border-width: 4px;
}
mat-radio-button .mdc-radio__native-control:checked + .mdc-radio__background .mdc-radio__inner-circle {
  display: none;
}
mat-slide-toggle .mdc-label {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.25rem;
  letter-spacing: -0.25px;
}
mat-slide-toggle .mdc-switch__ripple {
  display: none;
}
.mdc-switch__icon {
  display: none;
}
.mdc-switch .mdc-switch__handle::after {
  background-color: #ffffff !important;
}
mat-datepicker-content .mat-calendar-content {
  padding: 6px 12px 2px 12px;
}
mat-datepicker-content .mat-datepicker-content-container-with-custom-header .mat-calendar {
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: -0.25px;
  width: 343px;
}
mat-month-view .mat-calendar-table-header {
  border-bottom: 1px solid #a1a1aa;
}
mat-month-view .mat-calendar-table-header th {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.25rem;
  letter-spacing: -0.25px;
  padding-bottom: 5px;
}
mat-month-view .mat-calendar-body-label[colspan="7"] {
  display: none;
}
mat-month-view .mat-calendar-body-label {
  opacity: 0;
}
mat-month-view .mat-calendar-body-cell {
  font-family: Inter, sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.25rem;
  letter-spacing: -0.25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
mat-month-view .mat-calendar-body-cell .mat-calendar-body-cell-content {
  color: var(--mat-sys-on-surface) !important;
}
mat-month-view .mat-calendar-body-cell .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  width: 24px;
  height: 24px;
  border-radius: 8px;
}
mat-month-view .mat-calendar-body-cell .mat-calendar-body-cell-content.mat-focus-indicator {
  position: static;
}
mat-month-view .mat-calendar-body-cell .mat-calendar-body-selected {
  width: 24px;
  height: 24px;
  border-radius: 8px;
}
.cdk-overlay-pane.mat-mdc-dialog-panel {
  min-width: 450px;
}
.cdk-overlay-pane.mat-mdc-dialog-panel mat-dialog-container.mat-mdc-dialog-container mat-icon {
  font-family: "Material Icons Outlined" !important;
}
.cdk-overlay-pane.mat-mdc-dialog-panel mat-dialog-container.mat-mdc-dialog-container .mat-mdc-dialog-surface {
  background-color: transparent;
}
.cdk-overlay-pane:not(.mat-mdc-select-panel-above) div.mat-mdc-select-panel {
  border-radius: 12px !important;
}
mat-tab-group mat-tab-header .mdc-tab__text-label {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
}
mat-tab-group mat-tab-header .mdc-tab__text-label mat-icon {
  color: var(--mat-sys-on-surface);
}
mat-tab-group .mat-mdc-tab-label-container {
  border-bottom: 1px solid #e4e4e7;
}
mat-tab-group .mat-mdc-tab-label-container .mat-mdc-tab.mdc-tab--active .mdc-tab__text-label {
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
  color: #1c75bc;
}
mat-tab-group .mat-mdc-tab-label-container .mat-mdc-tab.mdc-tab--active .mdc-tab__text-label mat-icon {
  color: #1c75bc;
}
mat-tab-group .mat-mdc-tab-label-container .mat-mdc-tab.mdc-tab--active .mdc-tab-indicator.mdc-tab-indicator__content {
  border-bottom: 1px solid #1c75bc;
}
mat-tab-group .mat-mdc-tab-labels {
  justify-content: space-between;
}
mat-icon {
  font-family: "Material Icons Outlined" !important;
  color: inherit;
}
.mdc-dialog--open .mat-mdc-dialog-surface,
.mdc-dialog--closing .mat-mdc-dialog-surface {
  border-radius: 12px;
}
.mat-mdc-dialog-content {
  color: var(--mat-sys-on-surface) !important;
  font-size: unset;
  font-weight: unset;
}
.mat-mdc-dialog-surface {
  background-color: var(--mat-sys-surface) !important;
}
mat-dialog-content {
  padding: 0 16px;
}
.mat-ripple-element {
  transition-duration: 0ms !important;
}
mat-tab-header .mat-mdc-tab.mdc-tab {
  padding: 0px 12px;
  min-width: 20px;
}
mat-tab-header .mat-mdc-tab-header-pagination-controls-enabled .mat-mdc-tab-header-pagination {
  display: none !important;
}
mat-tab-header .mat-mdc-tab-list {
  -ms-overflow-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}
mat-tab-header .mat-mdc-tab-list::-webkit-scrollbar {
  display: none;
}
.mat-mdc-tab.mdc-tab--active .mdc-tab__content .mdc-tab__text-label {
  color: #1c75bc;
}
.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.mat-button-toggle-group-appearance-standard {
  border-radius: 12px !important;
}
.mat-button-toggle {
  font-size: 17px !important;
  font-weight: 400 !important;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
}
.mat-button-toggle-checked .mat-button-toggle-button .mat-button-toggle-label-content {
  font-weight: 600;
  color: #18181b;
  letter-spacing: -0.2px !important;
}
.mat-drawer-container .mat-drawer .dark-theme .mat-button-toggle-checked {
  background-color: #71717a !important;
}
.mat-drawer-container .mat-drawer .dark-theme .mat-button-toggle-checked .mat-button-toggle-label-content {
  color: #ffffff !important;
}
mat-dialog-container.mat-mdc-dialog-container .mat-mdc-dialog-content {
  color: var(--mat-sys-on-surface);
}
mat-table mat-header-row.mat-mdc-header-row {
  background: #f8fafa;
}
.mdc-tooltip {
  animation: none !important;
  white-space: pre-line;
}
.mdc-tooltip .mat-mdc-tooltip-surface {
  max-width: 350px;
  background-color: var(--mat-sys-surface);
  outline: 1px solid #e4e4e7;
  font-family: Inter, sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1rem;
  letter-spacing: -0.25px;
  text-align: center;
}
.mat-expansion-panel .mat-expansion-panel-header .mat-expansion-indicator svg {
  fill: var(--mat-sys-on-surface);
}
.mat-expansion-panel-header {
  height: 100% !important;
}
.dark-theme mat-tab-group .mat-mdc-tab-label-container {
  border-bottom: 1px solid #3f3f46;
}
.dark-theme mat-form-field.mat-mdc-form-field .mdc-text-field--disabled {
  background-color: #3f3f46 !important;
}
.dark-theme .highlighted-actions mat-dialog-actions {
  background-color: #27272a !important;
}
.dark-theme app-aplhabetical-filter .header {
  background-color: #27272a !important;
}
.dark-theme mat-table mat-header-row.mat-mdc-header-row {
  background: #27272a;
}
.dark-theme mat-option.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled):not(.mat-mdc-option-multiple) {
  background-color: #3f3f46;
}
.dark-theme .cdk-overlay-pane {
  box-shadow: none !important;
  margin-top: 1px;
  border: 1px solid #f4f4f5;
}
.m-0 {
  margin: 0px;
}
.m-4 {
  margin: 4px;
}
.m-8 {
  margin: 8px;
}
.m-12 {
  margin: 12px;
}
.m-16 {
  margin: 16px;
}
.m-20 {
  margin: 20px;
}
.m-24 {
  margin: 24px;
}
.m-32 {
  margin: 32px;
}
.m-40 {
  margin: 40px;
}
.mt-4 {
  margin-top: 4px;
}
.mb-4 {
  margin-bottom: 4px;
}
.ml-4 {
  margin-left: 4px;
}
.mr-4 {
  margin-right: 4px;
}
.mt-8 {
  margin-top: 8px;
}
.mb-8 {
  margin-bottom: 8px;
}
.ml-8 {
  margin-left: 8px;
}
.mr-8 {
  margin-right: 8px;
}
.mt-12 {
  margin-top: 12px;
}
.mb-12 {
  margin-bottom: 12px;
}
.ml-12 {
  margin-left: 12px;
}
.mr-12 {
  margin-right: 12px;
}
.mt-16 {
  margin-top: 16px;
}
.mb-16 {
  margin-bottom: 16px;
}
.ml-16 {
  margin-left: 16px;
}
.mr-16 {
  margin-right: 16px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mt-20 {
  margin-top: 20px;
}
.mb-24 {
  margin-bottom: 24px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-32 {
  margin-top: 32px;
}
.mt-40 {
  margin-top: 40px;
}
.mdc-button.mdc-button--unelevated.mat-mdc-unelevated-button.mat-unthemed.mat-mdc-button-base {
  color: #ffffff;
  width: 100%;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
  height: 50px;
}
.mdc-button.mdc-button--unelevated.mat-mdc-unelevated-button.mat-unthemed.mat-mdc-button-base:hover {
  background-color: #145488;
}
.mdc-button.mdc-button--unelevated.mat-mdc-unelevated-button.mat-unthemed.mat-mdc-button-base:disabled {
  color: #e4e4e7;
  background-color: #f4f4f5;
}
.mdc-button.mdc-button--outlined.mat-mdc-outlined-button.mat-unthemed.mat-mdc-button-base {
  border: 1px solid #e4e4e7;
  width: 100%;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
  height: 50px;
}
.mdc-button.mdc-button--outlined.mat-mdc-outlined-button.mat-unthemed.mat-mdc-button-base:hover {
  border-color: #145488;
  color: #145488;
}
.mdc-button.mdc-button--outlined.mat-mdc-outlined-button.mat-unthemed.mat-mdc-button-base:disabled {
  border-color: #d4d4d8;
  color: #d4d4d8;
}
.mdc-button.mat-mdc-button.mat-unthemed.mat-mdc-button-base {
  width: 100%;
  border-radius: 8px;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
  height: 50px;
}
.mdc-button.mat-mdc-button.mat-unthemed.mat-mdc-button-base:hover {
  border-color: #145488;
  color: #145488;
}
.mdc-button.mat-mdc-button.mat-unthemed.mat-mdc-button-base:disabled {
  background-color: #f4f4f5;
}
.mdc-button.mat-mdc-button.mat-unthemed.mat-mdc-button-base:disabled * {
  color: #e4e4e7;
}
.mdc-button__label {
  display: flex;
  align-items: center;
}
.mat-mdc-button.menu-button {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
  height: 60px;
  text-align: start;
  color: #18181b;
}
.mat-mdc-button.menu-button span {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
  color: #18181b;
}
.mat-mdc-button.menu-button mat-icon {
  color: #18181b;
}
.mat-mdc-button.menu-button span.mdc-button__label {
  width: 100%;
}
.mat-mdc-button.change-avatar {
  width: 200px !important;
  background-color: #eef8ff;
  margin: 0 auto;
}
.mat-mdc-button.change-avatar .change-photo-label {
  color: #1c75bc;
}
.mat-mdc-button.change-avatar:hover {
  background-color: #1c75bc;
}
.mat-mdc-button.change-avatar:hover .change-photo-label {
  color: #eef8ff;
}
.dark-theme .mat-mdc-button.menu-button span {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
  color: #f4f4f5;
}
.dark-theme .mat-mdc-button.menu-button mat-icon {
  color: #f4f4f5;
}
.dark-theme .mat-mdc-button.change-avatar {
  background-color: #1c75bc;
}
.dark-theme .mat-mdc-button.change-avatar .change-photo-label {
  color: #eef8ff;
}
.dark-theme .mat-mdc-button.change-avatar:hover {
  background-color: #eef8ff;
}
.dark-theme .mat-mdc-button.change-avatar:hover .change-photo-label {
  color: #1c75bc;
}
.btn-icon {
  font-size: 14px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
  transition: all 0.3s ease;
}
.btn-icon mat-icon {
  color: inherit;
}
.btn-icon:active {
  filter: brightness(0.75);
}
.btn-icon:disabled {
  pointer-events: none;
}
.btn-icon:hover {
  background-color: #f8fafa;
}
.btn {
  width: 100%;
  padding: 14px 24px;
  gap: 12px;
  white-space: nowrap;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: Inter, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
  transition: all 0.3s ease;
}
.btn mat-icon {
  color: inherit;
}
.btn:active {
  filter: brightness(0.75);
}
.btn:disabled {
  pointer-events: none;
}
.blue-primary {
  background-color: #1c75bc;
  color: #ffffff;
}
.blue-primary:hover {
  background-color: #145488;
}
.blue-primary:disabled {
  background-color: #f4f4f5;
  color: #e4e4e7;
}
.blue-secondary {
  background-color: #eef8ff;
  color: #145488;
}
.blue-secondary:hover {
  background-color: #93c6ef;
}
.blue-secondary:disabled {
  background-color: #f4f4f5;
  color: #e4e4e7;
}
.blue-outlined {
  color: #1c75bc;
  border: 1px solid #1c75bc;
}
.blue-outlined:hover {
  border-color: #1863a0;
  color: #1863a0;
}
.blue-outlined:disabled {
  color: #d4d4d8;
  border-color: #d4d4d8;
}
.blue-text {
  color: #1c75bc;
}
.blue-text:hover {
  color: #145488;
}
.blue-text:disabled {
  color: #d4d4d8;
  border-color: #d4d4d8;
}
.red-primary {
  background-color: #c4432b;
  color: #ffffff;
}
.red-primary:hover {
  background-color: #801f0f;
}
.red-primary:disabled {
  background-color: #f4f4f5;
  color: #e4e4e7;
}
.red-secondary {
  background-color: #fff3ef;
  color: #801f0f;
}
.red-secondary:hover {
  background-color: #ffb4a1;
}
.red-secondary:disabled {
  background-color: #f4f4f5;
  color: #e4e4e7;
}
.red-outlined {
  color: #c4432b;
  border: 1px solid #ffb4a1;
}
.red-outlined:hover {
  border-color: #9e2f1c;
  color: #9e2f1c;
}
.red-outlined:disabled {
  color: #d4d4d8;
  border-color: #d4d4d8;
}
.red-text {
  color: #c4432b;
}
.red-text:hover {
  color: #801f0f;
}
.red-text:disabled {
  color: #d4d4d8;
}
.black-primary {
  background-color: #18181b;
  color: #ffffff;
}
.black-primary:hover {
  background-color: #3f3f46;
}
.black-primary:disabled {
  background-color: #f4f4f5;
  color: #e4e4e7;
}
.black-secondary {
  background-color: #f4f4f5;
  color: #18181b;
}
.black-secondary:hover {
  background-color: #e4e4e7;
}
.black-secondary:disabled {
  background-color: #f4f4f5;
  color: #e4e4e7;
}
.black-outlined {
  color: #18181b;
  border: 1px solid #e4e4e7;
}
.black-outlined:hover {
  border-color: #71717a;
  color: #71717a;
}
.black-outlined:disabled {
  color: #d4d4d8;
  border-color: #d4d4d8;
}
.black-text {
  color: var(--mat-sys-on-surface);
}
.black-text:hover {
  color: #71717a;
}
.black-text:disabled {
  color: #d4d4d8;
}
.dark-theme .blue-secondary {
  color: #1c75bc;
}
.dark-theme .blue-secondary:hover {
  color: #145488;
  background-color: #aed4f3;
}
.dark-theme .blue-primary:disabled,
.dark-theme .blue-secondary:disabled,
.dark-theme .red-primary:disabled,
.dark-theme .red-secondary:disabled,
.dark-theme .black-primary:disabled,
.dark-theme .black-secondary:disabled {
  background-color: #3f3f46 !important;
  color: #18181b !important;
}
.dark-theme .blue-outlined:disabled,
.dark-theme .red-outlined:disabled,
.dark-theme .black-outlined:disabled {
  border-color: #52525b !important;
  color: #52525b !important;
}
.dark-theme .black-primary,
.dark-theme .black-secondary {
  background-color: #ffffff !important;
  color: #27272a !important;
}
.dark-theme .black-primary:hover,
.dark-theme .black-secondary:hover {
  background-color: #d4d4d8 !important;
}
.dark-theme .black-outlined {
  border-color: #e4e4e7 !important;
  color: #ffffff !important;
}
.dark-theme .black-outlined:hover {
  border-color: #a1a1aa !important;
  color: #a1a1aa !important;
}
.dark-theme .black-text {
  color: var(--mat-sys-on-surface);
}
.dark-theme .black-text:hover {
  color: #a1a1aa !important;
}
.dark-theme .black-text:disabled {
  color: #52525b !important;
}
.dark-theme .red-text {
  color: #ec6547 !important;
}
.dark-theme .red-text:hover {
  color: #c4432b !important;
}
.dark-theme .btn-icon.red-text:hover,
.dark-theme .btn-icon.black-text:hover,
.dark-theme .btn-icon.blue-text:hover {
  background-color: #3f3f46 !important;
}
button.password-visibility {
  color: #71717a;
}
.sort-btn:hover .swap-icon {
  transition: all 0.3s ease;
  filter: brightness(0) saturate(100%) invert(46%) sepia(5%) saturate(495%) hue-rotate(201deg) brightness(96%) contrast(95%);
}
.ng-select-container {
  height: 100%;
}
.ng-select-container .ng-value-container {
  display: flex;
  align-items: center;
  padding: 0 16px 0 44px;
  color: #a1a1aa;
}
.ng-select-container .ng-value-container .ng-placeholder {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
}
.ng-select.custom {
  display: block;
  background-color: var(--mat-sys-surface);
  border-radius: 12px;
  border: 1px solid #e4e4e7;
  height: 48px;
}
.ng-select.custom .ng-spinner-loader {
  display: none;
}
.ng-select.custom .ng-clear-wrapper {
  display: none;
}
.ng-select.custom .ng-option {
  display: flex;
}
.ng-select.custom .ng-option:last-child {
  display: block;
}
.ng-select.custom .ng-option-selected label {
  color: #4f7ed0;
}
.ng-select.custom .ng-option-selected .checkbox-container input[type=checkbox] + label::before {
  background-color: #1c75bc;
  background-image: url("./media/check_mark.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 130%;
  color: white;
  border-color: transparent;
}
.ng-select.custom ng-dropdown-panel {
  background-color: var(--mat-sys-background, #ffffff);
  border-radius: 12px;
  box-shadow: 0px 0px 9px 0px #d4d4d8;
  margin-top: 2px;
  max-height: 250px;
}
.ng-select.custom ng-dropdown-panel .scroll-host {
  padding-top: 8px;
  border-radius: 12px;
}
.ng-select.custom ng-dropdown-panel .ng-dropdown-panel-items {
  max-height: 240px;
}
.ng-select.custom ng-dropdown-panel .ng-dropdown-panel-items .ng-option {
  color: var(--mat-sys-on-background);
  box-shadow: 0 1px 0 0 #e4e4e7;
  padding: 10px;
  font-size: 17px;
  font-weight: 400;
  font-family:
    Inter,
    "Helvetica Neue",
    sans-serif;
  white-space: normal;
}
.ng-select.custom ng-dropdown-panel .ng-dropdown-panel-items .ng-option:hover,
.ng-select.custom ng-dropdown-panel .ng-dropdown-panel-items .ng-option.ng-option-marked {
  background-color: var(--mat-option-hover-state-layer-color, color-mix(in srgb, var(--mat-sys-on-surface) calc(var(--mat-sys-hover-state-layer-opacity) * 100%), transparent)) !important;
}
.ng-select.custom ng-dropdown-panel .ng-dropdown-panel-items .ng-option .ng-option-label {
  margin: 5px;
  display: inline-block;
}
.ng-select.custom .ng-input {
  font-size: 17px !important;
}
.ng-select.custom .ng-input::before {
  content: "";
  display: inline-block;
  background-image: url("./media/search.svg");
  background-size: 24px 24px;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  pointer-events: none;
}
.ng-select.custom .ng-input input {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
  color: var(--mat-sys-on-surface);
}
.ng-select.ng-select-single .ng-select-container .ng-value-container {
  color: var(--mat-sys-on-surface);
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
  position: relative;
  padding: 0 25px 0 25px;
}
.ng-select.ng-select-single .ng-select-container .ng-value-container .ng-input {
  padding: 0 16px 0 44px;
}
.ng-select.ng-select-single .ng-select-container .ng-value-container::after {
  content: "";
  display: inline-block;
  background-image: url("./media/arrow.svg");
  background-size: 12px 12px;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  pointer-events: none;
}
.ng-select.ng-select-single .ng-select-container .ng-value-container .ng-placeholder {
  color: #e4e4e7;
}
.ng-select.ng-select-single .ng-select-container .ng-value-container .ng-value {
  display: block;
}
.ng-select.ng-select-single .ng-has-value .ng-placeholder {
  display: none;
}
.ng-select-focused {
  border: 1px solid #1c75bc !important;
  box-shadow: 0px 0px 3.9px 0px #6fb3ea;
}
.ng-select-searchable .ng-select-container .ng-value-container {
  padding: 0 16px 0 44px !important;
}
.ng-select.custom.hide-search-icon .ng-input::before {
  display: none;
}
.ng-select.custom.hide-search-icon.ng-select-searchable .ng-select-container .ng-value-container {
  padding: 0 16px !important;
}
.ng-select.ng-select-disabled {
  background-color: #f4f4f5 !important;
  color: #71717a;
}
.ng-select.ng-select-disabled .ng-placeholder {
  color: #71717a;
}
.ng-select.ng-select-disabled .ng-value-container {
  color: #71717a;
}
.ng-select.ng-select-disabled .ng-select-container .ng-value-container::after {
  display: none;
}
.ng-select.small {
  height: 36px;
}
.ng-select.small .ng-select-container .ng-value-container {
  padding: 0 12px;
}
.dark-theme .ng-select-disabled {
  background-color: #3f3f46 !important;
}
mat-table.simple-table {
  margin-top: 20px;
  background-color: inherit;
  border-radius: 12px;
  overflow-x: hidden;
  border: 1px solid #e4e4e7;
  display: none;
}
@media (min-width: 600px) {
  mat-table.simple-table {
    display: block;
  }
}
mat-table.simple-table mat-header-row.mat-mdc-header-row {
  min-height: 48px;
}
mat-table.simple-table mat-header-row.mat-mdc-header-row mat-header-cell.mat-mdc-header-cell {
  color: #71717a;
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.25rem;
  letter-spacing: -0.25px;
  border-bottom: 1px solid #e4e4e7;
  width: 100%;
  padding: 0 10px !important;
  font-size: 0.9rem !important;
}
mat-table.simple-table mat-header-row.mat-mdc-header-row mat-header-cell.mat-mdc-header-cell:not(:last-child) {
  border-right: 1px solid #e4e4e7;
}
mat-table.simple-table mat-row.mat-mdc-row:hover {
  background-color: var(--mat-sys-outline-variant);
  cursor: pointer;
}
mat-table.simple-table mat-row.mat-mdc-row mat-cell.mat-mdc-cell {
  font-family: Inter, sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4rem;
  letter-spacing: -0.25px;
  padding: 0 10px;
  font-size: 0.9rem !important;
  word-break: break-word;
  border-color: #e4e4e7;
}
mat-table.simple-table mat-row.mat-mdc-row mat-cell.mat-mdc-cell .table-button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 100%;
  text-align: left;
}
mat-table.simple-table mat-row.mat-mdc-row mat-cell.mat-mdc-cell .table-button span {
  color: #1c75bc;
  font-weight: 700;
  font-size: 0.9rem;
}
mat-table.simple-table mat-row.mat-mdc-row mat-cell.mat-mdc-cell .table-button:disabled span {
  font-weight: normal;
  color: #18181b;
}
mat-table.simple-table mat-row.mat-mdc-row mat-cell.mat-mdc-cell .table-button mat-icon {
  color: #52525b;
}
mat-table.simple-table mat-row.mat-mdc-row mat-cell.mat-mdc-cell:not(:last-child) {
  border-right: 1px solid #e4e4e7;
}
html {
  color-scheme: light dark;
  --mat-sys-background: light-dark(#18181b, );
  --mat-sys-error: light-dark(#c44328, #801f0f);
  --mat-sys-error-container: light-dark(#510901, #fdbc73);
  --mat-sys-inverse-on-surface: light-dark(#18181b, #e4e4e7);
  --mat-sys-inverse-primary: light-dark(#145488, #3f98e2);
  --mat-sys-inverse-surface: light-dark(#e4e4e7, #18181b);
  --mat-sys-on-background: light-dark(#f4f4f5, #18181b);
  --mat-sys-on-error: light-dark(#510901, #ffdbb3);
  --mat-sys-on-error-container: light-dark(#fdbc73, #510901);
  --mat-sys-on-primary: light-dark(#0f3d82, #90c6ef);
  --mat-sys-on-primary-container: light-dark(#6fb3ea, #0f3d82);
  --mat-sys-on-primary-fixed: light-dark(#aed4f3, #aed4f3);
  --mat-sys-on-primary-fixed-variant: light-dark(#6fb3ea, #6fb3ea);
  --mat-sys-on-secondary: light-dark(#0d182f, #90c6ef);
  --mat-sys-on-secondary-container: light-dark(#4f7ed0, #0d182f);
  --mat-sys-on-secondary-fixed: light-dark(#c9e7f4, #c9e7f4);
  --mat-sys-on-secondary-fixed-variant: light-dark(#4f7ed0, #4f7ed0);
  --mat-sys-on-surface: light-dark(#f4f4f5, #18181b);
  --mat-sys-on-surface-variant: light-dark(#d4d4d8, #18181b);
  --mat-sys-on-tertiary: light-dark(#0f3d82, #90c6ef);
  --mat-sys-on-tertiary-container: light-dark(#6fb3ea, #0f3d82);
  --mat-sys-on-tertiary-fixed: light-dark(#aed4f3, #aed4f3);
  --mat-sys-on-tertiary-fixed-variant: light-dark(#6fb3ea, #6fb3ea);
  --mat-sys-outline: light-dark(#71717a, #71717a);
  --mat-sys-outline-variant: light-dark(#3f3f46, #d4d4d8);
  --mat-sys-primary: light-dark(#3f98e2, #145488);
  --mat-sys-primary-container: light-dark(#0f3d82, #6fb3ea);
  --mat-sys-primary-fixed: light-dark(#0f3d82, #0f3d82);
  --mat-sys-primary-fixed-dim: light-dark(#145488, #145488);
  --mat-sys-scrim: light-dark(#fbfafa, #fbfafa);
  --mat-sys-secondary: light-dark(#2d5a7a, #112340);
  --mat-sys-secondary-container: light-dark(#0d182f, #4f7ed0);
  --mat-sys-secondary-fixed: light-dark(#0d182f, #0d182f);
  --mat-sys-secondary-fixed-dim: light-dark(#112340, #112340);
  --mat-sys-shadow: light-dark(#fbfafa, #fbfafa);
  --mat-sys-surface: light-dark(#18181b, );
  --mat-sys-surface-bright: light-dark(#18181b, );
  --mat-sys-surface-container: light-dark(, );
  --mat-sys-surface-container-high: light-dark(, );
  --mat-sys-surface-container-highest: light-dark(#18181b, );
  --mat-sys-surface-container-low: light-dark(, #f4f4f5);
  --mat-sys-surface-container-lowest: light-dark(#18181b, );
  --mat-sys-surface-dim: light-dark(, );
  --mat-sys-surface-tint: light-dark(#3f98e2, #145488);
  --mat-sys-surface-variant: light-dark(#18181b, #d4d4d8);
  --mat-sys-tertiary: light-dark(#3f98e2, #145488);
  --mat-sys-tertiary-container: light-dark(#0f3d82, #6fb3ea);
  --mat-sys-tertiary-fixed: light-dark(#0f3d82, #0f3d82);
  --mat-sys-tertiary-fixed-dim: light-dark(#145488, #145488);
  --mat-sys-neutral-variant20: #e4e4e7;
  --mat-sys-neutral10: #f4f4f5;
  --mat-sys-level0:
    0px 0px 0px 0px rgba(251, 250, 250, 0.2),
    0px 0px 0px 0px rgba(251, 250, 250, 0.14),
    0px 0px 0px 0px rgba(251, 250, 250, 0.12);
  --mat-sys-level1:
    0px 2px 1px -1px rgba(251, 250, 250, 0.2),
    0px 1px 1px 0px rgba(251, 250, 250, 0.14),
    0px 1px 3px 0px rgba(251, 250, 250, 0.12);
  --mat-sys-level2:
    0px 3px 3px -2px rgba(251, 250, 250, 0.2),
    0px 3px 4px 0px rgba(251, 250, 250, 0.14),
    0px 1px 8px 0px rgba(251, 250, 250, 0.12);
  --mat-sys-level3:
    0px 3px 5px -1px rgba(251, 250, 250, 0.2),
    0px 6px 10px 0px rgba(251, 250, 250, 0.14),
    0px 1px 18px 0px rgba(251, 250, 250, 0.12);
  --mat-sys-level4:
    0px 5px 5px -3px rgba(251, 250, 250, 0.2),
    0px 8px 10px 1px rgba(251, 250, 250, 0.14),
    0px 3px 14px 2px rgba(251, 250, 250, 0.12);
  --mat-sys-level5:
    0px 7px 8px -4px rgba(251, 250, 250, 0.2),
    0px 12px 17px 2px rgba(251, 250, 250, 0.14),
    0px 5px 22px 4px rgba(251, 250, 250, 0.12);
  --mat-sys-body-large: 300 1rem / 1.5rem Inter;
  --mat-sys-body-large-font: Inter;
  --mat-sys-body-large-line-height: 1.5rem;
  --mat-sys-body-large-size: 1rem;
  --mat-sys-body-large-tracking: 0.031rem;
  --mat-sys-body-large-weight: 300;
  --mat-sys-body-medium: 300 0.875rem / 1.25rem Inter;
  --mat-sys-body-medium-font: Inter;
  --mat-sys-body-medium-line-height: 1.25rem;
  --mat-sys-body-medium-size: 0.875rem;
  --mat-sys-body-medium-tracking: 0.016rem;
  --mat-sys-body-medium-weight: 300;
  --mat-sys-body-small: 300 0.75rem / 1rem Inter;
  --mat-sys-body-small-font: Inter;
  --mat-sys-body-small-line-height: 1rem;
  --mat-sys-body-small-size: 0.75rem;
  --mat-sys-body-small-tracking: 0.025rem;
  --mat-sys-body-small-weight: 300;
  --mat-sys-display-large: 300 3.562rem / 4rem Open Sans;
  --mat-sys-display-large-font: Open Sans;
  --mat-sys-display-large-line-height: 4rem;
  --mat-sys-display-large-size: 3.562rem;
  --mat-sys-display-large-tracking: -0.016rem;
  --mat-sys-display-large-weight: 300;
  --mat-sys-display-medium: 300 2.812rem / 3.25rem Open Sans;
  --mat-sys-display-medium-font: Open Sans;
  --mat-sys-display-medium-line-height: 3.25rem;
  --mat-sys-display-medium-size: 2.812rem;
  --mat-sys-display-medium-tracking: 0;
  --mat-sys-display-medium-weight: 300;
  --mat-sys-display-small: 300 2.25rem / 2.75rem Open Sans;
  --mat-sys-display-small-font: Open Sans;
  --mat-sys-display-small-line-height: 2.75rem;
  --mat-sys-display-small-size: 2.25rem;
  --mat-sys-display-small-tracking: 0;
  --mat-sys-display-small-weight: 300;
  --mat-sys-headline-large: 300 2rem / 2.5rem Open Sans;
  --mat-sys-headline-large-font: Open Sans;
  --mat-sys-headline-large-line-height: 2.5rem;
  --mat-sys-headline-large-size: 2rem;
  --mat-sys-headline-large-tracking: 0;
  --mat-sys-headline-large-weight: 300;
  --mat-sys-headline-medium: 300 1.75rem / 2.25rem Open Sans;
  --mat-sys-headline-medium-font: Open Sans;
  --mat-sys-headline-medium-line-height: 2.25rem;
  --mat-sys-headline-medium-size: 1.75rem;
  --mat-sys-headline-medium-tracking: 0;
  --mat-sys-headline-medium-weight: 300;
  --mat-sys-headline-small: 300 1.5rem / 2rem Open Sans;
  --mat-sys-headline-small-font: Open Sans;
  --mat-sys-headline-small-line-height: 2rem;
  --mat-sys-headline-small-size: 1.5rem;
  --mat-sys-headline-small-tracking: 0;
  --mat-sys-headline-small-weight: 300;
  --mat-sys-label-large: 500 0.875rem / 1.25rem Inter;
  --mat-sys-label-large-font: Inter;
  --mat-sys-label-large-line-height: 1.25rem;
  --mat-sys-label-large-size: 0.875rem;
  --mat-sys-label-large-tracking: 0.006rem;
  --mat-sys-label-large-weight: 500;
  --mat-sys-label-large-weight-prominent: 900;
  --mat-sys-label-medium: 500 0.75rem / 1rem Inter;
  --mat-sys-label-medium-font: Inter;
  --mat-sys-label-medium-line-height: 1rem;
  --mat-sys-label-medium-size: 0.75rem;
  --mat-sys-label-medium-tracking: 0.031rem;
  --mat-sys-label-medium-weight: 500;
  --mat-sys-label-medium-weight-prominent: 900;
  --mat-sys-label-small: 500 0.688rem / 1rem Inter;
  --mat-sys-label-small-font: Inter;
  --mat-sys-label-small-line-height: 1rem;
  --mat-sys-label-small-size: 0.688rem;
  --mat-sys-label-small-tracking: 0.031rem;
  --mat-sys-label-small-weight: 500;
  --mat-sys-title-large: 300 1.375rem / 1.75rem Open Sans;
  --mat-sys-title-large-font: Open Sans;
  --mat-sys-title-large-line-height: 1.75rem;
  --mat-sys-title-large-size: 1.375rem;
  --mat-sys-title-large-tracking: 0;
  --mat-sys-title-large-weight: 300;
  --mat-sys-title-medium: 500 1rem / 1.5rem Inter;
  --mat-sys-title-medium-font: Inter;
  --mat-sys-title-medium-line-height: 1.5rem;
  --mat-sys-title-medium-size: 1rem;
  --mat-sys-title-medium-tracking: 0.009rem;
  --mat-sys-title-medium-weight: 500;
  --mat-sys-title-small: 500 0.875rem / 1.25rem Inter;
  --mat-sys-title-small-font: Inter;
  --mat-sys-title-small-line-height: 1.25rem;
  --mat-sys-title-small-size: 0.875rem;
  --mat-sys-title-small-tracking: 0.006rem;
  --mat-sys-title-small-weight: 500;
  --mat-sys-corner-extra-large: 28px;
  --mat-sys-corner-extra-large-top: 28px 28px 0 0;
  --mat-sys-corner-extra-small: 4px;
  --mat-sys-corner-extra-small-top: 4px 4px 0 0;
  --mat-sys-corner-full: 9999px;
  --mat-sys-corner-large: 16px;
  --mat-sys-corner-large-end: 0 16px 16px 0;
  --mat-sys-corner-large-start: 16px 0 0 16px;
  --mat-sys-corner-large-top: 16px 16px 0 0;
  --mat-sys-corner-medium: 12px;
  --mat-sys-corner-none: 0;
  --mat-sys-corner-small: 8px;
  --mat-sys-dragged-state-layer-opacity: 0.16;
  --mat-sys-focus-state-layer-opacity: 0.12;
  --mat-sys-hover-state-layer-opacity: 0.08;
  --mat-sys-pressed-state-layer-opacity: 0.12;
  --mat-radio-disabled-selected-icon-color: #d4d4d8;
  --mat-radio-disabled-unselected-icon-color: #f4f4f5;
  --mat-radio-disabled-selected-icon-opacity: 0.5;
  --mat-radio-ripple-color: none;
  --mat-radio-label-text-color: #18181b;
  --mat-radio-checked-ripple-color: none;
  --mat-radio-selected-icon-color: #1c75bc;
  --mat-radio-unselected-icon-color: #d4d4d8;
  --mat-radio-selected-hover-icon-color: #1c75bc;
  --mat-radio-selected-focus-icon-color: #1c75bc;
  --mat-radio-unselected-hover-icon-color: #71717a;
  --mat-checkbox-selected-pressed-state-layer-color: none;
  --mat-checkbox-selected-pressed-icon-color: none;
  --mat-checkbox-selected-hover-state-layer-color: transparent;
  --mat-checkbox-state-layer-size: 28px;
  --mat-slide-toggle-track-outline-color: #f4f4f5;
  --mat-slide-toggle-selected-track-color: #1c75bc;
  --mat-slide-toggle-selected-focus-track-color: #1c75bc;
  --mat-slide-toggle-selected-hover-track-color: #1c75bc;
  --mat-slide-toggle-selected-pressed-track-color: #1c75bc;
  --mat-slide-toggle-unselected-focus-track-color: #f4f4f5;
  --mat-slide-toggle-unselected-hover-track-color: #f4f4f5;
  --mat-slide-toggle-unselected-pressed-track-color: #f4f4f5;
  --mat-slide-toggle-unselected-track-color: #f4f4f5;
  --mat-slide-toggle-selected-hover-state-layer-opacity: 0;
  --mat-slide-toggle-label-text-color: #18181b;
  --mat-datepicker-calendar-date-selected-state-text-color: #ffffff;
  --mat-datepicker-calendar-header-text-color: #a1a1aa;
  --mat-datepicker-calendar-date-text-color: #18181b;
  --mat-datepicker-calendar-container-text-color: #18181b;
  --mat-datepicker-calendar-date-selected-state-background-color: #1c75bc;
  --mat-datepicker-calendar-text-font: --mat-sys-body-small-font;
  --mat-tab-container-height: 36px;
  --mat-button-toggle-text-color: #3f3f46;
  --mat-button-toggle-background-color: var(--mat-sys-background);
  --mat-button-toggle-selected-state-background-color: #f4f4f5;
  --mat-button-toggle-selected-state-text-color: #18181b;
  --mat-button-toggle-divider-color: #e4e4e7;
  --mat-button-toggle-height: 50px;
  --mat-sys-primary: #1c75bc;
}
.light-theme {
  --mat-sys-background: #ffffff;
  --mat-sys-on-background: #18181bff;
  --mat-sys-surface: #ffffff;
  --mat-sys-on-surface: #18181bff;
  --mat-sys-surface-variant: variables.$black-800;
  --mat-sys-outline-variant: #f4f4f5ff;
}
@media (min-width: 600px) {
  .light-theme mat-sidenav-content {
    background-color: #f4f4f5 !important;
  }
}
.dark-theme {
  --mat-sys-background: #27272a;
  --mat-sys-on-background: #d4d4d8;
  --mat-sys-surface: #27272a;
  --mat-sys-on-surface: #d4d4d8;
  --mat-sys-surface-variant: variables.$black-0;
  --mat-sys-surface-container: #18181bff;
  --mat-sys-outline-variant: #18181b;
}
.dark-theme .layout-content {
  background-color: #18181b !important;
}
.dark-theme mat-sidenav-content {
  background-color: #27272a !important;
}
@media (min-width: 600px) {
  .dark-theme mat-sidenav-content {
    background-color: #18181b !important;
  }
}
.dark-theme .cdk-overlay-pane {
  border: 1px solid #18181b !important;
  background-color: #18181b !important;
}
.dark-theme .secondary-input {
  background-color: #3f3f46 !important;
}
.dark-theme .sort-btn .swap-icon {
  filter: brightness(0) saturate(100%) invert(98%) sepia(2%) saturate(0%) hue-rotate(217deg) brightness(101%) contrast(106%) !important;
  transition: all 0.3s ease;
}
.dark-theme .sort-btn:hover .swap-icon {
  filter: brightness(0) saturate(100%) invert(70%) sepia(11%) saturate(161%) hue-rotate(201deg) brightness(91%) contrast(91%) !important;
}
.dark-theme .chart-container,
.dark-theme .autocomplete-action {
  box-shadow: none !important;
}
.dark-theme .paginator-button:disabled {
  background-color: #3f3f46 !important;
  color: #d4d4d8 !important;
}
.dark-theme .info-block {
  color: #d4d4d8 !important;
}
.dark-theme .layout-content {
  background-color: #27272a !important;
}
@media (min-width: 600px) {
  .dark-theme .layout-content {
    background-color: #18181b !important;
  }
}
.dark-theme .mdc-list-item--selected:not(.mdc-list-item--disabled):not(.mat-mdc-option-multiple) .mdc-list-item__primary-text {
  color: #1c75bc !important;
}
body {
  background-color: #f4f4f5;
  color: var(--mat-sys-on-background);
}
body.dark-theme {
  background-color: #18181b !important;
}
html,
body {
  height: 100%;
  margin: 0;
}
html *,
body * {
  margin: 0;
  padding: 0;
  list-style: none;
  --mat-sys-label-large-font:
    Inter,
    "Helvetica Neue",
    sans-serif;
  font-family:
    Inter,
    "Helvetica Neue",
    sans-serif;
  box-sizing: border-box;
  word-wrap: break-word;
}
html a,
body a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}
html a:focus-visible,
body a:focus-visible {
  outline-offset: 3px;
  outline: 1px solid #1c75bc;
}
html button,
body button {
  border: none;
  outline: none;
  background-color: transparent;
}
html button:focus-visible,
body button:focus-visible {
  outline-offset: 3px;
  outline: 1px solid #1c75bc;
}
html input[type=number]::-webkit-outer-spin-button,
html input[type=number]::-webkit-inner-spin-button,
body input[type=number]::-webkit-outer-spin-button,
body input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
html input[type=number],
body input[type=number] {
  -moz-appearance: textfield;
}
html textarea,
body textarea {
  resize: none !important;
}
html .flex-center,
body .flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
html .no-hover,
body .no-hover {
  pointer-events: none;
}
.skeleton-loader {
  margin: 0 !important;
  min-width: 20px;
}

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