/*
	Creates a hsla value based on the color name, value and alpha.
	Example: generate-alpha('system', 500, 0.8)
*/
/*
	A Sass mixin that creates a color scheme for the applications neutral and system color palette.
	Example: @include generate-color-system('name-of-variable', hue , the sass-map)
*/
:root {
  --neutral-0: hsl(215, 100%, 100%);
  --neutral-10: hsl(215, 0%, 98%);
  --neutral-50: hsl(215, 7%, 95%);
  --neutral-100: hsl(215, 6%, 86%);
  --neutral-200: hsl(215, 5%, 72%);
  --neutral-300: hsl(215, 6%, 58%);
  --neutral-400: hsl(215, 7%, 44%);
  --neutral-450: hsl(215, 9%, 37%);
  --neutral-500: hsl(215, 12%, 30%);
  --neutral-600: hsl(215, 12%, 24%);
  --neutral-700: hsl(215, 13%, 18%);
  --neutral-800: hsl(215, 11%, 12%);
  --neutral-900: hsl(215, 0%, 0%);
  --md-system-color-50: hsl(192, 44%, 93%);
  --md-system-color-100: hsl(192, 40%, 82%);
  --md-system-color-200: hsl(192, 40%, 69%);
  --md-system-color-300: hsl(192, 40%, 56%);
  --md-system-color-400: hsl(192, 53%, 43%);
  --md-system-color-500: hsl(192, 95%, 29%);
  --md-system-color-600: hsl(192, 95%, 24%);
  --md-system-color-700: hsl(192, 94%, 19%);
  --md-system-color-800: hsl(192, 94%, 13%);
  --md-system-color-900: hsl(192, 95%, 7%);
  --color-stella: hsl(329, 61%, 64%);
  --color-adato: hsl(355, 78%, 60%);
  --color-novi: hsl(39, 100%, 48%);
  --color-opus: hsl(210, 56%, 59%);
  --color-atlas: hsl(170, 86%, 36%);
  --color-error: hsl(0, 100%, 45%);
  --color-error-dark: hsl(0, 100%, 36%);
  --color-focus: hsl(199, 87%, 47%);
  --color-warning: rgb(255, 250, 231);
  --color-warning-dark: hsl(30, 100%, 20%);
  --color-warning-light: hsl(48, 100%, 90%);
  --color-chip-not-authorized: hsl(351, 100%, 96%);
  --color-progress-linear: hsl(207, 90%, 54%);
  --color-snackbar-info-background: hsl(197, 43%, 85%);
  --color-snackbar-success-background: hsl(116, 56%, 89%);
  --color-snackbar-warning-background: hsl(46, 100%, 85%);
  --color-snackbar-error-background: hsl(359, 77%, 88%);
  --color-snackbar-info-text: hsl(202, 54%, 28%);
  --color-snackbar-success-text: hsl(159, 49%, 19%);
  --color-snackbar-warning-text: hsl(29, 100%, 25%);
  --color-snackbar-error-text: hsl(359, 82%, 28%);
  --color-tristate-checked: hsl(199, 76%, 92%);
  --color-border-success: #007A29;
  --color-light-green: #CCEBD6;
  --color-border-information: #015ACB;
  --color-backgrund-support-information-subtle: #CCDEF5;
  --color-border-neutral-strong-02: #8E939A;
  --color-backgrund-neutral-02: #F7F8F8;
}
:root .error {
  color: rgb(183, 0, 0);
}
:root .success {
  color: rgb(0, 92, 31);
}

.md-state--information {
  color: rgb(1, 72, 162);
}

.md-state-pictogram--information figure {
  background-color: rgb(204, 222, 245);
}
.md-state-pictogram--information svg {
  color: rgb(1, 72, 162);
}

.md-state--error {
  color: rgb(183, 0, 0);
}

.md-state-pictogram--error figure {
  background-color: rgb(255, 215, 215);
}
.md-state-pictogram--error svg {
  color: rgb(183, 0, 0);
}

.md-state--success {
  color: rgb(0, 92, 31);
}

.md-state-pictogram--success figure {
  background-color: rgb(204, 235, 214);
}
.md-state-pictogram--success svg {
  color: rgb(0, 92, 31);
}

