/*!*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[6].rules[0].oneOf[0].use[2]!./node_modules/resolve-url-loader/index.js??ruleSet[1].rules[6].rules[1].use[0]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[6].rules[1].use[1]!./apps/fusus-registry/src/styles.scss ***!
  \*****************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/**
  * Color Palette
  *
  * This file contains the color tokens for the design system.
  * Ensure any changes are duplicated to libs/ui/theme/src/colors.ts and libs/common/src/lib/constants/colors.ts.
  *
  * Legacy Fusus Color Scheme colors are prefixed with `legacy-`, or individual colors that were not replaced (not specified with a header comment).
  * `legacy-` colors are unused, but are temporarily kept for reference for comparisons or potential regressions.
  *  TODO: Remove legacy colors eventually as part of FWX-272
  *
  * New Axon Color Scheme colors are specified with header comments.
  * The latter is based off of the following Axon Fusus & Spark 2 design systems respectively:
  * https://www.figma.com/design/J4ZdMJ8phaySFJNB8SIsTz/Axon-Fusus---Visual-Direction-Kit
  * https://www.figma.com/design/q1nNzgJgALfU6s3DaZHlVa/Spark-2-Dev
  */
/**
 * Calculates the luminance value for a single color channel (R, G, or B)
 * Following WCAG 2.0 relative luminance formula
 * @param {Number} $value - Color channel value (0-255)
 * @return {Number} Luminance value for the channel
 */
/**
 * Calculates the relative luminance of a color
 * Uses the WCAG 2.0 formula: L = 0.2126 * R + 0.7152 * G + 0.0722 * B
 * @param {Color} $color - Color to calculate luminance for
 * @return {Number} Relative luminance value
 */
/**
 * Calculates the contrast ratio between two colors
 * Following WCAG 2.0 contrast ratio formula: (L1 + 0.05) / (L2 + 0.05)
 * @param {Color} $fore - Foreground color
 * @param {Color} $back - Background color
 * @return {Number} Contrast ratio between the colors
 */
/**
 * Determines if a color should be treated as 'light' or 'dark'
 * Used for deciding text color on backgrounds
 * @param {Color|String} $color - Color to analyze
 * @param {Number} $contrast - Minimum contrast ratio (default: 2)
 * @return {String} 'light' or 'dark'
 */
/**
 * Returns the opposite tone of a given color
 * Used for determining contrasting text colors
 * @param {Color} $color - Color to get contrast tone for
 * @return {String} 'light' if input is 'dark', 'dark' if input is 'light'
 */
/**
  * Theme Variables
  *
  * This file contains the theme variables for the design system.
  * Ensure any changes are duplicated to libs/ui/theme/src/theme.ts.
  *
  * Legacy Fusus Color Scheme colors under "Original Fusus Color Scheme" are being temporarily kept for reference for comparisons or potential regressions.
  * See _colors.scss for the specific palettes and their differences.
  */
.mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.mat-option {
  color: white;
}
.mat-option:hover:not(.mat-option-disabled), .mat-option:focus:not(.mat-option-disabled) {
  background: rgba(255, 255, 255, 0.04);
}
.mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {
  background: rgba(255, 255, 255, 0.04);
}
.mat-option.mat-active {
  background: rgba(255, 255, 255, 0.04);
  color: white;
}
.mat-option.mat-option-disabled {
  color: rgba(255, 255, 255, 0.5);
}
.mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #72706f;
}
.mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #ffc107;
}
.mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #ff5722;
}
.mat-optgroup-label {
  color: rgba(255, 255, 255, 0.7);
}
.mat-optgroup-disabled .mat-optgroup-label {
  color: rgba(255, 255, 255, 0.5);
}
.mat-pseudo-checkbox {
  color: rgba(255, 255, 255, 0.7);
}
.mat-pseudo-checkbox::after {
  color: #303030;
}
.mat-pseudo-checkbox-disabled {
  color: #686868;
}
.mat-primary .mat-pseudo-checkbox-checked,
.mat-primary .mat-pseudo-checkbox-indeterminate {
  background: #72706f;
}
.mat-pseudo-checkbox-checked,
.mat-pseudo-checkbox-indeterminate,
.mat-accent .mat-pseudo-checkbox-checked,
.mat-accent .mat-pseudo-checkbox-indeterminate {
  background: #ffc107;
}
.mat-warn .mat-pseudo-checkbox-checked,
.mat-warn .mat-pseudo-checkbox-indeterminate {
  background: #ff5722;
}
.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,
.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {
  background: #686868;
}
.mat-app-background {
  background-color: #303030;
  color: white;
}
.mat-elevation-z0 {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z1 {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z2 {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z3 {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z4 {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z5 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z6 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z7 {
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z8 {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z9 {
  box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z10 {
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z11 {
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z12 {
  box-shadow: 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-elevation-z13 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z14 {
  box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z15 {
  box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z16 {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z17 {
  box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z18 {
  box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z19 {
  box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z20 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z21 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z22 {
  box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z23 {
  box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z24 {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
.mat-theme-loaded-marker {
  display: none;
}
.mat-autocomplete-panel {
  background: #424242;
  color: white;
}
.mat-autocomplete-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {
  background: #424242;
}
.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {
  color: white;
}
.mat-badge {
  position: relative;
}
.mat-badge.mat-badge {
  overflow: visible;
}
.mat-badge-hidden .mat-badge-content {
  display: none;
}
.mat-badge-content {
  position: absolute;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  transition: transform 200ms ease-in-out;
  transform: scale(0.6);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  pointer-events: none;
}
.ng-animate-disabled .mat-badge-content,
.mat-badge-content._mat-animation-noopable {
  transition: none;
}
.mat-badge-content.mat-badge-active {
  transform: none;
}
.mat-badge-small .mat-badge-content {
  width: 16px;
  height: 16px;
  line-height: 16px;
}
.mat-badge-small.mat-badge-above .mat-badge-content {
  top: -8px;
}
.mat-badge-small.mat-badge-below .mat-badge-content {
  bottom: -8px;
}
.mat-badge-small.mat-badge-before .mat-badge-content {
  left: -16px;
}
[dir=rtl] .mat-badge-small.mat-badge-before .mat-badge-content {
  left: auto;
  right: -16px;
}
.mat-badge-small.mat-badge-after .mat-badge-content {
  right: -16px;
}
[dir=rtl] .mat-badge-small.mat-badge-after .mat-badge-content {
  right: auto;
  left: -16px;
}
.mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -8px;
}
[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -8px;
}
.mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -8px;
}
[dir=rtl] .mat-badge-small.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -8px;
}
.mat-badge-medium .mat-badge-content {
  width: 22px;
  height: 22px;
  line-height: 22px;
}
.mat-badge-medium.mat-badge-above .mat-badge-content {
  top: -11px;
}
.mat-badge-medium.mat-badge-below .mat-badge-content {
  bottom: -11px;
}
.mat-badge-medium.mat-badge-before .mat-badge-content {
  left: -22px;
}
[dir=rtl] .mat-badge-medium.mat-badge-before .mat-badge-content {
  left: auto;
  right: -22px;
}
.mat-badge-medium.mat-badge-after .mat-badge-content {
  right: -22px;
}
[dir=rtl] .mat-badge-medium.mat-badge-after .mat-badge-content {
  right: auto;
  left: -22px;
}
.mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -11px;
}
[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -11px;
}
.mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -11px;
}
[dir=rtl] .mat-badge-medium.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -11px;
}
.mat-badge-large .mat-badge-content {
  width: 28px;
  height: 28px;
  line-height: 28px;
}
.mat-badge-large.mat-badge-above .mat-badge-content {
  top: -14px;
}
.mat-badge-large.mat-badge-below .mat-badge-content {
  bottom: -14px;
}
.mat-badge-large.mat-badge-before .mat-badge-content {
  left: -28px;
}
[dir=rtl] .mat-badge-large.mat-badge-before .mat-badge-content {
  left: auto;
  right: -28px;
}
.mat-badge-large.mat-badge-after .mat-badge-content {
  right: -28px;
}
[dir=rtl] .mat-badge-large.mat-badge-after .mat-badge-content {
  right: auto;
  left: -28px;
}
.mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: -14px;
}
[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-before .mat-badge-content {
  left: auto;
  right: -14px;
}
.mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: -14px;
}
[dir=rtl] .mat-badge-large.mat-badge-overlap.mat-badge-after .mat-badge-content {
  right: auto;
  left: -14px;
}
.mat-badge-content {
  color: white;
  background: #72706f;
}
.cdk-high-contrast-active .mat-badge-content {
  outline: solid 1px;
  border-radius: 0;
}
.mat-badge-accent .mat-badge-content {
  background: #ffc107;
  color: white;
}
.mat-badge-warn .mat-badge-content {
  color: white;
  background: #ff5722;
}
.mat-badge-disabled .mat-badge-content {
  background: #6e6e6e;
  color: rgba(255, 255, 255, 0.5);
}
.mat-bottom-sheet-container {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  background: #424242;
  color: white;
}
.mat-button, .mat-icon-button, .mat-stroked-button {
  color: inherit;
  background: transparent;
}
.mat-button.mat-primary, .mat-icon-button.mat-primary, .mat-stroked-button.mat-primary {
  color: #72706f;
}
.mat-button.mat-accent, .mat-icon-button.mat-accent, .mat-stroked-button.mat-accent {
  color: #ffc107;
}
.mat-button.mat-warn, .mat-icon-button.mat-warn, .mat-stroked-button.mat-warn {
  color: #ff5722;
}
.mat-button.mat-primary.mat-button-disabled, .mat-button.mat-accent.mat-button-disabled, .mat-button.mat-warn.mat-button-disabled, .mat-button.mat-button-disabled.mat-button-disabled, .mat-icon-button.mat-primary.mat-button-disabled, .mat-icon-button.mat-accent.mat-button-disabled, .mat-icon-button.mat-warn.mat-button-disabled, .mat-icon-button.mat-button-disabled.mat-button-disabled, .mat-stroked-button.mat-primary.mat-button-disabled, .mat-stroked-button.mat-accent.mat-button-disabled, .mat-stroked-button.mat-warn.mat-button-disabled, .mat-stroked-button.mat-button-disabled.mat-button-disabled {
  color: rgba(255, 255, 255, 0.3);
}
.mat-button.mat-primary .mat-button-focus-overlay, .mat-icon-button.mat-primary .mat-button-focus-overlay, .mat-stroked-button.mat-primary .mat-button-focus-overlay {
  background-color: #72706f;
}
.mat-button.mat-accent .mat-button-focus-overlay, .mat-icon-button.mat-accent .mat-button-focus-overlay, .mat-stroked-button.mat-accent .mat-button-focus-overlay {
  background-color: #ffc107;
}
.mat-button.mat-warn .mat-button-focus-overlay, .mat-icon-button.mat-warn .mat-button-focus-overlay, .mat-stroked-button.mat-warn .mat-button-focus-overlay {
  background-color: #ff5722;
}
.mat-button.mat-button-disabled .mat-button-focus-overlay, .mat-icon-button.mat-button-disabled .mat-button-focus-overlay, .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay {
  background-color: transparent;
}
.mat-button .mat-ripple-element, .mat-icon-button .mat-ripple-element, .mat-stroked-button .mat-ripple-element {
  opacity: 0.1;
  background-color: currentColor;
}
.mat-button-focus-overlay {
  background: white;
}
.mat-stroked-button:not(.mat-button-disabled) {
  border-color: rgba(255, 255, 255, 0.12);
}
.mat-flat-button, .mat-raised-button, .mat-fab, .mat-mini-fab {
  color: white;
  background-color: #424242;
}
.mat-flat-button.mat-primary, .mat-raised-button.mat-primary, .mat-fab.mat-primary, .mat-mini-fab.mat-primary {
  color: white;
}
.mat-flat-button.mat-accent, .mat-raised-button.mat-accent, .mat-fab.mat-accent, .mat-mini-fab.mat-accent {
  color: white;
}
.mat-flat-button.mat-warn, .mat-raised-button.mat-warn, .mat-fab.mat-warn, .mat-mini-fab.mat-warn {
  color: white;
}
.mat-flat-button.mat-primary.mat-button-disabled, .mat-flat-button.mat-accent.mat-button-disabled, .mat-flat-button.mat-warn.mat-button-disabled, .mat-flat-button.mat-button-disabled.mat-button-disabled, .mat-raised-button.mat-primary.mat-button-disabled, .mat-raised-button.mat-accent.mat-button-disabled, .mat-raised-button.mat-warn.mat-button-disabled, .mat-raised-button.mat-button-disabled.mat-button-disabled, .mat-fab.mat-primary.mat-button-disabled, .mat-fab.mat-accent.mat-button-disabled, .mat-fab.mat-warn.mat-button-disabled, .mat-fab.mat-button-disabled.mat-button-disabled, .mat-mini-fab.mat-primary.mat-button-disabled, .mat-mini-fab.mat-accent.mat-button-disabled, .mat-mini-fab.mat-warn.mat-button-disabled, .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  color: rgba(255, 255, 255, 0.3);
}
.mat-flat-button.mat-primary, .mat-raised-button.mat-primary, .mat-fab.mat-primary, .mat-mini-fab.mat-primary {
  background-color: #72706f;
}
.mat-flat-button.mat-accent, .mat-raised-button.mat-accent, .mat-fab.mat-accent, .mat-mini-fab.mat-accent {
  background-color: #ffc107;
}
.mat-flat-button.mat-warn, .mat-raised-button.mat-warn, .mat-fab.mat-warn, .mat-mini-fab.mat-warn {
  background-color: #ff5722;
}
.mat-flat-button.mat-primary.mat-button-disabled, .mat-flat-button.mat-accent.mat-button-disabled, .mat-flat-button.mat-warn.mat-button-disabled, .mat-flat-button.mat-button-disabled.mat-button-disabled, .mat-raised-button.mat-primary.mat-button-disabled, .mat-raised-button.mat-accent.mat-button-disabled, .mat-raised-button.mat-warn.mat-button-disabled, .mat-raised-button.mat-button-disabled.mat-button-disabled, .mat-fab.mat-primary.mat-button-disabled, .mat-fab.mat-accent.mat-button-disabled, .mat-fab.mat-warn.mat-button-disabled, .mat-fab.mat-button-disabled.mat-button-disabled, .mat-mini-fab.mat-primary.mat-button-disabled, .mat-mini-fab.mat-accent.mat-button-disabled, .mat-mini-fab.mat-warn.mat-button-disabled, .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  background-color: rgba(255, 255, 255, 0.12);
}
.mat-flat-button.mat-primary .mat-ripple-element, .mat-raised-button.mat-primary .mat-ripple-element, .mat-fab.mat-primary .mat-ripple-element, .mat-mini-fab.mat-primary .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.mat-flat-button.mat-accent .mat-ripple-element, .mat-raised-button.mat-accent .mat-ripple-element, .mat-fab.mat-accent .mat-ripple-element, .mat-mini-fab.mat-accent .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.mat-flat-button.mat-warn .mat-ripple-element, .mat-raised-button.mat-warn .mat-ripple-element, .mat-fab.mat-warn .mat-ripple-element, .mat-mini-fab.mat-warn .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.mat-stroked-button:not([class*=mat-elevation-z]), .mat-flat-button:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.mat-raised-button:not([class*=mat-elevation-z]) {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]) {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.mat-fab:not([class*=mat-elevation-z]), .mat-mini-fab:not([class*=mat-elevation-z]) {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]), .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]) {
  box-shadow: 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-fab.mat-button-disabled:not([class*=mat-elevation-z]), .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.mat-button-toggle-standalone:not([class*=mat-elevation-z]),
.mat-button-toggle-group:not([class*=mat-elevation-z]) {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.mat-button-toggle-standalone.mat-button-toggle-appearance-standard:not([class*=mat-elevation-z]),
.mat-button-toggle-group-appearance-standard:not([class*=mat-elevation-z]) {
  box-shadow: none;
}
.mat-button-toggle {
  color: rgba(255, 255, 255, 0.5);
}
.mat-button-toggle .mat-button-toggle-focus-overlay {
  background-color: rgba(255, 255, 255, 0.12);
}
.mat-button-toggle-appearance-standard {
  color: white;
  background: #424242;
}
.mat-button-toggle-appearance-standard .mat-button-toggle-focus-overlay {
  background-color: white;
}
.mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: solid 1px #595959;
}
[dir=rtl] .mat-button-toggle-group-appearance-standard .mat-button-toggle + .mat-button-toggle {
  border-left: none;
  border-right: solid 1px #595959;
}
.mat-button-toggle-group-appearance-standard.mat-button-toggle-vertical .mat-button-toggle + .mat-button-toggle {
  border-left: none;
  border-right: none;
  border-top: solid 1px #595959;
}
.mat-button-toggle-checked {
  background-color: #212121;
  color: rgba(255, 255, 255, 0.7);
}
.mat-button-toggle-checked.mat-button-toggle-appearance-standard {
  color: white;
}
.mat-button-toggle-disabled {
  color: rgba(255, 255, 255, 0.3);
  background-color: black;
}
.mat-button-toggle-disabled.mat-button-toggle-appearance-standard {
  background: #424242;
}
.mat-button-toggle-disabled.mat-button-toggle-checked {
  background-color: #424242;
}
.mat-button-toggle-standalone.mat-button-toggle-appearance-standard,
.mat-button-toggle-group-appearance-standard {
  border: solid 1px #595959;
}
.mat-button-toggle-appearance-standard .mat-button-toggle-label-content {
  line-height: 48px;
}
.mat-card {
  background: #424242;
  color: white;
}
.mat-card:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.mat-card.mat-card-flat:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.mat-card-subtitle {
  color: rgba(255, 255, 255, 0.7);
}
.mat-checkbox-frame {
  border-color: rgba(255, 255, 255, 0.7);
}
.mat-checkbox-checkmark {
  fill: #303030;
}
.mat-checkbox-checkmark-path {
  stroke: #303030 !important;
}
.mat-checkbox-mixedmark {
  background-color: #303030;
}
.mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .mat-checkbox-checked.mat-primary .mat-checkbox-background {
  background-color: #72706f;
}
.mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .mat-checkbox-checked.mat-accent .mat-checkbox-background {
  background-color: #ffc107;
}
.mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .mat-checkbox-checked.mat-warn .mat-checkbox-background {
  background-color: #ff5722;
}
.mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {
  background-color: #686868;
}
.mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame {
  border-color: #686868;
}
.mat-checkbox-disabled .mat-checkbox-label {
  color: rgba(255, 255, 255, 0.5);
}
.mat-checkbox .mat-ripple-element {
  background-color: white;
}
.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,
.mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {
  background: #72706f;
}
.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,
.mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {
  background: #ffc107;
}
.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,
.mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element {
  background: #ff5722;
}
.mat-chip.mat-standard-chip {
  background-color: #616161;
  color: white;
}
.mat-chip.mat-standard-chip .mat-chip-remove {
  color: white;
  opacity: 0.4;
}
.mat-chip.mat-standard-chip:not(.mat-chip-disabled):active {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
.mat-chip.mat-standard-chip:not(.mat-chip-disabled) .mat-chip-remove:hover {
  opacity: 0.54;
}
.mat-chip.mat-standard-chip.mat-chip-disabled {
  opacity: 0.4;
}
.mat-chip.mat-standard-chip::after {
  background: white;
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary {
  background-color: #72706f;
  color: white;
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-chip-remove {
  color: white;
  opacity: 0.4;
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-primary .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn {
  background-color: #ff5722;
  color: white;
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-chip-remove {
  color: white;
  opacity: 0.4;
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-warn .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent {
  background-color: #ffc107;
  color: white;
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-chip-remove {
  color: white;
  opacity: 0.4;
}
.mat-chip.mat-standard-chip.mat-chip-selected.mat-accent .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.mat-table {
  background: #424242;
}
.mat-table thead, .mat-table tbody, .mat-table tfoot,
mat-header-row, mat-row, mat-footer-row,
[mat-header-row], [mat-row], [mat-footer-row],
.mat-table-sticky {
  background: inherit;
}
mat-row, mat-header-row, mat-footer-row,
th.mat-header-cell, td.mat-cell, td.mat-footer-cell {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.mat-header-cell {
  color: rgba(255, 255, 255, 0.7);
}
.mat-cell, .mat-footer-cell {
  color: white;
}
.mat-calendar-arrow {
  fill: white;
}
.mat-datepicker-toggle,
.mat-datepicker-content .mat-calendar-next-button,
.mat-datepicker-content .mat-calendar-previous-button {
  color: white;
}
.mat-calendar-table-header-divider::after {
  background: rgba(255, 255, 255, 0.12);
}
.mat-calendar-table-header,
.mat-calendar-body-label {
  color: rgba(255, 255, 255, 0.7);
}
.mat-calendar-body-cell-content,
.mat-date-range-input-separator {
  color: white;
  border-color: transparent;
}
.mat-calendar-body-disabled > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  color: rgba(255, 255, 255, 0.5);
}
.mat-form-field-disabled .mat-date-range-input-separator {
  color: rgba(255, 255, 255, 0.5);
}
.mat-calendar-body-in-preview {
  color: rgba(255, 255, 255, 0.24);
}
.mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(255, 255, 255, 0.5);
}
.mat-calendar-body-disabled > .mat-calendar-body-today:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  border-color: rgba(255, 255, 255, 0.3);
}
.mat-calendar-body-in-range::before {
  background: rgba(114, 112, 111, 0.2);
}
.mat-calendar-body-comparison-identical,
.mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.mat-calendar-body-comparison-bridge-start::before,
[dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(114, 112, 111, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.mat-calendar-body-comparison-bridge-end::before,
[dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(114, 112, 111, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.mat-calendar-body-selected {
  background-color: #72706f;
  color: white;
}
.mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(114, 112, 111, 0.4);
}
.mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px white;
}
.cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
.cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  background-color: rgba(114, 112, 111, 0.3);
}
@media (hover: hover) {
  .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
    background-color: rgba(114, 112, 111, 0.3);
  }
}
.mat-datepicker-content {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
  background-color: #424242;
  color: white;
}
.mat-datepicker-content.mat-accent .mat-calendar-body-in-range::before {
  background: rgba(255, 193, 7, 0.2);
}
.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical,
.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-start::before,
.mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(255, 193, 7, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-bridge-end::before,
.mat-datepicker-content.mat-accent [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(255, 193, 7, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.mat-datepicker-content.mat-accent .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.mat-datepicker-content.mat-accent .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.mat-datepicker-content.mat-accent .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.mat-datepicker-content.mat-accent .mat-calendar-body-selected {
  background-color: #ffc107;
  color: white;
}
.mat-datepicker-content.mat-accent .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(255, 193, 7, 0.4);
}
.mat-datepicker-content.mat-accent .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px white;
}
.mat-datepicker-content.mat-accent .cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
.mat-datepicker-content.mat-accent .cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  background-color: rgba(255, 193, 7, 0.3);
}
@media (hover: hover) {
  .mat-datepicker-content.mat-accent .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
    background-color: rgba(255, 193, 7, 0.3);
  }
}
.mat-datepicker-content.mat-warn .mat-calendar-body-in-range::before {
  background: rgba(255, 87, 34, 0.2);
}
.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical,
.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range::before {
  background: rgba(249, 171, 0, 0.2);
}
.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-start::before,
.mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-end::before {
  background: linear-gradient(to right, rgba(255, 87, 34, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-bridge-end::before,
.mat-datepicker-content.mat-warn [dir=rtl] .mat-calendar-body-comparison-bridge-start::before {
  background: linear-gradient(to left, rgba(255, 87, 34, 0.2) 50%, rgba(249, 171, 0, 0.2) 50%);
}
.mat-datepicker-content.mat-warn .mat-calendar-body-in-range > .mat-calendar-body-comparison-identical,
.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range.mat-calendar-body-in-range::after {
  background: #a8dab5;
}
.mat-datepicker-content.mat-warn .mat-calendar-body-comparison-identical.mat-calendar-body-selected,
.mat-datepicker-content.mat-warn .mat-calendar-body-in-comparison-range > .mat-calendar-body-selected {
  background: #46a35e;
}
.mat-datepicker-content.mat-warn .mat-calendar-body-selected {
  background-color: #ff5722;
  color: white;
}
.mat-datepicker-content.mat-warn .mat-calendar-body-disabled > .mat-calendar-body-selected {
  background-color: rgba(255, 87, 34, 0.4);
}
.mat-datepicker-content.mat-warn .mat-calendar-body-today.mat-calendar-body-selected {
  box-shadow: inset 0 0 0 1px white;
}
.mat-datepicker-content.mat-warn .cdk-keyboard-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical),
.mat-datepicker-content.mat-warn .cdk-program-focused .mat-calendar-body-active > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
  background-color: rgba(255, 87, 34, 0.3);
}
@media (hover: hover) {
  .mat-datepicker-content.mat-warn .mat-calendar-body-cell:not(.mat-calendar-body-disabled):hover > .mat-calendar-body-cell-content:not(.mat-calendar-body-selected):not(.mat-calendar-body-comparison-identical) {
    background-color: rgba(255, 87, 34, 0.3);
  }
}
.mat-datepicker-content-touch {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
.mat-datepicker-toggle-active {
  color: #72706f;
}
.mat-datepicker-toggle-active.mat-accent {
  color: #ffc107;
}
.mat-datepicker-toggle-active.mat-warn {
  color: #ff5722;
}
.mat-date-range-input-inner[disabled] {
  color: rgba(255, 255, 255, 0.5);
}
.mat-dialog-container {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
  background: #424242;
  color: white;
}
.mat-divider {
  border-top-color: rgba(255, 255, 255, 0.12);
}
.mat-divider-vertical {
  border-right-color: rgba(255, 255, 255, 0.12);
}
.mat-expansion-panel {
  background: #424242;
  color: white;
}
.mat-expansion-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.mat-action-row {
  border-top-color: rgba(255, 255, 255, 0.12);
}
.mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]), .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]), .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]) {
  background: rgba(255, 255, 255, 0.04);
}
@media (hover: none) {
  .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {
    background: #424242;
  }
}
.mat-expansion-panel-header-title {
  color: white;
}
.mat-expansion-panel-header-description,
.mat-expansion-indicator::after {
  color: rgba(255, 255, 255, 0.7);
}
.mat-expansion-panel-header[aria-disabled=true] {
  color: rgba(255, 255, 255, 0.3);
}
.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,
.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description {
  color: inherit;
}
.mat-expansion-panel-header {
  height: 48px;
}
.mat-expansion-panel-header.mat-expanded {
  height: 64px;
}
.mat-form-field-label {
  color: rgba(255, 255, 255, 0.7);
}
.mat-hint {
  color: rgba(255, 255, 255, 0.7);
}
.mat-form-field.mat-focused .mat-form-field-label {
  color: #72706f;
}
.mat-form-field.mat-focused .mat-form-field-label.mat-accent {
  color: #ffc107;
}
.mat-form-field.mat-focused .mat-form-field-label.mat-warn {
  color: #ff5722;
}
.mat-focused .mat-form-field-required-marker {
  color: #ffc107;
}
.mat-form-field-ripple {
  background-color: white;
}
.mat-form-field.mat-focused .mat-form-field-ripple {
  background-color: #72706f;
}
.mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {
  background-color: #ffc107;
}
.mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {
  background-color: #ff5722;
}
.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {
  color: #72706f;
}
.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after {
  color: #ffc107;
}
.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after {
  color: #ff5722;
}
.mat-form-field.mat-form-field-invalid .mat-form-field-label {
  color: #ff5722;
}
.mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,
.mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker {
  color: #ff5722;
}
.mat-form-field.mat-form-field-invalid .mat-form-field-ripple,
.mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent {
  background-color: #ff5722;
}
.mat-error {
  color: #ff5722;
}
.mat-form-field-appearance-legacy .mat-form-field-label {
  color: rgba(255, 255, 255, 0.7);
}
.mat-form-field-appearance-legacy .mat-hint {
  color: rgba(255, 255, 255, 0.7);
}
.mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(255, 255, 255, 0.7);
}
.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.mat-form-field-appearance-standard .mat-form-field-underline {
  background-color: rgba(255, 255, 255, 0.7);
}
.mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.mat-form-field-appearance-fill .mat-form-field-flex {
  background-color: rgba(255, 255, 255, 0.1);
}
.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {
  background-color: rgba(255, 255, 255, 0.05);
}
.mat-form-field-appearance-fill .mat-form-field-underline::before {
  background-color: rgba(255, 255, 255, 0.5);
}
.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {
  color: rgba(255, 255, 255, 0.5);
}
.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {
  background-color: transparent;
}
.mat-form-field-appearance-outline .mat-form-field-outline {
  color: rgba(255, 255, 255, 0.3);
}
.mat-form-field-appearance-outline .mat-form-field-outline-thick {
  color: white;
}
.mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {
  color: #72706f;
}
.mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {
  color: #ffc107;
}
.mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {
  color: #ff5722;
}
.mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {
  color: #ff5722;
}
.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {
  color: rgba(255, 255, 255, 0.5);
}
.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {
  color: rgba(255, 255, 255, 0.15);
}
.mat-icon.mat-primary {
  color: #72706f;
}
.mat-icon.mat-accent {
  color: #ffc107;
}
.mat-icon.mat-warn {
  color: #ff5722;
}
.mat-form-field-type-mat-native-select .mat-form-field-infix::after {
  color: rgba(255, 255, 255, 0.7);
}
.mat-input-element:disabled,
.mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {
  color: rgba(255, 255, 255, 0.5);
}
.mat-input-element {
  caret-color: #72706f;
}
.mat-input-element::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.mat-input-element::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.mat-input-element::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.mat-input-element::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.mat-input-element:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.mat-input-element:not(.mat-native-select-inline) option {
  color: rgba(0, 0, 0, 0.87);
}
.mat-input-element:not(.mat-native-select-inline) option:disabled {
  color: rgba(0, 0, 0, 0.38);
}
.mat-form-field.mat-accent .mat-input-element {
  caret-color: #ffc107;
}
.mat-form-field.mat-warn .mat-input-element,
.mat-form-field-invalid .mat-input-element {
  caret-color: #ff5722;
}
.mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {
  color: #ff5722;
}
.mat-list-base .mat-list-item {
  color: white;
}
.mat-list-base .mat-list-option {
  color: white;
}
.mat-list-base .mat-subheader {
  color: rgba(255, 255, 255, 0.7);
}
.mat-list-base .mat-list-item-disabled {
  background-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
}
.mat-list-option:hover, .mat-list-option:focus,
.mat-nav-list .mat-list-item:hover,
.mat-nav-list .mat-list-item:focus,
.mat-action-list .mat-list-item:hover,
.mat-action-list .mat-list-item:focus {
  background: rgba(255, 255, 255, 0.04);
}
.mat-list-single-selected-option, .mat-list-single-selected-option:hover, .mat-list-single-selected-option:focus {
  background: rgba(255, 255, 255, 0.12);
}
.mat-menu-panel {
  background: #424242;
}
.mat-menu-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.mat-menu-item {
  background: transparent;
  color: white;
}
.mat-menu-item[disabled],
.mat-menu-item[disabled] .mat-menu-submenu-icon,
.mat-menu-item[disabled] .mat-icon-no-color {
  color: rgba(255, 255, 255, 0.5);
}
.mat-menu-item .mat-icon-no-color,
.mat-menu-submenu-icon {
  color: white;
}
.mat-menu-item:hover:not([disabled]),
.mat-menu-item.cdk-program-focused:not([disabled]),
.mat-menu-item.cdk-keyboard-focused:not([disabled]),
.mat-menu-item-highlighted:not([disabled]) {
  background: rgba(255, 255, 255, 0.04);
}
.mat-paginator {
  background: #424242;
}
.mat-paginator,
.mat-paginator-page-size .mat-select-trigger {
  color: rgba(255, 255, 255, 0.7);
}
.mat-paginator-decrement,
.mat-paginator-increment {
  border-top: 2px solid white;
  border-right: 2px solid white;
}
.mat-paginator-first,
.mat-paginator-last {
  border-top: 2px solid white;
}
.mat-icon-button[disabled] .mat-paginator-decrement,
.mat-icon-button[disabled] .mat-paginator-increment,
.mat-icon-button[disabled] .mat-paginator-first,
.mat-icon-button[disabled] .mat-paginator-last {
  border-color: rgba(255, 255, 255, 0.5);
}
.mat-paginator-container {
  min-height: 56px;
}
.mat-progress-bar-background {
  fill: #414040;
}
.mat-progress-bar-buffer {
  background-color: #414040;
}
.mat-progress-bar-fill::after {
  background-color: #72706f;
}
.mat-progress-bar.mat-accent .mat-progress-bar-background {
  fill: #645426;
}
.mat-progress-bar.mat-accent .mat-progress-bar-buffer {
  background-color: #645426;
}
.mat-progress-bar.mat-accent .mat-progress-bar-fill::after {
  background-color: #ffc107;
}
.mat-progress-bar.mat-warn .mat-progress-bar-background {
  fill: #643a2d;
}
.mat-progress-bar.mat-warn .mat-progress-bar-buffer {
  background-color: #643a2d;
}
.mat-progress-bar.mat-warn .mat-progress-bar-fill::after {
  background-color: #ff5722;
}
.mat-progress-spinner circle, .mat-spinner circle {
  stroke: #72706f;
}
.mat-progress-spinner.mat-accent circle, .mat-spinner.mat-accent circle {
  stroke: #ffc107;
}
.mat-progress-spinner.mat-warn circle, .mat-spinner.mat-warn circle {
  stroke: #ff5722;
}
.mat-radio-outer-circle {
  border-color: rgba(255, 255, 255, 0.7);
}
.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {
  border-color: #72706f;
}
.mat-radio-button.mat-primary .mat-radio-inner-circle,
.mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {
  background-color: #72706f;
}
.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
  border-color: #ffc107;
}
.mat-radio-button.mat-accent .mat-radio-inner-circle,
.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {
  background-color: #ffc107;
}
.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {
  border-color: #ff5722;
}
.mat-radio-button.mat-warn .mat-radio-inner-circle,
.mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple {
  background-color: #ff5722;
}
.mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,
.mat-radio-button.mat-radio-disabled .mat-radio-outer-circle {
  border-color: rgba(255, 255, 255, 0.5);
}
.mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,
.mat-radio-button.mat-radio-disabled .mat-radio-inner-circle {
  background-color: rgba(255, 255, 255, 0.5);
}
.mat-radio-button.mat-radio-disabled .mat-radio-label-content {
  color: rgba(255, 255, 255, 0.5);
}
.mat-radio-button .mat-ripple-element {
  background-color: white;
}
.mat-select-value {
  color: white;
}
.mat-select-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.mat-select-disabled .mat-select-value {
  color: rgba(255, 255, 255, 0.5);
}
.mat-select-arrow {
  color: rgba(255, 255, 255, 0.7);
}
.mat-select-panel {
  background: #424242;
}
.mat-select-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {
  background: rgba(255, 255, 255, 0.12);
}
.mat-form-field.mat-focused.mat-primary .mat-select-arrow {
  color: #72706f;
}
.mat-form-field.mat-focused.mat-accent .mat-select-arrow {
  color: #ffc107;
}
.mat-form-field.mat-focused.mat-warn .mat-select-arrow {
  color: #ff5722;
}
.mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {
  color: #ff5722;
}
.mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: rgba(255, 255, 255, 0.5);
}
.mat-drawer-container {
  background-color: #303030;
  color: white;
}
.mat-drawer {
  background-color: #424242;
  color: white;
}
.mat-drawer.mat-drawer-push {
  background-color: #424242;
}
.mat-drawer:not(.mat-drawer-side) {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}
.mat-drawer-side {
  border-right: solid 1px rgba(255, 255, 255, 0.12);
}
.mat-drawer-side.mat-drawer-end {
  border-left: solid 1px rgba(255, 255, 255, 0.12);
  border-right: none;
}
[dir=rtl] .mat-drawer-side {
  border-left: solid 1px rgba(255, 255, 255, 0.12);
  border-right: none;
}
[dir=rtl] .mat-drawer-side.mat-drawer-end {
  border-left: none;
  border-right: solid 1px rgba(255, 255, 255, 0.12);
}
.mat-drawer-backdrop.mat-drawer-shown {
  background-color: rgba(189, 189, 189, 0.6);
}
.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {
  background-color: #ffc107;
}
.mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(255, 193, 7, 0.54);
}
.mat-slide-toggle.mat-checked .mat-ripple-element {
  background-color: #ffc107;
}
.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {
  background-color: #72706f;
}
.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(114, 112, 111, 0.54);
}
.mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {
  background-color: #72706f;
}
.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {
  background-color: #ff5722;
}
.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(255, 87, 34, 0.54);
}
.mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {
  background-color: #ff5722;
}
.mat-slide-toggle:not(.mat-checked) .mat-ripple-element {
  background-color: white;
}
.mat-slide-toggle-thumb {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  background-color: #bdbdbd;
}
.mat-slide-toggle-bar {
  background-color: rgba(255, 255, 255, 0.5);
}
.mat-slider-track-background {
  background-color: rgba(255, 255, 255, 0.3);
}
.mat-slider.mat-primary .mat-slider-track-fill,
.mat-slider.mat-primary .mat-slider-thumb,
.mat-slider.mat-primary .mat-slider-thumb-label {
  background-color: #72706f;
}
.mat-slider.mat-primary .mat-slider-thumb-label-text {
  color: white;
}
.mat-slider.mat-primary .mat-slider-focus-ring {
  background-color: rgba(114, 112, 111, 0.2);
}
.mat-slider.mat-accent .mat-slider-track-fill,
.mat-slider.mat-accent .mat-slider-thumb,
.mat-slider.mat-accent .mat-slider-thumb-label {
  background-color: #ffc107;
}
.mat-slider.mat-accent .mat-slider-thumb-label-text {
  color: white;
}
.mat-slider.mat-accent .mat-slider-focus-ring {
  background-color: rgba(255, 193, 7, 0.2);
}
.mat-slider.mat-warn .mat-slider-track-fill,
.mat-slider.mat-warn .mat-slider-thumb,
.mat-slider.mat-warn .mat-slider-thumb-label {
  background-color: #ff5722;
}
.mat-slider.mat-warn .mat-slider-thumb-label-text {
  color: white;
}
.mat-slider.mat-warn .mat-slider-focus-ring {
  background-color: rgba(255, 87, 34, 0.2);
}
.mat-slider:hover .mat-slider-track-background,
.mat-slider.cdk-focused .mat-slider-track-background {
  background-color: rgba(255, 255, 255, 0.3);
}
.mat-slider.mat-slider-disabled .mat-slider-track-background,
.mat-slider.mat-slider-disabled .mat-slider-track-fill,
.mat-slider.mat-slider-disabled .mat-slider-thumb {
  background-color: rgba(255, 255, 255, 0.3);
}
.mat-slider.mat-slider-disabled:hover .mat-slider-track-background {
  background-color: rgba(255, 255, 255, 0.3);
}
.mat-slider.mat-slider-min-value .mat-slider-focus-ring {
  background-color: rgba(255, 255, 255, 0.12);
}
.mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
.mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
  background-color: white;
}
.mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
.mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
  background-color: rgba(255, 255, 255, 0.3);
}
.mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
  border-color: rgba(255, 255, 255, 0.3);
  background-color: transparent;
}
.mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {
  border-color: rgba(255, 255, 255, 0.3);
}
.mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {
  border-color: rgba(255, 255, 255, 0.3);
}
.mat-slider-has-ticks .mat-slider-wrapper::after {
  border-color: rgba(255, 255, 255, 0.7);
}
.mat-slider-horizontal .mat-slider-ticks {
  background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) 2px, transparent 0, transparent);
  background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) 2px, transparent 0, transparent);
}
.mat-slider-vertical .mat-slider-ticks {
  background-image: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7) 2px, transparent 0, transparent);
}
.mat-step-header.cdk-keyboard-focused, .mat-step-header.cdk-program-focused, .mat-step-header:hover:not([aria-disabled]), .mat-step-header:hover[aria-disabled=false] {
  background-color: rgba(255, 255, 255, 0.04);
}
.mat-step-header:hover[aria-disabled=true] {
  cursor: default;
}
@media (hover: none) {
  .mat-step-header:hover {
    background: none;
  }
}
.mat-step-header .mat-step-label,
.mat-step-header .mat-step-optional {
  color: rgba(255, 255, 255, 0.7);
}
.mat-step-header .mat-step-icon {
  background-color: rgba(255, 255, 255, 0.7);
  color: white;
}
.mat-step-header .mat-step-icon-selected,
.mat-step-header .mat-step-icon-state-done,
.mat-step-header .mat-step-icon-state-edit {
  background-color: #72706f;
  color: white;
}
.mat-step-header.mat-accent .mat-step-icon {
  color: white;
}
.mat-step-header.mat-accent .mat-step-icon-selected,
.mat-step-header.mat-accent .mat-step-icon-state-done,
.mat-step-header.mat-accent .mat-step-icon-state-edit {
  background-color: #ffc107;
  color: white;
}
.mat-step-header.mat-warn .mat-step-icon {
  color: white;
}
.mat-step-header.mat-warn .mat-step-icon-selected,
.mat-step-header.mat-warn .mat-step-icon-state-done,
.mat-step-header.mat-warn .mat-step-icon-state-edit {
  background-color: #ff5722;
  color: white;
}
.mat-step-header .mat-step-icon-state-error {
  background-color: transparent;
  color: #ff5722;
}
.mat-step-header .mat-step-label.mat-step-label-active {
  color: white;
}
.mat-step-header .mat-step-label.mat-step-label-error {
  color: #ff5722;
}
.mat-stepper-horizontal, .mat-stepper-vertical {
  background-color: #424242;
}
.mat-stepper-vertical-line::before {
  border-left-color: rgba(255, 255, 255, 0.12);
}
.mat-horizontal-stepper-header::before,
.mat-horizontal-stepper-header::after,
.mat-stepper-horizontal-line {
  border-top-color: rgba(255, 255, 255, 0.12);
}
.mat-horizontal-stepper-header {
  height: 72px;
}
.mat-stepper-label-position-bottom .mat-horizontal-stepper-header,
.mat-vertical-stepper-header {
  padding: 24px 24px;
}
.mat-stepper-vertical-line::before {
  top: -16px;
  bottom: -16px;
}
.mat-stepper-label-position-bottom .mat-horizontal-stepper-header::after, .mat-stepper-label-position-bottom .mat-horizontal-stepper-header::before {
  top: 36px;
}
.mat-stepper-label-position-bottom .mat-stepper-horizontal-line {
  top: 36px;
}
.mat-sort-header-arrow {
  color: #c6c6c6;
}
.mat-tab-nav-bar,
.mat-tab-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.mat-tab-group-inverted-header .mat-tab-nav-bar,
.mat-tab-group-inverted-header .mat-tab-header {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: none;
}
.mat-tab-label, .mat-tab-link {
  color: white;
}
.mat-tab-label.mat-tab-disabled, .mat-tab-link.mat-tab-disabled {
  color: rgba(255, 255, 255, 0.5);
}
.mat-tab-header-pagination-chevron {
  border-color: white;
}
.mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: rgba(255, 255, 255, 0.5);
}
.mat-tab-group[class*=mat-background-] > .mat-tab-header,
.mat-tab-nav-bar[class*=mat-background-] {
  border-bottom: none;
  border-top: none;
}
.mat-tab-group.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(218, 215, 213, 0.3);
}
.mat-tab-group.mat-primary .mat-ink-bar, .mat-tab-nav-bar.mat-primary .mat-ink-bar {
  background-color: #72706f;
}
.mat-tab-group.mat-primary.mat-background-primary > .mat-tab-header .mat-ink-bar, .mat-tab-group.mat-primary.mat-background-primary > .mat-tab-link-container .mat-ink-bar, .mat-tab-nav-bar.mat-primary.mat-background-primary > .mat-tab-header .mat-ink-bar, .mat-tab-nav-bar.mat-primary.mat-background-primary > .mat-tab-link-container .mat-ink-bar {
  background-color: white;
}
.mat-tab-group.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 236, 179, 0.3);
}
.mat-tab-group.mat-accent .mat-ink-bar, .mat-tab-nav-bar.mat-accent .mat-ink-bar {
  background-color: #ffc107;
}
.mat-tab-group.mat-accent.mat-background-accent > .mat-tab-header .mat-ink-bar, .mat-tab-group.mat-accent.mat-background-accent > .mat-tab-link-container .mat-ink-bar, .mat-tab-nav-bar.mat-accent.mat-background-accent > .mat-tab-header .mat-ink-bar, .mat-tab-nav-bar.mat-accent.mat-background-accent > .mat-tab-link-container .mat-ink-bar {
  background-color: white;
}
.mat-tab-group.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 204, 188, 0.3);
}
.mat-tab-group.mat-warn .mat-ink-bar, .mat-tab-nav-bar.mat-warn .mat-ink-bar {
  background-color: #ff5722;
}
.mat-tab-group.mat-warn.mat-background-warn > .mat-tab-header .mat-ink-bar, .mat-tab-group.mat-warn.mat-background-warn > .mat-tab-link-container .mat-ink-bar, .mat-tab-nav-bar.mat-warn.mat-background-warn > .mat-tab-header .mat-ink-bar, .mat-tab-nav-bar.mat-warn.mat-background-warn > .mat-tab-link-container .mat-ink-bar {
  background-color: white;
}
.mat-tab-group.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-primary .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-background-primary .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(218, 215, 213, 0.3);
}
.mat-tab-group.mat-background-primary > .mat-tab-header, .mat-tab-group.mat-background-primary > .mat-tab-link-container, .mat-tab-group.mat-background-primary > .mat-tab-header-pagination, .mat-tab-nav-bar.mat-background-primary > .mat-tab-header, .mat-tab-nav-bar.mat-background-primary > .mat-tab-link-container, .mat-tab-nav-bar.mat-background-primary > .mat-tab-header-pagination {
  background-color: #72706f;
}
.mat-tab-group.mat-background-primary > .mat-tab-header .mat-tab-label, .mat-tab-group.mat-background-primary > .mat-tab-link-container .mat-tab-link, .mat-tab-nav-bar.mat-background-primary > .mat-tab-header .mat-tab-label, .mat-tab-nav-bar.mat-background-primary > .mat-tab-link-container .mat-tab-link {
  color: white;
}
.mat-tab-group.mat-background-primary > .mat-tab-header .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-primary > .mat-tab-link-container .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-primary > .mat-tab-header .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-primary > .mat-tab-link-container .mat-tab-link.mat-tab-disabled {
  color: rgba(255, 255, 255, 0.4);
}
.mat-tab-group.mat-background-primary > .mat-tab-header .mat-tab-header-pagination-chevron,
.mat-tab-group.mat-background-primary > .mat-tab-header-pagination .mat-tab-header-pagination-chevron,
.mat-tab-group.mat-background-primary > .mat-tab-link-container .mat-focus-indicator::before,
.mat-tab-group.mat-background-primary > .mat-tab-header .mat-focus-indicator::before, .mat-tab-nav-bar.mat-background-primary > .mat-tab-header .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-primary > .mat-tab-header-pagination .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-primary > .mat-tab-link-container .mat-focus-indicator::before,
.mat-tab-nav-bar.mat-background-primary > .mat-tab-header .mat-focus-indicator::before {
  border-color: white;
}
.mat-tab-group.mat-background-primary > .mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,
.mat-tab-group.mat-background-primary > .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-primary > .mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-primary > .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: white;
  opacity: 0.4;
}
.mat-tab-group.mat-background-primary > .mat-tab-header .mat-ripple-element,
.mat-tab-group.mat-background-primary > .mat-tab-link-container .mat-ripple-element,
.mat-tab-group.mat-background-primary > .mat-tab-header-pagination .mat-ripple-element, .mat-tab-nav-bar.mat-background-primary > .mat-tab-header .mat-ripple-element,
.mat-tab-nav-bar.mat-background-primary > .mat-tab-link-container .mat-ripple-element,
.mat-tab-nav-bar.mat-background-primary > .mat-tab-header-pagination .mat-ripple-element {
  background-color: white;
  opacity: 0.12;
}
.mat-tab-group.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-accent .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-background-accent .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 236, 179, 0.3);
}
.mat-tab-group.mat-background-accent > .mat-tab-header, .mat-tab-group.mat-background-accent > .mat-tab-link-container, .mat-tab-group.mat-background-accent > .mat-tab-header-pagination, .mat-tab-nav-bar.mat-background-accent > .mat-tab-header, .mat-tab-nav-bar.mat-background-accent > .mat-tab-link-container, .mat-tab-nav-bar.mat-background-accent > .mat-tab-header-pagination {
  background-color: #ffc107;
}
.mat-tab-group.mat-background-accent > .mat-tab-header .mat-tab-label, .mat-tab-group.mat-background-accent > .mat-tab-link-container .mat-tab-link, .mat-tab-nav-bar.mat-background-accent > .mat-tab-header .mat-tab-label, .mat-tab-nav-bar.mat-background-accent > .mat-tab-link-container .mat-tab-link {
  color: white;
}
.mat-tab-group.mat-background-accent > .mat-tab-header .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-accent > .mat-tab-link-container .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-accent > .mat-tab-header .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-accent > .mat-tab-link-container .mat-tab-link.mat-tab-disabled {
  color: rgba(255, 255, 255, 0.4);
}
.mat-tab-group.mat-background-accent > .mat-tab-header .mat-tab-header-pagination-chevron,
.mat-tab-group.mat-background-accent > .mat-tab-header-pagination .mat-tab-header-pagination-chevron,
.mat-tab-group.mat-background-accent > .mat-tab-link-container .mat-focus-indicator::before,
.mat-tab-group.mat-background-accent > .mat-tab-header .mat-focus-indicator::before, .mat-tab-nav-bar.mat-background-accent > .mat-tab-header .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-accent > .mat-tab-header-pagination .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-accent > .mat-tab-link-container .mat-focus-indicator::before,
.mat-tab-nav-bar.mat-background-accent > .mat-tab-header .mat-focus-indicator::before {
  border-color: white;
}
.mat-tab-group.mat-background-accent > .mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,
.mat-tab-group.mat-background-accent > .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-accent > .mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-accent > .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: white;
  opacity: 0.4;
}
.mat-tab-group.mat-background-accent > .mat-tab-header .mat-ripple-element,
.mat-tab-group.mat-background-accent > .mat-tab-link-container .mat-ripple-element,
.mat-tab-group.mat-background-accent > .mat-tab-header-pagination .mat-ripple-element, .mat-tab-nav-bar.mat-background-accent > .mat-tab-header .mat-ripple-element,
.mat-tab-nav-bar.mat-background-accent > .mat-tab-link-container .mat-ripple-element,
.mat-tab-nav-bar.mat-background-accent > .mat-tab-header-pagination .mat-ripple-element {
  background-color: white;
  opacity: 0.12;
}
.mat-tab-group.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-group.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-group.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-keyboard-focused:not(.mat-tab-disabled), .mat-tab-nav-bar.mat-background-warn .mat-tab-label.cdk-program-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-keyboard-focused:not(.mat-tab-disabled),
.mat-tab-nav-bar.mat-background-warn .mat-tab-link.cdk-program-focused:not(.mat-tab-disabled) {
  background-color: rgba(255, 204, 188, 0.3);
}
.mat-tab-group.mat-background-warn > .mat-tab-header, .mat-tab-group.mat-background-warn > .mat-tab-link-container, .mat-tab-group.mat-background-warn > .mat-tab-header-pagination, .mat-tab-nav-bar.mat-background-warn > .mat-tab-header, .mat-tab-nav-bar.mat-background-warn > .mat-tab-link-container, .mat-tab-nav-bar.mat-background-warn > .mat-tab-header-pagination {
  background-color: #ff5722;
}
.mat-tab-group.mat-background-warn > .mat-tab-header .mat-tab-label, .mat-tab-group.mat-background-warn > .mat-tab-link-container .mat-tab-link, .mat-tab-nav-bar.mat-background-warn > .mat-tab-header .mat-tab-label, .mat-tab-nav-bar.mat-background-warn > .mat-tab-link-container .mat-tab-link {
  color: white;
}
.mat-tab-group.mat-background-warn > .mat-tab-header .mat-tab-label.mat-tab-disabled, .mat-tab-group.mat-background-warn > .mat-tab-link-container .mat-tab-link.mat-tab-disabled, .mat-tab-nav-bar.mat-background-warn > .mat-tab-header .mat-tab-label.mat-tab-disabled, .mat-tab-nav-bar.mat-background-warn > .mat-tab-link-container .mat-tab-link.mat-tab-disabled {
  color: rgba(255, 255, 255, 0.4);
}
.mat-tab-group.mat-background-warn > .mat-tab-header .mat-tab-header-pagination-chevron,
.mat-tab-group.mat-background-warn > .mat-tab-header-pagination .mat-tab-header-pagination-chevron,
.mat-tab-group.mat-background-warn > .mat-tab-link-container .mat-focus-indicator::before,
.mat-tab-group.mat-background-warn > .mat-tab-header .mat-focus-indicator::before, .mat-tab-nav-bar.mat-background-warn > .mat-tab-header .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-warn > .mat-tab-header-pagination .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-warn > .mat-tab-link-container .mat-focus-indicator::before,
.mat-tab-nav-bar.mat-background-warn > .mat-tab-header .mat-focus-indicator::before {
  border-color: white;
}
.mat-tab-group.mat-background-warn > .mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,
.mat-tab-group.mat-background-warn > .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron, .mat-tab-nav-bar.mat-background-warn > .mat-tab-header .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron,
.mat-tab-nav-bar.mat-background-warn > .mat-tab-header-pagination-disabled .mat-tab-header-pagination-chevron {
  border-color: white;
  opacity: 0.4;
}
.mat-tab-group.mat-background-warn > .mat-tab-header .mat-ripple-element,
.mat-tab-group.mat-background-warn > .mat-tab-link-container .mat-ripple-element,
.mat-tab-group.mat-background-warn > .mat-tab-header-pagination .mat-ripple-element, .mat-tab-nav-bar.mat-background-warn > .mat-tab-header .mat-ripple-element,
.mat-tab-nav-bar.mat-background-warn > .mat-tab-link-container .mat-ripple-element,
.mat-tab-nav-bar.mat-background-warn > .mat-tab-header-pagination .mat-ripple-element {
  background-color: white;
  opacity: 0.12;
}
.mat-toolbar {
  background: #212121;
  color: white;
}
.mat-toolbar.mat-primary {
  background: #72706f;
  color: white;
}
.mat-toolbar.mat-accent {
  background: #ffc107;
  color: white;
}
.mat-toolbar.mat-warn {
  background: #ff5722;
  color: white;
}
.mat-toolbar .mat-form-field-underline,
.mat-toolbar .mat-form-field-ripple,
.mat-toolbar .mat-focused .mat-form-field-ripple {
  background-color: currentColor;
}
.mat-toolbar .mat-form-field-label,
.mat-toolbar .mat-focused .mat-form-field-label,
.mat-toolbar .mat-select-value,
.mat-toolbar .mat-select-arrow,
.mat-toolbar .mat-form-field.mat-focused .mat-select-arrow {
  color: inherit;
}
.mat-toolbar .mat-input-element {
  caret-color: currentColor;
}
.mat-toolbar-multiple-rows {
  min-height: 64px;
}
.mat-toolbar-row, .mat-toolbar-single-row {
  height: 64px;
}
@media (max-width: 599px) {
  .mat-toolbar-multiple-rows {
    min-height: 56px;
  }
  .mat-toolbar-row, .mat-toolbar-single-row {
    height: 56px;
  }
}
.mat-tooltip {
  background: rgba(97, 97, 97, 0.9);
}
.mat-tree {
  background: #424242;
}
.mat-tree-node,
.mat-nested-tree-node {
  color: white;
}
.mat-tree-node {
  min-height: 48px;
}
.mat-snack-bar-container {
  color: rgba(0, 0, 0, 0.87);
  background: #fafafa;
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.mat-simple-snackbar-action {
  color: inherit;
}
:root {
  --fs-theme-primary: #5b5958;
  --fs-theme-accent: #fec62e;
  --fs-theme-info: #03a9f4;
  --fs-theme-success: #8dd56a;
  --fs-theme-danger: #d84315;
  --fs-theme-warning: #ffb028;
  --fs-theme-secondary: #757575;
  --fs-theme-base: #f5f5f5;
  --fs-theme-dark: #141217;
  --fs-theme-light: #f5f5f5;
  --fs-theme-on-base: #000;
  --fs-theme-on-dark: #fff;
  --fs-theme-on-light: #000;
  --fs-theme-on-primary: #fff;
  --fs-theme-on-accent: #000;
  --fs-theme-on-secondary: #fff;
  --fs-theme-on-info: #fff;
  --fs-theme-on-success: #000;
  --fs-theme-on-danger: #fff;
  --fs-theme-on-warning: #000;
  --fs-theme-background: #eee;
  --fs-theme-surface: #ffffff;
  --fs-theme-on-surface: #000;
  --fs-theme-text-primary: rgba(0, 0, 0, 0.87);
  --fs-theme-text-secondary: rgba(0, 0, 0, 0.54);
  --fs-theme-text-hint: rgba(0, 0, 0, 0.38);
  --fs-theme-text-disabled: rgba(0, 0, 0, 0.38);
  --fs-theme-text-icon: rgba(0, 0, 0, 0.54);
  --fs-theme-text-primary-on-light: rgba(0, 0, 0, 0.87);
  --fs-theme-text-secondary-on-light: rgba(0, 0, 0, 0.54);
  --fs-theme-text-hint-on-light: rgba(0, 0, 0, 0.38);
  --fs-theme-text-disabled-on-light: rgba(0, 0, 0, 0.38);
  --fs-theme-text-icon-on-light: rgba(0, 0, 0, 0.54);
  --fs-theme-text-primary-on-dark: rgba(255, 255, 255, 0.87);
  --fs-theme-text-secondary-on-dark: rgba(255, 255, 255, 0.54);
  --fs-theme-text-hint-on-dark: rgba(255, 255, 255, 0.38);
  --fs-theme-text-disabled-on-dark: rgba(255, 255, 255, 0.38);
  --fs-theme-text-icon-on-dark: rgba(255, 255, 255, 0.54);
  --fs-theme-divider: rgba(0, 0, 0, 0.12);
  --fs-theme-divider-on-light: rgba(0, 0, 0, 0.12);
  --fs-theme-divider-on-dark: rgba(255, 255, 255, 0.12);
}
.cdk-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  left: 0;
}
[dir=rtl] .cdk-visually-hidden {
  left: auto;
  right: 0;
}
.cdk-overlay-container, .cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  display: none;
}
.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}
.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  z-index: 1000;
  display: flex;
  max-width: 100%;
  max-height: 100%;
}
.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 1;
}
.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0.6;
}
.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, 0.32);
}
.cdk-overlay-transparent-backdrop {
  transition: visibility 1ms linear, opacity 1ms linear;
  visibility: hidden;
  opacity: 1;
}
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0;
  visibility: visible;
}
.cdk-overlay-backdrop-noop-animation {
  transition: none;
}
.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
}
.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}
.mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.mat-option {
  color: rgba(0, 0, 0, 0.87);
}
.mat-option:hover:not(.mat-option-disabled), .mat-option:focus:not(.mat-option-disabled) {
  background: rgba(0, 0, 0, 0.04);
}
.mat-option.mat-selected:not(.mat-option-multiple):not(.mat-option-disabled) {
  background: rgba(0, 0, 0, 0.04);
}
.mat-option.mat-active {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.87);
}
.mat-option.mat-option-disabled {
  color: rgba(0, 0, 0, 0.38);
}
.mat-primary .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #5b5958;
}
.mat-accent .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #fec62e;
}
.mat-warn .mat-option.mat-selected:not(.mat-option-disabled) {
  color: #d84315;
}
.mat-optgroup-label {
  color: rgba(0, 0, 0, 0.54);
}
.mat-optgroup-disabled .mat-optgroup-label {
  color: rgba(0, 0, 0, 0.38);
}
.mat-pseudo-checkbox {
  color: rgba(0, 0, 0, 0.54);
}
.mat-pseudo-checkbox::after {
  color: #eeeeee;
}
.mat-pseudo-checkbox-disabled {
  color: #b0b0b0;
}
.mat-primary .mat-pseudo-checkbox-checked,
.mat-primary .mat-pseudo-checkbox-indeterminate {
  background: #5b5958;
}
.mat-pseudo-checkbox-checked,
.mat-pseudo-checkbox-indeterminate,
.mat-accent .mat-pseudo-checkbox-checked,
.mat-accent .mat-pseudo-checkbox-indeterminate {
  background: #fec62e;
}
.mat-warn .mat-pseudo-checkbox-checked,
.mat-warn .mat-pseudo-checkbox-indeterminate {
  background: #d84315;
}
.mat-pseudo-checkbox-checked.mat-pseudo-checkbox-disabled,
.mat-pseudo-checkbox-indeterminate.mat-pseudo-checkbox-disabled {
  background: #b0b0b0;
}
.mat-app-background {
  background-color: #eeeeee;
  color: rgba(0, 0, 0, 0.87);
}
.mat-elevation-z0 {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z1 {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z2 {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z3 {
  box-shadow: 0px 3px 3px -2px rgba(0, 0, 0, 0.2), 0px 3px 4px 0px rgba(0, 0, 0, 0.14), 0px 1px 8px 0px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z4 {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z5 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 5px 8px 0px rgba(0, 0, 0, 0.14), 0px 1px 14px 0px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z6 {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z7 {
  box-shadow: 0px 4px 5px -2px rgba(0, 0, 0, 0.2), 0px 7px 10px 1px rgba(0, 0, 0, 0.14), 0px 2px 16px 1px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z8 {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z9 {
  box-shadow: 0px 5px 6px -3px rgba(0, 0, 0, 0.2), 0px 9px 12px 1px rgba(0, 0, 0, 0.14), 0px 3px 16px 2px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z10 {
  box-shadow: 0px 6px 6px -3px rgba(0, 0, 0, 0.2), 0px 10px 14px 1px rgba(0, 0, 0, 0.14), 0px 4px 18px 3px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z11 {
  box-shadow: 0px 6px 7px -4px rgba(0, 0, 0, 0.2), 0px 11px 15px 1px rgba(0, 0, 0, 0.14), 0px 4px 20px 3px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z12 {
  box-shadow: 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-elevation-z13 {
  box-shadow: 0px 7px 8px -4px rgba(0, 0, 0, 0.2), 0px 13px 19px 2px rgba(0, 0, 0, 0.14), 0px 5px 24px 4px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z14 {
  box-shadow: 0px 7px 9px -4px rgba(0, 0, 0, 0.2), 0px 14px 21px 2px rgba(0, 0, 0, 0.14), 0px 5px 26px 4px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z15 {
  box-shadow: 0px 8px 9px -5px rgba(0, 0, 0, 0.2), 0px 15px 22px 2px rgba(0, 0, 0, 0.14), 0px 6px 28px 5px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z16 {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z17 {
  box-shadow: 0px 8px 11px -5px rgba(0, 0, 0, 0.2), 0px 17px 26px 2px rgba(0, 0, 0, 0.14), 0px 6px 32px 5px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z18 {
  box-shadow: 0px 9px 11px -5px rgba(0, 0, 0, 0.2), 0px 18px 28px 2px rgba(0, 0, 0, 0.14), 0px 7px 34px 6px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z19 {
  box-shadow: 0px 9px 12px -6px rgba(0, 0, 0, 0.2), 0px 19px 29px 2px rgba(0, 0, 0, 0.14), 0px 7px 36px 6px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z20 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 20px 31px 3px rgba(0, 0, 0, 0.14), 0px 8px 38px 7px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z21 {
  box-shadow: 0px 10px 13px -6px rgba(0, 0, 0, 0.2), 0px 21px 33px 3px rgba(0, 0, 0, 0.14), 0px 8px 40px 7px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z22 {
  box-shadow: 0px 10px 14px -6px rgba(0, 0, 0, 0.2), 0px 22px 35px 3px rgba(0, 0, 0, 0.14), 0px 8px 42px 7px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z23 {
  box-shadow: 0px 11px 14px -7px rgba(0, 0, 0, 0.2), 0px 23px 36px 3px rgba(0, 0, 0, 0.14), 0px 9px 44px 8px rgba(0, 0, 0, 0.12);
}
.mat-elevation-z24 {
  box-shadow: 0px 11px 15px -7px rgba(0, 0, 0, 0.2), 0px 24px 38px 3px rgba(0, 0, 0, 0.14), 0px 9px 46px 8px rgba(0, 0, 0, 0.12);
}
.mat-theme-loaded-marker {
  display: none;
}
.muted-text {
  color: rgba(0, 0, 0, 0.54);
}
.fs-text-truncate, .text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
* {
  box-sizing: border-box;
}
html {
  height: 100%;
}
html.cdk-global-scrollblock {
  position: static;
  overflow: hidden;
}
body {
  background-color: #141217;
  color: rgba(0, 0, 0, 0.87);
  display: block;
  font-family: "IBM Plex Sans", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  height: 100%;
  line-height: 1.5;
  margin: 0;
  text-align: left;
  text-rendering: optimizelegibility;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  width: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
label {
  margin-bottom: 0;
}
:focus,
button:focus {
  outline: 0 auto !important;
}
::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.38);
  opacity: 1;
}
::placeholder {
  color: rgba(0, 0, 0, 0.38);
  opacity: 1;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-weight: 400;
  line-height: 1.2;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
}
h1,
.h1 {
  font-size: 1.49975rem;
}
h2,
.h2 {
  font-size: 1.32475rem;
}
h3,
.h3 {
  font-size: 1.14975rem;
}
h4,
.h4 {
  font-size: 0.97475rem;
}
h5,
.h5 {
  font-size: 0.79975rem;
}
h6,
.h6 {
  font-size: 0.62475rem;
}
p {
  margin-top: 0;
  margin-bottom: 1rem;
}
a {
  color: #03a9f4;
  text-decoration: none;
  background-color: transparent;
}
a:hover {
  color: #03a9f4;
  text-decoration: underline;
}
a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}
input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
img {
  vertical-align: middle;
  border-style: none;
}
svg {
  overflow: hidden;
  vertical-align: middle;
}
hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
/**
  * Typography System – Spark 2 / Axon Alignment
  *
  * This file defines the foundational typography tokens and utility classes aligned with the Axon design system,
  * built on top of the Spark 2 type scale and visual guidelines.
  *
  * The intent of this file is to serve as the source of truth for consistent type styles (font family, weight,
  * size, line height, letter spacing) across the platform — supporting both application-wide standards and
  * component-specific styling.
  *
  * Design references:
  * - Spark 2 Dev: https://www.figma.com/design/q1nNzgJgALfU6s3DaZHlVa/Spark-2-Dev
  * - Axon Fusus Kit: https://www.figma.com/design/J4ZdMJ8phaySFJNB8SIsTz/Axon-Fusus---Visual-Direction-Kit
  *
  * Important Notes:
  * - This file is **not currently applied globally** due to the large amount of legacy/custom typography in the repo.
  * - Usage will be **incremental**, primarily through new components and targeted refactors.
  * - Class names (`.body-one`, `.heading-two`, etc.) mirror Spark naming conventions, but mapping is flexible.
  * - Backwards compatibility with legacy layouts (e.g., `.title`, `.mat-*` overrides) is intentionally preserved.
  *
  * This file lays the groundwork for future Spark-compliant component development.
  */
/****    Font Sizes   ****/
.display-one {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 200;
  font-size: 61px;
  line-height: 110%;
  letter-spacing: 1.25px;
  padding-bottom: 0px;
}
.heading-one {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 49px;
  line-height: 110%;
  letter-spacing: -0.25px;
  padding-bottom: 0px;
}
.heading-two {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 600;
  font-size: 39px;
  line-height: 110%;
  letter-spacing: 0px;
  padding-bottom: 0px;
}
.subtitle-one {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 130%;
  letter-spacing: -0.25px;
  padding-bottom: 0px;
}
.subtitle-two {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 2px;
  padding-bottom: 0px;
  text-transform: uppercase;
}
.subtitle-three {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.25px;
  padding-bottom: 0px;
}
.subtitle-four {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
  letter-spacing: 0px;
  padding-bottom: 14px;
}
.title {
  font-size: 14px;
}
.body-one, .title, mat-list-item .mat-line:only-of-type, mat-list-item .mat-line:nth-of-type(1):nth-last-of-type(2) {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  letter-spacing: 0px;
  padding-bottom: 14px;
}
.body-one .link, .title .link, mat-list-item .mat-line:only-of-type .link, mat-list-item .mat-line:nth-of-type(1):nth-last-of-type(2) .link {
  text-decoration: underline;
  font-weight: 500;
}
.body-two, .mat-header-cell {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 135%;
  letter-spacing: 0px;
  padding-bottom: 0px;
}
.body-two .link, .mat-header-cell .link {
  text-decoration: underline;
  font-weight: 600;
}
.body-three, .mat-button-wrapper, .mat-cell, .mat-tab-label-content, mat-list-item .mat-line:nth-of-type(2):nth-last-of-type(1), mat-list-item .mat-line:has(.mat-line),
mat-list-item .mat-line .mat-line {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 135%;
  letter-spacing: 0px;
  padding-bottom: 11px;
}
.body-four {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 130%;
  letter-spacing: 0px;
  padding-bottom: 11px;
}
.label-one {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 130%;
  letter-spacing: 0.5px;
  padding-bottom: 0px;
  text-transform: uppercase;
}
.label-two {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 130%;
  letter-spacing: 1px;
  padding-bottom: 0px;
  text-transform: uppercase;
}
.caption {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 130%;
  letter-spacing: 0px;
  padding-bottom: 0px;
}
.nav-standard {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0px;
  padding-bottom: 0px;
}
.button-text-large {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.18px;
  padding-bottom: 0px;
}
.button-text-large.underline {
  text-decoration: underline;
}
.button-text-regular {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.14px;
  padding-bottom: 0px;
}
.button-text-regular.underline {
  text-decoration: underline;
}
.button-text-small {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -0.12px;
  padding-bottom: 0px;
}
.button-text-small.underline {
  text-decoration: underline;
}
.tab-text-regular {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.14px;
  padding-bottom: 0px;
}
.tab-text-regular-selected {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.14px;
  padding-bottom: 0px;
}
.tab-text-small {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -0.12px;
  padding-bottom: 0px;
}
.tab-text-small-selected {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -0.12px;
  padding-bottom: 0px;
}
.body-one-mono, .mat-mono {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  letter-spacing: 0px;
  padding-bottom: 14px;
}
.body-two-mono, .mat-mono-small {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-size: 13px;
  line-height: 135%;
  letter-spacing: 0px;
  padding-bottom: 11px;
}
.body-three-mono {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-size: 13px;
  line-height: 135%;
  letter-spacing: 0px;
  padding-bottom: 11px;
}
.mat-button-wrapper {
  display: inline-flex;
  align-items: center;
  padding-bottom: 0px;
  height: 100%;
}
.mat-header-cell {
  text-transform: none;
}
.mat-cell {
  padding-bottom: 0px;
}
.mat-tab-label-content {
  padding-bottom: 0px;
  text-transform: none;
}
/* there are various renderings of mat-line, some nested, some singular,
some consecutive, each with it's own expectation of styling */
mat-list-item {
  /* Case 1: Singular mat-line anywhere inside  */
  /* Case 2: Two mat-lines at the same level */
  /* Case 3: If ANY ancestor contains another mat-line, ALL nested mat-lines apply */
}
mat-list-item .mat-line:only-of-type {
  padding-bottom: 0px;
}
mat-list-item .mat-line:nth-of-type(1):nth-last-of-type(2) {
  padding-bottom: 5px;
}
mat-list-item .mat-line:nth-of-type(2):nth-last-of-type(1) {
  padding-bottom: 0px;
}
mat-list-item .mat-line:has(.mat-line),
mat-list-item .mat-line .mat-line {
  padding-bottom: 0px;
}
.fs-italic {
  font-style: italic;
}
.fs-text-wrap {
  white-space: normal;
  word-break: break-word;
}
.mat-h1,
.mat-headline,
.mat-typography .mat-h1,
.mat-typography .mat-headline,
.mat-typography h1 {
  font: 400 24px / 32px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h2,
.mat-title,
.mat-typography .mat-h2,
.mat-typography .mat-title,
.mat-typography h2 {
  font: 500 20px / 32px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h3,
.mat-subheading-2,
.mat-typography .mat-h3,
.mat-typography .mat-subheading-2,
.mat-typography h3 {
  font: 400 16px / 28px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h4,
.mat-subheading-1,
.mat-typography .mat-h4,
.mat-typography .mat-subheading-1,
.mat-typography h4 {
  font: 400 15px / 24px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h5,
.mat-typography .mat-h5,
.mat-typography h5 {
  font: 400 calc(16px * 0.83) / 16px "IBM Plex Sans", "Roboto", sans-serif;
  margin: 0 0 12px;
}
.mat-h6,
.mat-typography .mat-h6,
.mat-typography h6 {
  font: 400 calc(16px * 0.67) / 16px "IBM Plex Sans", "Roboto", sans-serif;
  margin: 0 0 12px;
}
.mat-body-strong,
.mat-body-2,
.mat-typography .mat-body-strong,
.mat-typography .mat-body-2 {
  font: 400 14px / 100% "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
}
.mat-body,
.mat-body-1,
.mat-typography .mat-body,
.mat-typography .mat-body-1,
.mat-typography {
  font: 400 16px / 16px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
}
.mat-body p,
.mat-body-1 p,
.mat-typography .mat-body p,
.mat-typography .mat-body-1 p,
.mat-typography p {
  margin: 0 0 12px;
}
.mat-small,
.mat-caption,
.mat-typography .mat-small,
.mat-typography .mat-caption {
  font: 400 12px / 20px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
}
.mat-display-4,
.mat-typography .mat-display-4 {
  font: 300 112px / 112px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: -0.05em;
  margin: 0 0 56px;
}
.mat-display-3,
.mat-typography .mat-display-3 {
  font: 400 56px / 56px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 64px;
}
.mat-display-2,
.mat-typography .mat-display-2 {
  font: 400 45px / 48px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: -0.005em;
  margin: 0 0 64px;
}
.mat-display-1,
.mat-typography .mat-display-1 {
  font: 400 34px / 40px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
  margin: 0 0 64px;
}
.mat-badge-content {
  font-weight: 600;
  font-size: 12px;
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
}
.mat-badge-small .mat-badge-content {
  font-size: 9px;
}
.mat-badge-large .mat-badge-content {
  font-size: 24px;
}
.mat-h1,
.mat-headline,
.mat-typography .mat-h1,
.mat-typography .mat-headline,
.mat-typography h1 {
  font: 400 24px / 32px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h2,
.mat-title,
.mat-typography .mat-h2,
.mat-typography .mat-title,
.mat-typography h2 {
  font: 500 20px / 32px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h3,
.mat-subheading-2,
.mat-typography .mat-h3,
.mat-typography .mat-subheading-2,
.mat-typography h3 {
  font: 400 16px / 28px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h4,
.mat-subheading-1,
.mat-typography .mat-h4,
.mat-typography .mat-subheading-1,
.mat-typography h4 {
  font: 400 15px / 24px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
  margin: 0 0 16px;
}
.mat-h5,
.mat-typography .mat-h5,
.mat-typography h5 {
  font: 400 calc(16px * 0.83) / 16px "IBM Plex Sans", "Roboto", sans-serif;
  margin: 0 0 12px;
}
.mat-h6,
.mat-typography .mat-h6,
.mat-typography h6 {
  font: 400 calc(16px * 0.67) / 16px "IBM Plex Sans", "Roboto", sans-serif;
  margin: 0 0 12px;
}
.mat-body-strong,
.mat-body-2,
.mat-typography .mat-body-strong,
.mat-typography .mat-body-2 {
  font: 400 14px / 100% "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
}
.mat-body,
.mat-body-1,
.mat-typography .mat-body,
.mat-typography .mat-body-1,
.mat-typography {
  font: 400 16px / 16px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
}
.mat-body p,
.mat-body-1 p,
.mat-typography .mat-body p,
.mat-typography .mat-body-1 p,
.mat-typography p {
  margin: 0 0 12px;
}
.mat-small,
.mat-caption,
.mat-typography .mat-small,
.mat-typography .mat-caption {
  font: 400 12px / 20px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
}
.mat-display-4,
.mat-typography .mat-display-4 {
  font: 300 112px / 112px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: -0.05em;
  margin: 0 0 56px;
}
.mat-display-3,
.mat-typography .mat-display-3 {
  font: 400 56px / 56px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: -0.02em;
  margin: 0 0 64px;
}
.mat-display-2,
.mat-typography .mat-display-2 {
  font: 400 45px / 48px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: -0.005em;
  margin: 0 0 64px;
}
.mat-display-1,
.mat-typography .mat-display-1 {
  font: 400 34px / 40px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
  margin: 0 0 64px;
}
.mat-bottom-sheet-container {
  font: 400 16px / 16px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
}
.mat-button, .mat-raised-button, .mat-icon-button, .mat-stroked-button,
.mat-flat-button, .mat-fab, .mat-mini-fab {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.mat-button-toggle {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
}
.mat-card {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
}
.mat-card-title {
  font-size: 24px;
  font-weight: 500;
}
.mat-card-header .mat-card-title {
  font-size: 20px;
}
.mat-card-subtitle,
.mat-card-content {
  font-size: 16px;
}
.mat-checkbox {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
}
.mat-checkbox-layout .mat-checkbox-label {
  line-height: 100%;
}
.mat-chip {
  font-size: 14px;
  font-weight: 400;
}
.mat-chip .mat-chip-trailing-icon.mat-icon,
.mat-chip .mat-chip-remove.mat-icon {
  font-size: 18px;
}
.mat-table {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
}
.mat-header-cell {
  font-size: 12px;
  font-weight: 400;
}
.mat-cell, .mat-footer-cell {
  font-size: 16px;
}
.mat-calendar {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
}
.mat-calendar-body {
  font-size: 13px;
}
.mat-calendar-body-label,
.mat-calendar-period-button {
  font-size: 14px;
  font-weight: 500;
}
.mat-calendar-table-header th {
  font-size: 11px;
  font-weight: 400;
}
.mat-dialog-title {
  font: 500 20px / 32px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
}
.mat-expansion-panel-header {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 400;
}
.mat-expansion-panel-content {
  font: 400 16px / 16px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
}
.mat-form-field {
  font-size: inherit;
  font-weight: 400;
  line-height: 1.125;
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
}
.mat-form-field-wrapper {
  padding-bottom: 1.34375em;
}
.mat-form-field-prefix .mat-icon,
.mat-form-field-suffix .mat-icon {
  font-size: 150%;
  line-height: 1.125;
}
.mat-form-field-prefix .mat-icon-button,
.mat-form-field-suffix .mat-icon-button {
  height: 1.5em;
  width: 1.5em;
}
.mat-form-field-prefix .mat-icon-button .mat-icon,
.mat-form-field-suffix .mat-icon-button .mat-icon {
  height: 1.125em;
  line-height: 1.125;
}
.mat-form-field-infix {
  padding: 0.5em 0;
  border-top: 0.84375em solid transparent;
}
.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.34375em) scale(0.75);
  width: 133.3333333333%;
}
.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.34374em) scale(0.75);
  width: 133.3333433333%;
}
.mat-form-field-label-wrapper {
  top: -0.84375em;
  padding-top: 0.84375em;
}
.mat-form-field-label {
  top: 1.34375em;
}
.mat-form-field-underline {
  bottom: 1.34375em;
}
.mat-form-field-subscript-wrapper {
  font-size: 75%;
  margin-top: 0.6666666667em;
  top: calc(100% - 1.7916666667em);
}
.mat-form-field-appearance-legacy .mat-form-field-wrapper {
  padding-bottom: 1.25em;
}
.mat-form-field-appearance-legacy .mat-form-field-infix {
  padding: 0.4375em 0;
}
.mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.001px);
  width: 133.3333333333%;
}
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00101px);
  width: 133.3333433333%;
}
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.28125em) scale(0.75) perspective(100px) translateZ(0.00102px);
  width: 133.3333533333%;
}
.mat-form-field-appearance-legacy .mat-form-field-label {
  top: 1.28125em;
}
.mat-form-field-appearance-legacy .mat-form-field-underline {
  bottom: 1.25em;
}
.mat-form-field-appearance-legacy .mat-form-field-subscript-wrapper {
  margin-top: 0.5416666667em;
  top: calc(100% - 1.6666666667em);
}
@media print {
  .mat-form-field-appearance-legacy.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
.mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
    transform: translateY(-1.28122em) scale(0.75);
  }
  .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-form-field-autofill-control:-webkit-autofill + .mat-form-field-label-wrapper .mat-form-field-label {
    transform: translateY(-1.28121em) scale(0.75);
  }
  .mat-form-field-appearance-legacy.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
    transform: translateY(-1.2812em) scale(0.75);
  }
}
.mat-form-field-appearance-fill .mat-form-field-infix {
  padding: 0.25em 0 0.75em 0;
}
.mat-form-field-appearance-fill .mat-form-field-label {
  top: 1.09375em;
  margin-top: -0.5em;
}
.mat-form-field-appearance-fill.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-0.59375em) scale(0.75);
  width: 133.3333333333%;
}
.mat-form-field-appearance-fill.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-0.59374em) scale(0.75);
  width: 133.3333433333%;
}
.mat-form-field-appearance-outline .mat-form-field-infix {
  padding: 1em 0 1em 0;
}
.mat-form-field-appearance-outline .mat-form-field-label {
  top: 1.84375em;
  margin-top: -0.25em;
}
.mat-form-field-appearance-outline.mat-form-field-can-float.mat-form-field-should-float .mat-form-field-label,
.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server:focus + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.59375em) scale(0.75);
  width: 133.3333333333%;
}
.mat-form-field-appearance-outline.mat-form-field-can-float .mat-input-server[label]:not(:label-shown) + .mat-form-field-label-wrapper .mat-form-field-label {
  transform: translateY(-1.59374em) scale(0.75);
  width: 133.3333433333%;
}
.mat-grid-tile-header,
.mat-grid-tile-footer {
  font-size: 16px;
}
.mat-grid-tile-header .mat-line,
.mat-grid-tile-footer .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.mat-grid-tile-header .mat-line:nth-child(n+2),
.mat-grid-tile-footer .mat-line:nth-child(n+2) {
  font-size: 12px;
}
input.mat-input-element {
  margin-top: -0.0625em;
}
.mat-menu-item {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
}
.mat-paginator,
.mat-paginator-page-size .mat-select-trigger {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-size: 12px;
}
.mat-radio-button {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
}
.mat-select {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
}
.mat-select-trigger {
  height: 1.125em;
}
.mat-slide-toggle-content {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
}
.mat-slider-thumb-label-text {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
}
.mat-stepper-vertical, .mat-stepper-horizontal {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
}
.mat-step-label {
  font-size: 16px;
  font-weight: 400;
}
.mat-step-sub-label-error {
  font-weight: normal;
}
.mat-step-label-error {
  font-size: 14px;
}
.mat-step-label-selected {
  font-size: 14px;
  font-weight: 400;
}
.mat-tab-group {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
}
.mat-tab-label, .mat-tab-link {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
}
.mat-toolbar,
.mat-toolbar h1,
.mat-toolbar h2,
.mat-toolbar h3,
.mat-toolbar h4,
.mat-toolbar h5,
.mat-toolbar h6 {
  font: 500 20px / 32px "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
  margin: 0;
}
.mat-tooltip {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-size: 10px;
  padding-top: 6px;
  padding-bottom: 6px;
}
.mat-tooltip-handset {
  font-size: 14px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.mat-list-item {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
}
.mat-list-option {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
}
.mat-list-base .mat-list-item {
  font-size: 16px;
}
.mat-list-base .mat-list-item .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.mat-list-base .mat-list-item .mat-line:nth-child(n+2) {
  font-size: 16px;
}
.mat-list-base .mat-list-option {
  font-size: 16px;
}
.mat-list-base .mat-list-option .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.mat-list-base .mat-list-option .mat-line:nth-child(n+2) {
  font-size: 16px;
}
.mat-list-base .mat-subheader {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.mat-list-base[dense] .mat-list-item {
  font-size: 12px;
}
.mat-list-base[dense] .mat-list-item .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.mat-list-base[dense] .mat-list-item .mat-line:nth-child(n+2) {
  font-size: 12px;
}
.mat-list-base[dense] .mat-list-option {
  font-size: 12px;
}
.mat-list-base[dense] .mat-list-option .mat-line {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  box-sizing: border-box;
}
.mat-list-base[dense] .mat-list-option .mat-line:nth-child(n+2) {
  font-size: 12px;
}
.mat-list-base[dense] .mat-subheader {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-size: 12px;
  font-weight: 400;
}
.mat-option {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-size: 16px;
}
.mat-optgroup-label {
  font: 400 14px / 100% "IBM Plex Sans", "Roboto", sans-serif;
  letter-spacing: normal;
}
.mat-simple-snackbar {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-size: 16px;
}
.mat-simple-snackbar-action {
  line-height: 1;
  font-family: inherit;
  font-size: inherit;
  font-weight: 500;
}
.mat-tree {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
}
.mat-tree-node,
.mat-nested-tree-node {
  font-weight: 400;
  font-size: 16px;
}
.mat-ripple {
  overflow: hidden;
  position: relative;
}
.mat-ripple:not(:empty) {
  transform: translateZ(0);
}
.mat-ripple.mat-ripple-unbounded {
  overflow: visible;
}
.mat-ripple-element {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1);
  transform: scale3d(0, 0, 0);
}
.cdk-high-contrast-active .mat-ripple-element {
  display: none;
}
.cdk-visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
  outline: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  left: 0;
}
[dir=rtl] .cdk-visually-hidden {
  left: auto;
  right: 0;
}
.cdk-overlay-container, .cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.cdk-overlay-container {
  position: fixed;
  z-index: 1000;
}
.cdk-overlay-container:empty {
  display: none;
}
.cdk-global-overlay-wrapper {
  display: flex;
  position: absolute;
  z-index: 1000;
}
.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  box-sizing: border-box;
  z-index: 1000;
  display: flex;
  max-width: 100%;
  max-height: 100%;
}
.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}
.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 1;
}
.cdk-high-contrast-active .cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0.6;
}
.cdk-overlay-dark-backdrop {
  background: rgba(0, 0, 0, 0.32);
}
.cdk-overlay-transparent-backdrop {
  transition: visibility 1ms linear, opacity 1ms linear;
  visibility: hidden;
  opacity: 1;
}
.cdk-overlay-transparent-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0;
  visibility: visible;
}
.cdk-overlay-backdrop-noop-animation {
  transition: none;
}
.cdk-overlay-connected-position-bounding-box {
  position: absolute;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  min-width: 1px;
  min-height: 1px;
}
.cdk-global-scrollblock {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}
textarea.cdk-textarea-autosize {
  resize: none;
}
textarea.cdk-textarea-autosize-measuring {
  padding: 2px 0 !important;
  box-sizing: content-box !important;
  height: auto !important;
  overflow: hidden !important;
}
textarea.cdk-textarea-autosize-measuring-firefox {
  padding: 2px 0 !important;
  box-sizing: content-box !important;
  height: 0 !important;
}
@keyframes cdk-text-field-autofill-start { /*!*/ }
@keyframes cdk-text-field-autofill-end { /*!*/ }
.cdk-text-field-autofill-monitored:-webkit-autofill {
  animation: cdk-text-field-autofill-start 0s 1ms;
}
.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
  animation: cdk-text-field-autofill-end 0s 1ms;
}
.mat-focus-indicator {
  position: relative;
}
.mat-focus-indicator::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  box-sizing: border-box;
  pointer-events: none;
  display: none;
  display: var(--mat-focus-indicator-display, none);
  border: 3px solid transparent;
  border: var(--mat-focus-indicator-border-width, 3px) var(--mat-focus-indicator-border-style, solid) var(--mat-focus-indicator-border-color, transparent);
  border-radius: 4px;
  border-radius: var(--mat-focus-indicator-border-radius, 4px);
}
.mat-focus-indicator:focus::before {
  content: "";
}
.cdk-high-contrast-active {
  --mat-focus-indicator-display: block;
}
.mat-mdc-focus-indicator {
  position: relative;
}
.mat-mdc-focus-indicator::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  box-sizing: border-box;
  pointer-events: none;
  display: none;
  display: var(--mat-mdc-focus-indicator-display, none);
  border: 3px solid transparent;
  border: var(--mat-mdc-focus-indicator-border-width, 3px) var(--mat-mdc-focus-indicator-border-style, solid) var(--mat-mdc-focus-indicator-border-color, transparent);
  border-radius: 4px;
  border-radius: var(--mat-mdc-focus-indicator-border-radius, 4px);
}
.mat-mdc-focus-indicator:focus::before {
  content: "";
}
.cdk-high-contrast-active {
  --mat-mdc-focus-indicator-display: block;
}
/**
  * Typography System – Spark 2 / Axon Alignment
  *
  * This file defines the foundational typography tokens and utility classes aligned with the Axon design system,
  * built on top of the Spark 2 type scale and visual guidelines.
  *
  * The intent of this file is to serve as the source of truth for consistent type styles (font family, weight,
  * size, line height, letter spacing) across the platform — supporting both application-wide standards and
  * component-specific styling.
  *
  * Design references:
  * - Spark 2 Dev: https://www.figma.com/design/q1nNzgJgALfU6s3DaZHlVa/Spark-2-Dev
  * - Axon Fusus Kit: https://www.figma.com/design/J4ZdMJ8phaySFJNB8SIsTz/Axon-Fusus---Visual-Direction-Kit
  *
  * Important Notes:
  * - This file is **not currently applied globally** due to the large amount of legacy/custom typography in the repo.
  * - Usage will be **incremental**, primarily through new components and targeted refactors.
  * - Class names (`.body-one`, `.heading-two`, etc.) mirror Spark naming conventions, but mapping is flexible.
  * - Backwards compatibility with legacy layouts (e.g., `.title`, `.mat-*` overrides) is intentionally preserved.
  *
  * This file lays the groundwork for future Spark-compliant component development.
  */
/****    Font Sizes   ****/
.display-one {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 200;
  font-size: 61px;
  line-height: 110%;
  letter-spacing: 1.25px;
  padding-bottom: 0px;
}
.heading-one {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 49px;
  line-height: 110%;
  letter-spacing: -0.25px;
  padding-bottom: 0px;
}
.heading-two {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 600;
  font-size: 39px;
  line-height: 110%;
  letter-spacing: 0px;
  padding-bottom: 0px;
}
.subtitle-one {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 500;
  font-size: 25px;
  line-height: 130%;
  letter-spacing: -0.25px;
  padding-bottom: 0px;
}
.subtitle-two {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: 2px;
  padding-bottom: 0px;
  text-transform: uppercase;
}
.subtitle-three {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 130%;
  letter-spacing: -0.25px;
  padding-bottom: 0px;
}
.subtitle-four {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 135%;
  letter-spacing: 0px;
  padding-bottom: 14px;
}
.title {
  font-size: 14px;
}
.body-one, mat-list-item .mat-line:nth-of-type(1):nth-last-of-type(2), mat-list-item .mat-line:only-of-type, .title {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  letter-spacing: 0px;
  padding-bottom: 14px;
}
.body-one .link, mat-list-item .mat-line:nth-of-type(1):nth-last-of-type(2) .link, mat-list-item .mat-line:only-of-type .link, .title .link {
  text-decoration: underline;
  font-weight: 500;
}
.body-two, .mat-header-cell {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 135%;
  letter-spacing: 0px;
  padding-bottom: 0px;
}
.body-two .link, .mat-header-cell .link {
  text-decoration: underline;
  font-weight: 600;
}
.body-three, mat-list-item .mat-line:has(.mat-line),
mat-list-item .mat-line .mat-line, mat-list-item .mat-line:nth-of-type(2):nth-last-of-type(1), .mat-tab-label-content, .mat-cell, .mat-button-wrapper {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 135%;
  letter-spacing: 0px;
  padding-bottom: 11px;
}
.body-four {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 130%;
  letter-spacing: 0px;
  padding-bottom: 11px;
}
.label-one {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 130%;
  letter-spacing: 0.5px;
  padding-bottom: 0px;
  text-transform: uppercase;
}
.label-two {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 130%;
  letter-spacing: 1px;
  padding-bottom: 0px;
  text-transform: uppercase;
}
.caption {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 130%;
  letter-spacing: 0px;
  padding-bottom: 0px;
}
.nav-standard {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 0px;
  padding-bottom: 0px;
}
.button-text-large {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.18px;
  padding-bottom: 0px;
}
.button-text-large.underline {
  text-decoration: underline;
}
.button-text-regular {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.14px;
  padding-bottom: 0px;
}
.button-text-regular.underline {
  text-decoration: underline;
}
.button-text-small {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -0.12px;
  padding-bottom: 0px;
}
.button-text-small.underline {
  text-decoration: underline;
}
.tab-text-regular {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.14px;
  padding-bottom: 0px;
}
.tab-text-regular-selected {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: -0.14px;
  padding-bottom: 0px;
}
.tab-text-small {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -0.12px;
  padding-bottom: 0px;
}
.tab-text-small-selected {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: -0.12px;
  padding-bottom: 0px;
}
.body-one-mono, .mat-mono {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  letter-spacing: 0px;
  padding-bottom: 14px;
}
.body-two-mono, .mat-mono-small {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  font-size: 13px;
  line-height: 135%;
  letter-spacing: 0px;
  padding-bottom: 11px;
}
.body-three-mono {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
  font-size: 13px;
  line-height: 135%;
  letter-spacing: 0px;
  padding-bottom: 11px;
}
.mat-button-wrapper {
  display: inline-flex;
  align-items: center;
  padding-bottom: 0px;
  height: 100%;
}
.mat-header-cell {
  text-transform: none;
}
.mat-cell {
  padding-bottom: 0px;
}
.mat-tab-label-content {
  padding-bottom: 0px;
  text-transform: none;
}
/* there are various renderings of mat-line, some nested, some singular,
some consecutive, each with it's own expectation of styling */
mat-list-item {
  /* Case 1: Singular mat-line anywhere inside  */
  /* Case 2: Two mat-lines at the same level */
  /* Case 3: If ANY ancestor contains another mat-line, ALL nested mat-lines apply */
}
mat-list-item .mat-line:only-of-type {
  padding-bottom: 0px;
}
mat-list-item .mat-line:nth-of-type(1):nth-last-of-type(2) {
  padding-bottom: 5px;
}
mat-list-item .mat-line:nth-of-type(2):nth-last-of-type(1) {
  padding-bottom: 0px;
}
mat-list-item .mat-line:has(.mat-line),
mat-list-item .mat-line .mat-line {
  padding-bottom: 0px;
}
.fs-italic {
  font-style: italic;
}
.fs-text-wrap {
  white-space: normal;
  word-break: break-word;
}
.row--dense {
  margin-right: 0.25rem;
  margin-left: -0.25rem;
}
.row--dense > .col,
.row--dense > [class*=col-] {
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}
.mat-ripple {
  overflow: hidden;
  position: relative;
}
.mat-ripple:not(:empty) {
  transform: translateZ(0);
}
.mat-ripple.mat-ripple-unbounded {
  overflow: visible;
}
.mat-ripple-element {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition: opacity, transform 0ms cubic-bezier(0, 0, 0.2, 1);
  transform: scale3d(0, 0, 0);
}
.cdk-high-contrast-active .mat-ripple-element {
  display: none;
}
div.clickEffect {
  position: fixed;
  box-sizing: border-box;
  border-style: solid;
  border-color: #ffffff;
  border-radius: 50%;
  animation: clickEffect 0.4s ease-out;
  z-index: 99999;
}
@keyframes clickEffect {
  0% {
    opacity: 1;
    width: 0.5em;
    height: 0.5em;
    margin: -0.25em;
    border-width: 0.5em;
  }
  100% {
    opacity: 0.2;
    width: 15em;
    height: 15em;
    margin: -7.5em;
    border-width: 0.03em;
  }
}
:root,
html,
body {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
}
/*
 * Mixin for adding a hover highlight effect for light surfaces.
 * This mixin creates a highlight effect on hover by changing the background color
 * based on the contrast tone of the surface color.
 */
/*
 * Mixin for adding a hover highlight effect for dark surfaces.
 * This mixin creates a highlight effect on hover by changing the background color
 * based on the contrast tone of the surface color.
 */
/*
 * Mixin for adding a hover highlight effect using ::before and ::after pseudo-elements.
 * This mixin creates a highlight effect on hover by changing the opacity of the ::before pseudo-element.
 */
/*
 * Function that returns an opacity value for a given color/tone and state.
 * It checks whether $color is considered 'light' or 'dark' (via contrast-tone),
 * then selects the appropriate map ($ripple-light-ink-opacities or $ripple-dark-ink-opacities).
 *
 * Params:
 *   $color - The color to evaluate (e.g. #fff, #000, or a theme variable).
 *   $state - The user interaction state (hover, focus, press, selected, activated).
 */
/*
 *  Stores SCSS variables and mixins that mimic our old MDC ripple colors
 *  like hover highlight colors.
 */
/*
 *  Stores SCSS variables and mixins that mimic our old MDC ripple colors
 *  like hover highlight colors.
 */
/**
 * Enhanced text truncation mixin that provides more options.
 * 
 * @param {string} $overflow [hidden] - Controls what happens to content that overflows
 * @param {number} $lines [1] - Number of lines to show before truncating
 * @param {string} $display [null] - Optional display property to set
 * 
 * Examples:
 *   @include truncate-text();                       // Basic single-line truncation
 *   @include truncate-text($lines: 2);              // Multi-line truncation (2 lines)
 *   @include truncate-text($display: block);        // With specific display value
 */
/**
 * Hover and focus state mixin
 * Applies styles on both hover and focus states
 */
/**
 * Material Design Typography Mixins
 *
 * Direct implementation of MD2 typography styles without external dependencies.
 * Source: https://github.com/material-components/material-components-web/blob/master/packages/mdc-typography/_typography.scss
 *
 * Implemented styles from Material Design type scale:
 * - subtitle1: 16px/28px regular (0.009375em)
 * - caption: 12px/20px regular (0.0333em)
 * - headline5: 24px/32px regular (0)
 * - headline6: 20px/32px medium (0.0125em)
 *
 * Font sizes use rem units (assuming 16px base):
 * - 0.75rem = 12px (caption)
 * - 1rem = 16px (subtitle1)
 * - 1.25rem = 20px (headline6)
 * - 1.5rem = 24px (headline5)
 */
.mat-card {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}
.mat-card:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.mat-card.mat-card-flat:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.mat-card-subtitle {
  color: rgba(0, 0, 0, 0.54);
}
.mat-card > .mat-list,
.mat-card > .mat-tab-group {
  margin-left: -16px;
  margin-right: -16px;
}
.mat-card-title,
mat-card-header.mat-card-header .mat-card-title {
  font-size: 18px;
  font-weight: 400;
}
.mat-card-title,
.mat-card-subtitle {
  line-height: 1;
}
mat-card-header.mat-card-header .mat-card-header-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
mat-card-header.mat-card-header .mat-card-title:first-child:last-child {
  margin-bottom: 0;
}
sn-icon.mat-card-avatar {
  text-align: center;
  line-height: 40px;
  height: 40px !important;
  width: 40px !important;
  background: rgba(0, 0, 0, 0.06);
}
sn-icon.mat-card-avatar svg {
  width: 24px;
  height: 24px;
}
mat-card-actions.mat-card-actions {
  display: flex;
  flex-direction: row;
}
mat-card-actions.mat-card-actions .mat-button:first-child,
mat-card-actions.mat-card-actions .mat-raised-button:first-child {
  margin-right: 4px;
}
mat-card-actions.mat-card-actions .mat-button:last-child,
mat-card-actions.mat-card-actions .mat-raised-button:last-child {
  margin-right: 0;
}
mat-card-actions.mat-card-actions .mat-raised-button {
  color: black;
}
mat-card-footer.mat-card-footer {
  background: rgba(0, 0, 0, 0.04);
  padding: 16px;
  border-top: 1px solid;
  border-top-color: rgba(0, 0, 0, 0.12);
  border-top-color: var(--fs-theme-divider, rgba(0, 0, 0, 0.12));
  color: rgba(0, 0, 0, 0.54);
  color: var(--fs-theme-text-secondary, rgba(0, 0, 0, 0.54));
}
.sn-icon {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sn-icon--xs.mat-list-icon:not(.ngx-mat-icon--inline), .sn-icon--xs:not(.ngx-mat-icon--inline) {
  width: 16px;
  height: 16px;
}
.sn-icon--xs.mat-list-icon:not(.ngx-mat-icon--inline).material-icons, .sn-icon--xs:not(.ngx-mat-icon--inline).material-icons {
  font-size: 16px;
}
.sn-icon--xs.mat-list-icon:not(.ngx-mat-icon--inline).fa,
.sn-icon--xs.mat-list-icon:not(.ngx-mat-icon--inline) .fs, .sn-icon--xs:not(.ngx-mat-icon--inline).fa,
.sn-icon--xs:not(.ngx-mat-icon--inline) .fs {
  font-size: 12px;
  line-height: 16px;
}
.sn-icon--xs.mat-list-icon:not(.ngx-mat-icon--inline) > svg,
.sn-icon--xs.mat-list-icon:not(.ngx-mat-icon--inline) > img, .sn-icon--xs:not(.ngx-mat-icon--inline) > svg,
.sn-icon--xs:not(.ngx-mat-icon--inline) > img {
  width: 16px;
  height: 16px;
}
.sn-icon--sm.mat-list-icon:not(.ngx-mat-icon--inline), .sn-icon--sm:not(.ngx-mat-icon--inline) {
  width: 20px;
  height: 20px;
}
.sn-icon--sm.mat-list-icon:not(.ngx-mat-icon--inline).material-icons, .sn-icon--sm:not(.ngx-mat-icon--inline).material-icons {
  font-size: 20px;
}
.sn-icon--sm.mat-list-icon:not(.ngx-mat-icon--inline).fa,
.sn-icon--sm.mat-list-icon:not(.ngx-mat-icon--inline) .fs, .sn-icon--sm:not(.ngx-mat-icon--inline).fa,
.sn-icon--sm:not(.ngx-mat-icon--inline) .fs {
  font-size: 15px;
  line-height: 20px;
}
.sn-icon--sm.mat-list-icon:not(.ngx-mat-icon--inline) > svg,
.sn-icon--sm.mat-list-icon:not(.ngx-mat-icon--inline) > img, .sn-icon--sm:not(.ngx-mat-icon--inline) > svg,
.sn-icon--sm:not(.ngx-mat-icon--inline) > img {
  width: 20px;
  height: 20px;
}
.sn-icon--md.mat-list-icon:not(.ngx-mat-icon--inline), .sn-icon--md:not(.ngx-mat-icon--inline) {
  width: 24px;
  height: 24px;
}
.sn-icon--md.mat-list-icon:not(.ngx-mat-icon--inline).material-icons, .sn-icon--md:not(.ngx-mat-icon--inline).material-icons {
  font-size: 24px;
}
.sn-icon--md.mat-list-icon:not(.ngx-mat-icon--inline).fa,
.sn-icon--md.mat-list-icon:not(.ngx-mat-icon--inline) .fs, .sn-icon--md:not(.ngx-mat-icon--inline).fa,
.sn-icon--md:not(.ngx-mat-icon--inline) .fs {
  font-size: 18px;
  line-height: 24px;
}
.sn-icon--md.mat-list-icon:not(.ngx-mat-icon--inline) > svg,
.sn-icon--md.mat-list-icon:not(.ngx-mat-icon--inline) > img, .sn-icon--md:not(.ngx-mat-icon--inline) > svg,
.sn-icon--md:not(.ngx-mat-icon--inline) > img {
  width: 24px;
  height: 24px;
}
.sn-icon--lg.mat-list-icon:not(.ngx-mat-icon--inline), .sn-icon--lg:not(.ngx-mat-icon--inline) {
  width: 32px;
  height: 32px;
}
.sn-icon--lg.mat-list-icon:not(.ngx-mat-icon--inline).material-icons, .sn-icon--lg:not(.ngx-mat-icon--inline).material-icons {
  font-size: 32px;
}
.sn-icon--lg.mat-list-icon:not(.ngx-mat-icon--inline).fa,
.sn-icon--lg.mat-list-icon:not(.ngx-mat-icon--inline) .fs, .sn-icon--lg:not(.ngx-mat-icon--inline).fa,
.sn-icon--lg:not(.ngx-mat-icon--inline) .fs {
  font-size: 24px;
  line-height: 32px;
}
.sn-icon--lg.mat-list-icon:not(.ngx-mat-icon--inline) > svg,
.sn-icon--lg.mat-list-icon:not(.ngx-mat-icon--inline) > img, .sn-icon--lg:not(.ngx-mat-icon--inline) > svg,
.sn-icon--lg:not(.ngx-mat-icon--inline) > img {
  width: 32px;
  height: 32px;
}
.sn-icon--xl.mat-list-icon:not(.ngx-mat-icon--inline), .sn-icon--xl:not(.ngx-mat-icon--inline) {
  width: 40px;
  height: 40px;
}
.sn-icon--xl.mat-list-icon:not(.ngx-mat-icon--inline).material-icons, .sn-icon--xl:not(.ngx-mat-icon--inline).material-icons {
  font-size: 40px;
}
.sn-icon--xl.mat-list-icon:not(.ngx-mat-icon--inline).fa,
.sn-icon--xl.mat-list-icon:not(.ngx-mat-icon--inline) .fs, .sn-icon--xl:not(.ngx-mat-icon--inline).fa,
.sn-icon--xl:not(.ngx-mat-icon--inline) .fs {
  font-size: 30px;
  line-height: 40px;
}
.sn-icon--xl.mat-list-icon:not(.ngx-mat-icon--inline) > svg,
.sn-icon--xl.mat-list-icon:not(.ngx-mat-icon--inline) > img, .sn-icon--xl:not(.ngx-mat-icon--inline) > svg,
.sn-icon--xl:not(.ngx-mat-icon--inline) > img {
  width: 40px;
  height: 40px;
}
.sn-icon--xs.fs, .sn-icon--xs.fa, .sn-icon--xs.fas, .sn-icon--xs.far, .sn-icon--xs.fal, .sn-icon--xs.fad, .sn-icon--xs.fab {
  font-size: 12px;
}
.sn-icon--sm.fs, .sn-icon--sm.fa, .sn-icon--sm.fas, .sn-icon--sm.far, .sn-icon--sm.fal, .sn-icon--sm.fad, .sn-icon--sm.fab {
  font-size: 16px;
}
.sn-icon--md.fs, .sn-icon--md.fa, .sn-icon--md.fas, .sn-icon--md.far, .sn-icon--md.fal, .sn-icon--md.fad, .sn-icon--md.fab {
  font-size: 20px;
}
.sn-icon--lg.fs, .sn-icon--lg.fa, .sn-icon--lg.fas, .sn-icon--lg.far, .sn-icon--lg.fal, .sn-icon--lg.fad, .sn-icon--lg.fab {
  font-size: 24px;
}
.sn-icon--xl.fs, .sn-icon--xl.fa, .sn-icon--xl.fas, .sn-icon--xl.far, .sn-icon--xl.fal, .sn-icon--xl.fad, .sn-icon--xl.fab {
  font-size: 28px;
}
.sn-icon svg {
  vertical-align: baseline;
  fill: currentColor;
}
.fa::before,
.fas::before,
.far::before,
.fal::before,
.fad::before,
.fab::before {
  vertical-align: middle !important;
}
.sn-badge {
  position: relative;
}
.sn-badge:not(.sn-badge--inline).sn-badge--before.sn-badge--middle .sn-badge__content {
  left: -20px;
}
.sn-badge:not(.sn-badge--inline).sn-badge--before .sn-badge__content {
  left: -16px;
}
.sn-badge:not(.sn-badge--inline).sn-badge--after.sn-badge--middle .sn-badge__content {
  right: -20px;
}
.sn-badge:not(.sn-badge--inline).sn-badge--after .sn-badge__content {
  right: -4px;
}
.sn-badge:not(.sn-badge--inline).sn-badge--middle .sn-badge__content {
  top: 50%;
  margin-top: -8px;
}
.sn-badge:not(.sn-badge--inline).sn-badge--above .sn-badge__content {
  top: -8px;
}
.sn-badge:not(.sn-badge--inline).sn-badge--below .sn-badge__content {
  bottom: -8px;
}
.sn-badge:not(.sn-badge--inline).sn-button.sn-badge--before .sn-badge__content, .sn-badge:not(.sn-badge--inline).sn-flat-button.sn-badge--before .sn-badge__content, .sn-badge:not(.sn-badge--inline).sn-outline-button.sn-badge--before .sn-badge__content {
  left: -8px;
}
.sn-badge:not(.sn-badge--inline).sn-button.sn-badge--after .sn-badge__content, .sn-badge:not(.sn-badge--inline).sn-flat-button.sn-badge--after .sn-badge__content, .sn-badge:not(.sn-badge--inline).sn-outline-button.sn-badge--after .sn-badge__content {
  right: -8px;
}
.sn-badge:not(.sn-badge--inline).sn-icon-button.sn-badge--before.sn-badge--middle .sn-badge__content {
  left: -8px;
}
.sn-badge:not(.sn-badge--inline).sn-icon-button.sn-badge--before .sn-badge__content {
  left: 0;
}
.sn-badge:not(.sn-badge--inline).sn-icon-button.sn-badge--after.sn-badge--middle .sn-badge__content {
  right: -8px;
}
.sn-badge:not(.sn-badge--inline).sn-icon-button.sn-badge--after .sn-badge__content {
  right: 0;
}
.sn-badge:not(.sn-badge--inline).sn-icon-button.sn-badge--above .sn-badge__content {
  top: 0;
}
.sn-badge:not(.sn-badge--inline).sn-icon-button.sn-badge--below .sn-badge__content {
  bottom: 0;
}
.sn-badge:not(.sn-badge--inline).sn-icon.sn-badge--before .sn-badge__content {
  left: -8px;
}
.sn-badge:not(.sn-badge--inline).sn-icon.sn-badge--after .sn-badge__content {
  right: -8px;
}
.sn-badge:not(.sn-badge--inline).sn-icon.sn-badge--before.sn-badge--middle .sn-badge__content {
  left: -16px;
}
.sn-badge:not(.sn-badge--inline).sn-icon.sn-badge--after.sn-badge--middle .sn-badge__content {
  right: -16px;
}
.sn-badge .sn-badge__content {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  min-width: 16px;
  height: 16px;
  font-size: 9px;
  line-height: 16px;
  border-radius: 8px;
  padding: 0 4px;
}
.sn-badge .sn-badge__content {
  background-color: #f5f5f5;
  color: rgba(0, 0, 0, 0.87);
}
.sn-badge--primary .sn-badge__content {
  background-color: #5b5958;
  color: rgba(255, 255, 255, 0.87);
}
.sn-badge--accent .sn-badge__content {
  background-color: #fec62e;
  color: rgba(0, 0, 0, 0.87);
}
.sn-badge--info .sn-badge__content {
  background-color: #03a9f4;
  color: rgba(255, 255, 255, 0.87);
}
.sn-badge--success .sn-badge__content {
  background-color: #8dd56a;
  color: rgba(0, 0, 0, 0.87);
}
.sn-badge--danger .sn-badge__content {
  background-color: #d84315;
  color: rgba(255, 255, 255, 0.87);
}
.sn-badge--warning .sn-badge__content {
  background-color: #ffb028;
  color: rgba(0, 0, 0, 0.87);
}
.sn-badge--secondary .sn-badge__content {
  background-color: #757575;
  color: rgba(255, 255, 255, 0.87);
}
.sn-badge--xs:not(.sn-badge--inline).sn-badge--before.sn-badge--middle .sn-badge__content {
  left: -12px;
}
.sn-badge--xs:not(.sn-badge--inline).sn-badge--before .sn-badge__content {
  left: -8px;
}
.sn-badge--xs:not(.sn-badge--inline).sn-badge--after.sn-badge--middle .sn-badge__content {
  right: -12px;
}
.sn-badge--xs:not(.sn-badge--inline).sn-badge--after .sn-badge__content {
  right: -4px;
}
.sn-badge--xs:not(.sn-badge--inline).sn-badge--middle .sn-badge__content {
  top: 50%;
  margin-top: -4px;
}
.sn-badge--xs:not(.sn-badge--inline).sn-badge--above .sn-badge__content {
  top: -4px;
}
.sn-badge--xs:not(.sn-badge--inline).sn-badge--below .sn-badge__content {
  bottom: -4px;
}
.sn-badge--xs:not(.sn-badge--inline).sn-button.sn-badge--before .sn-badge__content, .sn-badge--xs:not(.sn-badge--inline).sn-flat-button.sn-badge--before .sn-badge__content, .sn-badge--xs:not(.sn-badge--inline).sn-outline-button.sn-badge--before .sn-badge__content {
  left: -4px;
}
.sn-badge--xs:not(.sn-badge--inline).sn-button.sn-badge--after .sn-badge__content, .sn-badge--xs:not(.sn-badge--inline).sn-flat-button.sn-badge--after .sn-badge__content, .sn-badge--xs:not(.sn-badge--inline).sn-outline-button.sn-badge--after .sn-badge__content {
  right: -4px;
}
.sn-badge--xs:not(.sn-badge--inline).sn-icon-button.sn-badge--before.sn-badge--middle .sn-badge__content {
  left: -4px;
}
.sn-badge--xs:not(.sn-badge--inline).sn-icon-button.sn-badge--before .sn-badge__content {
  left: 0;
}
.sn-badge--xs:not(.sn-badge--inline).sn-icon-button.sn-badge--after.sn-badge--middle .sn-badge__content {
  right: -4px;
}
.sn-badge--xs:not(.sn-badge--inline).sn-icon-button.sn-badge--after .sn-badge__content {
  right: 0;
}
.sn-badge--xs:not(.sn-badge--inline).sn-icon-button.sn-badge--above .sn-badge__content {
  top: 0;
}
.sn-badge--xs:not(.sn-badge--inline).sn-icon-button.sn-badge--below .sn-badge__content {
  bottom: 0;
}
.sn-badge--xs:not(.sn-badge--inline).sn-icon.sn-badge--before .sn-badge__content {
  left: -4px;
}
.sn-badge--xs:not(.sn-badge--inline).sn-icon.sn-badge--after .sn-badge__content {
  right: -4px;
}
.sn-badge--xs:not(.sn-badge--inline).sn-icon.sn-badge--before.sn-badge--middle .sn-badge__content {
  left: -8px;
}
.sn-badge--xs:not(.sn-badge--inline).sn-icon.sn-badge--after.sn-badge--middle .sn-badge__content {
  right: -8px;
}
.sn-badge--xs .sn-badge__content {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  min-width: 8px;
  height: 8px;
  font-size: 4.5px;
  line-height: 8px;
  border-radius: 4px;
  padding: 0 2px;
}
.sn-badge--sm:not(.sn-badge--inline).sn-badge--before.sn-badge--middle .sn-badge__content {
  left: -16px;
}
.sn-badge--sm:not(.sn-badge--inline).sn-badge--before .sn-badge__content {
  left: -12px;
}
.sn-badge--sm:not(.sn-badge--inline).sn-badge--after.sn-badge--middle .sn-badge__content {
  right: -16px;
}
.sn-badge--sm:not(.sn-badge--inline).sn-badge--after .sn-badge__content {
  right: -4px;
}
.sn-badge--sm:not(.sn-badge--inline).sn-badge--middle .sn-badge__content {
  top: 50%;
  margin-top: -6px;
}
.sn-badge--sm:not(.sn-badge--inline).sn-badge--above .sn-badge__content {
  top: -6px;
}
.sn-badge--sm:not(.sn-badge--inline).sn-badge--below .sn-badge__content {
  bottom: -6px;
}
.sn-badge--sm:not(.sn-badge--inline).sn-button.sn-badge--before .sn-badge__content, .sn-badge--sm:not(.sn-badge--inline).sn-flat-button.sn-badge--before .sn-badge__content, .sn-badge--sm:not(.sn-badge--inline).sn-outline-button.sn-badge--before .sn-badge__content {
  left: -6px;
}
.sn-badge--sm:not(.sn-badge--inline).sn-button.sn-badge--after .sn-badge__content, .sn-badge--sm:not(.sn-badge--inline).sn-flat-button.sn-badge--after .sn-badge__content, .sn-badge--sm:not(.sn-badge--inline).sn-outline-button.sn-badge--after .sn-badge__content {
  right: -6px;
}
.sn-badge--sm:not(.sn-badge--inline).sn-icon-button.sn-badge--before.sn-badge--middle .sn-badge__content {
  left: -6px;
}
.sn-badge--sm:not(.sn-badge--inline).sn-icon-button.sn-badge--before .sn-badge__content {
  left: 0;
}
.sn-badge--sm:not(.sn-badge--inline).sn-icon-button.sn-badge--after.sn-badge--middle .sn-badge__content {
  right: -6px;
}
.sn-badge--sm:not(.sn-badge--inline).sn-icon-button.sn-badge--after .sn-badge__content {
  right: 0;
}
.sn-badge--sm:not(.sn-badge--inline).sn-icon-button.sn-badge--above .sn-badge__content {
  top: 0;
}
.sn-badge--sm:not(.sn-badge--inline).sn-icon-button.sn-badge--below .sn-badge__content {
  bottom: 0;
}
.sn-badge--sm:not(.sn-badge--inline).sn-icon.sn-badge--before .sn-badge__content {
  left: -6px;
}
.sn-badge--sm:not(.sn-badge--inline).sn-icon.sn-badge--after .sn-badge__content {
  right: -6px;
}
.sn-badge--sm:not(.sn-badge--inline).sn-icon.sn-badge--before.sn-badge--middle .sn-badge__content {
  left: -12px;
}
.sn-badge--sm:not(.sn-badge--inline).sn-icon.sn-badge--after.sn-badge--middle .sn-badge__content {
  right: -12px;
}
.sn-badge--sm .sn-badge__content {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  min-width: 12px;
  height: 12px;
  font-size: 6.75px;
  line-height: 12px;
  border-radius: 6px;
  padding: 0 3px;
}
.sn-badge--lg:not(.sn-badge--inline).sn-badge--before.sn-badge--middle .sn-badge__content {
  left: -24px;
}
.sn-badge--lg:not(.sn-badge--inline).sn-badge--before .sn-badge__content {
  left: -20px;
}
.sn-badge--lg:not(.sn-badge--inline).sn-badge--after.sn-badge--middle .sn-badge__content {
  right: -24px;
}
.sn-badge--lg:not(.sn-badge--inline).sn-badge--after .sn-badge__content {
  right: -4px;
}
.sn-badge--lg:not(.sn-badge--inline).sn-badge--middle .sn-badge__content {
  top: 50%;
  margin-top: -10px;
}
.sn-badge--lg:not(.sn-badge--inline).sn-badge--above .sn-badge__content {
  top: -10px;
}
.sn-badge--lg:not(.sn-badge--inline).sn-badge--below .sn-badge__content {
  bottom: -10px;
}
.sn-badge--lg:not(.sn-badge--inline).sn-button.sn-badge--before .sn-badge__content, .sn-badge--lg:not(.sn-badge--inline).sn-flat-button.sn-badge--before .sn-badge__content, .sn-badge--lg:not(.sn-badge--inline).sn-outline-button.sn-badge--before .sn-badge__content {
  left: -10px;
}
.sn-badge--lg:not(.sn-badge--inline).sn-button.sn-badge--after .sn-badge__content, .sn-badge--lg:not(.sn-badge--inline).sn-flat-button.sn-badge--after .sn-badge__content, .sn-badge--lg:not(.sn-badge--inline).sn-outline-button.sn-badge--after .sn-badge__content {
  right: -10px;
}
.sn-badge--lg:not(.sn-badge--inline).sn-icon-button.sn-badge--before.sn-badge--middle .sn-badge__content {
  left: -10px;
}
.sn-badge--lg:not(.sn-badge--inline).sn-icon-button.sn-badge--before .sn-badge__content {
  left: 0;
}
.sn-badge--lg:not(.sn-badge--inline).sn-icon-button.sn-badge--after.sn-badge--middle .sn-badge__content {
  right: -10px;
}
.sn-badge--lg:not(.sn-badge--inline).sn-icon-button.sn-badge--after .sn-badge__content {
  right: 0;
}
.sn-badge--lg:not(.sn-badge--inline).sn-icon-button.sn-badge--above .sn-badge__content {
  top: 0;
}
.sn-badge--lg:not(.sn-badge--inline).sn-icon-button.sn-badge--below .sn-badge__content {
  bottom: 0;
}
.sn-badge--lg:not(.sn-badge--inline).sn-icon.sn-badge--before .sn-badge__content {
  left: -10px;
}
.sn-badge--lg:not(.sn-badge--inline).sn-icon.sn-badge--after .sn-badge__content {
  right: -10px;
}
.sn-badge--lg:not(.sn-badge--inline).sn-icon.sn-badge--before.sn-badge--middle .sn-badge__content {
  left: -20px;
}
.sn-badge--lg:not(.sn-badge--inline).sn-icon.sn-badge--after.sn-badge--middle .sn-badge__content {
  right: -20px;
}
.sn-badge--lg .sn-badge__content {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  min-width: 20px;
  height: 20px;
  font-size: 11.25px;
  line-height: 20px;
  border-radius: 10px;
  padding: 0 5px;
}
.sn-badge--xl:not(.sn-badge--inline).sn-badge--before.sn-badge--middle .sn-badge__content {
  left: -28px;
}
.sn-badge--xl:not(.sn-badge--inline).sn-badge--before .sn-badge__content {
  left: -24px;
}
.sn-badge--xl:not(.sn-badge--inline).sn-badge--after.sn-badge--middle .sn-badge__content {
  right: -28px;
}
.sn-badge--xl:not(.sn-badge--inline).sn-badge--after .sn-badge__content {
  right: -4px;
}
.sn-badge--xl:not(.sn-badge--inline).sn-badge--middle .sn-badge__content {
  top: 50%;
  margin-top: -12px;
}
.sn-badge--xl:not(.sn-badge--inline).sn-badge--above .sn-badge__content {
  top: -12px;
}
.sn-badge--xl:not(.sn-badge--inline).sn-badge--below .sn-badge__content {
  bottom: -12px;
}
.sn-badge--xl:not(.sn-badge--inline).sn-button.sn-badge--before .sn-badge__content, .sn-badge--xl:not(.sn-badge--inline).sn-flat-button.sn-badge--before .sn-badge__content, .sn-badge--xl:not(.sn-badge--inline).sn-outline-button.sn-badge--before .sn-badge__content {
  left: -12px;
}
.sn-badge--xl:not(.sn-badge--inline).sn-button.sn-badge--after .sn-badge__content, .sn-badge--xl:not(.sn-badge--inline).sn-flat-button.sn-badge--after .sn-badge__content, .sn-badge--xl:not(.sn-badge--inline).sn-outline-button.sn-badge--after .sn-badge__content {
  right: -12px;
}
.sn-badge--xl:not(.sn-badge--inline).sn-icon-button.sn-badge--before.sn-badge--middle .sn-badge__content {
  left: -12px;
}
.sn-badge--xl:not(.sn-badge--inline).sn-icon-button.sn-badge--before .sn-badge__content {
  left: 0;
}
.sn-badge--xl:not(.sn-badge--inline).sn-icon-button.sn-badge--after.sn-badge--middle .sn-badge__content {
  right: -12px;
}
.sn-badge--xl:not(.sn-badge--inline).sn-icon-button.sn-badge--after .sn-badge__content {
  right: 0;
}
.sn-badge--xl:not(.sn-badge--inline).sn-icon-button.sn-badge--above .sn-badge__content {
  top: 0;
}
.sn-badge--xl:not(.sn-badge--inline).sn-icon-button.sn-badge--below .sn-badge__content {
  bottom: 0;
}
.sn-badge--xl:not(.sn-badge--inline).sn-icon.sn-badge--before .sn-badge__content {
  left: -12px;
}
.sn-badge--xl:not(.sn-badge--inline).sn-icon.sn-badge--after .sn-badge__content {
  right: -12px;
}
.sn-badge--xl:not(.sn-badge--inline).sn-icon.sn-badge--before.sn-badge--middle .sn-badge__content {
  left: -24px;
}
.sn-badge--xl:not(.sn-badge--inline).sn-icon.sn-badge--after.sn-badge--middle .sn-badge__content {
  right: -24px;
}
.sn-badge--xl .sn-badge__content {
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
  min-width: 24px;
  height: 24px;
  font-size: 13.5px;
  line-height: 24px;
  border-radius: 12px;
  padding: 0 6px;
}
.sn-badge--xs .sn-badge__content {
  font-size: 0;
}
.sn-badge--hidden .sn-badge__content {
  display: none;
}
.sn-badge--inline .sn-badge__content {
  position: static;
  margin-left: auto;
}
.sn-badge__content {
  font-weight: 600;
  position: absolute;
  text-align: center;
  z-index: 1;
}
.sn-avatar {
  display: inline-block;
}
.mat-list-base .mat-list-item {
  color: rgba(0, 0, 0, 0.87);
}
.mat-list-base .mat-list-option {
  color: rgba(0, 0, 0, 0.87);
}
.mat-list-base .mat-subheader {
  color: rgba(0, 0, 0, 0.54);
}
.mat-list-base .mat-list-item-disabled {
  background-color: #eeeeee;
  color: rgba(0, 0, 0, 0.38);
}
.mat-list-option:hover, .mat-list-option:focus,
.mat-nav-list .mat-list-item:hover,
.mat-nav-list .mat-list-item:focus,
.mat-action-list .mat-list-item:hover,
.mat-action-list .mat-list-item:focus {
  background: rgba(0, 0, 0, 0.04);
}
.mat-list-single-selected-option, .mat-list-single-selected-option:hover, .mat-list-single-selected-option:focus {
  background: rgba(0, 0, 0, 0.12);
}
.mat-list,
.mat-list--dense {
  font-size: 1rem;
  line-height: 28px;
  font-weight: 400;
  letter-spacing: 0.009375em;
  /* Switching from MDC list classes (.mdc-list) to standard Angular Material list classes (.mat-list)
  *  caused the default -webkit-font-smoothing behavior to change from 'subpixel-antialiased' to 'antialiased'.
  *  because of that the font rendering in the list items is now different(lighter or smoother) than before.
  */
  -webkit-font-smoothing: subpixel-antialiased;
}
.mat-list-item__secondary-text,
.mat-list--dense .mat-list-item__secondary-text {
  font-size: smaller;
}
.mat-list:not(.mat-list--two-line):not(.mat-list--avatar-list) .mat-list-item__primary-text {
  margin-bottom: -24px;
}
.mat-list:not(.mat-list--two-line) .mat-list-item__primary-text::before {
  display: none;
}
.mat-list--dense .mat-list-item__graphic {
  height: 24px;
  width: 24px;
  font-size: 24px;
}
.mat-list-item__meta.sn-action-list,
.mat-list-item__meta.sn-icon-button {
  margin-right: -8px;
}
.mat-list-item__meta.sn-action-list button,
.mat-list-item__meta.sn-icon-button button {
  width: 40px;
  height: 40px;
  padding: 0;
}
.mat-list-item--disabled {
  pointer-events: none;
}
.mat-list-item__graphic,
.mat-list--dense .mat-list-item__graphic {
  margin-right: 24px;
}
.mat-list--avatar-list .mat-list-item__graphic,
.mat-list--avatar-list.mat-list--dense .mat-list-item__graphic {
  margin-right: 12px;
}
.fs-12 {
  font-size: 12px;
}
/*
 *  Stores SCSS variables and mixins that mimic our old MDC ripple colors.
 *  - $hover-contrast-color dynamically picks #000 or #fff based on surface contrast.
 *  - $secondary holds the original “secondary” color used by our MDC theme.
 */
.sn-data-list .mat-table {
  background: transparent;
}
.sn-data-list .mat-table .mat-row,
.sn-data-list .mat-table .mat-header-row {
  padding: 0 1px;
  justify-content: space-between;
}
.sn-data-list .mat-table .mat-row {
  background: #ffffff;
  border-bottom: none;
  margin: 4px 0;
  overflow: hidden;
  position: relative;
}
.sn-data-list .mat-table .mat-row[matRipple].mat-row {
  cursor: pointer;
}
.sn-data-list .mat-table .mat-row[matRipple].mat-row::before, .sn-data-list .mat-table .mat-row[matRipple].mat-row::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
}
.sn-data-list .mat-table .mat-row[matRipple].mat-row:hover::before {
  opacity: 0.08;
}
.sn-data-list .mat-table .mat-header-row + .mat-row {
  margin-top: 0;
}
.sn-data-list .mat-table .mat-column-icon {
  flex: 0 0 56px;
  justify-content: center;
}
.sn-data-list .mat-table .mat-column-avatar {
  max-width: 48px;
}
.sn-data-list .mat-table .mat-column-select,
.sn-data-list .mat-table .mat-column-selection {
  flex: 0 0 64px;
  overflow: visible;
  justify-content: center;
}
.sn-data-list .mat-table .mat-column-status {
  justify-content: center;
}
.sn-data-list .mat-table .mat-column-actions {
  justify-content: flex-end;
  white-space: nowrap;
}
.sn-data-list .mat-table .mat-column-actions .sn-icon-button button {
  width: 40px;
  height: 40px;
  padding: 0;
}
.container .mat-table .mat-row,
.container-fluid .mat-table .mat-row {
  border-radius: 4px;
}
.sn-data-list--with-add-button sn-infinite-scroll {
  margin-bottom: 56px;
}
.sn-data-list .mat-list .mat-list-item {
  background: #ffffff;
  margin-top: 4px;
  margin-bottom: 4px;
}
.sn-data-list .mat-list .mat-list-item:first-child {
  margin-top: 0;
}
.sn-data-list .mat-list .mat-list-item:last-child {
  margin-bottom: 0;
}
.sn-drawer .sn-data-list .mat-list .mat-list-item {
  background: #f2f2f2;
}
.container .sn-data-list .mat-list .mat-list-item,
.container-fluid .sn-data-list .mat-list .mat-list-item {
  border-radius: 4px;
}
.alert {
  position: relative;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
}
.mat-card > .alert {
  margin-left: -24px;
  margin-right: -24px;
  border-radius: 0;
  border-left: none;
  border-right: none;
}
@media (max-width: 575.98px) {
  .mat-card > .alert {
    margin-left: -16px;
    margin-right: -16px;
  }
}
.alert[dense] {
  padding: 0.375rem 0.625rem;
  font-size: 16px;
}
.alert-info {
  color: rgba(255, 255, 255, 0.87);
  border: 1px solid #fec62e;
  padding: 0.5rem 1rem;
  background: rgb(255, 255, 255);
  background: linear-gradient(180deg, #1d1d1c 0%, #ffffff 99%);
  display: flex;
  justify-content: space-between;
}
.alert-info p {
  margin-bottom: auto;
  margin-top: auto;
}
.alert-danger {
  color: #c10019;
  background-color: #ffe8ef;
  border-color: #ffc9d2;
}
/* based on angular-toastr css https://github.com/Foxandxss/angular-toastr/blob/cb508fe6801d6b288d3afc525bb40fee1b101650/dist/angular-toastr.css */
/* position */
.toast-center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
/* toast styles */
.toast-title {
  font-weight: bold;
}
.toast-message {
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #FFFFFF;
}
.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}
.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0 1px 0 #ffffff;
  /* opacity: 0.8; */
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
}
/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
}
.toast-container {
  pointer-events: none;
  position: fixed;
  z-index: 999999;
}
.toast-container * {
  box-sizing: border-box;
}
.toast-container .ngx-toastr {
  position: relative;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  background-size: 24px;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
}
.toast-container .ngx-toastr:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  cursor: pointer;
}
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/info-circle.svg */
.toast-info {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOS4wNDMgOCA4IDExOS4wODMgOCAyNTZjMCAxMzYuOTk3IDExMS4wNDMgMjQ4IDI0OCAyNDhzMjQ4LTExMS4wMDMgMjQ4LTI0OEM1MDQgMTE5LjA4MyAzOTIuOTU3IDggMjU2IDh6bTAgMTEwYzIzLjE5NiAwIDQyIDE4LjgwNCA0MiA0MnMtMTguODA0IDQyLTQyIDQyLTQyLTE4LjgwNC00Mi00MiAxOC44MDQtNDIgNDItNDJ6bTU2IDI1NGMwIDYuNjI3LTUuMzczIDEyLTEyIDEyaC04OGMtNi42MjcgMC0xMi01LjM3My0xMi0xMnYtMjRjMC02LjYyNyA1LjM3My0xMiAxMi0xMmgxMnYtNjRoLTEyYy02LjYyNyAwLTEyLTUuMzczLTEyLTEydi0yNGMwLTYuNjI3IDUuMzczLTEyIDEyLTEyaDY0YzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MTAwaDEyYzYuNjI3IDAgMTIgNS4zNzMgMTIgMTJ2MjR6Jy8+PC9zdmc+");
}
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/times-circle.svg */
.toast-error {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTI1NiA4QzExOSA4IDggMTE5IDggMjU2czExMSAyNDggMjQ4IDI0OCAyNDgtMTExIDI0OC0yNDhTMzkzIDggMjU2IDh6bTEyMS42IDMxMy4xYzQuNyA0LjcgNC43IDEyLjMgMCAxN0wzMzggMzc3LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwyNTYgMzEybC02NS4xIDY1LjZjLTQuNyA0LjctMTIuMyA0LjctMTcgMEwxMzQuNCAzMzhjLTQuNy00LjctNC43LTEyLjMgMC0xN2w2NS42LTY1LTY1LjYtNjUuMWMtNC43LTQuNy00LjctMTIuMyAwLTE3bDM5LjYtMzkuNmM0LjctNC43IDEyLjMtNC43IDE3IDBsNjUgNjUuNyA2NS4xLTY1LjZjNC43LTQuNyAxMi4zLTQuNyAxNyAwbDM5LjYgMzkuNmM0LjcgNC43IDQuNyAxMi4zIDAgMTdMMzEyIDI1Nmw2NS42IDY1LjF6Jy8+PC9zdmc+");
}
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/check.svg */
.toast-success {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1MTIgNTEyJyB3aWR0aD0nNTEyJyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTE3My44OTggNDM5LjQwNGwtMTY2LjQtMTY2LjRjLTkuOTk3LTkuOTk3LTkuOTk3LTI2LjIwNiAwLTM2LjIwNGwzNi4yMDMtMzYuMjA0YzkuOTk3LTkuOTk4IDI2LjIwNy05Ljk5OCAzNi4yMDQgMEwxOTIgMzEyLjY5IDQzMi4wOTUgNzIuNTk2YzkuOTk3LTkuOTk3IDI2LjIwNy05Ljk5NyAzNi4yMDQgMGwzNi4yMDMgMzYuMjA0YzkuOTk3IDkuOTk3IDkuOTk3IDI2LjIwNiAwIDM2LjIwNGwtMjk0LjQgMjk0LjQwMWMtOS45OTggOS45OTctMjYuMjA3IDkuOTk3LTM2LjIwNC0uMDAxeicvPjwvc3ZnPg==");
}
/* https://github.com/FortAwesome/Font-Awesome-Pro/blob/master/advanced-options/raw-svg/regular/exclamation-triangle.svg */
.toast-warning {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCA1NzYgNTEyJyB3aWR0aD0nNTc2JyBoZWlnaHQ9JzUxMic+PHBhdGggZmlsbD0ncmdiKDI1NSwyNTUsMjU1KScgZD0nTTU2OS41MTcgNDQwLjAxM0M1ODcuOTc1IDQ3Mi4wMDcgNTY0LjgwNiA1MTIgNTI3Ljk0IDUxMkg0OC4wNTRjLTM2LjkzNyAwLTU5Ljk5OS00MC4wNTUtNDEuNTc3LTcxLjk4N0wyNDYuNDIzIDIzLjk4NWMxOC40NjctMzIuMDA5IDY0LjcyLTMxLjk1MSA4My4xNTQgMGwyMzkuOTQgNDE2LjAyOHpNMjg4IDM1NGMtMjUuNDA1IDAtNDYgMjAuNTk1LTQ2IDQ2czIwLjU5NSA0NiA0NiA0NiA0Ni0yMC41OTUgNDYtNDYtMjAuNTk1LTQ2LTQ2LTQ2em0tNDMuNjczLTE2NS4zNDZsNy40MTggMTM2Yy4zNDcgNi4zNjQgNS42MDkgMTEuMzQ2IDExLjk4MiAxMS4zNDZoNDguNTQ2YzYuMzczIDAgMTEuNjM1LTQuOTgyIDExLjk4Mi0xMS4zNDZsNy40MTgtMTM2Yy4zNzUtNi44NzQtNS4wOTgtMTIuNjU0LTExLjk4Mi0xMi42NTRoLTYzLjM4M2MtNi44ODQgMC0xMi4zNTYgNS43OC0xMS45ODEgMTIuNjU0eicvPjwvc3ZnPg==");
}
.toast-container.toast-top-center .ngx-toastr,
.toast-container.toast-bottom-center .ngx-toastr {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.toast-container.toast-top-full-width .ngx-toastr,
.toast-container.toast-bottom-full-width .ngx-toastr {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
.ngx-toastr {
  background-color: #030303;
  pointer-events: auto;
}
.toast-success {
  background-color: #51A351;
}
.toast-error {
  background-color: #BD362F;
}
.toast-info {
  background-color: #2F96B4;
}
.toast-warning {
  background-color: #F89406;
}
.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
}
/* Responsive Design */
@media all and (max-width: 240px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  .toast-container .ngx-toastr.div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  .toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  .toast-container .ngx-toastr.div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
}
.slideToastsRight {
  left: 18rem;
  transition: 0.3s ease-in-out;
}
.slideToastsLeft {
  left: 5rem;
  transition: 0.3s ease-in-out;
}
.slideToastBtnRight {
  left: 37rem !important;
  transition: 0.3s ease-in-out;
}
.slideToastBtnLeft {
  left: 24rem !important;
  transition: 0.3s ease-in-out;
}
.initialToastBtnPos {
  left: 20rem !important;
  transition: 0.3s ease-in-out;
}
.toast-bottom-left {
  transition: 0.3s ease-in-out;
}
.toastVideoContainer {
  position: fixed;
}
.close-all-toasts {
  background: #d84315;
  position: fixed;
  bottom: 18px;
  left: 20rem;
  cursor: pointer;
  pointer-events: all;
}
.close-all-toasts-map {
  background: #d84315;
  position: fixed;
  bottom: 100px;
  left: 320px;
  cursor: pointer;
  pointer-events: all;
}
.toast-container .toast,
.toast-container .toast:hover {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.toast {
  background-color: #141217;
  background-color: var(--fs-theme-dark, #141217);
  color: #fff;
  color: var(--fs-theme-on-dark, #fff);
}
.toast-success {
  background-color: #8dd56a;
  background-color: var(--fs-theme-success, #8dd56a);
  color: #000;
  color: var(--fs-theme-on-success, #000);
}
.toast-error {
  background-color: #d84315;
  background-color: var(--fs-theme-danger, #d84315);
  color: #fff;
  color: var(--fs-theme-on-danger, #fff);
}
.toast-info {
  background-color: #03a9f4;
  background-color: var(--fs-theme-info, #03a9f4);
  color: #fff;
  color: var(--fs-theme-on-info, #fff);
}
.toast-warning {
  background-color: #ffb028;
  background-color: var(--fs-theme-warning, #ffb028);
  color: #000;
  color: var(--fs-theme-on-warning, #000);
}
.toast-message,
.toast-title {
  color: black !important;
}
.expand {
  padding: 15px 15px 15px 50px !important;
  width: 270px !important;
}
.expand .toast-title,
.expand .toast-message,
.expand .toast-close-button {
  display: block !important;
  word-wrap: break-word !important;
  margin-left: 7px !important;
  color: black !important;
}
.expand .toast-message {
  font-weight: 600 !important;
}
.expand .toast-close-button {
  width: 25px !important;
  text-shadow: none !important;
  font-size: 21px !important;
}
.toast-shadow {
  box-shadow: 0 0 12px #999999;
}
.toast-shadow:hover {
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  cursor: pointer;
}
.amber-alert-toast {
  color: black !important;
}
.cad__assigned-incident-toast,
.cad__nearby-incident-toast {
  margin: 1rem;
}
.cad__toast-position {
  top: 4rem !important;
  right: 4rem !important;
}
.toast-container {
  z-index: 5;
}
.mat-snack-bar-container {
  color: hsla(0deg, 0%, 100%, 0.7);
  background: #323232;
  box-shadow: 0 3px 5px -1px rgba(0, 0, 0, 0.2), 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12);
}
.user-activated__snackbar {
  max-width: 90% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: 1rem !important;
  padding: 10px !important;
  background-color: #ff8f00;
  text-align: center !important;
}
.user-activated__snackbar .mdc-snackbar__label {
  font-size: 1rem !important;
}
.mat-bottom-sheet-container {
  box-shadow: 0px 8px 10px -5px rgba(0, 0, 0, 0.2), 0px 16px 24px 2px rgba(0, 0, 0, 0.14), 0px 6px 30px 5px rgba(0, 0, 0, 0.12);
  background: white;
  color: rgba(0, 0, 0, 0.87);
}
.mat-dialog-actions {
  justify-content: right;
}
.mat-dialog-actions .sn-button,
.mat-dialog-actions .sn-flat-button,
.mat-dialog-actions .sn-outline-button {
  margin-left: 8px;
  margin-right: 0;
}
.mat-dialog-container {
  background-color: #ffffff;
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.mat-dialog-popout {
  border: 2px, solid, #fec62e;
  overflow: hidden;
}
.lpr-plate__dialog-container .mat-dialog-container,
.lprHotlistPlates__dialog .mat-dialog-container {
  padding: 1rem !important;
}
.detection-details__dialog-container .mat-dialog-container {
  width: 60vw;
  max-width: 60vw;
  max-height: 90vh;
}
.detection-details__dialog-container .mat-dialog-container .mat-dialog-title {
  margin: 0 !important;
}
.detection-details__dialog-container .mat-dialog-container .mat-line {
  white-space: inherit;
}
.mat-dialog-popout {
  border: 2px, solid, #fec62e;
}
.cad-feed__filters-dialog .mat-dialog-container {
  padding: 1rem !important;
  overflow: hidden;
}
.cad__fetching-cameras-dialog .mat-dialog-container {
  padding: 1rem;
  background-color: #1f1d23;
  box-shadow: 0 0 12px #999999;
}
.fs__updatePasswordDialog .mat-dialog-container {
  background: #141217;
}
.fs__updatePasswordDialog .mat-dialog-container .mat-dialog-content {
  color: #fff;
}
.mat-dialog-container {
  background-color: #1f1d23 !important;
}
.no-padding-container > .mat-dialog-container {
  padding: 0px !important;
}
.mat-progress-bar-background {
  fill: #c9c9c9;
}
.mat-progress-bar-buffer {
  background-color: #c9c9c9;
}
.mat-progress-bar-fill::after {
  background-color: #5b5958;
}
.mat-progress-bar.mat-accent .mat-progress-bar-background {
  fill: #f2e4be;
}
.mat-progress-bar.mat-accent .mat-progress-bar-buffer {
  background-color: #f2e4be;
}
.mat-progress-bar.mat-accent .mat-progress-bar-fill::after {
  background-color: #fec62e;
}
.mat-progress-bar.mat-warn .mat-progress-bar-background {
  fill: #e9c3b8;
}
.mat-progress-bar.mat-warn .mat-progress-bar-buffer {
  background-color: #e9c3b8;
}
.mat-progress-bar.mat-warn .mat-progress-bar-fill::after {
  background-color: #d84315;
}
.mat-progress-bar.mat-accent .mat-progress-bar-buffer {
  background: #141217;
}
.mat-tooltip {
  background: rgba(64, 60, 65, 0.9);
}
.mat-tooltip {
  margin: 8px !important;
  line-height: 24px;
  min-height: 24px;
  padding: 0 8px !important;
  font-size: 14px;
}
.mat-tooltip.details {
  overflow: auto;
  white-space: pre-wrap;
  max-width: 400px;
  padding: 15px !important;
}
.mat-tooltip.multiline-tooltip {
  overflow: auto;
  white-space: pre-wrap;
}
.mat-tooltip.wide-multiline-tooltip {
  white-space: pre-line;
  max-width: 374px !important;
  padding: 8px 16px !important;
}
.mat-tooltip-handset {
  line-height: 32px;
  height: 32px;
  padding: 0 16px !important;
}
.registry-panel {
  text-align: center !important;
}
.info-wrapper {
  color: white;
  padding: 0 0.5rem;
  background: #ffffff;
  border: solid 1px #fec62e;
  border-radius: 8px;
}
button {
  line-height: 1;
}
.mat-button-base {
  font-weight: 400;
}
.mat-button-base.mat-raised-button,
.mat-button-base.mat-flat-button,
.mat-button-base.mat-button,
.mat-button-base.mat-stroked-button {
  height: 36px;
}
.collapseButton {
  position: absolute;
  top: 7px;
  right: 10px;
  z-index: 1000;
  background-color: #1f1d23;
}
.sn-button-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: -4px;
  margin-right: -4px;
}
.sn-button-group .sn-button,
.sn-button-group .sn-fab-button,
.sn-button-group .sn-flat-button,
.sn-button-group .sn-outline-button {
  margin: 4px;
}
.sn-button-group .sn-icon-button {
  margin: 4px 0;
}
.sn-fab_bottom-right {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
}
.sn-fab_bottom-right .sn-icon {
  color: #000;
}
.sn-fab_bottom-left {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
}
.sn-fab_bottom-left .sn-icon {
  color: #000;
}
.mat-button-base,
.mat-icon-button,
.sn-button,
.sn-fab-button,
.sn-icon-button,
.sn-flat-button,
.sn-outline-button {
  -webkit-appearance: none;
}
.mat-button-base[disabled]:not([disabled=false]),
.mat-icon-button[disabled]:not([disabled=false]),
.sn-button[disabled]:not([disabled=false]),
.sn-fab-button[disabled]:not([disabled=false]),
.sn-icon-button[disabled]:not([disabled=false]),
.sn-flat-button[disabled]:not([disabled=false]),
.sn-outline-button[disabled]:not([disabled=false]) {
  pointer-events: none;
}
.mat-button-base .button-content,
.mat-icon-button .button-content,
.sn-button .button-content,
.sn-fab-button .button-content,
.sn-icon-button .button-content,
.sn-flat-button .button-content,
.sn-outline-button .button-content {
  display: inline-flex;
  align-items: center;
}
.mat-button-base .mat-spinner,
.mat-icon-button .mat-spinner,
.sn-button .mat-spinner,
.sn-fab-button .mat-spinner,
.sn-icon-button .mat-spinner,
.sn-flat-button .mat-spinner,
.sn-outline-button .mat-spinner {
  position: absolute;
}
.mat-fab .mat-button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.sn-button.loading .mat-button-wrapper,
.sn-icon-button.loading .mat-button-wrapper,
.sn-flat-button.loading .mat-button-wrapper,
.sn-outline-button.loading .mat-button-wrapper,
.sn-fab-button[extended].loading .mat-button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sn-button.loading .button-content,
.sn-icon-button.loading .button-content,
.sn-flat-button.loading .button-content,
.sn-outline-button.loading .button-content,
.sn-fab-button[extended].loading .button-content {
  opacity: 0;
}
.sn-button .mat-button,
.sn-flat-button .mat-button,
.sn-outline-button .mat-button {
  width: 100%;
}
.sn-button .mat-button__icon,
.sn-flat-button .mat-button__icon,
.sn-outline-button .mat-button__icon {
  display: inline-flex;
}
.sn-button {
  display: inline-block;
}
.sn-button button:not(:disabled) {
  color: rgba(0, 0, 0, 0.87);
}
.sn-button button:not(:disabled) .mat-icon {
  color: rgba(0, 0, 0, 0.87);
}
.sn-button button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.sn-button .mat-spinner circle {
  stroke: rgba(0, 0, 0, 0.87);
}
.sn-button.sn-primary button:not(:disabled) {
  color: #5b5958;
}
.sn-button.sn-primary button:not(:disabled) .mat-icon {
  color: #5b5958;
}
.sn-button.sn-primary button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.sn-button.sn-primary .mat-spinner circle {
  stroke: #5b5958;
}
.sn-button.sn-accent button:not(:disabled) {
  color: #fec62e;
}
.sn-button.sn-accent button:not(:disabled) .mat-icon {
  color: #fec62e;
}
.sn-button.sn-accent button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.sn-button.sn-accent .mat-spinner circle {
  stroke: #fec62e;
}
.sn-button.sn-info button:not(:disabled) {
  color: #03a9f4;
}
.sn-button.sn-info button:not(:disabled) .mat-icon {
  color: #03a9f4;
}
.sn-button.sn-info button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.sn-button.sn-info .mat-spinner circle {
  stroke: #03a9f4;
}
.sn-button.sn-success button:not(:disabled) {
  color: #8dd56a;
}
.sn-button.sn-success button:not(:disabled) .mat-icon {
  color: #8dd56a;
}
.sn-button.sn-success button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.sn-button.sn-success .mat-spinner circle {
  stroke: #8dd56a;
}
.sn-button.sn-danger button:not(:disabled) {
  color: #d84315;
}
.sn-button.sn-danger button:not(:disabled) .mat-icon {
  color: #d84315;
}
.sn-button.sn-danger button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.sn-button.sn-danger .mat-spinner circle {
  stroke: #d84315;
}
.sn-button.sn-warning button:not(:disabled) {
  color: #ffb028;
}
.sn-button.sn-warning button:not(:disabled) .mat-icon {
  color: #ffb028;
}
.sn-button.sn-warning button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.sn-button.sn-warning .mat-spinner circle {
  stroke: #ffb028;
}
.sn-button.sn-secondary button:not(:disabled) {
  color: #757575;
}
.sn-button.sn-secondary button:not(:disabled) .mat-icon {
  color: #757575;
}
.sn-button.sn-secondary button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.sn-button.sn-secondary .mat-spinner circle {
  stroke: #757575;
}
.sn-flat-button {
  display: inline-block;
}
.sn-flat-button button:not(:disabled) {
  background-color: #f2efed;
  color: rgba(0, 0, 0, 0.87);
}
.sn-flat-button button:not(:disabled) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.sn-flat-button .mat-spinner circle {
  stroke: #f2efed;
}
.sn-flat-button .mat-spinner circle {
  stroke: #f2efed;
}
.sn-flat-button.sn-primary button:not(:disabled) {
  background-color: #5b5958;
  color: rgba(255, 255, 255, 0.87);
}
.sn-flat-button.sn-primary button:not(:disabled) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.sn-flat-button.sn-primary .mat-spinner circle {
  stroke: #5b5958;
}
.sn-flat-button.sn-accent button:not(:disabled) {
  background-color: #fec62e;
  color: rgba(0, 0, 0, 0.87);
}
.sn-flat-button.sn-accent button:not(:disabled) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.sn-flat-button.sn-accent .mat-spinner circle {
  stroke: #fec62e;
}
.sn-flat-button.sn-info button:not(:disabled) {
  background-color: #03a9f4;
  color: rgba(255, 255, 255, 0.87);
}
.sn-flat-button.sn-info button:not(:disabled) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.sn-flat-button.sn-info .mat-spinner circle {
  stroke: #03a9f4;
}
.sn-flat-button.sn-success button:not(:disabled) {
  background-color: #8dd56a;
  color: rgba(0, 0, 0, 0.87);
}
.sn-flat-button.sn-success button:not(:disabled) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.sn-flat-button.sn-success .mat-spinner circle {
  stroke: #8dd56a;
}
.sn-flat-button.sn-danger button:not(:disabled) {
  background-color: #d84315;
  color: rgba(255, 255, 255, 0.87);
}
.sn-flat-button.sn-danger button:not(:disabled) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.sn-flat-button.sn-danger .mat-spinner circle {
  stroke: #d84315;
}
.sn-flat-button.sn-warning button:not(:disabled) {
  background-color: #ffb028;
  color: rgba(0, 0, 0, 0.87);
}
.sn-flat-button.sn-warning button:not(:disabled) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.sn-flat-button.sn-warning .mat-spinner circle {
  stroke: #ffb028;
}
.sn-flat-button.sn-secondary button:not(:disabled) {
  background-color: #757575;
  color: rgba(255, 255, 255, 0.87);
}
.sn-flat-button.sn-secondary button:not(:disabled) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.sn-flat-button.sn-secondary .mat-spinner circle {
  stroke: #757575;
}
.mat-flat-button {
  text-transform: uppercase;
}
.mat-flat-button:not(.mat-button-disabled) {
  background-color: #f2efed;
  color: rgba(0, 0, 0, 0.87);
}
.mat-flat-button[color=primary] {
  background-color: #5b5958;
  color: rgba(0, 0, 0, 0.87) !important;
}
.mat-flat-button[color=accent] {
  background-color: #fec62e;
  color: rgba(0, 0, 0, 0.87) !important;
}
.mat-flat-button[color=info] {
  background-color: #03a9f4;
  color: rgba(0, 0, 0, 0.87) !important;
}
.mat-flat-button[color=success] {
  background-color: #8dd56a;
  color: rgba(0, 0, 0, 0.87) !important;
}
.mat-flat-button[color=danger] {
  background-color: #d84315;
  color: rgba(0, 0, 0, 0.87) !important;
}
.mat-flat-button[color=warning] {
  background-color: #ffb028;
  color: rgba(0, 0, 0, 0.87) !important;
}
.mat-flat-button[color=secondary] {
  background-color: #757575;
  color: rgba(0, 0, 0, 0.87) !important;
}
.mat-button {
  text-transform: uppercase;
}
.mat-button[color=primary] {
  color: #5b5958;
}
.mat-button[color=primary] .mat-button-focus-overlay {
  background: #5b5958;
}
.mat-button[color=accent] {
  color: #fec62e;
}
.mat-button[color=accent] .mat-button-focus-overlay {
  background: #fec62e;
}
.mat-button[color=info] {
  color: #03a9f4;
}
.mat-button[color=info] .mat-button-focus-overlay {
  background: #03a9f4;
}
.mat-button[color=success] {
  color: #8dd56a;
}
.mat-button[color=success] .mat-button-focus-overlay {
  background: #8dd56a;
}
.mat-button[color=danger] {
  color: #d84315;
}
.mat-button[color=danger] .mat-button-focus-overlay {
  background: #d84315;
}
.mat-button[color=warning] {
  color: #ffb028;
}
.mat-button[color=warning] .mat-button-focus-overlay {
  background: #ffb028;
}
.mat-button[color=secondary] {
  color: #757575;
}
.mat-button[color=secondary] .mat-button-focus-overlay {
  background: #757575;
}
.sn-outline-button {
  display: inline-block;
}
.sn-outline-button button:not(:disabled) {
  border: 1px solid rgba(0, 0, 0, 0.87);
  color: rgba(0, 0, 0, 0.87);
}
.sn-outline-button button:not(:disabled) .mat-icon {
  color: rgba(0, 0, 0, 0.87);
}
.sn-outline-button button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.sn-outline-button .mat-spinner circle {
  stroke: rgba(0, 0, 0, 0.87);
}
.sn-outline-button.sn-primary button:not(:disabled) {
  border: 1px solid #5b5958;
  color: #5b5958;
}
.sn-outline-button.sn-primary button:not(:disabled) .mat-icon {
  color: #5b5958;
}
.sn-outline-button.sn-primary button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.sn-outline-button.sn-primary .mat-spinner circle {
  stroke: #5b5958;
}
.sn-outline-button.sn-accent button:not(:disabled) {
  border: 1px solid #fec62e;
  color: #fec62e;
}
.sn-outline-button.sn-accent button:not(:disabled) .mat-icon {
  color: #fec62e;
}
.sn-outline-button.sn-accent button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.sn-outline-button.sn-accent .mat-spinner circle {
  stroke: #fec62e;
}
.sn-outline-button.sn-info button:not(:disabled) {
  border: 1px solid #03a9f4;
  color: #03a9f4;
}
.sn-outline-button.sn-info button:not(:disabled) .mat-icon {
  color: #03a9f4;
}
.sn-outline-button.sn-info button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.sn-outline-button.sn-info .mat-spinner circle {
  stroke: #03a9f4;
}
.sn-outline-button.sn-success button:not(:disabled) {
  border: 1px solid #8dd56a;
  color: #8dd56a;
}
.sn-outline-button.sn-success button:not(:disabled) .mat-icon {
  color: #8dd56a;
}
.sn-outline-button.sn-success button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.sn-outline-button.sn-success .mat-spinner circle {
  stroke: #8dd56a;
}
.sn-outline-button.sn-danger button:not(:disabled) {
  border: 1px solid #d84315;
  color: #d84315;
}
.sn-outline-button.sn-danger button:not(:disabled) .mat-icon {
  color: #d84315;
}
.sn-outline-button.sn-danger button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.sn-outline-button.sn-danger .mat-spinner circle {
  stroke: #d84315;
}
.sn-outline-button.sn-warning button:not(:disabled) {
  border: 1px solid #ffb028;
  color: #ffb028;
}
.sn-outline-button.sn-warning button:not(:disabled) .mat-icon {
  color: #ffb028;
}
.sn-outline-button.sn-warning button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.sn-outline-button.sn-warning .mat-spinner circle {
  stroke: #ffb028;
}
.sn-outline-button.sn-secondary button:not(:disabled) {
  border: 1px solid #757575;
  color: #757575;
}
.sn-outline-button.sn-secondary button:not(:disabled) .mat-icon {
  color: #757575;
}
.sn-outline-button.sn-secondary button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.sn-outline-button.sn-secondary .mat-spinner circle {
  stroke: #757575;
}
.mat-icon-button,
.sn-icon-button {
  display: inline-block;
}
.mat-icon-button button:not(:disabled):hover,
.sn-icon-button button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.mat-icon-button button:not(:disabled):hover,
.sn-icon-button button:not(:disabled):hover {
  background: rgba(0, 0, 0, 0.04);
}
.mat-icon-button button:not(:disabled):focus,
.sn-icon-button button:not(:disabled):focus {
  background: rgba(0, 0, 0, 0.04);
}
.mat-icon-button .mat-spinner circle,
.sn-icon-button .mat-spinner circle {
  stroke: rgba(0, 0, 0, 0.87);
}
.mat-icon-button button,
.sn-icon-button button {
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.mat-icon-button button:focus::before, .mat-icon-button button:hover::before,
.sn-icon-button button:focus::before,
.sn-icon-button button:hover::before {
  opacity: 0 !important;
}
.mat-icon-button.sn-primary button:not(:disabled):hover,
.sn-icon-button.sn-primary button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.mat-icon-button.sn-primary button:not(:disabled):hover,
.sn-icon-button.sn-primary button:not(:disabled):hover {
  background: rgba(91, 89, 88, 0.04);
}
.mat-icon-button.sn-primary button:not(:disabled):focus,
.sn-icon-button.sn-primary button:not(:disabled):focus {
  background: rgba(91, 89, 88, 0.04);
}
.mat-icon-button.sn-primary .mat-spinner circle,
.sn-icon-button.sn-primary .mat-spinner circle {
  stroke: #5b5958;
}
.mat-icon-button.sn-accent button:not(:disabled):hover,
.sn-icon-button.sn-accent button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.mat-icon-button.sn-accent button:not(:disabled):hover,
.sn-icon-button.sn-accent button:not(:disabled):hover {
  background: rgba(254, 198, 46, 0.08);
}
.mat-icon-button.sn-accent button:not(:disabled):focus,
.sn-icon-button.sn-accent button:not(:disabled):focus {
  background: rgba(254, 198, 46, 0.08);
}
.mat-icon-button.sn-accent .mat-spinner circle,
.sn-icon-button.sn-accent .mat-spinner circle {
  stroke: #fec62e;
}
.mat-icon-button.sn-info button:not(:disabled):hover,
.sn-icon-button.sn-info button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.mat-icon-button.sn-info button:not(:disabled):hover,
.sn-icon-button.sn-info button:not(:disabled):hover {
  background: rgba(3, 169, 244, 0.04);
}
.mat-icon-button.sn-info button:not(:disabled):focus,
.sn-icon-button.sn-info button:not(:disabled):focus {
  background: rgba(3, 169, 244, 0.04);
}
.mat-icon-button.sn-info .mat-spinner circle,
.sn-icon-button.sn-info .mat-spinner circle {
  stroke: #03a9f4;
}
.mat-icon-button.sn-success button:not(:disabled):hover,
.sn-icon-button.sn-success button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.mat-icon-button.sn-success button:not(:disabled):hover,
.sn-icon-button.sn-success button:not(:disabled):hover {
  background: rgba(141, 213, 106, 0.08);
}
.mat-icon-button.sn-success button:not(:disabled):focus,
.sn-icon-button.sn-success button:not(:disabled):focus {
  background: rgba(141, 213, 106, 0.08);
}
.mat-icon-button.sn-success .mat-spinner circle,
.sn-icon-button.sn-success .mat-spinner circle {
  stroke: #8dd56a;
}
.mat-icon-button.sn-danger button:not(:disabled):hover,
.sn-icon-button.sn-danger button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.mat-icon-button.sn-danger button:not(:disabled):hover,
.sn-icon-button.sn-danger button:not(:disabled):hover {
  background: rgba(216, 67, 21, 0.04);
}
.mat-icon-button.sn-danger button:not(:disabled):focus,
.sn-icon-button.sn-danger button:not(:disabled):focus {
  background: rgba(216, 67, 21, 0.04);
}
.mat-icon-button.sn-danger .mat-spinner circle,
.sn-icon-button.sn-danger .mat-spinner circle {
  stroke: #d84315;
}
.mat-icon-button.sn-warning button:not(:disabled):hover,
.sn-icon-button.sn-warning button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.mat-icon-button.sn-warning button:not(:disabled):hover,
.sn-icon-button.sn-warning button:not(:disabled):hover {
  background: rgba(255, 176, 40, 0.08);
}
.mat-icon-button.sn-warning button:not(:disabled):focus,
.sn-icon-button.sn-warning button:not(:disabled):focus {
  background: rgba(255, 176, 40, 0.08);
}
.mat-icon-button.sn-warning .mat-spinner circle,
.sn-icon-button.sn-warning .mat-spinner circle {
  stroke: #ffb028;
}
.mat-icon-button.sn-secondary button:not(:disabled):hover,
.sn-icon-button.sn-secondary button:not(:disabled):hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.mat-icon-button.sn-secondary button:not(:disabled):hover,
.sn-icon-button.sn-secondary button:not(:disabled):hover {
  background: rgba(117, 117, 117, 0.04);
}
.mat-icon-button.sn-secondary button:not(:disabled):focus,
.sn-icon-button.sn-secondary button:not(:disabled):focus {
  background: rgba(117, 117, 117, 0.04);
}
.mat-icon-button.sn-secondary .mat-spinner circle,
.sn-icon-button.sn-secondary .mat-spinner circle {
  stroke: #757575;
}
.mat-button-base .sn-icon mat-icon,
.mat-icon-button .sn-icon mat-icon,
.sn-button .sn-icon mat-icon,
.sn-flat-button .sn-icon mat-icon,
.sn-outline-button .sn-icon mat-icon {
  line-height: 18px;
}
.sn-fab-button {
  display: inline-block;
}
.sn-fab-button[fluid]:not([fluid=false]) {
  width: 100%;
}
.sn-fab-button .mat-mdc-fab[disabled]:not([disabled=false]),
.sn-fab-button .mat-mdc-mini-fab[disabled]:not([disabled=false]) {
  background-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.38);
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.sn-fab-button.sn-primary button:not(:disabled) {
  background-color: #5b5958;
  color: rgba(255, 255, 255, 0.87);
}
.sn-fab-button.sn-primary button:not(:disabled):hover {
  background-color: #464544;
}
.sn-fab-button.sn-primary button:not(:disabled):disabled {
  background-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.38);
}
.sn-fab-button.sn-primary button:not(:disabled) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.sn-fab-button.sn-primary button:not(:disabled):disabled {
  color: rgba(0, 0, 0, 0.38);
}
.sn-fab-button.sn-primary .mat-spinner circle {
  stroke: #5b5958;
}
.sn-fab-button.sn-accent button:not(:disabled) {
  background-color: #fec62e;
  color: rgba(0, 0, 0, 0.87);
}
.sn-fab-button.sn-accent button:not(:disabled):hover {
  background-color: #febb05;
}
.sn-fab-button.sn-accent button:not(:disabled):disabled {
  background-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.38);
}
.sn-fab-button.sn-accent button:not(:disabled) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.sn-fab-button.sn-accent button:not(:disabled):disabled {
  color: rgba(0, 0, 0, 0.38);
}
.sn-fab-button.sn-accent .mat-spinner circle {
  stroke: #fec62e;
}
.sn-fab-button.sn-info button:not(:disabled) {
  background-color: #03a9f4;
  color: rgba(255, 255, 255, 0.87);
}
.sn-fab-button.sn-info button:not(:disabled):hover {
  background-color: #038dcc;
}
.sn-fab-button.sn-info button:not(:disabled):disabled {
  background-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.38);
}
.sn-fab-button.sn-info button:not(:disabled) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.sn-fab-button.sn-info button:not(:disabled):disabled {
  color: rgba(0, 0, 0, 0.38);
}
.sn-fab-button.sn-info .mat-spinner circle {
  stroke: #03a9f4;
}
.sn-fab-button.sn-success button:not(:disabled) {
  background-color: #8dd56a;
  color: rgba(0, 0, 0, 0.87);
}
.sn-fab-button.sn-success button:not(:disabled):hover {
  background-color: #75cc4a;
}
.sn-fab-button.sn-success button:not(:disabled):disabled {
  background-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.38);
}
.sn-fab-button.sn-success button:not(:disabled) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.sn-fab-button.sn-success button:not(:disabled):disabled {
  color: rgba(0, 0, 0, 0.38);
}
.sn-fab-button.sn-success .mat-spinner circle {
  stroke: #8dd56a;
}
.sn-fab-button.sn-danger button:not(:disabled) {
  background-color: #d84315;
  color: rgba(255, 255, 255, 0.87);
}
.sn-fab-button.sn-danger button:not(:disabled):hover {
  background-color: #b33711;
}
.sn-fab-button.sn-danger button:not(:disabled):disabled {
  background-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.38);
}
.sn-fab-button.sn-danger button:not(:disabled) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.sn-fab-button.sn-danger button:not(:disabled):disabled {
  color: rgba(0, 0, 0, 0.38);
}
.sn-fab-button.sn-danger .mat-spinner circle {
  stroke: #d84315;
}
.sn-fab-button.sn-warning button:not(:disabled) {
  background-color: #ffb028;
  color: rgba(0, 0, 0, 0.87);
}
.sn-fab-button.sn-warning button:not(:disabled):hover {
  background-color: #fea100;
}
.sn-fab-button.sn-warning button:not(:disabled):disabled {
  background-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.38);
}
.sn-fab-button.sn-warning button:not(:disabled) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.sn-fab-button.sn-warning button:not(:disabled):disabled {
  color: rgba(0, 0, 0, 0.38);
}
.sn-fab-button.sn-warning .mat-spinner circle {
  stroke: #ffb028;
}
.sn-fab-button.sn-secondary button:not(:disabled) {
  background-color: #757575;
  color: rgba(255, 255, 255, 0.87);
}
.sn-fab-button.sn-secondary button:not(:disabled):hover {
  background-color: #616161;
}
.sn-fab-button.sn-secondary button:not(:disabled):disabled {
  background-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.38);
}
.sn-fab-button.sn-secondary button:not(:disabled) .mat-ripple-element {
  background-color: rgba(0, 0, 0, 0.1);
}
.sn-fab-button.sn-secondary button:not(:disabled):disabled {
  color: rgba(0, 0, 0, 0.38);
}
.sn-fab-button.sn-secondary .mat-spinner circle {
  stroke: #757575;
}
.mat-fab--extended {
  height: 48px;
  border-radius: 24px;
  padding: 0 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-transform: uppercase;
  background-color: #ffca28;
}
.mat-fab--extended .mat-fab__label {
  color: black;
}
.mat-fab--extended .mat-icon {
  margin-right: 12px;
}
.mat-fab--extended .mat-fab__icon {
  margin-left: 8px;
  margin-right: -8px;
  color: black;
}
.fs-actions {
  width: 100%;
  justify-content: flex-end;
}
.fs-actions .sn-button,
.fs-actions .sn-flat-button,
.fs-actions .sn-outline-button {
  margin: 0 5px 0 5px;
}
.mat-button-base.mat-flat-button,
.mat-button-base.mat-stroked-button {
  white-space: pre-wrap;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  padding: 8px;
  text-transform: uppercase;
  letter-spacing: 1.25px;
}
.mat-button-base.mat-stroked-button:not(.mat-button-disabled) {
  color: #f2efed;
}
.mat-raised-button {
  font-size: 0.875rem;
  font-weight: 400;
}
.mat-button-base.mat-raised-button,
.mat-button-base.mat-flat-button {
  padding: 0 16px;
}
:root {
  --glow-color: $accent;
}
@keyframes mat-spinner {
  to {
    transform: rotate(360deg);
  }
}
.mat-spinner:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-radius: 50%;
  border: 2px solid;
  animation: mat-spinner 0.8s linear infinite;
}
.hide-btn-text {
  color: transparent !important;
}
.mat-glow {
  animation: glow 1s infinite alternate;
}
@keyframes glow {
  from {
    box-shadow: 0 0 3px -3px $accent;
    box-shadow: 0 0 3px -3px var(--glow-color);
  }
  to {
    box-shadow: 0 0 3px 3px $accent;
    box-shadow: 0 0 3px 3px var(--glow-color);
  }
}
.actionBtnWrapper {
  border-radius: 50%;
  display: inline-block;
}
.actionBtnWrapper .mat-icon-button {
  width: 48px;
  height: 48px;
}
.actionBtnWrapper .sn-badge__content {
  top: 0px !important;
  right: 0px !important;
}
.mat-button-toggle-appearance-standard {
  background-color: #eee;
  background-color: var(--fs-theme-background, #eee);
}
.mat-button-toggle-checked {
  background-color: #2c2a30;
}
.small-icon-button {
  width: 24px !important;
  height: 24px !important;
  line-height: 24px !important;
}
.small-icon-button .mat-icon {
  width: 16px !important;
  height: 16px !important;
  line-height: 16px !important;
}
.small-icon-button .material-icons {
  font-size: 16px !important;
}
.mat-form-field-label {
  color: rgba(0, 0, 0, 0.6);
}
.mat-hint {
  color: rgba(0, 0, 0, 0.6);
}
.mat-form-field.mat-focused .mat-form-field-label {
  color: #5b5958;
}
.mat-form-field.mat-focused .mat-form-field-label.mat-accent {
  color: #fec62e;
}
.mat-form-field.mat-focused .mat-form-field-label.mat-warn {
  color: #d84315;
}
.mat-focused .mat-form-field-required-marker {
  color: #fec62e;
}
.mat-form-field-ripple {
  background-color: rgba(0, 0, 0, 0.87);
}
.mat-form-field.mat-focused .mat-form-field-ripple {
  background-color: #5b5958;
}
.mat-form-field.mat-focused .mat-form-field-ripple.mat-accent {
  background-color: #fec62e;
}
.mat-form-field.mat-focused .mat-form-field-ripple.mat-warn {
  background-color: #d84315;
}
.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid) .mat-form-field-infix::after {
  color: #5b5958;
}
.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-accent .mat-form-field-infix::after {
  color: #fec62e;
}
.mat-form-field-type-mat-native-select.mat-focused:not(.mat-form-field-invalid).mat-warn .mat-form-field-infix::after {
  color: #d84315;
}
.mat-form-field.mat-form-field-invalid .mat-form-field-label {
  color: #d84315;
}
.mat-form-field.mat-form-field-invalid .mat-form-field-label.mat-accent,
.mat-form-field.mat-form-field-invalid .mat-form-field-label .mat-form-field-required-marker {
  color: #d84315;
}
.mat-form-field.mat-form-field-invalid .mat-form-field-ripple,
.mat-form-field.mat-form-field-invalid .mat-form-field-ripple.mat-accent {
  background-color: #d84315;
}
.mat-error {
  color: #d84315;
}
.mat-form-field-appearance-legacy .mat-form-field-label {
  color: rgba(0, 0, 0, 0.54);
}
.mat-form-field-appearance-legacy .mat-hint {
  color: rgba(0, 0, 0, 0.54);
}
.mat-form-field-appearance-legacy .mat-form-field-underline {
  background-color: rgba(0, 0, 0, 0.42);
}
.mat-form-field-appearance-legacy.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.mat-form-field-appearance-standard .mat-form-field-underline {
  background-color: rgba(0, 0, 0, 0.42);
}
.mat-form-field-appearance-standard.mat-form-field-disabled .mat-form-field-underline {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 33%, transparent 0%);
  background-size: 4px 100%;
  background-repeat: repeat-x;
}
.mat-form-field-appearance-fill .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.04);
}
.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-flex {
  background-color: rgba(0, 0, 0, 0.02);
}
.mat-form-field-appearance-fill .mat-form-field-underline::before {
  background-color: rgba(0, 0, 0, 0.42);
}
.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-label {
  color: rgba(0, 0, 0, 0.38);
}
.mat-form-field-appearance-fill.mat-form-field-disabled .mat-form-field-underline::before {
  background-color: transparent;
}
.mat-form-field-appearance-outline .mat-form-field-outline {
  color: rgba(0, 0, 0, 0.12);
}
.mat-form-field-appearance-outline .mat-form-field-outline-thick {
  color: rgba(0, 0, 0, 0.87);
}
.mat-form-field-appearance-outline.mat-focused .mat-form-field-outline-thick {
  color: #5b5958;
}
.mat-form-field-appearance-outline.mat-focused.mat-accent .mat-form-field-outline-thick {
  color: #fec62e;
}
.mat-form-field-appearance-outline.mat-focused.mat-warn .mat-form-field-outline-thick {
  color: #d84315;
}
.mat-form-field-appearance-outline.mat-form-field-invalid.mat-form-field-invalid .mat-form-field-outline-thick {
  color: #d84315;
}
.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-label {
  color: rgba(0, 0, 0, 0.38);
}
.mat-form-field-appearance-outline.mat-form-field-disabled .mat-form-field-outline {
  color: rgba(0, 0, 0, 0.06);
}
.mat-form-field-type-mat-native-select .mat-form-field-infix::after {
  color: rgba(0, 0, 0, 0.54);
}
.mat-input-element:disabled,
.mat-form-field-type-mat-native-select.mat-form-field-disabled .mat-form-field-infix::after {
  color: rgba(0, 0, 0, 0.38);
}
.mat-input-element {
  caret-color: #5b5958;
}
.mat-input-element::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.mat-input-element::placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.mat-input-element::-moz-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.mat-input-element::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.mat-input-element:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.mat-form-field.mat-accent .mat-input-element {
  caret-color: #fec62e;
}
.mat-form-field.mat-warn .mat-input-element,
.mat-form-field-invalid .mat-input-element {
  caret-color: #d84315;
}
.mat-form-field-type-mat-native-select.mat-form-field-invalid .mat-form-field-infix::after {
  color: #d84315;
}
.mat-autocomplete-panel {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}
.mat-autocomplete-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover) {
  background: white;
}
.mat-autocomplete-panel .mat-option.mat-selected:not(.mat-active):not(:hover):not(.mat-option-disabled) {
  color: rgba(0, 0, 0, 0.87);
}
.mat-checkbox-frame {
  border-color: rgba(0, 0, 0, 0.54);
}
.mat-checkbox-checkmark {
  fill: #eeeeee;
}
.mat-checkbox-checkmark-path {
  stroke: #eeeeee !important;
}
.mat-checkbox-mixedmark {
  background-color: #eeeeee;
}
.mat-checkbox-indeterminate.mat-primary .mat-checkbox-background, .mat-checkbox-checked.mat-primary .mat-checkbox-background {
  background-color: #5b5958;
}
.mat-checkbox-indeterminate.mat-accent .mat-checkbox-background, .mat-checkbox-checked.mat-accent .mat-checkbox-background {
  background-color: #fec62e;
}
.mat-checkbox-indeterminate.mat-warn .mat-checkbox-background, .mat-checkbox-checked.mat-warn .mat-checkbox-background {
  background-color: #d84315;
}
.mat-checkbox-disabled.mat-checkbox-checked .mat-checkbox-background, .mat-checkbox-disabled.mat-checkbox-indeterminate .mat-checkbox-background {
  background-color: #b0b0b0;
}
.mat-checkbox-disabled:not(.mat-checkbox-checked) .mat-checkbox-frame {
  border-color: #b0b0b0;
}
.mat-checkbox-disabled .mat-checkbox-label {
  color: rgba(0, 0, 0, 0.38);
}
.mat-checkbox .mat-ripple-element {
  background-color: black;
}
.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element,
.mat-checkbox:active:not(.mat-checkbox-disabled).mat-primary .mat-ripple-element {
  background: #5b5958;
}
.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element,
.mat-checkbox:active:not(.mat-checkbox-disabled).mat-accent .mat-ripple-element {
  background: #fec62e;
}
.mat-checkbox-checked:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element,
.mat-checkbox:active:not(.mat-checkbox-disabled).mat-warn .mat-ripple-element {
  background: #d84315;
}
.mat-radio-outer-circle {
  border-color: rgba(0, 0, 0, 0.54);
}
.mat-radio-button.mat-primary.mat-radio-checked .mat-radio-outer-circle {
  border-color: #5b5958;
}
.mat-radio-button.mat-primary .mat-radio-inner-circle,
.mat-radio-button.mat-primary .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-primary.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-primary:active .mat-radio-persistent-ripple {
  background-color: #5b5958;
}
.mat-radio-button.mat-accent.mat-radio-checked .mat-radio-outer-circle {
  border-color: #fec62e;
}
.mat-radio-button.mat-accent .mat-radio-inner-circle,
.mat-radio-button.mat-accent .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-accent.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-accent:active .mat-radio-persistent-ripple {
  background-color: #fec62e;
}
.mat-radio-button.mat-warn.mat-radio-checked .mat-radio-outer-circle {
  border-color: #d84315;
}
.mat-radio-button.mat-warn .mat-radio-inner-circle,
.mat-radio-button.mat-warn .mat-radio-ripple .mat-ripple-element:not(.mat-radio-persistent-ripple), .mat-radio-button.mat-warn.mat-radio-checked .mat-radio-persistent-ripple, .mat-radio-button.mat-warn:active .mat-radio-persistent-ripple {
  background-color: #d84315;
}
.mat-radio-button.mat-radio-disabled.mat-radio-checked .mat-radio-outer-circle,
.mat-radio-button.mat-radio-disabled .mat-radio-outer-circle {
  border-color: rgba(0, 0, 0, 0.38);
}
.mat-radio-button.mat-radio-disabled .mat-radio-ripple .mat-ripple-element,
.mat-radio-button.mat-radio-disabled .mat-radio-inner-circle {
  background-color: rgba(0, 0, 0, 0.38);
}
.mat-radio-button.mat-radio-disabled .mat-radio-label-content {
  color: rgba(0, 0, 0, 0.38);
}
.mat-radio-button .mat-ripple-element {
  background-color: black;
}
.mat-select-value {
  color: rgba(0, 0, 0, 0.87);
}
.mat-select-placeholder {
  color: rgba(0, 0, 0, 0.42);
}
.mat-select-disabled .mat-select-value {
  color: rgba(0, 0, 0, 0.38);
}
.mat-select-arrow {
  color: rgba(0, 0, 0, 0.54);
}
.mat-select-panel {
  background: white;
}
.mat-select-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.mat-select-panel .mat-option.mat-selected:not(.mat-option-multiple) {
  background: rgba(0, 0, 0, 0.12);
}
.mat-form-field.mat-focused.mat-primary .mat-select-arrow {
  color: #5b5958;
}
.mat-form-field.mat-focused.mat-accent .mat-select-arrow {
  color: #fec62e;
}
.mat-form-field.mat-focused.mat-warn .mat-select-arrow {
  color: #d84315;
}
.mat-form-field .mat-select.mat-select-invalid .mat-select-arrow {
  color: #d84315;
}
.mat-form-field .mat-select.mat-select-disabled .mat-select-arrow {
  color: rgba(0, 0, 0, 0.38);
}
.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {
  background-color: #fec62e;
}
.mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(254, 198, 46, 0.54);
}
.mat-slide-toggle.mat-checked .mat-ripple-element {
  background-color: #fec62e;
}
.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-thumb {
  background-color: #5b5958;
}
.mat-slide-toggle.mat-primary.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(91, 89, 88, 0.54);
}
.mat-slide-toggle.mat-primary.mat-checked .mat-ripple-element {
  background-color: #5b5958;
}
.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-thumb {
  background-color: #d84315;
}
.mat-slide-toggle.mat-warn.mat-checked .mat-slide-toggle-bar {
  background-color: rgba(216, 67, 21, 0.54);
}
.mat-slide-toggle.mat-warn.mat-checked .mat-ripple-element {
  background-color: #d84315;
}
.mat-slide-toggle:not(.mat-checked) .mat-ripple-element {
  background-color: black;
}
.mat-slide-toggle-thumb {
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
  background-color: #fafafa;
}
.mat-slide-toggle-bar {
  background-color: rgba(0, 0, 0, 0.38);
}
.mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26);
}
.mat-slider.mat-primary .mat-slider-track-fill,
.mat-slider.mat-primary .mat-slider-thumb,
.mat-slider.mat-primary .mat-slider-thumb-label {
  background-color: #5b5958;
}
.mat-slider.mat-primary .mat-slider-thumb-label-text {
  color: rgba(255, 255, 255, 0.87);
}
.mat-slider.mat-primary .mat-slider-focus-ring {
  background-color: rgba(91, 89, 88, 0.2);
}
.mat-slider.mat-accent .mat-slider-track-fill,
.mat-slider.mat-accent .mat-slider-thumb,
.mat-slider.mat-accent .mat-slider-thumb-label {
  background-color: #fec62e;
}
.mat-slider.mat-accent .mat-slider-thumb-label-text {
  color: rgba(255, 255, 255, 0.87);
}
.mat-slider.mat-accent .mat-slider-focus-ring {
  background-color: rgba(254, 198, 46, 0.2);
}
.mat-slider.mat-warn .mat-slider-track-fill,
.mat-slider.mat-warn .mat-slider-thumb,
.mat-slider.mat-warn .mat-slider-thumb-label {
  background-color: #d84315;
}
.mat-slider.mat-warn .mat-slider-thumb-label-text {
  color: white;
}
.mat-slider.mat-warn .mat-slider-focus-ring {
  background-color: rgba(216, 67, 21, 0.2);
}
.mat-slider:hover .mat-slider-track-background,
.mat-slider.cdk-focused .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.38);
}
.mat-slider.mat-slider-disabled .mat-slider-track-background,
.mat-slider.mat-slider-disabled .mat-slider-track-fill,
.mat-slider.mat-slider-disabled .mat-slider-thumb {
  background-color: rgba(0, 0, 0, 0.26);
}
.mat-slider.mat-slider-disabled:hover .mat-slider-track-background {
  background-color: rgba(0, 0, 0, 0.26);
}
.mat-slider.mat-slider-min-value .mat-slider-focus-ring {
  background-color: rgba(0, 0, 0, 0.12);
}
.mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb,
.mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing .mat-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.87);
}
.mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb,
.mat-slider.mat-slider-min-value.mat-slider-thumb-label-showing.cdk-focused .mat-slider-thumb-label {
  background-color: rgba(0, 0, 0, 0.26);
}
.mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing) .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26);
  background-color: transparent;
}
.mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover .mat-slider-thumb, .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.38);
}
.mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing):hover.mat-slider-disabled .mat-slider-thumb, .mat-slider.mat-slider-min-value:not(.mat-slider-thumb-label-showing).cdk-focused.mat-slider-disabled .mat-slider-thumb {
  border-color: rgba(0, 0, 0, 0.26);
}
.mat-slider-has-ticks .mat-slider-wrapper::after {
  border-color: rgba(0, 0, 0, 0.7);
}
.mat-slider-horizontal .mat-slider-ticks {
  background-image: repeating-linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
  background-image: -moz-repeating-linear-gradient(0.0001deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
}
.mat-slider-vertical .mat-slider-ticks {
  background-image: repeating-linear-gradient(to bottom, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7) 2px, transparent 0, transparent);
}
.mat-button, .mat-icon-button, .mat-stroked-button {
  color: inherit;
  background: transparent;
}
.mat-button.mat-primary, .mat-icon-button.mat-primary, .mat-stroked-button.mat-primary {
  color: #5b5958;
}
.mat-button.mat-accent, .mat-icon-button.mat-accent, .mat-stroked-button.mat-accent {
  color: #fec62e;
}
.mat-button.mat-warn, .mat-icon-button.mat-warn, .mat-stroked-button.mat-warn {
  color: #d84315;
}
.mat-button.mat-primary.mat-button-disabled, .mat-button.mat-accent.mat-button-disabled, .mat-button.mat-warn.mat-button-disabled, .mat-button.mat-button-disabled.mat-button-disabled, .mat-icon-button.mat-primary.mat-button-disabled, .mat-icon-button.mat-accent.mat-button-disabled, .mat-icon-button.mat-warn.mat-button-disabled, .mat-icon-button.mat-button-disabled.mat-button-disabled, .mat-stroked-button.mat-primary.mat-button-disabled, .mat-stroked-button.mat-accent.mat-button-disabled, .mat-stroked-button.mat-warn.mat-button-disabled, .mat-stroked-button.mat-button-disabled.mat-button-disabled {
  color: rgba(0, 0, 0, 0.26);
}
.mat-button.mat-primary .mat-button-focus-overlay, .mat-icon-button.mat-primary .mat-button-focus-overlay, .mat-stroked-button.mat-primary .mat-button-focus-overlay {
  background-color: #5b5958;
}
.mat-button.mat-accent .mat-button-focus-overlay, .mat-icon-button.mat-accent .mat-button-focus-overlay, .mat-stroked-button.mat-accent .mat-button-focus-overlay {
  background-color: #fec62e;
}
.mat-button.mat-warn .mat-button-focus-overlay, .mat-icon-button.mat-warn .mat-button-focus-overlay, .mat-stroked-button.mat-warn .mat-button-focus-overlay {
  background-color: #d84315;
}
.mat-button.mat-button-disabled .mat-button-focus-overlay, .mat-icon-button.mat-button-disabled .mat-button-focus-overlay, .mat-stroked-button.mat-button-disabled .mat-button-focus-overlay {
  background-color: transparent;
}
.mat-button .mat-ripple-element, .mat-icon-button .mat-ripple-element, .mat-stroked-button .mat-ripple-element {
  opacity: 0.1;
  background-color: currentColor;
}
.mat-button-focus-overlay {
  background: black;
}
.mat-stroked-button:not(.mat-button-disabled) {
  border-color: rgba(0, 0, 0, 0.12);
}
.mat-flat-button, .mat-raised-button, .mat-fab, .mat-mini-fab {
  color: rgba(0, 0, 0, 0.87);
  background-color: white;
}
.mat-flat-button.mat-primary, .mat-raised-button.mat-primary, .mat-fab.mat-primary, .mat-mini-fab.mat-primary {
  color: rgba(255, 255, 255, 0.87);
}
.mat-flat-button.mat-accent, .mat-raised-button.mat-accent, .mat-fab.mat-accent, .mat-mini-fab.mat-accent {
  color: rgba(255, 255, 255, 0.87);
}
.mat-flat-button.mat-warn, .mat-raised-button.mat-warn, .mat-fab.mat-warn, .mat-mini-fab.mat-warn {
  color: white;
}
.mat-flat-button.mat-primary.mat-button-disabled, .mat-flat-button.mat-accent.mat-button-disabled, .mat-flat-button.mat-warn.mat-button-disabled, .mat-flat-button.mat-button-disabled.mat-button-disabled, .mat-raised-button.mat-primary.mat-button-disabled, .mat-raised-button.mat-accent.mat-button-disabled, .mat-raised-button.mat-warn.mat-button-disabled, .mat-raised-button.mat-button-disabled.mat-button-disabled, .mat-fab.mat-primary.mat-button-disabled, .mat-fab.mat-accent.mat-button-disabled, .mat-fab.mat-warn.mat-button-disabled, .mat-fab.mat-button-disabled.mat-button-disabled, .mat-mini-fab.mat-primary.mat-button-disabled, .mat-mini-fab.mat-accent.mat-button-disabled, .mat-mini-fab.mat-warn.mat-button-disabled, .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  color: rgba(0, 0, 0, 0.26);
}
.mat-flat-button.mat-primary, .mat-raised-button.mat-primary, .mat-fab.mat-primary, .mat-mini-fab.mat-primary {
  background-color: #5b5958;
}
.mat-flat-button.mat-accent, .mat-raised-button.mat-accent, .mat-fab.mat-accent, .mat-mini-fab.mat-accent {
  background-color: #fec62e;
}
.mat-flat-button.mat-warn, .mat-raised-button.mat-warn, .mat-fab.mat-warn, .mat-mini-fab.mat-warn {
  background-color: #d84315;
}
.mat-flat-button.mat-primary.mat-button-disabled, .mat-flat-button.mat-accent.mat-button-disabled, .mat-flat-button.mat-warn.mat-button-disabled, .mat-flat-button.mat-button-disabled.mat-button-disabled, .mat-raised-button.mat-primary.mat-button-disabled, .mat-raised-button.mat-accent.mat-button-disabled, .mat-raised-button.mat-warn.mat-button-disabled, .mat-raised-button.mat-button-disabled.mat-button-disabled, .mat-fab.mat-primary.mat-button-disabled, .mat-fab.mat-accent.mat-button-disabled, .mat-fab.mat-warn.mat-button-disabled, .mat-fab.mat-button-disabled.mat-button-disabled, .mat-mini-fab.mat-primary.mat-button-disabled, .mat-mini-fab.mat-accent.mat-button-disabled, .mat-mini-fab.mat-warn.mat-button-disabled, .mat-mini-fab.mat-button-disabled.mat-button-disabled {
  background-color: rgba(0, 0, 0, 0.12);
}
.mat-flat-button.mat-primary .mat-ripple-element, .mat-raised-button.mat-primary .mat-ripple-element, .mat-fab.mat-primary .mat-ripple-element, .mat-mini-fab.mat-primary .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.mat-flat-button.mat-accent .mat-ripple-element, .mat-raised-button.mat-accent .mat-ripple-element, .mat-fab.mat-accent .mat-ripple-element, .mat-mini-fab.mat-accent .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.mat-flat-button.mat-warn .mat-ripple-element, .mat-raised-button.mat-warn .mat-ripple-element, .mat-fab.mat-warn .mat-ripple-element, .mat-mini-fab.mat-warn .mat-ripple-element {
  background-color: rgba(255, 255, 255, 0.1);
}
.mat-stroked-button:not([class*=mat-elevation-z]), .mat-flat-button:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.mat-raised-button:not([class*=mat-elevation-z]) {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.mat-raised-button:not(.mat-button-disabled):active:not([class*=mat-elevation-z]) {
  box-shadow: 0px 5px 5px -3px rgba(0, 0, 0, 0.2), 0px 8px 10px 1px rgba(0, 0, 0, 0.14), 0px 3px 14px 2px rgba(0, 0, 0, 0.12);
}
.mat-raised-button.mat-button-disabled:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
.mat-fab:not([class*=mat-elevation-z]), .mat-mini-fab:not([class*=mat-elevation-z]) {
  box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}
.mat-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]), .mat-mini-fab:not(.mat-button-disabled):active:not([class*=mat-elevation-z]) {
  box-shadow: 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-fab.mat-button-disabled:not([class*=mat-elevation-z]), .mat-mini-fab.mat-button-disabled:not([class*=mat-elevation-z]) {
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0.2), 0px 0px 0px 0px rgba(0, 0, 0, 0.14), 0px 0px 0px 0px rgba(0, 0, 0, 0.12);
}
textarea.cdk-textarea-autosize {
  resize: none;
}
textarea.cdk-textarea-autosize-measuring {
  padding: 2px 0 !important;
  box-sizing: content-box !important;
  height: auto !important;
  overflow: hidden !important;
}
textarea.cdk-textarea-autosize-measuring-firefox {
  padding: 2px 0 !important;
  box-sizing: content-box !important;
  height: 0 !important;
}
@keyframes cdk-text-field-autofill-start { /*!*/ }
@keyframes cdk-text-field-autofill-end { /*!*/ }
.cdk-text-field-autofill-monitored:-webkit-autofill {
  animation: cdk-text-field-autofill-start 0s 1ms;
}
.cdk-text-field-autofill-monitored:not(:-webkit-autofill) {
  animation: cdk-text-field-autofill-end 0s 1ms;
}
.sn-form-content {
  display: block;
}
.sn-form-actions {
  padding: 8px 0;
  display: flex;
  flex-wrap: wrap;
  min-height: 52px;
  align-items: center;
}
.sn-form-actions[align=end] {
  justify-content: flex-end;
}
.sn-form-control {
  display: block;
  margin-bottom: 1rem;
  font-size: 14px;
}
.sn-static-form-label {
  color: rgba(0, 0, 0, 0.54);
  color: var(--fs-theme-text-secondary, rgba(0, 0, 0, 0.54));
  display: block;
  font-size: 0.75rem;
  line-height: 1.2;
}
.sn-form-control-outline {
  position: relative;
  border-radius: 5px;
  padding: 1.094em 0.75em 1em;
  margin-top: 0.25em;
  border: 1px solid;
  border-color: rgba(0, 0, 0, 0.12);
  border-color: var(--fs-theme-divider, rgba(0, 0, 0, 0.12));
}
.sn-form-control-outline .sn-static-control-label {
  position: absolute;
  top: -8px;
  background: #fff;
  padding: 0 6px;
  margin-left: -6px;
}
.sn-form-control-fill {
  border-radius: 4px 4px 0 0;
  padding: 0.75em;
  background-color: rgba(0, 0, 0, 0.04);
}
mat-dialog-container .sn-form-content {
  margin: 0 -24px;
  padding: 0 24px;
  max-height: 65vh;
  overflow: auto;
}
mat-dialog-container .sn-form-actions {
  margin-bottom: -24px;
}
mat-radio-group.mat-radio-group mat-radio-button.mat-radio-button {
  margin: 2px 8px 2px 0;
}
mat-radio-group.mat-radio-group mat-radio-button.mat-radio-button:last-child {
  margin-right: 0;
}
@media (max-width: 575.98px) {
  mat-radio-group.mat-radio-group mat-radio-button.mat-radio-button {
    display: block;
    margin-right: 0;
  }
}
.optInMarketing {
  text-align: left !important;
}
.optInMarketing .privatePolicy {
  margin-left: -24rem;
}
mat-slide-toggle.mat-slide-toggle {
  margin: 2px 0;
}
.mat-slide-toggle:not(.mat-checked) .mat-slide-toggle-bar {
  background-color: rgba(181, 179, 178, 0.5);
}
.mat-slide-toggle:not(.mat-checked) .mat-slide-toggle-thumb {
  background-color: #b5b3b2;
}
.mat-slide-toggle.mat-checked .mat-slide-toggle-bar {
  background-color: #8dd56a;
}
.mat-slide-toggle.mat-checked .mat-slide-toggle-thumb {
  background-color: #f2efed;
}
mat-slide-toggle.mat-slide-toggle .mat-slide-toggle-content,
mat-checkbox.mat-checkbox,
mat-radio-button.mat-radio-button,
mat-form-field.mat-form-field {
  font-size: 14px;
}
mat-checkbox.mat-checkbox label,
mat-radio-button.mat-radio-button label {
  margin-bottom: 0;
}
mat-checkbox.mat-checkbox label .mat-checkbox-label,
mat-radio-button.mat-radio-button label .mat-checkbox-label {
  white-space: normal;
}
formly-field mat-checkbox.mat-checkbox label {
  margin-bottom: 10px;
}
mat-checkbox.mat-checkbox {
  margin-left: 10px;
  margin-right: 10px;
}
mat-form-field.mat-form-field {
  display: block;
}
mat-form-field.mat-form-field .mat-form-field-prefix:not(:empty) {
  padding-right: 8px;
}
mat-form-field.mat-form-field-appearance-fill mat-select.mat-select .mat-select-arrow-wrapper,
mat-form-field.mat-form-field-appearance-outline mat-select.mat-select .mat-select-arrow-wrapper {
  transform: translateY(-25%);
}
.resize .mat-select-arrow-wrapper {
  right: -45px;
}
input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.mat-select-search-inner {
  display: flex !important;
}
.mat-select-search-clear {
  position: relative !important;
  color: #d84315 !important;
}
.sn-settings-page__save-button {
  display: block;
  width: 50%;
  margin: auto;
}
.sn-settings-page__save-button button {
  width: 100%;
}
.mat-slider-thumb-label-text {
  color: black !important;
}
.fs__form-ellipsis-anim span {
  opacity: 0;
  animation: ellipsis-dot 1s infinite;
}
.fs__form-ellipsis-anim span:nth-child(1) {
  animation-delay: 0s;
}
.fs__form-ellipsis-anim span:nth-child(2) {
  animation-delay: 0.1s;
}
.fs__form-ellipsis-anim span:nth-child(3) {
  animation-delay: 0.2s;
}
.mat-step-header.cdk-keyboard-focused, .mat-step-header.cdk-program-focused, .mat-step-header:hover:not([aria-disabled]), .mat-step-header:hover[aria-disabled=false] {
  background-color: rgba(0, 0, 0, 0.04);
}
.mat-step-header:hover[aria-disabled=true] {
  cursor: default;
}
@media (hover: none) {
  .mat-step-header:hover {
    background: none;
  }
}
.mat-step-header .mat-step-label,
.mat-step-header .mat-step-optional {
  color: rgba(0, 0, 0, 0.54);
}
.mat-step-header .mat-step-icon {
  background-color: rgba(0, 0, 0, 0.54);
  color: rgba(255, 255, 255, 0.87);
}
.mat-step-header .mat-step-icon-selected,
.mat-step-header .mat-step-icon-state-done,
.mat-step-header .mat-step-icon-state-edit {
  background-color: #5b5958;
  color: rgba(255, 255, 255, 0.87);
}
.mat-step-header.mat-accent .mat-step-icon {
  color: rgba(255, 255, 255, 0.87);
}
.mat-step-header.mat-accent .mat-step-icon-selected,
.mat-step-header.mat-accent .mat-step-icon-state-done,
.mat-step-header.mat-accent .mat-step-icon-state-edit {
  background-color: #fec62e;
  color: rgba(255, 255, 255, 0.87);
}
.mat-step-header.mat-warn .mat-step-icon {
  color: white;
}
.mat-step-header.mat-warn .mat-step-icon-selected,
.mat-step-header.mat-warn .mat-step-icon-state-done,
.mat-step-header.mat-warn .mat-step-icon-state-edit {
  background-color: #d84315;
  color: white;
}
.mat-step-header .mat-step-icon-state-error {
  background-color: transparent;
  color: #d84315;
}
.mat-step-header .mat-step-label.mat-step-label-active {
  color: rgba(0, 0, 0, 0.87);
}
.mat-step-header .mat-step-label.mat-step-label-error {
  color: #d84315;
}
.mat-stepper-horizontal, .mat-stepper-vertical {
  background-color: white;
}
.mat-stepper-vertical-line::before {
  border-left-color: rgba(0, 0, 0, 0.12);
}
.mat-horizontal-stepper-header::before,
.mat-horizontal-stepper-header::after,
.mat-stepper-horizontal-line {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.sn-searchbar {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  width: 100%;
  border-radius: 8px;
  transition: background-color ease-in-out 300ms;
  background: rgba(0, 0, 0, 0.06);
}
.sn-searchbar--focus {
  background-color: #ffffff;
  background-color: var(--fs-theme-surface, #ffffff);
  box-shadow: 0px 2px 1px -1px rgba(0, 0, 0, 0.2), 0px 1px 1px 0px rgba(0, 0, 0, 0.14), 0px 1px 3px 0px rgba(0, 0, 0, 0.12);
}
.sn-searchbar form {
  width: 100%;
  height: 100%;
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
}
.sn-searchbar input {
  background: transparent;
  border: none;
  padding: 0 8px;
  width: 100%;
  align-self: stretch;
  color: rgba(0, 0, 0, 0.87);
  color: var(--fs-theme-text-primary, rgba(0, 0, 0, 0.87));
}
.sn-searchbar mat-icon-button button {
  width: 40px;
  height: 40px;
  padding: 0;
}
.sn-searchbar mat-icon-button.sn-searchbar__search-button {
  order: -1;
}
.mat-expansion-panel {
  background: white;
  color: rgba(0, 0, 0, 0.87);
}
.mat-expansion-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
}
.mat-action-row {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.mat-expansion-panel .mat-expansion-panel-header.cdk-keyboard-focused:not([aria-disabled=true]), .mat-expansion-panel .mat-expansion-panel-header.cdk-program-focused:not([aria-disabled=true]), .mat-expansion-panel:not(.mat-expanded) .mat-expansion-panel-header:hover:not([aria-disabled=true]) {
  background: rgba(0, 0, 0, 0.04);
}
@media (hover: none) {
  .mat-expansion-panel:not(.mat-expanded):not([aria-disabled=true]) .mat-expansion-panel-header:hover {
    background: white;
  }
}
.mat-expansion-panel-header-title {
  color: rgba(0, 0, 0, 0.87);
}
.mat-expansion-panel-header-description,
.mat-expansion-indicator::after {
  color: rgba(0, 0, 0, 0.54);
}
.mat-expansion-panel-header[aria-disabled=true] {
  color: rgba(0, 0, 0, 0.26);
}
.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-title,
.mat-expansion-panel-header[aria-disabled=true] .mat-expansion-panel-header-description {
  color: inherit;
}
.mat-expansion-panel-header-description {
  display: flex;
  justify-content: flex-end;
}
.gm-ui-hover-effect {
  z-index: 1;
  top: 10px !important;
  right: -6px !important;
  opacity: 1;
  background-color: red !important;
  border-radius: 50% !important;
  width: 16px !important;
  height: 16px !important;
}
.gm-ui-hover-effect span {
  background: black !important;
  width: 12px !important;
  height: 12px !important;
  margin: 2px !important;
}
.gm-style .gm-style-iw-c {
  overflow: visible;
  box-shadow: none !important;
}
.gm-style .gm-style-iw-tc::after {
  background: #1f1d23;
}
.sn-map {
  display: block;
  position: relative;
  overflow: hidden;
}
.sn-map--clickable {
  cursor: pointer;
}
.sn-map .map__control-group > div {
  margin-bottom: 10px;
}
.sn-map .map__control-group {
  position: absolute;
  right: 10px;
  top: 55px;
  z-index: 1;
  border: 1px solid rgba(242, 239, 237, 0.25);
  border-radius: 8px;
  background: rgba(31, 29, 35, 0.8);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25), 0px 2px 4px 15px rgba(0, 0, 0, 0);
}
.sn-map .map__control-group button {
  display: block;
}
.sn-map .map__control-group sn-icon {
  color: white;
}
.sn-map .map__control-group sn-icon[color=danger] {
  color: #d84315;
}
.sn-map .map__control-group sn-icon[color=accent] {
  color: #fec62e;
}
.sn-map .map__hide-controls {
  right: -50px;
  transition: right 0.3s;
}
.sn-map .map__expand-controls {
  right: 10px;
  transition: right 0.3s;
}
.sn-map .slew-controls button:not(:disabled):hover {
  background: #1d1d1c;
}
.sn-map .slew-controls sn-icon {
  color: white;
}
.sn-map .appbar-indicator sn-icon {
  color: #fec62e;
}
.sn-map.light .appbar-indicator sn-icon {
  color: #1d1d1c;
}
.sn-map.satellite .appbar-indicator sn-icon {
  color: #ffffff;
}
.sn-map.satellite .tab-container {
  background: #fec62e;
  border-color: #141217;
}
.sn-map.satellite .tab-container .tools-tab {
  color: #141217;
}
.sn-map__container {
  width: 100%;
  height: 100%;
}
.sn-map__container .gm-style {
  background-color: #1f1d23;
  font-family: "IBM Plex Sans", "Roboto", sans-serif;
}
.sn-map__container .gm-style .gm-style-iw-c {
  background: rgba(0, 0, 0, 0);
  padding-top: 30px;
  box-shadow: none !important;
}
.sn-map__container .gm-style .gm-style-iw-c .gm-style-iw-d {
  overflow: auto !important;
  box-shadow: 0 2px 7px 1px rgba(0, 0, 0, 0.3) !important;
  background: #1f1d23;
}
.sn-map__container .gm-style .gm-style-iw-c .gm-style-iw-d::-webkit-scrollbar-track, .sn-map__container .gm-style .gm-style-iw-c .gm-style-iw-d::-webkit-scrollbar-track-piece {
  background-color: #ffffff;
}
.sn-map__container .gm-style .gm-style-iw-t::after {
  background-color: #1f1d23;
  background: linear-gradient(45deg, white 50%, rgba(255, 255, 255, 0) 51%, rgba(255, 255, 255, 0) 100%);
}
.see-through {
  pointer-events: none;
}
.not-see-through {
  pointer-events: auto;
}
.map__axon-officer-list-dialog,
.map__chat-drawer {
  cursor: move !important;
}
.map__whooster-dialog {
  min-width: 400px;
}
.map__fusus-investigate-dialog,
.map__find-person-dialog,
.map__find-vehicle-dialog,
.map__whooster-dialog {
  opacity: 0.9;
}
.map__fusus-investigate-dialog .mat-dialog-container,
.map__find-person-dialog .mat-dialog-container,
.map__find-vehicle-dialog .mat-dialog-container,
.map__whooster-dialog .mat-dialog-container {
  padding: 1rem;
}
.map__fusus-investigate-dialog-backdrop,
.map__find-person-dialog-backdrop,
.map__find-vehicle-dialog-backdrop,
.map__whooster-dialog-backdrop,
.fs__op-widget-dialog-backdrop {
  pointer-events: none !important;
}
.map__CAD-summary-dialog {
  opacity: 0.9;
}
.fs__op-widget-dialog-backdrop .cdk-overlay-pane {
  position: absolute !important;
}
.fs__op-widget-dialog-panelClass {
  position: absolute !important;
}
.fs__op-widget-dialog-panelClass .mat-dialog-container {
  padding: 0 !important;
}
.fs__investigate-minimized {
  border: 1px solid #ffca28;
  border-radius: 8px;
}
.fs__investigate-minimized .mat-dialog-container {
  overflow: hidden;
  border-radius: 8px;
}
.map__axon-officer-list-dialog {
  opacity: 0.9;
}
.map__axon-officer-list-dialog .mat-dialog-container {
  padding: 1rem;
}
.fs__axon-officer-list-dialog-minimized,
.sn-chat-drawer-minimized,
.sn__whooster-dialog {
  border: 1px solid #ffca28;
  border-radius: 8px;
}
.fs__axon-officer-list-dialog-minimized .mat-dialog-container,
.sn-chat-drawer-minimized .mat-dialog-container,
.sn__whooster-dialog .mat-dialog-container {
  overflow: hidden;
  border-radius: 8px;
}
.fs__map-chat-dialog {
  box-shadow: 0px 0px 4px 4px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(242, 239, 237, 0.25);
  pointer-events: auto !important;
}
.fs__map-chat-dialog .mat-dialog-container {
  padding: 16px;
  overflow: hidden;
}
.map__axon-device-details-popout,
.map__presence-device-details-popout,
.map__feature-details-popout {
  opacity: 1 !important;
}
.map__axon-device-details-popout .mat-dialog-container,
.map__presence-device-details-popout .mat-dialog-container,
.map__feature-details-popout .mat-dialog-container {
  background-color: #1f1d23 !important;
  position: relative;
  padding: 8px;
  resize: both;
  min-width: 400px;
  min-height: 300px;
}
.fs__image_preview {
  position: absolute;
  top: 64px;
  left: 0;
  width: 1000px;
  height: 600px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px;
  border-style: solid;
  border-color: #fff;
  z-index: 100000;
  pointer-events: none;
}
.streetView-camera-dialog {
  opacity: 0.9 !important;
  cursor: move !important;
}
div.icon-label {
  position: absolute;
  font-size: 12px;
  z-index: 1;
  width: 100%;
  text-align: center;
  text-shadow: -1px -1px 0 #000, 0 -1px 0 #000, 1px -1px 0 #000, 1px 0 0 #000, 1px 1px 0 #000, 0 1px 0 #000, -1px 1px 0 #000, -1px 0 0 #000;
}
.map-view__drawing-controls {
  position: absolute;
  bottom: 96px;
  left: calc(50% - 300px);
  opacity: 0.8;
  border-radius: 8px;
  border: 1px solid #fec62e;
  background-color: #ffffff;
}
.map-view__directions-dialog {
  padding: 0.5rem 1rem 1rem;
  min-width: 375px;
  max-width: 375px;
  max-height: 35vh;
  position: absolute;
  top: 13vh;
  left: 5px;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: #141217;
  opacity: 0.8;
  border-radius: 3%;
  border-style: solid;
  border-color: #fec62e;
  border-width: 1px;
}
.activeShape .sn-icon {
  color: #fec62e;
}
.map__color-picker-menu + * .mat-menu-panel {
  padding-right: 0.5rem;
}
.map__color-picker-menu + * .mat-menu-panel .sn-color-picker-control {
  display: flex;
  align-items: center;
}
.map__color-picker-menu + * .mat-menu-panel .mat-slider-thumb-label-text {
  color: black !important;
}
.map__grid-color-picker-menu + * .mat-menu-panel {
  padding: 0.5rem;
  max-width: none !important;
  opacity: 0.9;
}
.map__grid-color-picker-menu + * .mat-menu-panel .sn-color-picker-control {
  display: flex;
  align-items: center;
}
.map__grid-color-picker-menu + * .mat-menu-panel .mat-slider-thumb-label-text {
  color: black !important;
}
.map__grid-color-picker-menu + * .mat-menu-panel .mapGridActions {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.map__grid-color-picker-menu {
  pointer-events: none;
}
.map__icon-picker-menu + * .mat-menu-panel {
  max-height: 400px;
  overflow-y: auto;
  overflow-x: hidden;
}
.fs__global-management-layers + * .mat-menu-panel {
  padding: 0.5rem 1rem;
}
.fs__global-management-layers + * .mat-menu-panel .sn-slide-toggle {
  padding: 0.25rem;
}
.fs__global-management-layers + * .mat-menu-panel .visualLayersContainer {
  max-height: 350px;
  overflow: auto;
}
.fs__global-management-layers + * .mat-menu-panel .flightFilters {
  margin-left: 1rem;
}
.sn-map-blur {
  filter: blur(4px);
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
.sn-map div[title*=axon-recording] {
  animation: pulsate 1.5s ease-in-out infinite;
  border: 1px solid #fff;
  border-radius: 51px;
  box-shadow: inset 0 0 10px rgb(255, 0, 0), inset 0 0 10px rgb(255, 0, 0), inset 0 0 10px rgb(255, 0, 0), 0 0 10px rgb(255, 0, 0), 0 0 10px rgb(255, 0, 0), 0 0 10px rgb(255, 0, 0);
  width: 100px;
  height: 100px;
  position: absolute;
  top: 0;
}
.sn-badge.Icon_CameraExists .sn-badge__content {
  transform: rotate(-90deg);
}
.sn-map .marker-label {
  padding-bottom: 45px;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fs__pano-image-overlay {
  cursor: pointer;
  animation: fade-in 0.3s ease;
  background: #8dd56a;
  border-radius: 50%;
  padding: 0px;
}
.fs__pano-image-overlay .fs__image-overlay-textbox {
  display: flex;
  border-radius: 0 50% 50% 0;
  position: absolute;
  background: #8dd56a;
  top: 0;
  flex-direction: column;
  justify-content: center;
  color: black;
}
.fs__pano-image-overlay:after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 30px;
  border-width: 10px 10px 0;
  border-style: solid;
  border-color: #8dd56a transparent;
  display: block;
  width: 0;
}
.fs__pano-image-overlay img {
  margin: 5px;
  border-radius: 50%;
}
.fs__panorama-marker {
  align-items: center;
  background-color: #8dd56a;
  border-radius: 50%;
  color: #000;
  display: flex;
  font-size: 14px;
  gap: 15px;
  height: 24px;
  justify-content: center;
  padding: 4px;
  position: relative;
  position: relative;
  transition: height 0.3s ease-out, width 0.3s ease-out;
  width: 24px;
}
.fs__panorama-marker::after {
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 9px solid #8dd56a;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  top: 85%;
  transform: translate(-50%, 0);
  transition: all 0.3s ease-out;
  width: 0;
  z-index: 1;
}
.fs__panorama-marker .fs__panorama-icon {
  align-items: center;
  display: flex;
  justify-content: center;
  color: #000;
}
.fs__panorama-marker .fs__panorama-icon svg {
  height: 20px;
  width: auto;
}
.fs__panorama-marker .fs__panorama-image {
  display: none;
  flex-direction: column;
  flex: 1;
}
.fs__panorama-marker .fs__panorama-image img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.fs__panorama-marker .fs__panorama-label {
  display: none;
  justify-content: center;
  align-items: center;
  max-width: 120px;
  position: absolute;
  bottom: -2rem;
  border-radius: 8px;
  background-color: rgba(141, 213, 106, 0.8);
}
.fs__panorama-marker .fs__panorama-label span {
  padding: 0.25rem;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.fs__panorama-marker.highlight {
  background-color: rgba(141, 213, 106, 0.8);
  border-radius: 50%;
  box-shadow: 10px 10px 5px rgba(0, 0, 0, 0.2);
  height: 80px;
  padding: 8px 15px;
  width: 90px;
  height: 90px;
}
.fs__panorama-marker.highlight .fs__panorama-icon {
  display: none;
}
.fs__panorama-marker.highlight::after {
  border-top: 9px solid rgba(141, 213, 106, 0.8);
  top: 95%;
}
.fs__panorama-marker.highlight .fs__panorama-image {
  display: flex;
}
.fs__panorama-marker.highlight .fs__panorama-label {
  display: flex;
}
.fs__panorama-marker.highlight .fs_panorama-icon svg {
  width: 50px;
  height: 50px;
}
.fs__axon-recording-status {
  position: relative;
  display: inline-block;
  border-radius: 100%;
  background-color: rgb(255, 0, 0);
  text-align: center;
  cursor: pointer;
}
.fs__axon-recording-status:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(255, 0, 0);
  border-radius: 100%;
  z-index: -1;
  animation: axonpulse 2s infinite;
  will-change: transform;
}
@keyframes axonpulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
sn-google-map > .sn-map__container > div > .gm-style > div:last-child > div > div {
  display: none;
}
sn-google-map > .sn-map__container > div > .gm-style > div:last-child > div > div:nth-child(2) {
  display: block;
}
.alertBoundaryDown .alertBoundaryContainer {
  top: 75px !important;
  transition: top 0.3s ease-in-out;
}
.fs__axon-marker-tooltip {
  position: absolute;
  top: -35px;
  padding: 0.5rem;
  background-color: rgb(41, 50, 60);
  border-radius: 4px;
  color: rgba(235, 235, 235, 0.87);
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pac-container {
  border-top: none;
  background-color: #ffffff;
  background-color: var(--fs-theme-surface, #ffffff);
}
.pac-container::after {
  display: none;
}
.pac-container .pac-icon {
  margin-right: 8px;
  margin-top: 15px;
}
.pac-container .pac-item {
  font-size: 16px;
  line-height: 3rem;
  border-top-color: rgba(0, 0, 0, 0.12);
  border-top-color: var(--fs-theme-divider, rgba(0, 0, 0, 0.12));
  color: rgba(0, 0, 0, 0.54);
  color: var(--fs-theme-text-secondary, rgba(0, 0, 0, 0.54));
}
.pac-container .pac-item:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.pac-container .pac-matched {
  font-weight: 400;
}
.pac-container .pac-item-query {
  font-weight: 400;
  font-size: 14px;
  padding-right: 4px;
  color: rgba(0, 0, 0, 0.87);
  color: var(--fs-theme-text-primary, rgba(0, 0, 0, 0.87));
}
.mat-menu-panel {
  background: white;
}
.mat-menu-panel:not([class*=mat-elevation-z]) {
  box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}
.mat-menu-item {
  background: transparent;
  color: rgba(0, 0, 0, 0.87);
}
.mat-menu-item[disabled],
.mat-menu-item[disabled] .mat-menu-submenu-icon,
.mat-menu-item[disabled] .mat-icon-no-color {
  color: rgba(0, 0, 0, 0.38);
}
.mat-menu-item .mat-icon-no-color,
.mat-menu-submenu-icon {
  color: rgba(0, 0, 0, 0.54);
}
.mat-menu-item:hover:not([disabled]),
.mat-menu-item.cdk-program-focused:not([disabled]),
.mat-menu-item.cdk-keyboard-focused:not([disabled]),
.mat-menu-item-highlighted:not([disabled]) {
  background: rgba(0, 0, 0, 0.04);
}
.mat-menu-panel .mat-menu-item {
  display: flex;
  align-items: center;
}
.mat-menu-panel .mat-menu-item:not([disabled]):hover {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.87);
  color: var(--fs-theme-text-primary, rgba(0, 0, 0, 0.87));
}
.mat-menu-item .sn-icon {
  color: rgba(0, 0, 0, 0.54);
  color: var(--fs-theme-text-icon, rgba(0, 0, 0, 0.54));
}
.condensedMatMenu .mat-menu-item {
  font-size: 0.775rem;
  height: 24px;
}
.tabManagementMenu .menuResetBtn {
  color: #fec62e;
}
sn-auth.p-md {
  padding: 0 !important;
}
sn-auth.align-items-center {
  align-items: flex-start !important;
}
sn-auth .fr-container {
  max-width: 100% !important;
  height: 100% !important;
}
sn-sign-in.fr-container {
  padding-left: 0;
  padding-right: 0;
}

/*# sourceMappingURL=styles.css.map*/