/* src/styles.scss */
html,
body {
  background: var(--bg-primary) !important;
  height: 100dvh;
  width: 100dvw;
  overflow-x: hidden;
}
body {
  margin: 0;
  box-sizing: border-box;
  font-family:
    Roboto,
    "Helvetica Neue",
    sans-serif;
}
.btn-filled {
  background: var(--brand-primary) !important;
  color: var(--bg-primary) !important;
  border-radius: 6px !important;
  border: none;
  font-size: 14px;
  font-weight: 500;
  font-family: var(--inter) !important;
  cursor: pointer;
  box-sizing: border-box;
  height: 32px;
  padding: 10px 12px 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.btn-filled:disabled {
  background-color: var(--bg-tertiary) !important;
  color: var(--text-secondary) !important;
}
.btn-outline {
  color: var(--brand-primary) !important;
  border-radius: 6px !important;
  border: 1px solid var(--brand-primary);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--inter) !important;
  background-color: transparent;
  cursor: pointer;
  box-sizing: border-box;
  height: 32px;
  padding: 10px 12px 10px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.error {
  color: var(--brand-destructive);
  font-size: 14px;
}
::-webkit-scrollbar {
  display: none;
  scrollbar-color: transparent !important;
}
::-webkit-scrollbar {
  scrollbar-width: thin;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.form-field label {
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: -1.6%;
  font-family: var(--inter);
}
.text-box-active {
  height: 32px;
  background-color: transparent;
  border-radius: 6px;
  border: 1px solid var(--separator);
  font-family: var(--inter);
  font-size: 16px;
  font-weight: 400;
  padding: 10px 16px;
  color: var(--text-secondary);
  box-sizing: border-box;
  width: 100%;
}
.text-box-active:focus {
  outline: none;
  box-shadow: 0 0 0 4px var(--input-focus);
  border-color: var(--text-tertiary);
}
.text-box-active::placeholder {
  font-family: var(--inter);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-tertiary);
}
.text-box-active:disabled {
  background-color: var(--bg-secondary);
}
.custom-checkbox {
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  display: flex;
  gap: 8px;
  align-items: center;
}
.text {
  cursor: pointer;
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: -1.6%;
  font-family: var(--inter);
}
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  vertical-align: middle;
  line-height: 1;
}
.custom-checkbox .checkmark {
  flex-shrink: 0;
  position: relative;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  border: 2px solid var(--text-secondary);
  border-radius: 2px;
  transition: border-color 0.2s ease;
}
.custom-checkbox .checkmark-filled {
  flex-shrink: 0;
  position: relative;
  top: 0;
  left: 0;
  height: 15px;
  width: 15px;
  border: 2px solid var(--text-tertiary);
  border-radius: 2px;
  transition: border-color 0.2s ease;
}
.custom-checkbox input:checked + .checkmark-filled {
  border-color: var(--brand-primary);
  background-color: var(--brand-primary);
}
.custom-checkbox input:checked + .checkmark {
  border-color: var(--brand-primary);
}
.custom-checkbox input:checked + .checkmark + .text {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}
.custom-checkbox input:checked + label {
  color: var(--brand-primary);
}
.custom-checkbox input:disabled {
  color: var(--text-tertiary);
}
.custom-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 4px;
  margin: 0px;
  width: 5px;
  height: 10px;
  border: solid var(--brand-primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.no-spinner::-webkit-outer-spin-button,
.no-spinner::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.no-spinner {
  -moz-appearance: textfield;
}
::ng-deep div.mat-mdc-autocomplete-panel {
  background-color: var(--bg-tertiary) !important;
  border-radius: 6px !important;
  margin-block: 4px;
  padding: 0px 0px !important;
  box-shadow: none !important;
}
::ng-deep .mat-mdc-option .mdc-list-item__primary-text {
  color: var(--text-primary) !important;
  font-family: var(--inter) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
}
::ng-deep .mat-mdc-option {
  padding: 10px 12px !important;
  min-height: 40px !important;
  height: 40px !important;
}
.checkbox-container {
  padding: 0px 4px;
  gap: 6px;
  display: flex;
  width: 100%;
  align-items: center;
}
.checkbox-label {
  font-family: var(--inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -1.6%;
  color: var(--text-secondary);
}
.checkbox-inactive {
  color: var(--text-secondary);
}
.checkbox-active {
  color: var(--brand-primary);
}
input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid var(--text-tertiary);
  background-color: transparent;
}
input[type=checkbox]:checked {
  border-color: var(--brand-primary);
  background-image: var(--tick-icon);
  background-position: center;
  background-repeat: no-repeat;
}
input[type=checkbox]:checked + label {
  color: var(--brand-primary);
}
.mat-mdc-option {
  min-height: 40px !important;
  font-family: var(--inter);
  font-size: 16px;
}
.mat-mdc-option.mdc-list-item--selected {
  background-color: var(--text-tertiary) !important;
}
.mat-mdc-option .mdc-list-item__primary-text {
  color: var(--text-secondary);
  font-size: 14px !important;
  font-family: var(--inter) !important;
}
.mat-mdc-option.mdc-list-item--selected:not(.mdc-list-item--disabled) .mdc-list-item__primary-text {
  color: var(--bg-primary) !important;
}
.mat-mdc-option.mdc-list-item--selected .extra-text {
  color: var(--bg-secondary) !important;
}
.mat-pseudo-checkbox-minimal.mat-pseudo-checkbox-checked::after {
  display: none !important;
}
.shimmer {
  position: relative;
  overflow: hidden;
  background: #2a2a2a;
  border-radius: 10px;
}
.shimmer.text {
  height: 14px;
  width: 220px;
  margin-bottom: 10px;
}
.shimmer::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150px;
  height: 100%;
  width: 80%;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(97, 97, 97, 0.169),
      rgba(113, 112, 112, 0.144),
      rgba(45, 44, 44, 0.077)),
    transparent;
  animation: shimmer 2s infinite;
}
.dialog-border {
  border: 1px solid var(--text-tertiary);
}
@media screen and (max-width: 600px) {
  .btn-filled {
    height: 40px;
    font-size: 16px;
  }
  .btn-outline {
    height: 40px;
    font-size: 16px;
  }
  .text-box-active {
    height: 40px;
    font-size: 16px;
  }
  .text-box-active::placeholder {
    font-size: 16px;
  }
  .form-field label {
    font-size: 16px;
  }
  .mat-mdc-option {
    min-height: 40px !important;
    font-size: 16px;
  }
  .mat-mdc-option .mdc-list-item__primary-text {
    font-size: 16px !important;
  }
}
@keyframes shimmer {
  100% {
    left: 100%;
  }
}
.cdk-overlay-pane.mat-mdc-dialog-panel {
  max-width: 90vw !important;
}
input[type=date]::-webkit-calendar-picker-indicator {
  background: url(/Images/calender-icon.svg) no-repeat right center;
  color: transparent;
  cursor: pointer;
  background-size: 16px 16px;
  color: var(--text-primary) !important;
}
.custom-bottom-sheet {
  background-color: var(--bg-secondary);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}