:root {
  /* Fonts */
  --font-family-primary: "Roboto", sans-serif;
  --font-size-caption: 0.75rem;
  --font-size-small-button: 0.875rem;
  --font-size-default-button: 1rem;
  --char-length: 70ch;
  --max-char-length: 80ch;
  --help-text: 400 0.875rem var(--font-family-primary); /* Ska ha letterspacing -0.25px line-height 1.375rem, 14px */
  --help-text-small: 400 0.75rem var(--font-family-primary);
  --h5: 600 0.875rem var(--font-family-primary); /* 14px */
  --id-small-text: 700 0.875rem var(--font-family-primary); /* 14px */
  --body: 400 0.875rem/1.5rem var(--font-family-primary); /* 14px */
  --body-bold: 700 1.25rem var(--font-family-primary);
  --dialog-large-heading: 700 1.25rem var(--font-family-primary); /* 20px */
  --modal-large-heading: 700 1.125rem var(--font-family-primary); /* 18px */
  --mud-zindex-dialog: 1400;
  --mud-zindex-snackbar: 1401;
  --mud-drawer-width-left: 350px !important;
  --mud-drawer-width-mini-left: 3.75rem !important;
  /* Gradients */
  --gradient-primary: linear-gradient( 90deg, transparent 0%, var(--neutral-50) 100% );
  --gradient-container: linear-gradient( 180deg, transparent 0%, var(--neutral-0) 50% );
  /* Shadows */
  --box-shadow-focus-visible: 0px 0px 0px 2px var(--neutral-0), 0px 0px 0px 4px var(--color-focus);
  /* Animations */
  --animation-background-2s-ease-in: background 0.2s ease-in;
  --letter-spacing-tight: -0.016em; /* -0.25px */
  --md-modal-header-height: 4.5rem;
  --md-modal-padding-block-start: 1.5rem;
  /* Table */
  --row-height: 3rem;
}

.md-spinner--overlay {
  background-color: rgba(255, 255, 255, 0.65);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: var(--local-z-index, 1);
}
.md-spinner[aria-hidden=true] {
  display: none;
}
.md-spinner svg {
  animation: md-spinner 1s linear infinite;
  color: rgb(0, 121, 153);
  display: flex;
}
.md-spinner--overlay-invert {
  background-color: rgba(40, 45, 52, 0.65);
}
.md-spinner--overlay-invert svg {
  color: rgb(255, 255, 255);
}

@keyframes md-spinner {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(1turn);
  }
}
.md-border-radius-xxs {
  border-radius: 0.125rem;
}

.md-border-radius-xs {
  border-radius: 0.25rem;
}

.md-border-radius-sm {
  border-radius: 0.375rem;
}

.md-border-radius-md {
  border-radius: 0.5rem;
}

.md-border-radius-lg {
  border-radius: 0.75rem;
}

.md-border-radius-xl {
  border-radius: 1rem;
}

.md-border-radius-xxl {
  border-radius: 2rem;
}

.md-border-radius-full {
  border-radius: 100vh;
}

.md-headline-large,
.md-headline-medium,
.md-headline-small,
.md-title-large,
.md-title-medium {
  font-weight: 700;
}

.md-title-extra-small,
.md-label-large,
.md-label-medium,
.md-label-small {
  font-weight: 500;
}

.md-headline-large {
  font-size: 2rem;
  line-height: 1.25;
}
@media (width < 60rem) {
  .md-headline-large {
    font-size: 1.75rem;
    line-height: 1.14;
  }
}

.md-headline-medium {
  font-size: 1.75rem;
  line-height: 1.28;
}
@media (width < 60rem) {
  .md-headline-medium {
    font-size: 1.5rem;
    line-height: 1.33;
  }
}

.md-headline-small {
  font-size: 1.5rem;
  line-height: 1.3;
}
@media (width < 60rem) {
  .md-headline-small {
    font-size: 1.375rem;
    line-height: 1.17;
  }
}

.md-title-large {
  font-size: 1.375rem;
  line-height: 1.27;
}

