/* src/styles.scss */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.mat-grid-tile.button-row .mat-grid-tile-content {
  justify-content: flex-end;
}
:root .thrive-form {
  --mat-form-field-filled-container-color: transparent;
}
:root .thrive-form mat-form-field {
  width: 85%;
  margin: 0;
  height: 100%;
}
.container,
.container-full,
.container-wide {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.container-wide {
  max-width: 1200px;
}
.container-full {
  max-width: none;
}
.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box;
}
@media (min-width: 400px) {
  .container,
  .container-wide,
  .container-full {
    width: 85%;
    padding: 0;
  }
}
@media (min-width: 550px) {
  .container,
  .container-wide,
  .container-full {
    width: 80%;
  }
  .column,
  .columns {
    margin-left: 4%;
  }
  .column:first-child,
  .columns:first-child {
    margin-left: 0;
  }
  .one.column,
  .one.columns {
    width: 4.6666666667%;
  }
  .two.columns {
    width: 13.3333333333%;
  }
  .three.columns {
    width: 22%;
  }
  .four.columns {
    width: 30.6666666667%;
  }
  .five.columns {
    width: 39.3333333333%;
  }
  .six.columns {
    width: 48%;
  }
  .seven.columns {
    width: 56.6666666667%;
  }
  .eight.columns {
    width: 65.3333333333%;
  }
  .nine.columns {
    width: 74%;
  }
  .ten.columns {
    width: 82.6666666667%;
  }
  .eleven.columns {
    width: 91.3333333333%;
  }
  .twelve.columns {
    width: 100%;
    margin-left: 0;
  }
  .one-third.column {
    width: 30.6666666667%;
  }
  .two-thirds.column {
    width: 65.3333333333%;
  }
  .one-half.column {
    width: 48%;
  }
  .offset-by-one.column,
  .offset-by-one.columns {
    margin-left: 8.6666666667%;
  }
  .offset-by-two.column,
  .offset-by-two.columns {
    margin-left: 17.3333333333%;
  }
  .offset-by-three.column,
  .offset-by-three.columns {
    margin-left: 26%;
  }
  .offset-by-four.column,
  .offset-by-four.columns {
    margin-left: 34.6666666667%;
  }
  .offset-by-five.column,
  .offset-by-five.columns {
    margin-left: 43.3333333333%;
  }
  .offset-by-six.column,
  .offset-by-six.columns {
    margin-left: 52%;
  }
  .offset-by-seven.column,
  .offset-by-seven.columns {
    margin-left: 60.6666666667%;
  }
  .offset-by-eight.column,
  .offset-by-eight.columns {
    margin-left: 69.3333333333%;
  }
  .offset-by-nine.column,
  .offset-by-nine.columns {
    margin-left: 78%;
  }
  .offset-by-ten.column,
  .offset-by-ten.columns {
    margin-left: 86.6666666667%;
  }
  .offset-by-eleven.column,
  .offset-by-eleven.columns {
    margin-left: 95.3333333333%;
  }
  .offset-by-one-third.column,
  .offset-by-one-third.columns {
    margin-left: 34.6666666667%;
  }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns {
    margin-left: 69.3333333333%;
  }
  .offset-by-one-half.column,
  .offset-by-one-half.columns {
    margin-left: 52%;
  }
}
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}
.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}
.u-pull-right {
  float: right;
}
.u-pull-left {
  float: left;
}
.container:after,
.container-wide:after,
.container-full:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both;
}
.heading-1 {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.2;
}
.heading-2 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.25;
}
.heading-3 {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.3;
}
.heading-4 {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
}
.heading-5 {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.3;
}
.text-body {
  font-size: 1rem;
  line-height: 1.5;
}
.text-small {
  font-size: 0.875rem;
  line-height: 1.4;
}
.text-caption {
  font-size: 0.75rem;
  line-height: 1.4;
}
.fw-100 {
  font-weight: 100;
}
.d-none {
  display: none;
}
.d-block {
  display: block;
}
.d-flex {
  display: flex;
}
.d-inline {
  display: inline;
}
.d-inline-block {
  display: inline-block;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-column {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.flex-wrap {
  flex-wrap: wrap;
}
.align-start {
  align-items: flex-start;
}
.align-center {
  align-items: center;
}
.align-end {
  align-items: flex-end;
}
.align-self-start {
  align-self: flex-start;
}
.justify-start .mat-grid-tile-content {
  justify-content: flex-start;
}
.justify-start {
  justify-content: start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.m-0 {
  margin: 0;
}
.mt-1 {
  margin-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.mt-3 {
  margin-top: 24px;
}
.mb-1 {
  margin-bottom: 8px;
}
.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}
.ml-1 {
  margin-left: 8px;
}
.ml-2 {
  margin-left: 16px;
}
.ml-3 {
  margin-left: 24px;
}
.mr-1 {
  margin-right: 8px;
}
.mr-2 {
  margin-right: 16px;
}
.mr-3 {
  margin-right: 24px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.p-0 {
  padding: 0;
}
.p-1 {
  padding: 8px;
}
.p-2 {
  padding: 16px;
}
.p-3 {
  padding: 24px;
}
.pl-0 {
  padding-left: 0;
}
.pl-1 {
  padding-left: 8px;
}
.pl-2 {
  padding-left: 16px;
}
.pl-3 {
  padding-left: 24px;
}
.pl-4 {
  padding-left: 32px;
}
.pt-0 {
  padding-top: 0;
}
.pt-1 {
  padding-top: 8px;
}
.pt-2 {
  padding-top: 16px;
}
.pt-3 {
  padding-top: 24px;
}
.pt-4 {
  padding-top: 32px;
}
.pb-0 {
  padding-bottom: 0;
}
.pb-1 {
  padding-bottom: 8px;
}
.pb-2 {
  padding-bottom: 16px;
}
.pb-3 {
  padding-bottom: 24px;
}
.pb-4 {
  padding-bottom: 32px;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text-bold {
  font-weight: 700;
}
.text-medium {
  font-weight: 500;
}
.text-normal {
  font-weight: 400;
}
.list-button {
  padding-left: 5%;
}
:root .save-button-group {
  display: flex;
  justify-content: flex-end;
}
:root .save-button-group button {
  margin-left: 10px;
}
:root .mat-mdc-unelevated-button:not(:disabled) {
  background-color: var(--mat-button-filled-container-color, var(--mat-sys-tertiary));
}
:root .mdc-switch--selected .mdc-switch__icon {
  fill: var(--mat-slide-toggle-selected-icon-color, var(--mat-sys-secondary));
}
:root .mdc-switch__track {
  height: var(--mat-slide-toggle-track-height, 22px);
}
:root .mdc-switch__track::after {
  background: var(--mat-slide-toggle-selected-track-color, #fe8f1c);
}
:root .mat-mdc-slide-toggle .mdc-switch--selected .mdc-switch__handle:has(.mdc-switch__icons) {
  margin: var(--mat-slide-toggle-selected-with-icon-handle-horizontal-margin, 0 30px);
}
:root mat-form-field {
  width: 100%;
}
:root mat-form-field.no-underline .mdc-line-ripple {
  display: none;
}
:root .mat-mdc-slide-toggle .mdc-switch__handle:has(.mdc-switch__icons) {
  width: var(--mat-slide-toggle-with-icon-handle-size, 20px);
  height: var(--mat-slide-toggle-with-icon-handle-size, 20px);
}
:root label {
  font-weight: bold;
}
:root .mat-mdc-unelevated-button.delete-btn {
  background-color: rgb(186, 26, 26);
}
:root .mat-mdc-unelevated-button.delete-btn:hover {
  background-color: rgba(186, 26, 26, 0.98);
}
:root .mat-label-above {
  display: block;
  text-align: left;
  margin-bottom: 0;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
}
:root {
  --mat-chip-elevated-container-color: #3f51b5;
  --mat-chip-with-trailing-icon-trailing-icon-color: white;
  --mat-chip-container-shape-radius: 15px;
  --mat-chip-label-text-color: white;
}
:root mat-progress-spinner.blue-progress circle {
  stroke: rgb(7, 146, 238);
}
:root mat-progress-spinner.green-progress circle {
  stroke: rgb(10, 190, 46);
}
:root mat-progress-spinner.orange-progress circle {
  stroke: rgb(224, 120, 23);
}
:root mat-progress-spinner.red-progress circle {
  stroke: rgb(186, 26, 26);
}
:root .mdc-dialog--open .mat-mdc-dialog-surface,
:root .mdc-dialog--closing .mat-mdc-dialog-surface {
  overflow: clip;
}
:root .mat-mdc-dialog-inner-container .mat-mdc-icon-button {
  position: absolute;
  top: 0;
  left: calc(100% - 45px);
}
:root .thrive-view-container {
  width: 80%;
  margin: auto;
  padding-bottom: 2rem;
}
:root {
}
:root .mat-mdc-header-cell {
  text-wrap-mode: nowrap;
}
html {
  height: 100%;
  --mat-sys-background: light-dark(#fff8f5, #17120f);
  --mat-sys-error: light-dark(#b81f1e, #ffb4ab);
  --mat-sys-error-container: light-dark(#ffdad6, #93000a);
  --mat-sys-inverse-on-surface: light-dark(#faefe7, #352f2b);
  --mat-sys-inverse-primary: light-dark(#ffb77e, #914d00);
  --mat-sys-inverse-surface: light-dark(#352f2b, #ece0d9);
  --mat-sys-on-background: light-dark(#201b17, #ece0d9);
  --mat-sys-on-error: light-dark(#ffffff, #690005);
  --mat-sys-on-error-container: light-dark(#93000a, #ffdad6);
  --mat-sys-on-primary: light-dark(#ffffff, #4d2600);
  --mat-sys-on-primary-container: light-dark(#6e3900, #ffdcc3);
  --mat-sys-on-primary-fixed: light-dark(#2f1500, #2f1500);
  --mat-sys-on-primary-fixed-variant: light-dark(#6e3900, #6e3900);
  --mat-sys-on-secondary: light-dark(#ffffff, #2d1a85);
  --mat-sys-on-secondary-container: light-dark(#44369c, #e5deff);
  --mat-sys-on-secondary-fixed: light-dark(#180065, #180065);
  --mat-sys-on-secondary-fixed-variant: light-dark(#44369c, #44369c);
  --mat-sys-on-surface: light-dark(#201b17, #ece0d9);
  --mat-sys-on-surface-variant: light-dark(#51443a, #f2dfd1);
  --mat-sys-on-tertiary: light-dark(#ffffff, #00344c);
  --mat-sys-on-tertiary-container: light-dark(#004c6c, #c7e7ff);
  --mat-sys-on-tertiary-fixed: light-dark(#001e2e, #001e2e);
  --mat-sys-on-tertiary-fixed-variant: light-dark(#004c6c, #004c6c);
  --mat-sys-outline: light-dark(#837469, #9e8e82);
  --mat-sys-outline-variant: light-dark(#d5c3b6, #51443a);
  --mat-sys-primary: light-dark(#914d00, #ffb77e);
  --mat-sys-primary-container: light-dark(#ffdcc3, #6e3900);
  --mat-sys-primary-fixed: light-dark(#ffdcc3, #ffdcc3);
  --mat-sys-primary-fixed-dim: light-dark(#ffb77e, #ffb77e);
  --mat-sys-scrim: light-dark(#000000, #000000);
  --mat-sys-secondary: light-dark(#5c4fb5, #c7bfff);
  --mat-sys-secondary-container: light-dark(#e5deff, #44369c);
  --mat-sys-secondary-fixed: light-dark(#e5deff, #e5deff);
  --mat-sys-secondary-fixed-dim: light-dark(#c7bfff, #c7bfff);
  --mat-sys-shadow: light-dark(#000000, #000000);
  --mat-sys-surface: light-dark(#fff8f5, #17120f);
  --mat-sys-surface-bright: light-dark(#fff8f5, #3e3833);
  --mat-sys-surface-container: light-dark(#f7ece5, #241f1a);
  --mat-sys-surface-container-high: light-dark(#f1e6df, #2f2924);
  --mat-sys-surface-container-highest: light-dark(#ece0d9, #3a342f);
  --mat-sys-surface-container-low: light-dark(#fdf1ea, #201b17);
  --mat-sys-surface-container-lowest: light-dark(#ffffff, #120d0a);
  --mat-sys-surface-dim: light-dark(#e3d8d1, #17120f);
  --mat-sys-surface-tint: light-dark(#914d00, #ffb77e);
  --mat-sys-surface-variant: light-dark(#f2dfd1, #51443a);
  --mat-sys-tertiary: light-dark(#00658e, #85cfff);
  --mat-sys-tertiary-container: light-dark(#c7e7ff, #004c6c);
  --mat-sys-tertiary-fixed: light-dark(#c7e7ff, #c7e7ff);
  --mat-sys-tertiary-fixed-dim: light-dark(#85cfff, #85cfff);
  --mat-sys-neutral-variant20: #392e25;
  --mat-sys-neutral10: #201b17;
  --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;
  height: 100%;
}
#main-header {
  --mat-toolbar-container-background-color: #FE8F1C;
}
.sidenav-link-content {
  --mat-sidenav-container-background-color: #ffede3;
}
.auto-width .mat-mdc-form-field-infix {
  width: auto !important;
}
.list-menu .mat-mdc-menu-content {
  padding: 0 !important;
}

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