::ng-deep .mat-bottom-sheet-container {
  padding: 0px;
  width: 414px;
  overflow-x: hidden;
}
.bottom-sheet {
  min-height: 70vh;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  background-color: var(--bg-secondary);
  position: relative;
}
.top-line {
  width: 4rem;
  height: 0.25rem;
  border-radius: 1.87rem;
  background-color: var(--text-tertiary);
  text-align: center;
  align-items: center;
  position: fixed;
  margin-left: 9.12rem;
}
.close {
  display: flex;
  width: 28px;
  height: 28px;
  border-radius: 20px;
  background-color: var(--bg-overlay);
  border: none;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}
.close-img {
  width: 14px;
  height: 14px;
  margin-top: 4px;
  margin-left: 3px;
}
.mat-form-field-appearance-fill .mat-mdc-text-field-wrapper {
  background-color: #fff3e0;
}
.mdc-text-field--outlined .mdc-notched-outline {
  height: 50px;
}
input.mat-mdc-input-element::placeholder {
  color: var(--text-tertiary) !important;
}
.mat-mdc-icon-button {
  margin-right: 5px;
  margin-bottom: 6px;
}
.mat-calendar-body-selected {
  background-color: var(--text-primary);
}
::ng-deep mat-option[disabled][hidden] {
  color: #aaa;
}
.dark-gold {
  --brand-primary: #edc99e;
  --brand-destructive: #ed9e9e;
  --bg-primary: #101010;
  --bg-secondary: #1c1c1c;
  --bg-tertiary: #282828;
  --text-primary: #ffffff;
  --text-secondary: #d6d2ce;
  --text-tertiary: #8f8b86;
  --bg-overlay: #ffffff1f;
  --input-focus: rgba(237, 201, 158, 0.2);
  --input-error-focus: rgba(237, 158, 158, 0.2);
  --table-hover: rgba(237, 201, 158, 0.1);
  --recoleta: "Recoleta";
  --separator: #81797929;
}
.light-gold {
  --brand-primary: #d1811f;
  --brand-destructive: #d11f1f;
  --bg-primary: #ffffff;
  --bg-secondary: #f5f0eb;
  --bg-tertiary: #dbd5ce;
  --text-primary: #101010;
  --text-secondary: #474440;
  --text-tertiary: #8f8b86;
  --bg-overlay: #1010101f;
  --input-error-focus: rgba(237, 158, 158, 0.2);
  --table-hover: rgba(237, 201, 158, 0.1);
  --recoleta: "Recoleta";
}
:root {
  --brand-primary: #edc99e;
  --brand-destructive: #ed9e9e;
  --bg-primary: #101010;
  --bg-secondary: #1c1c1c;
  --bg-tertiary: #282828;
  --text-primary: #ffffff;
  --text-secondary: #d6d2ce;
  --text-tertiary: #8f8b86;
  --bg-overlay: #ffffff1f;
  --input-focus: rgba(237, 201, 158, 0.2);
  --input-error-focus: rgba(237, 158, 158, 0.2);
  --table-hover: rgba(237, 201, 158, 0.1);
  --recoleta: "Recoleta";
  --down-arrow-head: url(/assets/down_arrow_dark.svg);
}
html {
  --mat-sys-background: light-dark(#faf9fd, #121316);
  --mat-sys-error: light-dark(#ba1a1a, #ffb4ab);
  --mat-sys-error-container: light-dark(#ffdad6, #93000a);
  --mat-sys-inverse-on-surface: light-dark(#f2f0f4, #2f3033);
  --mat-sys-inverse-primary: light-dark(#abc7ff, #005cbb);
  --mat-sys-inverse-surface: light-dark(#2f3033, #e3e2e6);
  --mat-sys-on-background: light-dark(#1a1b1f, #e3e2e6);
  --mat-sys-on-error: light-dark(#ffffff, #690005);
  --mat-sys-on-error-container: light-dark(#93000a, #ffdad6);
  --mat-sys-on-primary: light-dark(#ffffff, #002f65);
  --mat-sys-on-primary-container: light-dark(#00458f, #d7e3ff);
  --mat-sys-on-primary-fixed: light-dark(#001b3f, #001b3f);
  --mat-sys-on-primary-fixed-variant: light-dark(#00458f, #00458f);
  --mat-sys-on-secondary: light-dark(#ffffff, #283041);
  --mat-sys-on-secondary-container: light-dark(#3e4759, #dae2f9);
  --mat-sys-on-secondary-fixed: light-dark(#131c2b, #131c2b);
  --mat-sys-on-secondary-fixed-variant: light-dark(#3e4759, #3e4759);
  --mat-sys-on-surface: light-dark(#1a1b1f, #e3e2e6);
  --mat-sys-on-surface-variant: light-dark(#44474e, #e0e2ec);
  --mat-sys-on-tertiary: light-dark(#ffffff, #0001ac);
  --mat-sys-on-tertiary-container: light-dark(#0000ef, #e0e0ff);
  --mat-sys-on-tertiary-fixed: light-dark(#00006e, #00006e);
  --mat-sys-on-tertiary-fixed-variant: light-dark(#0000ef, #0000ef);
  --mat-sys-outline: light-dark(#74777f, #8e9099);
  --mat-sys-outline-variant: light-dark(#c4c6d0, #44474e);
  --mat-sys-primary: light-dark(#005cbb, #abc7ff);
  --mat-sys-primary-container: light-dark(#d7e3ff, #00458f);
  --mat-sys-primary-fixed: light-dark(#d7e3ff, #d7e3ff);
  --mat-sys-primary-fixed-dim: light-dark(#abc7ff, #abc7ff);
  --mat-sys-scrim: light-dark(#000000, #000000);
  --mat-sys-secondary: light-dark(#565e71, #bec6dc);
  --mat-sys-secondary-container: light-dark(#dae2f9, #3e4759);
  --mat-sys-secondary-fixed: light-dark(#dae2f9, #dae2f9);
  --mat-sys-secondary-fixed-dim: light-dark(#bec6dc, #bec6dc);
  --mat-sys-shadow: light-dark(#000000, #000000);
  --mat-sys-surface: light-dark(#faf9fd, #121316);
  --mat-sys-surface-bright: light-dark(#faf9fd, #38393c);
  --mat-sys-surface-container: light-dark(#efedf0, #1f2022);
  --mat-sys-surface-container-high: light-dark(#e9e7eb, #292a2c);
  --mat-sys-surface-container-highest: light-dark(#e3e2e6, #343537);
  --mat-sys-surface-container-low: light-dark(#f4f3f6, #1a1b1f);
  --mat-sys-surface-container-lowest: light-dark(#ffffff, #0d0e11);
  --mat-sys-surface-dim: light-dark(#dbd9dd, #121316);
  --mat-sys-surface-tint: light-dark(#005cbb, #abc7ff);
  --mat-sys-surface-variant: light-dark(#e0e2ec, #44474e);
  --mat-sys-tertiary: light-dark(#343dff, #bec2ff);
  --mat-sys-tertiary-container: light-dark(#e0e0ff, #0000ef);
  --mat-sys-tertiary-fixed: light-dark(#e0e0ff, #e0e0ff);
  --mat-sys-tertiary-fixed-dim: light-dark(#bec2ff, #bec2ff);
  --mat-sys-neutral-variant20: #2d3038;
  --mat-sys-neutral10: #1a1b1f;
  --mat-sys-level0:
    0px 0px 0px 0px rgba(0, 0, 0, 0.2),
    0px 0px 0px 0px rgba(0, 0, 0, 0.14),
    0px 0px 0px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level1:
    0px 2px 1px -1px rgba(0, 0, 0, 0.2),
    0px 1px 1px 0px rgba(0, 0, 0, 0.14),
    0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level2:
    0px 3px 3px -2px rgba(0, 0, 0, 0.2),
    0px 3px 4px 0px rgba(0, 0, 0, 0.14),
    0px 1px 8px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level3:
    0px 3px 5px -1px rgba(0, 0, 0, 0.2),
    0px 6px 10px 0px rgba(0, 0, 0, 0.14),
    0px 1px 18px 0px rgba(0, 0, 0, 0.12);
  --mat-sys-level4:
    0px 5px 5px -3px rgba(0, 0, 0, 0.2),
    0px 8px 10px 1px rgba(0, 0, 0, 0.14),
    0px 3px 14px 2px rgba(0, 0, 0, 0.12);
  --mat-sys-level5:
    0px 7px 8px -4px rgba(0, 0, 0, 0.2),
    0px 12px 17px 2px rgba(0, 0, 0, 0.14),
    0px 5px 22px 4px rgba(0, 0, 0, 0.12);
  --mat-sys-body-large: 400 1rem / 1.5rem Roboto;
  --mat-sys-body-large-font: Roboto;
  --mat-sys-body-large-line-height: 1.5rem;
  --mat-sys-body-large-size: 1rem;
  --mat-sys-body-large-tracking: 0.031rem;
  --mat-sys-body-large-weight: 400;
  --mat-sys-body-medium: 400 0.875rem / 1.25rem Roboto;
  --mat-sys-body-medium-font: Roboto;
  --mat-sys-body-medium-line-height: 1.25rem;
  --mat-sys-body-medium-size: 0.875rem;
  --mat-sys-body-medium-tracking: 0.016rem;
  --mat-sys-body-medium-weight: 400;
  --mat-sys-body-small: 400 0.75rem / 1rem Roboto;
  --mat-sys-body-small-font: Roboto;
  --mat-sys-body-small-line-height: 1rem;
  --mat-sys-body-small-size: 0.75rem;
  --mat-sys-body-small-tracking: 0.025rem;
  --mat-sys-body-small-weight: 400;
  --mat-sys-display-large: 400 3.562rem / 4rem Roboto;
  --mat-sys-display-large-font: Roboto;
  --mat-sys-display-large-line-height: 4rem;
  --mat-sys-display-large-size: 3.562rem;
  --mat-sys-display-large-tracking: -0.016rem;
  --mat-sys-display-large-weight: 400;
  --mat-sys-display-medium: 400 2.812rem / 3.25rem Roboto;
  --mat-sys-display-medium-font: Roboto;
  --mat-sys-display-medium-line-height: 3.25rem;
  --mat-sys-display-medium-size: 2.812rem;
  --mat-sys-display-medium-tracking: 0;
  --mat-sys-display-medium-weight: 400;
  --mat-sys-display-small: 400 2.25rem / 2.75rem Roboto;
  --mat-sys-display-small-font: Roboto;
  --mat-sys-display-small-line-height: 2.75rem;
  --mat-sys-display-small-size: 2.25rem;
  --mat-sys-display-small-tracking: 0;
  --mat-sys-display-small-weight: 400;
  --mat-sys-headline-large: 400 2rem / 2.5rem Roboto;
  --mat-sys-headline-large-font: Roboto;
  --mat-sys-headline-large-line-height: 2.5rem;
  --mat-sys-headline-large-size: 2rem;
  --mat-sys-headline-large-tracking: 0;
  --mat-sys-headline-large-weight: 400;
  --mat-sys-headline-medium: 400 1.75rem / 2.25rem Roboto;
  --mat-sys-headline-medium-font: Roboto;
  --mat-sys-headline-medium-line-height: 2.25rem;
  --mat-sys-headline-medium-size: 1.75rem;
  --mat-sys-headline-medium-tracking: 0;
  --mat-sys-headline-medium-weight: 400;
  --mat-sys-headline-small: 400 1.5rem / 2rem Roboto;
  --mat-sys-headline-small-font: Roboto;
  --mat-sys-headline-small-line-height: 2rem;
  --mat-sys-headline-small-size: 1.5rem;
  --mat-sys-headline-small-tracking: 0;
  --mat-sys-headline-small-weight: 400;
  --mat-sys-label-large: 500 0.875rem / 1.25rem Roboto;
  --mat-sys-label-large-font: Roboto;
  --mat-sys-label-large-line-height: 1.25rem;
  --mat-sys-label-large-size: 0.875rem;
  --mat-sys-label-large-tracking: 0.006rem;
  --mat-sys-label-large-weight: 500;
  --mat-sys-label-large-weight-prominent: 700;
  --mat-sys-label-medium: 500 0.75rem / 1rem Roboto;
  --mat-sys-label-medium-font: Roboto;
  --mat-sys-label-medium-line-height: 1rem;
  --mat-sys-label-medium-size: 0.75rem;
  --mat-sys-label-medium-tracking: 0.031rem;
  --mat-sys-label-medium-weight: 500;
  --mat-sys-label-medium-weight-prominent: 700;
  --mat-sys-label-small: 500 0.688rem / 1rem Roboto;
  --mat-sys-label-small-font: Roboto;
  --mat-sys-label-small-line-height: 1rem;
  --mat-sys-label-small-size: 0.688rem;
  --mat-sys-label-small-tracking: 0.031rem;
  --mat-sys-label-small-weight: 500;
  --mat-sys-title-large: 400 1.375rem / 1.75rem Roboto;
  --mat-sys-title-large-font: Roboto;
  --mat-sys-title-large-line-height: 1.75rem;
  --mat-sys-title-large-size: 1.375rem;
  --mat-sys-title-large-tracking: 0;
  --mat-sys-title-large-weight: 400;
  --mat-sys-title-medium: 500 1rem / 1.5rem Roboto;
  --mat-sys-title-medium-font: Roboto;
  --mat-sys-title-medium-line-height: 1.5rem;
  --mat-sys-title-medium-size: 1rem;
  --mat-sys-title-medium-tracking: 0.009rem;
  --mat-sys-title-medium-weight: 500;
  --mat-sys-title-small: 500 0.875rem / 1.25rem Roboto;
  --mat-sys-title-small-font: Roboto;
  --mat-sys-title-small-line-height: 1.25rem;
  --mat-sys-title-small-size: 0.875rem;
  --mat-sys-title-small-tracking: 0.006rem;
  --mat-sys-title-small-weight: 500;
  --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;
}
body {
  color-scheme: light;
  background-color: var(--mat-sys-surface);
  color: var(--mat-sys-on-surface);
  font: var(--mat-sys-body-medium);
  margin: 0;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    Roboto,
    "Helvetica Neue",
    sans-serif;
}
input::selection {
  background: transparent;
  color: inherit;
}
input::-moz-selection {
  background: transparent;
  color: inherit;
}
:root {
  --brand-primary: #edc99e;
  --brand-destructive: #ed9e9e;
  --bg-primary: #101010;
  --bg-secondary: #1c1c1c;
  --bg-tertiary: #282828;
  --text-primary: #ffffff;
  --text-secondary: #d6d2ce;
  --text-tertiary: #8f8b86;
  --bg-overlay: #ffffff1f;
  --input-focus: rgba(237, 201, 158, 0.2);
  --input-error-focus: rgba(237, 158, 158, 0.2);
  --recoleta: "Recoleta";
  --inter: "inter";
  --inter: "Inter";
  --separator: #81797929;
}
.toast-success {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  background: var(--text-secondary);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  -webkit-backdrop-filter: blur(1000px);
  backdrop-filter: blur(1000px);
}
.toast-error {
  padding: 1.5rem;
  background: var(--brand-destructive);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  display: flex;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  -webkit-backdrop-filter: blur(1000px);
  backdrop-filter: blur(1000px);
  color: var(--bg-primary);
}
#toast-container {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.spinner {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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