.md-title-medium {
  font-size: 1.125rem;
  line-height: 1.56;
  letter-spacing: 0.0083em;
}
@media (width < 60rem) {
  .md-title-medium {
    font-size: 1.25rem;
    line-height: 1.3;
  }
}

.md-title-small {
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0.00625em;
}
@media (width < 60rem) {
  .md-title-small {
    font-size: 1.125rem;
    line-height: 1.33;
  }
}

.md-title-extra-small {
  font-size: 0.875rem;
  line-height: 1.43;
  letter-spacing: 0.00625em;
}
@media (width < 60rem) {
  .md-title-extra-small {
    font-size: 1rem;
    line-height: 1.375;
  }
}

.md-label-large {
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.00625em;
}

.md-label-medium {
  font-size: 0.875rem;
  line-height: 1.43;
  letter-spacing: 0.007em;
}

.md-label-small {
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: 0.042em;
}

.md-body-large {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.03125em;
}

.md-body-medium {
  font-size: 0.875rem;
  line-height: 1.43;
  letter-spacing: 0.018em;
}

.md-body-small {
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.033em;
}

.accent-text {
  color: var(--md-system-color-500);
}

.italic {
  font-style: italic;
}

.font-weight-400 {
  font-weight: 400;
}

.font-weight-500 {
  font-weight: 500;
}

.font-weight-700 {
  font-weight: 700;
}

.md-button {
  border-radius: 0.25rem;
  line-height: 1;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid transparent;
  cursor: pointer;
  font-weight: 500;
  outline: none;
}
.md-button--align-self {
  align-self: start;
}
.md-button--stretch {
  inline-size: 100%;
}
.md-button--default.md-button--primary {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 121, 153);
}
.md-button--default.md-button--primary:hover, .md-button--default.md-button--primary.md-button--psuedo-hover {
  background-color: rgb(0, 109, 138);
}

.md-button--default.md-button--primary:active, .md-button--default.md-button--primary.md-button--psuedo-active {
  background-color: rgb(0, 85, 107);
}

.md-button--default.md-button--primary:disabled, .md-button--default.md-button--primary.md-button--psuedo-disabled {
  background-color: rgba(40, 45, 52, 0.41);
  box-shadow: none;
}
.md-button--default.md-button--secondary {
  color: rgb(255, 255, 255);
  background-color: rgb(86, 93, 103);
}
.md-button--default.md-button--secondary:hover, .md-button--default.md-button--secondary.md-button--psuedo-hover {
  background-color: rgb(67, 75, 86);
}

.md-button--default.md-button--secondary:active, .md-button--default.md-button--secondary.md-button--psuedo-active {
  background-color: rgb(54, 60, 69);
}

.md-button--default.md-button--secondary:disabled, .md-button--default.md-button--secondary.md-button--psuedo-disabled {
  background-color: rgba(40, 45, 52, 0.41);
  box-shadow: none;
}
.md-button--default.md-button--tertiary {
  color: rgb(0, 121, 153);
}
.md-button--default.md-button--tertiary:hover, .md-button--default.md-button--tertiary.md-button--psuedo-hover {
  background-color: rgb(230, 242, 245);
  color: rgb(0, 109, 138);
}

.md-button--default.md-button--tertiary:active, .md-button--default.md-button--tertiary.md-button--psuedo-active {
  background-color: rgb(153, 201, 214);
  color: rgb(0, 85, 107);
}

.md-button--default.md-button--tertiary:disabled, .md-button--default.md-button--tertiary.md-button--psuedo-disabled {
  color: rgba(40, 45, 52, 0.41);
  background-color: transparent;
  box-shadow: none;
}

.md-button--outlined.md-button--primary {
  border-color: rgb(0, 121, 153);
  color: rgb(0, 121, 153);
}
.md-button--outlined.md-button--primary:hover, .md-button--outlined.md-button--primary.md-button--psuedo-hover {
  background-color: rgb(230, 242, 245);
  border-color: rgb(0, 109, 138);
  color: rgb(0, 109, 138);
}

.md-button--outlined.md-button--primary:active, .md-button--outlined.md-button--primary.md-button--psuedo-active {
  background-color: rgb(153, 201, 214);
  color: rgb(0, 85, 107);
}

.md-button--outlined.md-button--primary:disabled, .md-button--outlined.md-button--primary.md-button--psuedo-disabled {
  border-color: rgba(40, 45, 52, 0.41);
  color: rgba(40, 45, 52, 0.41);
  box-shadow: none;
  background-color: transparent;
}
.md-button--outlined.md-button--secondary {
  border-color: rgb(86, 93, 103);
  color: rgb(86, 93, 103);
}
.md-button--outlined.md-button--secondary:hover, .md-button--outlined.md-button--secondary.md-button--psuedo-hover {
  background-color: rgba(40, 45, 52, 0.06);
  border-color: rgb(67, 75, 86);
  color: rgb(67, 75, 86);
}

.md-button--outlined.md-button--secondary:active, .md-button--outlined.md-button--secondary.md-button--psuedo-active {
  background-color: rgba(40, 45, 52, 0.14);
  color: rgb(54, 60, 69);
}

.md-button--outlined.md-button--secondary:disabled, .md-button--outlined.md-button--secondary.md-button--psuedo-disabled {
  border-color: rgba(40, 45, 52, 0.41);
  color: rgba(40, 45, 52, 0.41);
  box-shadow: none;
  background-color: transparent;
}
.md-button--large {
  min-block-size: 3rem;
  padding-inline: 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.00625em;
}
.md-button--medium {
  min-block-size: 2.5rem;
  padding-inline: 0.75rem;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.00625em;
}
.md-button--small {
  min-block-size: 2rem;
  padding-inline: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.43;
  letter-spacing: 0.007em;
}
.md-button:active, .md-button:focus-visible, .md-button--psuedo-active, .md-button--psuedo-focus {
  box-shadow: 0 0 0 0.125rem rgb(255, 255, 255), 0 0 0 0.25rem rgb(0, 121, 153);
}
.md-button:disabled, .md-button--psuedo-disabled {
  cursor: not-allowed;
}

.md-form-control {
  display: flex;
  flex-direction: column;
}
.md-form-control__label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.md-form-control__helptext, .md-form-control__footer {
  display: block;
}
.md-form-control:has(.md-validation-message) .md-inputbase {
  border-color: var(--color-error-dark);
}
.md-form-control > *:not(:first-child):not(.md-form-control__hidden-error) {
  margin-block-start: 0.25rem;
}

fieldset.md-form-control {
  padding: 0;
  margin: 0;
}

.md-inputbase {
  display: flex;
  background-color: rgb(255, 255, 255);
  overflow: clip;
  --local-icon-offset: 0rem;
  --local-button-offset: 0rem;
  --local-input-min-width: 2rem;
  min-inline-size: calc(var(--local-icon-offset, 2rem) + var(--local-button-offset, 2rem) + var(--local-input-min-width, 4rem));
}
.md-inputbase:has(.md-inputtext__icon--start), .md-inputbase:has(.md-inputtext__icon--end) {
  --local-icon-offset: 2rem;
}
.md-inputbase:has(button) {
  --local-button-offset: 2rem;
}
.md-inputbase:has(textarea) {
  --local-input-min-width: 4rem;
  overflow: hidden;
}
.md-inputbase:has(input[type=number]) {
  --local-input-min-width: 3rem;
}
.md-inputbase input, .md-inputbase textarea {
  padding-block: 0.25rem;
  padding-inline: 0.5rem;
  inline-size: 100%;
  min-inline-size: var(--local-input-min-width);
  color: rgb(54, 60, 69);
  font-size: 1rem;
  font-weight: 400;
}
.md-inputbase input::selection, .md-inputbase textarea::selection {
  background: rgb(204, 228, 235);
}
.md-inputbase input::-webkit-search-cancel-button, .md-inputbase textarea::-webkit-search-cancel-button {
  display: none;
}
.md-inputbase textarea {
  margin-block: 0.33rem;
}
.md-inputbase input:focus, .md-inputbase textarea:focus {
  outline: transparent;
}
.md-inputbase:focus-within {
  outline: 2px solid rgb(0, 121, 153);
  outline-offset: 2px;
  border-radius: 0.125rem;
}
.md-inputbase--mandatory {
  background-color: rgb(255, 245, 204);
}
.md-inputbase--mandatory input, .md-inputbase--mandatory textarea, .md-inputbase--mandatory button {
  background-color: rgb(255, 245, 204);
}
.md-inputbase--disabled {
  background-color: rgba(40, 45, 52, 0.02);
}
.md-inputbase--disabled svg {
  color: rgba(40, 45, 52, 0.41);
}
.md-inputbase--disabled input:disabled, .md-inputbase--disabled textarea:disabled {
  background-color: transparent;
  color: rgba(40, 45, 52, 0.41);
}
.md-inputbase--disabled.md-rounded-frame {
  border: 1px solid rgb(236, 237, 238);
}
.md-inputbase--size-limit {
  inline-size: 22.5rem;
}

.md-inputtext__reset-button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.md-inputtext__icon--start, .md-inputtext__icon--end {
  margin-inline-start: 0.5rem;
}
.md-inputtext__icon--end {
  margin-inline-end: 0.5rem;
}

@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/roboto-v32-latin-regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  src: url("../../fonts/roboto-v32-latin-italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/roboto-v32-latin-500.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: italic;
  font-weight: 500;
  src: url("../../fonts/roboto-v32-latin-500italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  src: url("../../fonts/roboto-v32-latin-500.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: italic;
  font-weight: 600;
  src: url("../../fonts/roboto-v32-latin-500italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/roboto-v32-latin-700.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: italic;
  font-weight: 700;
  src: url("../../fonts/roboto-v32-latin-700italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 800;
  src: url("../../fonts/roboto-v32-latin-900.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: italic;
  font-weight: 800;
  src: url("../../fonts/roboto-v32-latin-900italic.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 900;
  src: url("../../fonts/roboto-v32-latin-900.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: italic;
  font-weight: 900;
  src: url("../../fonts/roboto-v32-latin-900italic.woff2") format("woff2");
}
[data-icon],
[data-icon-small] {
  cursor: pointer;
  block-size: 32px;
  display: flex;
  align-items: center;
  position: relative;
  inset-inline-start: 34px;
  inline-size: calc(100% - 34px);
  text-decoration: none;
}

[data-icon] a,
[data-icon-small] a {
  text-decoration: none;
}

[data-icon-small] {
  inset-inline-start: 40px;
  inline-size: calc(100% - 38px);
}

[data-icon]::before,
[data-icon-small]::before {
  font-family: "Material Icons";
  content: attr(data-icon);
  font-size: 32px;
  line-height: 1;
  font-style: normal;
  font-weight: normal;
  position: absolute;
  inset-inline-start: -34px;
  visibility: visible;
  transition: left 0.4s ease-out 0.2s;
}

[data-icon-small]::before {
  font-size: 20px;
  content: attr(data-icon-small);
  inset-inline-start: -28px;
}

.collapse-hidden [data-icon],
.collapse-hidden [data-icon-small] {
  visibility: hidden;
}

.material-icons.iconLg {
  font-size: 36px !important;
}

.material-icons.md-icon {
  font-size: 2rem !important;
}

.collapse-hidden [data-icon]::before,
.collapse-hidden [data-icon-small]::before {
  inset-inline-start: calc(100% - 24px);
  transition: left 0.4s ease-out;
}

.collapse-hidden [data-icon]:hover::after,
.collapse-hidden [data-icon-small]:hover::after {
  color: white;
  content: attr(data-tool-tip);
  white-space: nowrap;
  visibility: visible;
  position: absolute;
  inset-inline-start: calc(100% + 10px);
  padding-block: 0;
  padding-inline: 0.5rem;
  border-radius: 0.25rem;
  z-index: 4;
  font-weight: normal !important;
}

.active [data-icon],
.active [data-icon-small] {
  color: var(--mud-palette-secondary) !important;
  font-weight: bold;
}

.active [data-icon]::before,
.active [data-icon-small]::before {
  border-block-end: 2px solid var(--mud-palette-secondary) !important;
}

.md-icon-crop {
  block-size: 1.25rem;
  inline-size: 1.25rem;
  overflow: hidden;
}

/* Event icons */
.md-event-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.md-event-dots__item {
  inline-size: 0.75rem;
  block-size: 0.75rem;
  background: var(--select-item-color);
  border-radius: 100vh;
}

.icon-size--small {
  aspect-ratio: 1;
  min-inline-size: 1rem;
  inline-size: 1rem;
}
.icon-size--medium {
  aspect-ratio: 1;
  min-inline-size: 1.5rem;
  inline-size: 1.5rem;
}
.icon-size--large {
  aspect-ratio: 1;
  min-inline-size: 2rem;
  inline-size: 2rem;
}

.md-pictogram-size--small {
  aspect-ratio: 1;
  min-inline-size: 4rem;
  inline-size: 4rem;
}
.md-pictogram-size--medium {
  aspect-ratio: 1;
  min-inline-size: 5rem;
  inline-size: 5rem;
}
.md-pictogram-size--large {
  aspect-ratio: 1;
  min-inline-size: 7.5rem;
  inline-size: 7.5rem;
}

.mud-input.mud-input-outlined .mud-input-outlined-border {
  border-radius: 0.375rem !important;
  border: 1px solid rgba(38, 43, 49, 0.2) !important;
  color: rgba(38, 43, 49, 0.7) !important;
}

/* Hover */
.mud-input-slot.mud-input-root.mud-input-root-outlined:hover ~ .mud-input-outlined-border {
  background: rgba(67, 75, 86, 0.05);
}

/* Filled */
.mud-input-slot.mud-input-root.mud-input-root-outlined {
  color: var(--neutral-700) !important;
}

/* Focus */
.mud-input-slot.mud-input-root.mud-input-root-outlined:focus-visible ~ .mud-input-outlined-border {
  box-shadow: 0px 0px 0px 2px #ffffff, 0px 0px 0px 4px #109cde !important;
}

/* Active */
.mud-input-slot.mud-input-root.mud-input-root-outlined:active ~ .mud-input-outlined-border {
  box-shadow: 0px 0px 0px 2px #ffffff, 0px 0px 0px 4px rgba(0, 0, 0, 0.6) !important;
  border: 1px solid transparent !important;
}

/* Label */
.mud-input-label {
  color: rgba(38, 43, 49, 0.7) !important;
}

/* Disabled */
.mud-disabled .mud-input-slot.mud-input-root.mud-input-root-outlined ~ .mud-input-outlined-border {
  box-shadow: none !important;
  border: 1px solid transparent !important;
  background: rgba(67, 75, 86, 0.03) !important;
  color: rgba(38, 43, 49, 0.38) !important;
}

.mud-input-control-input-container {
  display: flex;
  flex-direction: column-reverse !important;
}

.mud-input-control-helper-container {
  padding-inline-start: 0 !important;
  padding-inline-end: 0 !important;
  margin-block-start: 0.375rem !important;
}

.mud-input-control-helper-container .mud-input-helper-text {
  position: static !important;
  background: none !important;
  font-weight: 600 !important;
  display: block !important;
  padding: 0 !important;
  padding-block-start: 0.25rem;
}

.mud-input ~ label {
  position: relative;
  transform: none !important;
  color: var(--neutral-700) !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  padding: 0 !important;
  margin-block-end: 0.25rem !important;
  letter-spacing: var(--letter-spacing-tight) !important;
}

.mud-input > input.mud-input-root-outlined,
div.mud-input-slot.mud-input-root-outlined {
  padding-inline: 0.75rem !important;
  padding-block: 0;
  block-size: 2.5rem;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
}

/* Overrides weird Chrome behaviour */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 100vh white inset !important;
  font-size: 0.937rem !important;
}

.mandatory-field div.mud-input {
  background: #fef9e6;
  border-radius: 0.375rem;
}

/* Override red color for label on error */
.mud-input-control > .mud-input-control-input-container > .mud-input-label-inputcontrol.mud-input-error {
  color: var(--neutral-700) !important;
}

textarea.mud-input-slot {
  margin-block: 0.75rem !important;
  margin-inline: 0.75rem !important;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
}

html,
body {
  --mud-default-borderradius: 0.25rem;
  --mud-palette-lines-inputs: 0.25rem;
  --small-gap: 0.25rem;
  --mud-typography-default-size: 1rem;
  --gap: 0.5rem;
  --large-gap: 1rem;
  --mud-zindex-popover: 9999999;
  --mud-typography-default-family: var(--font-family-primary);
  font-family: var(--mud-typography-default-family);
  block-size: 100%;
}

html {
  min-block-size: 100%;
  position: relative;
  font-size: 16px;
}

body {
  font-size: 0.875rem;
  block-size: 100%;
}

app {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  app {
    flex-direction: row;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin-block: 0;
  margin-inline: 0;
  padding-block: 0;
  padding-inline: 0;
  border-width: 0;
}

/* Globally set font and override third-party library's settings */
* {
  font-family: var(--font-family-primary) !important;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}

body {
  line-height: 1.2;
  color: rgb(54, 60, 69);
}

ol, ul {
  list-style: none;
}

table {
  inline-size: 100%;
  text-align: left;
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  block-size: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-wrap: balance;
}

p {
  max-inline-size: var(--char-length);
}

dialog {
  color: rgb(54, 60, 69);
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-inline-size: 100%;
}

button {
  border: none;
  background-color: transparent;
  padding-block: 0;
  padding-inline: 0;
  border-radius: 0;
  color: inherit;
  font-size: 100%;
  cursor: pointer;
  outline: 0;
}

a {
  color: currentColor;
}

::selection, ::-moz-selection {
  background-color: rgb(204, 228, 235);
}

:root {
  interpolate-size: allow-keywords;
}

.md-login {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  max-inline-size: 24rem;
  inline-size: 100%;
  block-size: 100%;
}
.md-login form {
  inline-size: 100%;
}
.md-login + footer {
  display: none;
}
.md-login section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.md-login__logo {
  display: flex;
  justify-content: center;
  margin-block-end: 5rem;
}
.md-login__logo figure {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.md-login__logo div {
  display: flex;
  gap: 2rem;
  font-size: 3.75rem;
  line-height: 1;
  font-weight: 800;
  font-family: Averta;
  color: var(--md-system-color-500);
  font-size: 5rem;
}
.md-login__logo img {
  inline-size: 6.25rem;
  margin-inline-start: auto;
  display: block;
  margin-inline-end: 0.25rem;
}
.md-login__logo span {
  margin-block-start: -0.75rem;
}
.md-login__logo svg {
  inline-size: 3.75rem;
  block-size: 3.75rem;
  color: var(--md-system-color-500);
}
.md-login__help {
  display: flex;
  justify-content: flex-end;
}
.md-login__help a {
  color: var(--md-system-color-500);
  text-decoration: underline;
}
.md-login__error {
  color: var(--color-error);
  text-align: center;
  min-block-size: calc(1em * var(--mud-typography-default-lineheight));
  font-size: 1rem;
}
.md-login__error p {
  padding: 0.125rem;
}
.md-login__buttongroup {
  display: flex;
  gap: 1.5rem;
}
.md-login__buttongroup > * {
  flex: 1;
}

/* Keep loggedin */
.md-keep-login {
  max-inline-size: 39rem !important;
  inline-size: 100% !important;
}
.md-keep-login p {
  text-align: center;
  text-wrap: balance;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0;
}

.mud-dialog-container:has(.md-keep-login) {
  z-index: calc(var(--mud-zindex-popover) + 3);
}

body,
html {
  padding: 0;
  margin: 0;
}

#md-blazor-loading h1 {
  font-family: Roboto;
  font-weight: 600;
}

#md-blazor-loading {
  block-size: 100dvh;
  inline-size: 100dvw;
  /* 
  	Keep hsl value prior blazor loading when sass variables have not yet been evaluated 
  */
  color: hsl(215, 12%, 30%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5vh;
}

#md-blazor-loading-spinner {
  inline-size: 3rem;
  block-size: 3rem;
  min-block-size: 3rem;
  border: 3px solid hsl(215, 12%, 30%);
  border-radius: 100vh;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/*# sourceMappingURL=md-loading.css.map */
