﻿@charset "UTF-8";
/**
 * site.scss is the main SASS file which will become site.css when compiled. All
 * SASS partials and imports are included into this file, in cascading order,
 * during the compile.
 *
 * In general, all CSS should be kept to 80 characters wide, with notable
 * exceptions including URLs and gradient syntax.
 *
 * Please reference here for top-level CSS guidelines: https://cssguidelin.es/
 *
 * SASS preprocessor notes beginning with a double forward slash notes will not
 * be included in the compiled CSS.
 *
 */
/*############################# 80 CHARACTERS WIDE ###########################*/
@import url("open-iconic/font/css/open-iconic-bootstrap.min.css");
/*
 * Variables
 * 
 * SASS (preprocessor) variables. These are compiled away into CSS at
 * build time.
 *
 */
/* Small devices (landscape phones, 576px and up) */
/* Medium devices (tablets, 768px and up) */
/* Large devices (desktops, 992px and up) */
/* Extra large devices (large desktops, 1200px and up) */
/*
 * Root
 * :root variables are native CSS variables that are not 'compiled away' like
 * SASS variables, allowing them to be manipulated later on in the browser.

 * Most of these pertain to Telerik UI overrides and the WS7 theme engine.
 *
 */
/*
    Accent              --bs-primary
    Color Back          --bs-light
    Color Back Darker   --bs-gray-200
    Color Back Darkest  --bs-gray-400
    Color Back Lighter  --bs-white
    Color Fore          --bs-dark
    Color Fore Lighter  --bs-gray-700
    Color Fore Lightest --bs-secondary
 */
:root {
  --border-accent: var(--size-smallest) var(--bs-primary) solid;
  --border-back: var(--size-smallest) var(--bs-light) solid;
  --border-back-darkest: var(--size-smallest) var(--bs-gray-400) solid;
  --border-fore: var(--size-smallest) var(--bs-dark) solid;
  --border-fore-lighter: var(--size-smallest) var(--bs-gray-700) solid;
  --border-fore-lightest: var(--size-smallest) var(--bs-seconary) solid;
  --border-green: var(--size-smallest) var(--color-green) solid;
  --border-red: var(--size-smallest) var(--color-red) solid;
  --box-shadow-sm-dark: inset 0 0 0 2px var(--color-back-translucent);
  --box-shadow-md-dark: inset 0 0 0 3px var(--color-back-translucent);
  --box-shadow-lg-light: inset 0 0 0 0.25rem var(--color-back-lighter-translucent);
  --box-shadow-back: 0 0 0 calc(var(--font-size-medium) * 0.25) var(--color-back-darker);
  --box-shadow-focus: 0 0 0 0.25rem var(--bs-emphasis-color);
  --box-shadow-focus-inset: inset 0 0 0 0.25rem var(--bs-emphasis-color);
  --box-shadow-accent: 0 0 0 calc(var(--font-size-medium) * 0.25) var(--bs-primary);
  --outline-accent: calc(var(--font-size-medium) * 0.25) solid var(--color-accent-translucent);
  --box-shadow-invalid: 0 0 0 calc(var(--font-size-medium) * 0.25) var(--color-red-semitranslucent);
  --color-accent: #285582;
  --color-accent-translucent: #28558225;
  --color-back: #FAFAFA;
  --color-back-translucent: #00000025;
  --color-back-darker: #EEEEEE;
  --color-back-darkest: #E1E1E1;
  --color-back-lighter: #FFFFFF;
  --color-back-lighter-translucent: #ffffff80;
  --color-fore: #202020;
  --color-fore-lighter: #505050;
  --color-fore-lightest: #606060;
  --color-green: #055F50;
  --color-red: #A02346;
  --color-red-semitranslucent: #A02346E6;
  --font-family: Segoe UI, Helvetica, Arial, sans-serif;
  --font-size-large: 1.25rem;
  --font-size-larger: 2.25rem;
  --font-size-largest: 3.125rem;
  --font-size-medium: 1rem;
  --font-size-small: 0.875rem;
  --font-size-smaller: 0.75rem;
  --font-size-smallest: 0.625rem;
  --height-control: 2.75rem;
  --height-footer: 6.875rem;
  --height-grid: 46.875rem;
  --height-info-bar: 2.1875rem;
  --height-navbar: 4.6875rem;
  --height-title-bar: 2.8125rem;
  --height-action-bar: 3rem;
  --radius-blur: var(--size-smaller);
  --radius-border: var(--size-smaller);
  --size-checkbox: calc(var(--height-control) / 2);
  --size-large: 3.125rem;
  --size-larger: 6.25rem;
  --size-largest: 12.5rem;
  --size-medium: 1.5625rem;
  --size-small: 0.9375rem;
  --size-smaller: 0.3125rem;
  --size-smallest: 0.0625rem;
  --width-selector: 2.1875rem;
  --telerik-drawer-width: 57px;
  --telerik-drawer-width-expanded: 241px;
}

[data-bs-theme=dark] .btn-outline-secondary {
  --bs-btn-color: var(--bs-body-color);
  --bs-btn-border-color: var(--bs-body-color);
}

/**
 * Mixins
 *
 * Mixins are a SASS-specific 'At-Rules' that allows defined styles to be
 * re-used throughout the project. Mixins support several cool features
 * including variable arguments.
 *
 *  For docs see here: https://sass-lang.com/documentation/at-rules/mixin
 *
 */
/**
 * KendoUI
 *
 * Overrides of the Telerik UI for Blazor styles. Be especially cautious editing
 * classes here, the selector structure is designed to replicate
 * Telerik UI's native selectors (as succinctly as possible) to ensure they
 * override Telerik's defaults.
 *
 * The selectors in this file should, in general, mimic the selectors found in
 * Telerik UI's 'all.scss' file.
 *
 */
/*------------------------------------*\
  #K-ANIMATION-CONTAINER
\*------------------------------------*/
/**
 * '.k-animation-container' and '.k-child-animation-container' extended in 
 * components/_lookuplist.scss, components/_notification-tray.scss,
 * components/weighstation.scss, and components/prompt.scss.
 */
/*------------------------------------*\
  #K-BUTTON
\*------------------------------------*/
/**
 * 1. Ensures icon is centered. Revisit if there are issues.
 */
.k-button {
  gap: 0; /* [1] */
}
.k-button-md {
  font-size: 1.16625rem;
  font-weight: bold;
}

/*------------------------------------*\
  #K-BREADCRUMB
\*------------------------------------*/
.k-breadcrumb {
  margin-bottom: 2rem;
}

/*------------------------------------*\
  #K-CARD
\*------------------------------------*/
/**
 * Each k-tilelayout-item is also a k-card, so these contain
 * some top-level styles for those elements.
 * 
 * 1. Kendo defaults to adding '.k-overflow-hidden' to this selector, so
 *    overflow: auto is important to force each tile item body in weighstation
 *    to scroll the content within (which is set to overflow: visible).
 * 
 */
.k-card-body {
  overflow: auto !important; /* [1] */
}
.k-card-header {
  text-align: center;
}

/*------------------------------------*\
  #K-CIRCULARGAUGE
\*------------------------------------*/
.k-circulargauge-label {
  font-weight: bold;
}
.k-circulargauge path {
  stroke-width: var(--size-smaller);
}

/*------------------------------------*\
  #K-DRAWER
\*------------------------------------*/
/**
 * 1. Telerik default transition; width is specified so theme colors do not
 *    transition.
 * 2. Telerik default transition is used here to smooth motion when the drawer
 *    expands/contracts the content.
 * 3. Set to ensure border is visible when drawer is collapsed.
 * 4. If drawer is collapsed.
 * 5. If drawer is expanded. Info bar requires identical sizing as it uses
 *    fixed positioning.
 * 6. Highlight selected item in the drawer. Disabled as it does not accurately
 *    indicate the current page. This is a wishlist TODO.
 */
.k-drawer {
  height: 100%;
  -webkit-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out; /* [1] */
  z-index: 1; /* [3] */
}
.k-drawer-container {
  height: 100%;
}
.k-drawer-mini .k-drawer-wrapper {
  width: calc(2rem + 24px);
}
.k-drawer-wrapper {
  height: 100%;
  -webkit-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out; /* [1] */
}
.k-drawer-content {
  height: 100%;
  max-width: 100%;
  -webkit-transition: max-width 300ms ease-in-out;
  transition: max-width 300ms ease-in-out; /* [2] */
}
.k-drawer-items {
  height: 100%;
}
.k-drawer-items ul {
  height: 100%;
}

@media (min-width: 992px) {
  .k-drawer {
    height: 100% !important;
    position: fixed !important;
  }
  .k-drawer-container {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
  .k-drawer-content {
    max-width: calc(100% - var(--telerik-drawer-width)); /* [4] */
  }
  .k-drawer-expanded .k-drawer-content, .k-drawer-expanded .k-drawer-content .info-bar {
    max-width: calc(100% - var(--telerik-drawer-width-expanded)); /* [5] */
  }
}
.k-level-1 a, .k-level-1 button {
  padding-left: var(--size-small) !important;
}

.k-selected .nav-link {
  /* [6] */
  /*color: var(--color-accent);
  text-decoration: none !important;*/
}

/*------------------------------------*\
  #K-GRID
\*------------------------------------*/
/**
 * '.k-grid' extended in components/_lookuplist.scss
 *
 * 1. Ensure that the grid is never taller than the content, and that it...
 * 2. ...flexes to the maximum --height-grid. Disabled as this is handled by lookup-list.
 * 3. Define header cells here.
 * 4. Telerik doesn't support titles on command column headers so we need some 
 *    adjustements.
 * 5. Alignment for plain header text.
 * 6. Overrides '.k-button' default; buttons in td should be smaller.
 * 7. Overrides for when checkboxes are used in a k-grid cell. Place the
 *    form-check-input inside the <label> in this case.
 */
.k-grid-header .k-header.k-filterable, .k-grid-header:hover .k-header.k-filterable {
  /* [3] */
}
.k-grid-header .k-header.k-filterable[data-text=Edit], .k-grid-header .k-header.k-filterable[data-text=Delete], .k-grid-header:hover .k-header.k-filterable[data-text=Edit], .k-grid-header:hover .k-header.k-filterable[data-text=Delete] {
  /* [4] */
  vertical-align: middle;
  padding-right: var(--font-size-medium);
  text-align: center;
}
.k-grid-header .k-header.k-touch-action-none, .k-grid-header:hover .k-header.k-touch-action-none {
  /* [5] */
  vertical-align: middle;
  text-align: center;
}
.k-grid-header .k-header span, .k-grid-header:hover .k-header span {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.k-grid td, .k-grid .k-table-td {
  text-align: center;
}
.k-grid td button, .k-grid .k-table-td button {
  /* [6] */
  height: unset !important;
  min-height: 3rem;
  min-width: 3rem;
  padding: 0;
}
.k-grid td .form-check-label, .k-grid .k-table-td .form-check-label {
  padding-left: 0;
  position: unset;
  left: auto;
}

/*------------------------------------*\
  #K-LOADER
\*------------------------------------*/
/*/
 * Provides a custom loader and animation
 * 1. Positions the k-grid loader in a lookup list so it is always visible
 *    during scrolling.
 * 2. The following styles replicate the k-loader-container-panel, which is not
      present by default in the k-grid loader.
/*/
.lookup-list .k-grid .k-loader::after {
  content: "Loading...";
  width: 100%;
  height: 100%;
  color: var(--bs-emphasis-color);
  position: relative;
  top: 11px;
}
.k-loader-canvas {
  background-image: url("/images/logo.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-animation: truck-loader 1.5s linear 0s infinite normal forwards;
          animation: truck-loader 1.5s linear 0s infinite normal forwards;
  width: 4rem !important;
  height: 4rem !important;
}
.k-loader-container {
  cursor: wait;
}
.k-loader-container-label.\!k-text-primary {
  color: var(--bs-emphasis-color) !important;
}
.lookup-list .k-grid .k-loader-container-overlay {
  background-color: var(--bs-dark);
}
.k-loader-container-panel {
  background-color: var(--bs-secondary-bg);
}
.k-loader-container-inner {
  overflow: hidden;
}
.lookup-list .k-grid .k-loader-container-inner { /* [1] */
  position: fixed;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  top: 50%;
  /* [2] */
  border-width: 1px;
  border-style: solid;
  border-radius: 0.375rem;
  border-color: #dee2e6;
  background-color: var(--bs-secondary-bg);
  width: 114px;
  height: 146px;
}
[data-bs-theme=dark] .lookup-list .k-grid .k-loader-container-inner {
  border-color: #495057;
}
.k-loader-primary {
  color: transparent;
}

/*------------------------------------*\
  #K-NOTIFICATION
\*------------------------------------*/
/**
 * 1. inline-flex was causing major issues. 10/17/23: Not needed.
 * 2. Default group for mobile, items centered.
 * 3. Deprecated; for wider support.
 * 3. Must define min width on these icons or they dissapear.
 */
.k-notification {
  margin: 0 var(--size-smaller);
}
.k-notification-group {
  /* [2] */
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
  bottom: unset !important;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
  left: unset !important;
  right: unset !important;
  top: 0 !important;
  z-index: 999 !important;
  display: block; /* [1] */
  max-height: 50%;
  overflow: hidden;
}
.k-notification .k-notification-content {
  text-overflow: ellipsis;
  overflow: hidden;
  word-wrap: break-word;
  word-break: break-word; /* [3] */
}
.k-notification .k-svg-icon {
  min-width: 16px; /* [4] */
}

/*------------------------------------*\
  #K-PDFVIEWER
\*------------------------------------*/
.k-pdf-viewer .k-toolbar {
  display: none;
}

/*------------------------------------*\
  #K-SPLITTER
\*------------------------------------*/
.k-splitter {
  border: 0;
}

/*------------------------------------*\
  #K-SVG-ICON
\*------------------------------------*/
/**
 * 1. Needs to be explicitly defined so the button icons in the sidebar drawer
 *    are not squashed by the label in Firefox.
 * 2. Created this to revert the default currentColor fill on SVG icons that
 *    already come with colors. This is necessary after a code fix ensures
 *    that all SvgIcons recieve the k-svg-icon class.
 */
.k-svg-icon {
  width: unset;
  height: unset;
  -ms-flex-negative: 0;
      flex-shrink: 0; /* [1] */
}
.k-svg-icon.svg-icon-preserve-fill > svg { /* [2] */
  fill: revert;
}

/*------------------------------------*\
  #K-TILELAYOUT
\*------------------------------------*/
/**
 * 1. Ensures toolbar does not stretch when no tiles are visible.
 * 2. Ensure all widgets are maximum height.
 * 3. Don't shrink below widgets pane size.
 * 4. Max height of parent, enables scrolling the overflow.
 */
.k-tilelayout {
  background-color: inherit;
  width: 100%; /* [1] */
}
.ws-widgets-pane .k-tilelayout {
  overflow: auto;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content; /* [2] */
  min-height: 100%; /* [3] */
  max-height: 100%; /* [4] */
}

/*------------------------------------*\
  #K-WINDOW
\*------------------------------------*/
.k-window-titlebar-actions:focus-within .k-window-titlebar-action {
  -webkit-box-shadow: var(--box-shadow-focus) !important;
          box-shadow: var(--box-shadow-focus) !important;
}
.k-window-titlebar-action {
  opacity: 1;
}
.k-window-titlebar-action::before {
  opacity: 0 !important;
}
.k-window-titlebar-action::after {
  opacity: 0 !important;
}

/**
 * Keyframes
 *
 * Custom animations for the WS7 UI.
 *
 */
@-webkit-keyframes alert {
  0%, 100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-5px) rotate(6deg);
            transform: translateX(-5px) rotate(6deg);
  }
  30% {
    -webkit-transform: translateX(4px) rotate(-6deg);
            transform: translateX(4px) rotate(-6deg);
  }
  45% {
    -webkit-transform: translateX(-4px) rotate(3.6deg);
            transform: translateX(-4px) rotate(3.6deg);
  }
  60% {
    -webkit-transform: translateX(3px) rotate(-2.4deg);
            transform: translateX(3px) rotate(-2.4deg);
  }
  75% {
    -webkit-transform: translateX(-2px) rotate(1.2deg);
            transform: translateX(-2px) rotate(1.2deg);
  }
}
@keyframes alert {
  0%, 100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-5px) rotate(6deg);
            transform: translateX(-5px) rotate(6deg);
  }
  30% {
    -webkit-transform: translateX(4px) rotate(-6deg);
            transform: translateX(4px) rotate(-6deg);
  }
  45% {
    -webkit-transform: translateX(-4px) rotate(3.6deg);
            transform: translateX(-4px) rotate(3.6deg);
  }
  60% {
    -webkit-transform: translateX(3px) rotate(-2.4deg);
            transform: translateX(3px) rotate(-2.4deg);
  }
  75% {
    -webkit-transform: translateX(-2px) rotate(1.2deg);
            transform: translateX(-2px) rotate(1.2deg);
  }
}
@-webkit-keyframes blinker {
  50% {
    opacity: 0;
  }
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
@-webkit-keyframes bounce-in-right {
  0% {
    -webkit-transform: perspective(500px) translateX(600px) skew(-25deg);
            transform: perspective(500px) translateX(600px) skew(-25deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: perspective(500px) translateX(0) skew(10deg);
            transform: perspective(500px) translateX(0) skew(10deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: perspective(500px) translateX(15px) skew(0deg);
            transform: perspective(500px) translateX(15px) skew(0deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: perspective(500px) translateX(0) skew(0deg);
            transform: perspective(500px) translateX(0) skew(0deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: perspective(500px) translateX(0) skew(0deg);
            transform: perspective(500px) translateX(0) skew(0deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes bounce-in-right {
  0% {
    -webkit-transform: perspective(500px) translateX(600px) skew(-25deg);
            transform: perspective(500px) translateX(600px) skew(-25deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 0;
  }
  38% {
    -webkit-transform: perspective(500px) translateX(0) skew(10deg);
            transform: perspective(500px) translateX(0) skew(10deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
  55% {
    -webkit-transform: perspective(500px) translateX(15px) skew(0deg);
            transform: perspective(500px) translateX(15px) skew(0deg);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  72% {
    -webkit-transform: perspective(500px) translateX(0) skew(0deg);
            transform: perspective(500px) translateX(0) skew(0deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: perspective(500px) translateX(0) skew(0deg);
            transform: perspective(500px) translateX(0) skew(0deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@-webkit-keyframes fade-in {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes ripple {
  to {
    -webkit-transform: scale(4);
            transform: scale(4);
    opacity: 0;
  }
}
@keyframes ripple {
  to {
    -webkit-transform: scale(4);
            transform: scale(4);
    opacity: 0;
  }
}
@-webkit-keyframes slide-in-bck-center {
  0% {
    -webkit-transform: perspective(500px) translateZ(600px);
            transform: perspective(500px) translateZ(600px);
    opacity: 0;
    -webkit-perspective: 500px;
            perspective: 500px;
  }
  100% {
    -webkit-transform: perspective(500px) translateZ(0);
            transform: perspective(500px) translateZ(0);
    opacity: 1;
  }
}
@keyframes slide-in-bck-center {
  0% {
    -webkit-transform: perspective(500px) translateZ(600px);
            transform: perspective(500px) translateZ(600px);
    opacity: 0;
    -webkit-perspective: 500px;
            perspective: 500px;
  }
  100% {
    -webkit-transform: perspective(500px) translateZ(0);
            transform: perspective(500px) translateZ(0);
    opacity: 1;
  }
}
@-webkit-keyframes truck-loader {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: translate(75px, 0) skew(-22deg) scale(0.25);
            transform: translate(75px, 0) skew(-22deg) scale(0.25);
    opacity: 0.5;
  }
  25% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: translate(-20px, 0) skew(15deg);
            transform: translate(-20px, 0) skew(15deg);
    opacity: 1;
  }
  33% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: translate(0, 0) skew(-5deg);
            transform: translate(0, 0) skew(-5deg);
    opacity: 1;
  }
  50% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: translate(-5px, 0) skew(0deg) scale(1);
            transform: translate(-5px, 0) skew(0deg) scale(1);
  }
  53% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: skew(-15deg);
            transform: skew(-15deg);
  }
  85% {
    -webkit-transform-origin: center;
            transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: translate(-100px, 0) skew(-10deg) scale(1.5);
            transform: translate(-100px, 0) skew(-10deg) scale(1.5);
    opacity: 0.5;
  }
}
@keyframes truck-loader {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: translate(75px, 0) skew(-22deg) scale(0.25);
            transform: translate(75px, 0) skew(-22deg) scale(0.25);
    opacity: 0.5;
  }
  25% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: translate(-20px, 0) skew(15deg);
            transform: translate(-20px, 0) skew(15deg);
    opacity: 1;
  }
  33% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: translate(0, 0) skew(-5deg);
            transform: translate(0, 0) skew(-5deg);
    opacity: 1;
  }
  50% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: translate(-5px, 0) skew(0deg) scale(1);
            transform: translate(-5px, 0) skew(0deg) scale(1);
  }
  53% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: skew(-15deg);
            transform: skew(-15deg);
  }
  85% {
    -webkit-transform-origin: center;
            transform-origin: center;
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: translate(-100px, 0) skew(-10deg) scale(1.5);
            transform: translate(-100px, 0) skew(-10deg) scale(1.5);
    opacity: 0.5;
  }
}
@-webkit-keyframes scanline-move {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); /* Start and end position */
  }
  50% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); /* Middle position */
  }
}
@keyframes scanline-move {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0); /* Start and end position */
  }
  50% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%); /* Middle position */
  }
}
/**
 * States
 *
 * Broad styles for CSS pseudo-selectors. Should be avoided when possible.
 *
 */
:active {
  outline: none !important;
}

:focus {
  /*color: var(--color-accent);*/
}

::-moz-selection {
  background-color: var(--bs-primary);
  color: var(--bs-light) !important;
}

::selection {
  background-color: var(--bs-primary);
  color: var(--bs-light) !important;
}

/*
 * Elements
 *
 * Styling for default html elements (tags) such as <a>, <body>, etc.
 *
 * Properly-scoped class selectors are preferred to directly styling html
 * elements, so this file should be small.
 *
 * For example, 'div' selectors in general represent poor selector intent, for example.
 * See https://cssguidelin.es/#selector-intent for reference.
 *
 */
a.disabled {
  pointer-events: none;
  cursor: default;
}

body, html {
  height: 100%;
}

h1 {
  font-weight: bold;
  text-align: center;
}

h1 + h2 {
  margin-top: var(--size-smaller);
}

h3 {
  color: var(--bs-emphasis-color);
}

hr {
  margin: var(--size-small) 0;
}

html {
  /*font-size: var(--zoom-multiplier);*/
  font-size: 100% !important;
}

iframe {
  width: 100%;
}

input {
  caret-color: var(--bs-body-color);
}

li[role=tab] {
  font-weight: initial;
}

p {
  margin-bottom: var(--size-small);
  margin-top: var(--size-small);
}

svg {
  width: 24px;
}

ul.control {
  height: auto !important;
  max-height: unset !important;
}

/*
 * Utilities
 *
 * Custom helper classes, often utilizing :root variables, for consistent
 * spacing, coloration, margins, etc.
 *
 * Bootstrap should be used whenever possible in lieu of crafting new utilities.
 *
 */
.accessible-focus:focus-within {
  -webkit-box-shadow: var(--box-shadow-focus);
          box-shadow: var(--box-shadow-focus);
}

.bg-primary {
  background-color: color(--var-accent);
}

.blinking {
  -webkit-animation: blinker 2s linear infinite;
          animation: blinker 2s linear infinite;
}

.border-top {
  border-top: var(--border-back-darkest) !important;
}

.border-bottom {
  border-bottom: var(--border-back-darkest) !important;
}

.border-left-0 {
  border-left: 0px !important;
}

.border-right-0 {
  border-right: 0px !important;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 75%;
}

.desktop {
  display: none !important;
}

.flex-text-shrink {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}

.font-size-smaller {
  font-size: var(--font-size-smaller);
}

.leaders {
  overflow-x: hidden;
}
.leaders::before {
  content: ". . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ";
  white-space: nowrap;
  float: left;
  width: 0;
}
.leaders span {
  background-color: var(--bs-body-bg);
  padding-right: var(--size-smaller);
}
.leaders span + span {
  padding-left: var(--size-smaller);
}

.margin-bottom-large {
  margin-bottom: var(--size-large);
}

.margin-bottom-medium {
  margin-bottom: var(--size-medium);
}

.margin-bottom-small {
  margin-bottom: var(--size-small);
}

.margin-left-right-medium {
  margin-left: var(--size-medium);
  margin-right: var(--size-medium);
}

.margin-left-small {
  margin-left: var(--size-small);
}

.margin-left-smaller {
  margin-left: var(--size-smaller);
}

.margin-right-small {
  margin-right: var(--size-small);
}

.margin-right-smaller {
  margin-right: var(--size-smaller);
}

.margin-top-bottom-large {
  margin-bottom: var(--size-large);
  margin-top: var(--size-large);
}

.margin-top-medium {
  margin-top: var(--size-medium);
}

.margin-top-auto {
  margin-top: auto;
}

.mw-sm {
  max-width: 540px;
}

.mw-md {
  max-width: 720px;
}

.mw-lg {
  max-width: 960px;
}

.middle {
  position: absolute;
  top: 50%;
}

.mobile {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.modal-container {
  position: fixed;
  z-index: 101;
  width: 100dvw;
  height: 100dvh;
  top: 0;
  left: 0;
  opacity: 1;
  -webkit-transition: opacity 250ms cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 250ms cubic-bezier(0.4, 0, 1, 1);
}

.modal-overlay {
  background-color: #000;
  display: block;
  height: 100vh;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.4, 0, 1, 1);
  transition: opacity 250ms cubic-bezier(0.4, 0, 1, 1);
  width: 100vw;
  z-index: 999;
}
.modal-overlay--windowed {
  z-index: 99;
  width: 100%;
  height: 100%;
}
.modal-overlay--fullscreen {
  z-index: 99;
  height: 100%;
  width: 100%;
  left: 0;
  position: fixed;
}

.modal-photo-container {
  z-index: 100;
  position: fixed;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.no-dropdown.k-combobox .k-select {
  display: none;
}

.no-headers-grid .k-grid-header {
  display: none;
}

.no-horizontal-buffer {
  margin-left: 0;
  margin-right: 0;
  max-width: inherit;
  padding-left: 0;
  padding-right: 0;
}

.no-horizontal-padding {
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom-medium {
  padding-bottom: var(--size-medium);
}

.padding-left-small {
  padding-left: var(--size-small);
}

.right {
  float: right;
}

.rounded-5 {
  border-radius: var(--radius-border) !important;
}

.scanline-animation {
  position: relative;
  overflow: hidden;
}
.scanline-animation::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  -webkit-animation: scanline-move 2s linear infinite;
          animation: scanline-move 2s linear infinite;
  border-top: solid red 2px;
  pointer-events: none;
}

.whitespace-pre-line {
  white-space: pre-line;
}

.wrap-whitespace {
  white-space: pre-wrap;
  overflow-wrap: break-word;
}

.z-index-101 {
  z-index: 101 !important;
}

/*------------------------------------*\
  #WEIGHSTATION
\*------------------------------------*/
/**
 * '.weighstation' maximizes the content area when used within '.content'.
 * It uses a negative margin to expand into padding: small by default, and
 * medium at medium sizes (See base/_breakpoints.scss).
 *
 * 1. Allow this to expand to fill the full viewport.
 * 2. Allow shrinking past content size: https://stackoverflow.com/a/36247448
 * 3. Take full height, keep footer at bottom.
 *
 */
.main-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main-container {
  height: 100%; /* [3] */
  padding-top: var(--height-info-bar);
}

.main--hide-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; /* [1] */
  min-height: 0; /* [2] */
}

/*
 * Accordion
 * 
 * Overrides and customizations for the Bootstrap accordion component.
 *
 */
/**
 * 1. Override bootstrap icon.
 * 2. Below are Open Iconic styles
 */
.accordion-button::after {
  background-image: none !important; /* [1] */
  content: "\e034";
  width: auto;
  height: auto;
  /* [2] */
  position: relative;
  top: 1px;
  display: inline-block;
  speak: none;
  font-family: Icons;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
}
.accordion-button--narrow {
  padding: var(--size-smaller) var(--size-small);
}

.action-bar {
  background-color: var(--bs-body-bg);
  border-top: var(--border-back-darkest);
  -webkit-box-shadow: rgba(0, 0, 0, 0.3411764706) 0px 0px 16px;
          box-shadow: rgba(0, 0, 0, 0.3411764706) 0px 0px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--size-smallest) 0;
  width: 100%;
  z-index: 100;
  border-bottom: var(--border-fore-lighter);
}

/*
 * Alert
 * 
 * Overrides and customizations for the Bootstrap alert component.
 *
 */
.alert-dismissible .btn-copy {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.btn-copy {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='20' width='20'%3E%3Cpath d='M4.375 18.667q-.854 0-1.448-.594t-.594-1.448V5.271h2.042v11.354h9.354v2.042Zm3.542-3.542q-.855 0-1.448-.594-.594-.593-.594-1.448V3.375q0-.854.594-1.448.593-.594 1.448-.594h7.708q.854 0 1.448.594t.594 1.448v9.708q0 .855-.594 1.448-.594.594-1.448.594Zm0-2.042h7.708V3.375H7.917v9.708Zm0 0V3.375v9.708Z'/%3E%3C/svg%3E") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5;
}
.btn-copy:hover {
  color: #000;
  text-decoration: none;
  opacity: 0.75;
}

/*
 * Badge
 * 
 * Overrides and customizations for the Bootstrap badge component.
 *
 */
.badge-info-circle {
  background-color: var(--bs-primary);
  color: var(--bs-light);
  cursor: pointer;
  border-radius: 50%;
}
td[role=gridcell] .badge-info-circle {
  border: 0;
  height: 3rem;
  padding: 0;
  width: 3rem;
  margin: auto;
}
td[role=gridcell]:focus .badge-info-circle {
  background-color: var(--bs-light);
  color: var(--bs-primary);
}
.badge-info-circle span {
  width: 100%;
  height: 100%;
  top: 0;
  line-height: 3rem;
}

.badge-notification {
  /*top: 23%;*/
  left: 42px;
  line-height: 1;
  position: absolute;
  -webkit-transform: translate(-50%, -50%) !important;
      -ms-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
  border: 2px solid var(--bs-body-bg);
}

.badge-notification--dot {
  border-radius: 50% !important;
  background-color: var(--bs-danger);
  border: 2px solid var(--bs-body-bg);
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  padding: 0.5rem;
  top: 10px;
  left: 35px;
  z-index: 1;
  position: absolute;
}

/*
 * Blazor
 *
 * Top-level ID definitions for some Blazor elements.
 *
 */
#app {
  min-height: 100%;
  height: 100%;
  position: relative;
}

#blazor-error-ui {
  background: var(--color-back);
  border-color: var(--color-red);
  bottom: 0;
  -webkit-box-shadow: 0 -0.1rem 0.2rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 -0.1rem 0.2rem rgba(0, 0, 0, 0.2);
  color: var(--color-red);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

#end-date-picker {
  width: 105%;
}

#pageStatusMessage {
  white-space: pre-wrap;
}

#Search::-webkit-search-cancel-button {
  color: var(--color-red);
}

#searchButtonMobile {
  display: none !important;
}

/*
 * Breadcrumb
 * 
 * Overrides and customizations for the Bootstrap breadcrumb component.
 *
 */
.breadcrumb {
  padding: var(--size-small);
}

/*
 * Buttons
 *
 * Styles for all buttons across the site, including overrides to Bootstrap's
 * default button styles.
 *
 */
.btn-outline-secondary:hover > svg, .btn-secondary:hover > svg {
  fill: var(--bs-btn-hover-color);
}
.btn-outline-secondary > svg, .btn-secondary > svg {
  fill: var(--bs-btn-color);
  padding: 0.875rem;
  width: 100%;
  height: 100%;
}
.input-group > .btn-outline-secondary, .input-group > .btn-secondary {
  padding: 0;
  width: var(--height-control);
}

.btn {
  /*border-radius: var(--radius-border);
  font-size: var(--font-medium);
  padding: 0 var(--size-small);*/
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: var(--height-control) !important;
  --bs-btn-font-size: 1.16625rem;
  font-weight: bold;
}

.btn-close {
  height: 36px;
  width: 36px;
}

span.ripple {
  position: absolute; /* The absolute position we mentioned earlier */
  border-radius: 50%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-animation: ripple 600ms linear;
          animation: ripple 600ms linear;
  background-color: rgba(255, 255, 255, 0.7);
}

.ripple {
  background-position: center;
  -webkit-transition: background 0.8s;
  transition: background 0.8s;
}

.ripple:hover {
  background: var(--bs-body-bg) radial-gradient(circle, transparent 1%, var(--bs-body-bg) 1%) center/15000%;
}

.ripple:active {
  background-color: var(--bs-emphasis-color);
  background-size: 100%;
  -webkit-transition: background 0s;
  transition: background 0s;
}

/* Standalone button with SVG icon. '.btn' is not needed, only'.btn-icon'*/
.btn-icon {
  background-color: transparent;
  padding: var(--size-smaller);
  border: none;
  height: var(--height-control);
  width: var(--height-control);
  -webkit-transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  color: var(--bs-emphasis-color);
  /*&-dark {*/
  /* Must be used with '.btn-icon' */
  /*> svg {
          fill: var(--bs-secondary);
      }

      &:hover > svg {
          fill: var(--bs-dark);
          stroke: var(--bs-dark);
      }

      &:focus > svg {
          stroke: var(--bs-dark);
      }

      &:hover:focus > svg {
          stroke: var(--bs-dark);
      }
  }*/
}
.btn-icon > svg {
  fill: var(--bs-body-color);
  stroke: var(--bs-body-color);
  overflow: visible;
  -webkit-transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  width: auto;
}
.btn-icon:hover > svg {
  fill: var(--bs-emphasis-color);
  stroke: var(--bs-emphasis-color);
}
.btn-icon:hover > .ws-animate-gear {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.btn-icon:hover > .ws-animate-alert {
  -webkit-animation: alert 800ms both;
          animation: alert 800ms both;
}
.btn-icon:focus > svg {
  stroke: var(--bs-primary);
}
.btn-icon:hover:focus > svg {
  stroke: var(--bs-body-color);
}
.btn-icon-accent {
  /* Must be used with '.btn-icon' */
}
.btn-icon-accent > svg {
  fill: var(--bs-white);
  stroke: var(--bs-white);
}
.btn-icon-accent:hover, .btn-icon-accent:focus, .btn-icon-accent:active {
  background-color: var(--bs-body-bg);
  border-top-left-radius: var(--radius-border);
}
.btn-icon-accent:hover > svg, .btn-icon-accent:focus > svg, .btn-icon-accent:active > svg {
  fill: var(--bs-primary);
  stroke: var(--bs-primary);
}

.btn.center {
  margin-left: auto !important;
  margin-right: auto !important;
  width: 50%;
}

.button-panel {
  display: grid;
  border-top: var(--border-back-darkest);
  gap: var(--size-small);
  margin-top: var(--size-medium);
  padding: var(--size-medium) 0;
}
.button-panel--full .btn {
  font-size: var(--font-size-large);
  height: 3.75rem !important;
}
.button-panel--bottom {
  margin-top: auto;
}

.table td {
  border-top: var(--border-back-darkest) !important;
}

/**
 * Camera
 *
 * Styling for the camera component.
 *
 */
/*------------------------------------*\
  #CAMERA
\*------------------------------------*/
/**
 * 1. Positions buttons with respect to the action bar.
 *
 * '.camera-gallery' and '.camera__controls' are extended in base/_breakpoints.scss
 * '.camera' and related styles is extended in components/_prompt.scss
 * 2. These work with the new streamlined prompts to ensure the gallery is
 *    scrollable insde the camera component when the fullscreen prompt forces the
 *    camera to 100dvh. There is no need to change .prompt, as it is not
 *    scrollable even with overflow and height set due to the inner camera height.
 *    None of this logic is needed for hold file photos as the solo prompt handles
 *    scrolling. This overflow is necessary for mobile fullscreen. On desktop in
 *    camera-gallery-mode the camera height is not fixed and so the prompt scrolls.
 * 3. Ensures consistent presentation of thumbnails regardless of image aspect ratio.
 *    This does not apply to camera__image which is not used for thumbnails.
 */
.camera {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  margin: -0.9375rem;
}
.camera__button {
  position: absolute;
  z-index: 1;
  margin: var(--size-smaller);
}
.camera__button--function {
  right: 0;
}
.camera__button--function + .camera__button-function {
  top: 49px;
}
.camera__button--close {
  left: 0;
}
.camera__button-round {
  height: 64px;
  width: 64px;
  border: none;
  border-radius: 50%;
}
.camera__controls {
  position: fixed;
  bottom: calc(48px + var(--size-medium));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 0 var(--size-medium);
  z-index: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--size-medium);
}
.camera__controls-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.camera__controls-zoom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: var(--size-small);
}
.camera__controls-zoom > input {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.camera__controls-zoom > button {
  width: 44px;
  height: 44px;
}
.camera__delete {
  position: absolute;
  top: 0;
  right: 0;
  margin: var(--size-smaller);
  z-index: 99;
}
.camera__error-message {
  position: absolute;
  top: 50%;
  border-radius: var(--bs-border-radius);
  background-color: var(--bs-body-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: var(--size-small);
  max-width: 350px;
}
.camera__error-text {
  padding-bottom: var(--size-small);
}
.camera__error-button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-item-align: center;
      align-self: center;
}
.camera-gallery-mode {
  padding: var(--size-small);
  padding-bottom: 6rem;
  padding-top: var(--size-small);
  overflow: auto; /* [2] */
  height: 100%; /* [2] */
  width: 100%;
}
.camera-gallery__delete, .camera-gallery__download {
  position: absolute;
  top: 0;
  right: calc(var(--bs-gutter-x) / 2);
  margin: var(--size-smaller);
}
.camera-gallery__image {
  cursor: pointer;
}
.camera-gallery__image, .camera__image-icon {
  aspect-ratio: 1; /* [3] */
  -o-object-fit: cover;
     object-fit: cover; /* [3] */
}
.camera-gallery__image, .camera__image, .camera__image-icon {
  max-width: 100%;
  height: auto;
  width: 100%;
}
.camera-gallery__label {
  position: absolute;
  z-index: 1;
  top: 0;
  margin: var(--size-smaller);
  background-color: var(--bs-body-bg);
  border-radius: var(--size-smaller);
}
.camera-gallery__label p {
  margin: var(--size-smaller);
}
.camera-gallery__checkbox {
  position: absolute;
  /* TODO Gallery should move to its own component and this item
     needs specific positioning.
  */
}
.camera__image {
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: auto 0;
}
.camera__image-icon {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  min-width: 100%;
  opacity: 0.4;
}
.camera__image-icon-button {
  position: relative;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.camera__image-icon-button > span {
  display: block;
  position: relative;
  font-size: 1.5rem;
}
.camera__image-icon-button.pop {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.camera__label {
  color: var(--bs-text-emphasis);
  background-color: var(--bs-body-bg);
  position: absolute;
  padding: var(--size-smaller);
  border-radius: var(--radius-border);
  text-align: center;
  font-size: var(--font-size-smaller);
  font-weight: bold;
  opacity: 1;
  -webkit-transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.camera__label--top {
  top: var(--size-smaller);
}
.camera__label--bottom {
  bottom: var(--size-smaller);
}
.camera__shutter {
  margin: 0 auto;
}
.camera__shutter-flash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  -webkit-box-shadow: inset 0 0 50px rgba(255, 255, 255, 0);
          box-shadow: inset 0 0 50px rgba(255, 255, 255, 0);
  -webkit-transition: -webkit-box-shadow 0.5s ease;
  transition: -webkit-box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease;
  transition: box-shadow 0.5s ease, -webkit-box-shadow 0.5s ease;
  pointer-events: none;
}
.camera__shutter-flash.flash {
  -webkit-box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.8);
          box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.8);
}
.camera__video {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* position: relative required for camera__label--bottom */
  position: relative;
}
.camera__video > video {
  width: 100%;
  height: 100%;
  margin: auto 0;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
  background-color: var(--bs-body-color);
  border-radius: var(--size-smaller);
}

/*
 * Card
 *
 * Overrides for the Bootstrap card component, and custom cards.
 *
 */
.card {
  /*min-height: 20.5rem;*/
  overflow: hidden;
}
.card-body {
  /*        border-radius: 0;
          max-width: 35%;
          min-width: 35%;
          padding: 5%;
          width: 35%;*/
}
.card-body, .card-header {
  /*        display: table;
          float: left;
          height: 100%;
          max-height: 100%;
          min-height: 100%;*/
}
.card-deck {
  -webkit-box-orient: unset;
  -webkit-box-direction: unset;
      -ms-flex-direction: unset;
          flex-direction: unset;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  margin: var(--size-medium) var(--size-larger) !important;
}
.card-title {
  font-weight: bold;
}

/*------------------------------------*\
  #CARD--BUTTON
\*------------------------------------*/
.card--button {
  text-decoration: none;
  -webkit-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out;
  margin: var(--size-small) !important;
}
.card--button:hover {
  --bs-card-bg: var(--bs-secondary-bg);
}
.card--button > .card-img-top {
  width: 100%;
  padding: 10%;
  height: 6em;
}
.card--button > .card-img-top > svg {
  width: 100%;
  height: 100%;
  fill: revert;
}
.card--button > .card-body {
  height: 5em;
  text-align: center;
}

/*------------------------------------*\
  #CARD--LOOKUP
\*------------------------------------*/
/**
 * '.card--lookup' is a modifier class for the default Bootstrap '.card'
 * when it is used in a lookup list.
 *
 * 1.  Don't pad the outer card. Contents should be padded. This way, the 
 *     button and clickable areas are larger.
 * 2.  Required if .btn class is used.
 * 3.  Added 1px top padding so button does not show with hires display scaling.
 * 4.  Adds a white inset box shadow to fade contents that overflow outside the card.
 * 5.  Pass pointer events through so this doesn't block events like button clicks 
 *     or interacting with the card.
 * 6.  Added min-height so cards with no details still have a full height
 *     details element and therefore a full height button.
 *     Can not set 100% min-height or height on details element
 *     itselft as it breaks the animation in tall cards like
 *     the hold file and stutters in shorter cards, respectively.
 * 7.  Added for flexing details.
 * 8.  Override input-group .btn in lookuplist textbox.
 * 9.  Added display: block and reduced line-height to keep the key at 26px
 *     Cannot set height static as it breaks auto wrapping key text.
 * 10. Removed padding from iconarea as it introduced issues.
 * 11. Override input-group .btn in lookuplist textbox.
 * 12. For the time being, these styles should match the defined StatusStyle
 *     definitions in SetItemStatus in LookupListItem.razor.cs.
 */
.card--lookup {
  border-radius: 0.5rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin: 0 0 0 !important;
  min-height: unset;
  padding: 0px !important; /* [1] */
  width: 100%;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 90px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch; /* [2] */
  overflow: hidden;
}
.card--lookup__expand-button:focus-visible {
  -webkit-box-shadow: var(--box-shadow-focus);
          box-shadow: var(--box-shadow-focus);
}
.card--lookup[aria-expanded=false] .card--lookup__content:has(:focus-visible)::after {
  content: "";
  -webkit-box-shadow: var(--box-shadow-focus-inset);
          box-shadow: var(--box-shadow-focus-inset);
  height: 100%;
  width: 100%;
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  pointer-events: none;
}
.card--lookup[aria-expanded=true] .card--lookup__primary-button:focus-visible {
  -webkit-box-shadow: var(--box-shadow-focus-inset);
          box-shadow: var(--box-shadow-focus-inset);
}
.card--lookup:hover {
  --bs-card-bg: var(--bs-secondary-bg);
}
.card--lookup__action-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1px var(--size-small) var(--size-small) var(--size-small); /* [3] */
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
}
.card--lookup__action-buttons .k-button {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: calc(50% - 0.5rem);
      flex-basis: calc(50% - 0.5rem);
}
.btn-group .card--lookup {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.card--lookup__checkbox {
  border: var(--border-fore-lighter);
  border-radius: var(--size-large);
  fill: var(--bs-dark) !important;
  height: var(--size-large);
  padding: var(--font-size-smallest);
  width: var(--size-large);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--bs-body-bg);
  margin: var(--size-small) 0 var(--size-small) var(--size-small);
}
:not(label) > .card--lookup__checkbox svg {
  fill: revert;
}
.card--lookup__checkbox:focus-visible {
  outline: none;
}
.card--lookup__container {
  width: 100%;
  margin: 0 0 var(--size-small) !important;
  height: auto;
}
.card--lookup__content {
  height: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.card--lookup__content::after { /* [4] */
  -webkit-box-shadow: inset 0 -24px 11px -16px var(--bs-body-bg);
          box-shadow: inset 0 -24px 11px -16px var(--bs-body-bg);
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  opacity: 75%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none; /* [5] */
}
.bg-success-subtle .card--lookup__content::after { /* [12] */
  -webkit-box-shadow: inset 0 -24px 11px -16px var(--bs-success-bg-subtle);
          box-shadow: inset 0 -24px 11px -16px var(--bs-success-bg-subtle);
}
.bg-danger-subtle .card--lookup__content::after { /* [12] */
  -webkit-box-shadow: inset 0 -24px 11px -16px var(--bs-danger-bg-subtle);
          box-shadow: inset 0 -24px 11px -16px var(--bs-danger-bg-subtle);
}
.card--lookup__details {
  display: block;
  padding: var(--size-small);
  text-align: left;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: unset !important;
  width: 100%;
  position: relative;
}
.card--lookup__details:active {
  border-color: transparent !important;
}
.card--lookup__details ul {
  margin-bottom: 0;
  padding: 0;
  min-height: 2.125rem; /* [6] */
}
.card--lookup__details ul > li {
  font-style: italic;
  list-style-type: none;
  padding-right: var(--size-small); /* [7] */
  margin: var(--size-smaller) var(--size-smaller) var(--size-smaller) 0;
  border-radius: var(--radius-border);
  word-break: break-word;
}
.card--lookup__expand-button {
  position: absolute !important; /* [8] */
  top: 4px;
  right: 4px;
  height: var(--height-control);
  width: var(--height-control);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1 !important; /* [8] */
}
.card--lookup__expand-button:after {
  height: var(--height-control);
  width: var(--height-control);
  content: "▼";
  -webkit-transition: -webkit-transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  -ms-flex-item-align: center;
      align-self: center;
  line-height: var(--height-control);
}
.card--lookup__expand-button:not(.collapsed)::after {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.card--lookup__key {
  color: var(--bs-emphasis-color);
  font-size: var(--font-size-large);
  font-weight: bold;
  line-height: 0.9; /* [9] */
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 1.5rem 0.5rem 0;
  display: block;
  overflow-wrap: anywhere;
}
.card-menu .card--lookup__key {
  padding-left: var(--size-small);
}
.card--lookup__iconarea {
  /* [10] */
}
.card--lookup__icon {
  height: var(--size-large);
  padding: var(--font-size-smallest);
  width: var(--size-large);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: var(--size-small) 0 var(--size-small) var(--size-small);
}
.card--lookup__image {
  margin: var(--font-size-smallest);
  height: 64px;
  width: 64px;
  border: none;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  padding: 0;
}
.card--lookup__image > img {
  width: 100%;
  height: 100%;
}
.card--lookup__input-number {
  margin: var(--size-small) 0 var(--size-small) var(--size-small);
}
.card--lookup__input-number input {
  width: var(--height-control);
  height: var(--height-control);
  margin-top: auto !important;
  margin-bottom: auto !important;
  border-radius: var(--radius-border);
}
.card--lookup__input-number span {
  line-height: 1.9;
  max-width: 55px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 0;
}
.card--lookup__primary-button {
  width: 100%;
  height: 100%;
  position: absolute !important;
  top: 0;
  left: 0;
  background-color: transparent;
  border: 0;
  z-index: initial !important; /* [11] */
}
.card--lookup > svg {
  border: var(--border-fore-lighter);
  border-radius: var(--size-large);
  fill: var(--bs-dark) !important;
  height: var(--size-large);
  padding: var(--font-size-smallest);
  width: var(--size-large);
}
.card-menu .card--lookup {
  border: none;
  border-radius: 0 0 0.5rem 0.5rem;
}

/*------------------------------------*\
  #CARD--RECORD
\*------------------------------------*/
.card--record {
  display: inline !important;
  /*height: 7.5rem;*/
  height: 4.6875rem;
  /*max-width: 30rem;*/
  max-width: 18.75rem;
  /*min-height: 7.5rem;*/
  min-height: 4.6875rem;
  /*min-width: 30rem;*/
  min-width: 18.75rem;
  /*width: 30rem;*/
  width: 18.75rem;
  margin: var(--size-small) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.card--record:hover img, .card--record:hover svg {
  opacity: 1 !important;
  padding: 5.5%;
}
.card--record > .card-body {
  /*max-width: 8rem !important;*/
  max-width: 5rem !important;
  /*min-width: 8rem !important;*/
  min-width: 5rem !important;
  padding: 5%;
  /*width: 8rem !important;*/
  width: 5rem !important;
}
.card--record > .card-body, .card--record .card-header {
  display: table;
  float: left;
  height: 100%;
  max-height: 100%;
  min-height: 100%;
}
.card--record > .card-header {
  border-left: var(--border-fore-lighter);
  /*max-width: calc(100% - 8rem) !important;*/
  max-width: calc(100% - 5rem) !important;
  /*min-width: calc(100% - 8rem) !important;*/
  min-width: calc(100% - 5rem) !important;
  padding: var(--size-smaller) var(--size-small);
  text-align: left;
  /*width: calc(100% - 8rem) !important;*/
  width: calc(100% - 5rem) !important;
  /* TODO: Refactor the below, it is strongly against best practices */
}
.card--record > .card-header > div {
  display: table-cell;
  /*max-width: 17.6rem;*/
  max-width: 11rem;
  vertical-align: middle;
}
.card--record > .card-header > div > span {
  display: block;
  font-size: var(--font-size-medium);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card--record img, .card--record svg {
  border-radius: 0;
}

.card--receipt {
  margin-top: 1rem;
}
.card--receipt .card-header {
  color: var(--bs-emphasis-color);
  background-color: var(--bs-dark-bg-subtle);
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  border: 0;
}
.card--receipt .card-body {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}
.card--receipt span:first-of-type {
  font-weight: bold;
}
.card--receipt table {
  border: 0;
  border-radius: 0;
  margin: 0;
}
.card--receipt tr {
  text-align: left;
  border-left: 0 !important;
  border-right: 0 !important;
}
.card--receipt th {
  background-color: transparent !important;
  color: var(--bs-emphasis-color) !important;
  border: 0 !important;
}
.card--receipt td {
  text-align: left;
  border-right: 0 !important;
}
.card--receipt tbody tr:nth-last-of-type(2) td:nth-last-of-type(2) {
  text-align: left;
  font-weight: bold;
}
.card--receipt tbody tr:last-of-type td:nth-last-of-type(-n+2) {
  text-align: left;
  background-color: var(--bs-light-bg-subtle);
  color: var(--bs-emphasis-color);
  font-weight: bold;
}
.card--receipt tr:last-of-type td {
  border-top: 0 !important;
}

.card--receipt__item + .card--receipt__fee > td {
  border-top: var(--border-back-darkest) !important;
}
.card--receipt__fee td {
  border-top: 0 !important;
}
.card--receipt__fee td:nth-last-of-type(2) {
  font-weight: bold;
}

/*
 * Components
 * 
 * !!! This file is temporary until components are broken out and organized !!!
 *
 * For weighstation specific custom components, see _weighstation.scss.
 *
 */
/* Please keep CSS classes AND the styles within them in alphabetical order!!! */
/* Styles outside of media queries (mobile first): extra small devices (i.e. 
   portrait phones, less than 576px). */
.cardconnect-iframe-ach {
  height: 5rem;
  border-radius: var(--radius-border);
}

.cardconnect-iframe-creditcard {
  height: 18.5rem;
  border-radius: var(--radius-border);
  margin: 0 -1rem;
  width: calc(100% + 2rem);
}

.content {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*padding: var(--size-small) !important;*/
}

.divider > span {
  border-top: var(--border-back-darkest);
  display: block !important;
  height: var(--size-smallest) !important;
  margin: var(--size-small) 0;
  padding: 0 !important;
}

/* Added from main, needs to be reviewed */
.field-validation-message {
  color: var(--bs-danger);
  display: block;
  margin-bottom: var(--size-smaller);
  word-break: break-word;
  font-size: var(--font-size-smaller);
  width: 100%;
}

.field-validation-message > svg {
  stroke: var(--bs-danger);
  height: var(--size-small);
}

.form-inline {
  margin-top: var(--size-medium);
}

.form-inline .control {
  display: inline-block;
  vertical-align: middle;
}

.gutters {
  margin-left: auto;
  margin-right: auto;
  min-width: calc(100% - var(--size-small) - var(--size-small));
  max-width: calc(5 * var(--size-largest));
}

input.hide-numeric-spinner::-webkit-outer-spin-button,
input.hide-numeric-spinner::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number].hide-numeric-spinner {
  -moz-appearance: textfield;
}

.k-tabstrip.k-tabstrip-notabs .k-tabstrip-item {
  display: none !important;
}

.large.logo {
  max-height: calc(1.5 * var(--size-larger)) !important;
  margin: var(--size-medium) auto;
  text-align: center;
  width: 100%;
}

.list-group-item-compact {
  padding: 0.5em 1em 0;
}

.loader-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  display: flex;
}

.loader-container > .loader-container-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.logo {
  background-repeat: no-repeat;
  max-height: var(--height-control);
  padding: calc(1.5 * var(--size-smaller));
}

.mobile .nav-search {
  margin-bottom: var(--size-small);
  margin-top: var(--size-small);
}

.oi {
  font-family: Icons !important;
  /*top: .2rem;*/
}

.oi-check {
  border: var(--border-back-darkest);
  border-radius: var(--radius-border);
  border-width: calc(2 * var(--size-smallest));
}

.oi-check::before {
  height: 2rem;
  width: 2rem;
}

.oi-x {
  padding: 0 9px;
}

.oi-x::before {
  left: 0.01rem;
  position: relative;
  top: -0.156rem;
}

.overlay-dark {
  position: absolute; /* Sit on top of the page content */
  display: block; /* Hidden by default */
  width: 100%; /* Full width (cover the whole page) */
  height: 100%; /* Full height (cover the whole page) */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Black background with opacity */
  /*z-index: 2;*/ /* Specify a stack order in case you're using a different order for other elements */
  cursor: pointer; /* Add a pointer on hover */
}

.payment-complete-header {
  text-align: center !important;
}

.payment-complete-header svg {
  height: 15rem;
  stroke: initial;
  width: 15rem;
}

.ps-image {
  max-height: 10rem;
  max-width: 15rem;
}

.record .detail {
  font-size: var(--font-size-smaller);
}

.report-grid {
  height: 90%;
}

.optional:after {
  content: "(Optional)";
  color: var(--bs-body-color);
}

.optional--start-margin:after {
  margin-left: 0.25rem;
}

.right-icon {
  margin-left: var(--size-medium);
}

.right-warning-icon {
  margin-left: var(--size-medium);
}

.step-progress-linear {
  display: none;
  visibility: hidden;
}

.step-progress-radial {
  text-align: center;
  visibility: visible;
}

.k-tabstrip.tabstrip-wizard > .k-tabstrip-items-wrapper {
  display: none !important;
}
.k-tabstrip.tabstrip-wizard > .k-tabstrip-content {
  border-width: 1px !important;
  border-radius: 0.25rem;
}

.wasm-loader {
  position: absolute;
  left: calc(50% - 3.5rem);
  top: calc(50% - 4.5rem);
  width: 7rem;
  height: 9rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 0.25rem;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--bs-secondary-bg);
}

.wasm-loader__image {
  -webkit-transform: scalex(-1);
      -ms-transform: scalex(-1);
          transform: scalex(-1);
  -webkit-animation: truck-loader 1.5s linear 0s infinite normal forwards;
          animation: truck-loader 1.5s linear 0s infinite normal forwards;
  width: 4rem !important;
  height: 4rem !important;
}

.wasm-loader__text {
  padding-top: 0.7rem;
  color: var(--bs-emphasis-color);
}

/*
 * Container
 * 
 * Overrides and customizations for the Bootstrap container component.
 *
 */
.container--homepage {
  padding: var(--size-medium) var(--size-large);
}

.container--compact {
  max-width: 992px;
}

.container--box {
  border: var(--border-back-darkest);
  border-radius: var(--radius-border);
  margin-bottom: var(--size-medium);
  padding: var(--size-small);
}

.criteriatreeview ul {
  list-style-type: none;
  padding-left: 1rem;
}

ul.criteriatreeview-rootgroup {
  margin: 0;
  padding: 0;
}

.criteriatreeview-caret {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: var(--height-control);
  height: var(--height-control);
}
.criteriatreeview-caret::before {
  position: relative;
  left: 15px;
  content: "▼";
  -webkit-transition: -webkit-transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  line-height: var(--height-control);
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  display: inline-block;
  color: var(--bs-body-color);
}

.criteriatreeview-caretdown::before {
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}

.criteriatreeview-nestedgroup {
  display: none;
}

.criteriatreeview-active {
  display: block;
}

.criteriatreeview-toolbar {
  /*    border-color: var(--color-back-darkest);
  color: var(--color-back-darkest);
  border-radius: var(--radius-border);
  border-style: solid;
  border-width: var(--size-smallest);
  padding: var(--size-small) !important;*/
  padding: 0.5rem 0;
  position: relative;
}
.criteriatreeview-toolbar .k-toolbar {
  overflow: visible;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.criteriatreeview-toolbar .k-toolbar::before {
  background-color: #dee2e6;
  content: "";
  position: absolute;
  width: 1rem;
  height: 1px;
  top: 50%;
  left: -0.5rem;
}
.criteriatreeview-toolbar .k-toolbar .k-toolbar-item {
  max-width: 100%;
  gap: 0.5rem;
  border-radius: 50%;
}

.criteriatreeview-item {
  position: relative;
  padding-left: 1rem;
}
.criteriatreeview-item::before {
  background-color: #dee2e6;
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  top: -0.5rem;
  left: 0;
}
.criteriatreeview-item:last-child::before {
  width: 0;
}
.criteriatreeview-item:last-child > .criteriatreeview-toolbar::after {
  background-color: #dee2e6;
  content: "";
  position: absolute;
  width: 1px;
  top: -8px;
  bottom: 50%;
  left: -1rem;
}
.criteriatreeview-item:last-child > .criteriatreeview-toolbar::before {
  background-color: #dee2e6;
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  top: 50%;
  left: -8px;
}

.criteriatreeview-rootgroup > .criteriatreeview-item {
  padding: 0;
}
.criteriatreeview-rootgroup > .criteriatreeview-item::before, .criteriatreeview-rootgroup > .criteriatreeview-item > .criteriatreeview-toolbar > .k-toolbar::before, .criteriatreeview-rootgroup > .criteriatreeview-item > .criteriatreeview-toolbar::after {
  background-color: transparent;
}

.criteriatreeviewinput-valuelist > li {
  display: inline-block;
}
.criteriatreeviewinput-valuelist > li > .badge {
  display: inline-block !important;
}

/*.criteriatreeview-group__expression {
    padding-left: 23px;
}
*/
.dialog-primary .k-window-titlebar {
  background-color: var(--bs-primary);
  color: var(--bs-light);
  font-size: 1.16625rem;
  font-weight: bold;
}

/*
 * Footer
 *
 * Styles pertaining to layout of the footer element.
 *
 */
footer {
  background-color: var(--bs-gray-700);
  margin-top: auto;
  /*bottom: 0;*/
  /*position: absolute;*/
  /*margin-top: calc(-1 * var(--height-footer));*/
}

.footer__content {
  height: var(--height-footer);
}

.footer__content a {
  color: var(--bs-light);
}

.footer__content a:focus, .footer__content a:hover {
  color: var(--bs-gray-400) !important;
}

/*
 * Form
 *
 * Overrides and customizations for the Bootstrap form component(s).
 *
 */
/*------------------------------------*\
  #FORM
\*------------------------------------*/
/**
 * 1. Adds padding to all column-based forms to provide some
 *    separation from the control below.
 */
form .col-12 label {
  padding-bottom: 0.25rem; /* [1] */
}

.form-readonly-icon {
  top: -2px;
}

/*------------------------------------*\
  #FORM-CHECK
\*------------------------------------*/
/**
 * 1. Formatting overrides to the Bootstrap checkbox style
 *    These make the defaults more accessible and enable clicking
 *    anywhere on the checkbox line to activate the control.
 * 2. Min height to allow Kendo inputs to grow bigger.
 * 3. For login page where everything is centered.
 */
.form-check { /* [1] */
  min-height: var(--height-control); /* [2] */
  position: relative;
  border-radius: var(--radius-border);
}
.form-check-input {
  cursor: pointer;
  height: var(--size-checkbox);
  /*margin-top: calc(var(--height-control)/4);*/
  width: var(--size-checkbox);
}
.form-check-label {
  cursor: pointer;
  line-height: var(--height-control);
  padding-left: calc(var(--size-checkbox) + var(--size-small));
  width: 100%;
  position: absolute;
  left: 0;
}
.form-check-label[for=Input_RememberMe] {
  text-align: left; /* [3] */
}

/*------------------------------------*\
  #FORM-CONTROL
\*------------------------------------*/
/**
 * 1. Min height to allow Kendo inputs to grow bigger.
 */
.form-control {
  min-height: var(--height-control); /* [1] */
}

.form-control--list {
  list-style: none;
  padding: var(--size-small);
  height: auto;
  max-height: unset;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.form-control--list > li {
  margin: var(--size-smaller);
}

/*------------------------------------*\
  #FORM-GROUP
\*------------------------------------*/
.form-group {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: var(--size-medium);
}
.form-group__content {
  background-color: var(--bs-tertiary-bg);
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
  padding: 1rem;
  margin-top: var(--size-smaller);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--size-small);
}
.form-group__header {
  font-weight: 500;
  line-height: 1.2;
  color: var(--bs-emphasis-color);
  font-size: var(--font-size-large);
  padding: 0 1rem var(--size-smaller) 1rem;
  margin-bottom: 0;
}

/*------------------------------------*\
  #FORM-SELECT
\*------------------------------------*/
/**
 * 1. Min height to allow Kendo inputs to grow bigger.
 * 2. Standalong custom class for smaller inputs. Should NOT be used in
 *    conjunction with '.form-control'.
 */
.form-select {
  min-height: var(--height-control); /* [1] */
}

.form-select-sm { /* [2] */
  border: 0 !important;
  /*border-bottom: 2px solid var(--bs-gray-700) !important;*/
  border-radius: 0 !important;
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  font-size: var(--font-size-smaller);
  /*letter-spacing: .15em;*/
  min-height: auto;
  padding: 0.25em;
}
.form-select-sm:focus, .form-select-sm:active {
  outline: 0;
  border: 0 !important;
  /*border-bottom: 2px solid var(--bs-primary) !important;*/
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-select-sm ~ label {
  font-size: var(--font-size-smaller);
}

/*------------------------------------*\
  #FORM-SINGLE-LINE-INPUT
\*------------------------------------*/
/**
 * 1. form-single-line-input was created for checkboxes and other
 *    cases where an input and its label should be placed on the
 *    same line.
 * 2. Changed from subsequent-sibling (~) to next-sibling combinator (+)
 *    so the styles are only applied to inputs that immediately follow
 *    another input of this type.
 */
.form-single-line-input { /* [1] */ }
.form-single-line-input__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.form-single-line-input__container:has(+ .form-single-line-input__container) { /* [2] */
  border-bottom: 1px solid var(--bs-border-color);
  padding-bottom: var(--size-small);
}
.form-single-line-input__label {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  cursor: pointer;
  padding-right: 0.5rem;
}

/*------------------------------------*\
  #INPUT-GROUP
\*------------------------------------*/
/**
 * 1. Ensures the input group buttons in a lookup list have
 *    correctly sized icons.
 */
.input-group > .btn { /* [1] */
  padding: 0;
  width: var(--height-control);
}

/*------------------------------------*\
  #VALIDATION
\*------------------------------------*/
/**
 * 1. Add a border to the default jquery-validation-unobtrusive input class.
 *    jQuery validate is a utility of ASP.NET Core MVC.
 *    Also add a border to Blazor validated forms that set '.invalid'.
 * 2. Important to support Kendo UI overrides.
 * 3. Copied from Bootstrap to add validation icons to asp invalid forms,
 *    as long as they are not the Accent Color input.
 * 4. Bootstrap tooltip overrides.
 * 5. Bootstrap override so they touch the bottom of the form.
 * 6. Align the tooltip right (looks better on mobile),
 *    and add appropriate padding via Bootstrap's gutter variable.
 * 7. Display the Bootstrap tooltip based on jquery-validation-unobtrusive
 *    field styling, a utility of ASP.NET Core MVC.
 * 8. Display the Bootstrap tooltip based on Blazor validation, which sets
 *    the form to '.invalid' if validation fails.
 * 9. Bootstrap provides it's own utility class for these styles but
 *    in the interest of moving away from Bootstrap I have mirrored them
 *    here for future evaluation and possible removal of Bootstrap.
 * TODO: .input-validation-error is deprecated. Must be evaluated and removed.
 */
.input-validation {
  padding-top: var(--size-smaller);
  font-size: var(--font-size-small);
}
.input-validation--danger {
  color: var(--bs-danger-text-emphasis); /* [9] */
}
.input-validation--warning {
  color: var(--bs-warning-text-emphasis); /* [9] */
}
.input-validation--info {
  color: var(--bs-warning-text-emphasis); /* [9] */
}

.form-error {
  color: var(--bs-danger-text-emphasis);
  padding-top: var(--size-smaller);
  font-size: var(--font-size-small);
}

.input-validation-error, .invalid { /* [1] */
  border: var(--border-red) !important; /* [2] */
}
.input-validation-error:not([type=color]), .invalid:not([type=color]) {
  /* [3] */
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23A02346'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.invalid-tooltip { /* [4] */
  background-color: var(--color-red-semitranslucent);
  font-size: var(--font-size-smaller);
  border-radius: calc(var(--font-size-medium) * 0.25);
  margin-top: 0; /* [5] */
  right: calc(var(--bs-gutter-x) * 0.5); /* [6] */
}
.invalid-tooltip.field-validation-error {
  display: block; /* [7] */
}
.invalid-tooltip a {
  color: var(--bs-light);
}
.invalid + .invalid-tooltip {
  display: block; /* [7] */
}

/*
 * Hero
 *
 * Styles for center-aligned messages used primarily in the Identity/Account
 * areas.
 *
 */
.hero-message {
  padding: var(--size-medium);
  text-align: center;
  overflow: hidden;
}
.hero-message.hero-message--flair img {
  -webkit-animation: bounce-in-right 1.1s both;
          animation: bounce-in-right 1.1s both;
}
.hero-message.hero-message--flair h1, .hero-message.hero-message--flair span {
  -webkit-animation: fade-in 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
          animation: fade-in 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/*
 * Info bar
 *
 * Styles pertaining to the info bar containing the current site,
 * lane, and user name.
 *
 */
/*------------------------------------*\
  #INFO-BAR
\*------------------------------------*/
/**
 * 1. Must match the k-drawer-content sizing as the fixed position
 *    info bar is sized relative to the viewport, but the sidebar
 *    uses a responsive fixed width. Extended in _kendoui.scss.
 */
.info-bar {
  background-color: var(--bs-primary);
  color: var(--bs-white);
  border-bottom: var(--border-fore);
  font-size: 1.16625rem;
  font-weight: bold;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
  max-width: 100%;
  -webkit-transition: max-width 300ms ease-in-out;
  transition: max-width 300ms ease-in-out;
}
@media (min-width: 992px) {
  .info-bar {
    max-width: calc(100% - var(--telerik-drawer-width)); /* [1] */
  }
}
.info-bar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-wrap-mode: nowrap;
  height: var(--height-info-bar);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info-bar-item:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.info-bar-item:first-child, .info-bar-item-child, .info-bar-item:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 0px;
          flex: 1 0 0;
}
.info-bar-item:last-child {
  text-align: end;
}
.info-bar-item-child, .info-bar-item:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.info-bar-item-spacer {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50px;
          flex: 0 1 50px;
}
@media (min-width: 992px) {
  .info-bar-item-spacer {
    -ms-flex-preferred-size: 0px;
        flex-basis: 0px;
  }
}

.feedback-bar {
  background-color: yellow;
  outline: solid black 1px;
  height: var(--height-control);
}
.feedback-bar a {
  color: black;
}

.keycomponent-label {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
}

.keycomponent-value {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
}

.keycomponent-break {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  height: 0;
}

/**
 * Landing
 *
 * Styles for the login page, which is a unique layout outside our main layout.
 * 
 * 
 */
/*------------------------------------*\
  #LANDING
\*------------------------------------*/
/**
 * 1. A prompt-container--fullscreen may be applied to a Telerik
 *    animation container to function as a pseudo-fullscreen. This is currently
 *    used in the camera component, but may be built upon as necessary.
 *    This is currently only applied via JavaScript.
 */
.landing-subheading {
  font-size: var(--font-size-large);
  text-align: center;
}

.landing-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.landing-text {
  white-space: pre-wrap;
  overflow-wrap: break-word;
  text-align: center;
}
@media (min-width: 992px) {
  .landing-text {
    text-align: left;
  }
}

.details-list {
  margin-bottom: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 1.1rem;
}
.details-list > li {
  list-style-type: none;
  padding-right: var(--size-small);
  margin: var(--size-smaller) var(--size-smaller) var(--size-smaller) 0;
  border-radius: var(--radius-border);
  word-break: break-word;
}

/*
 * List Group
 *
 * Overrides and customizations for the Bootstrap list group component.
 *
 */
/*------------------------------------*\
  #ACTION-LIST
\*------------------------------------*/
/**
 * Action list is a list group to display current data and perform actions on entries.
 *
 * 1. Extended in _breakpoints.scss.
 */
.action-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.action-list-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.action-list-data__group {
  text-align: left;
}
.action-list-data__item {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  white-space: normal;
  word-wrap: break-word;
  word-break: break-word;
}
.action-list-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  -ms-flex-item-align: center;
      align-self: center;
}

/*
 * Lookuplist
 *
 * Styles pertaining to Lookup Lists, which are a modification of
 * the Telerik UI Grid.
 *
 * Lookup List
 *
 */
/*------------------------------------*\
  #LOOKUP-LIST
\*------------------------------------*/
/**
 * 1. No scrolling at this level, the entire lookup list will scroll.
 *    We use overflow: visible to show card focus box-shadow.
 * 2. Kendo override.
 * 3. Show LookupList Textbox dropdown content outside the tabstrip box.
 */
.lookup-list {
  border-width: 0;
  border-radius: 0;
}
.lookup-list .k-grid-aria-root, .lookup-list .k-grid-container, .lookup-list .k-grid-content {
  overflow: visible; /* [1] */
}
.lookup-list tr, .lookup-list tr:focus, .lookup-list tr:hover {
  background-color: transparent !important; /* [2] */
}
.lookup-list--grid .k-grid-aria-root, .lookup-list .k-grid-container, .lookup-list .k-grid-content {
  overflow: auto !important;
}
.lookup-list--grid tr .btn {
  height: var(--size-large) !important;
}
.lookup-list--standalone {
  max-height: var(--height-grid) !important;
  border-width: 1px;
  margin-bottom: 1rem;
}
.lookup-list--standalone .k-grid-aria-root, .lookup-list--standalone .k-grid-container {
  overflow: hidden;
}
.lookup-list--standalone .k-grid-content {
  padding: var(--size-small);
  overflow: auto;
}
.lookup-list--standalone .k-tabstrip-content {
  overflow: visible; /* [3] */
}

.lookup-list-button-container {
  position: relative;
}

.mobile-menu {
  background-color: var(--bs-body-bg);
  border-color: var(--bs-gray-400);
  border-radius: var(--radius-border) var(--radius-border) 0 0;
  padding: var(--size-medium);
}
.mobile-menu__container {
  bottom: 0;
  display: block;
  margin: 0;
  max-height: 100vh;
  max-width: 100vw;
  min-height: var(--size-largest);
  position: fixed;
  z-index: 999;
  overflow: auto;
}

.menu-item {
  margin-left: var(--size-smaller);
  text-align: center;
}

/*
 * Multi steps
 * 
 * Styles pertaining to the multi-step custom components.
 * 
 * Styles appear to be primarily linked to the obsolete-looking
 * StepProgress.razor file, so if that file is removed these styles
 * may also be deleted.
 *
 */
.multi-steps {
  background-color: transparent;
  margin: var(--size-small) auto;
  padding: 0;
  text-align: center;
  width: 90%;
}

.multi-steps li {
  display: inline-block;
  float: none;
  position: relative;
}

.multi-steps li > * {
  color: var(--bs-secondary);
  display: inline-block;
  font-size: var(--font-size-small);
  padding-bottom: var(--size-medium);
  position: relative;
}

.multi-steps li::after {
  background: var(--bs-secondary);
  bottom: var(--size-smaller);
  content: "";
  display: inline-block;
  height: var(--size-smaller);
  left: 50%;
  margin: 0;
  position: absolute;
  width: 100%;
}

.multi-steps li > *::before {
  background-color: var(--bs-secondary);
  border-radius: 50%;
  bottom: 0;
  content: "";
  height: var(--size-small);
  left: 50%;
  position: absolute;
  right: auto;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: var(--size-small);
  z-index: 1;
}

.multi-steps li.visited::after {
  background-color: var(--bs-primary) !important;
}

.multi-steps li.current > *::before {
  background-color: var(--bs-primary) !important;
}

.multi-steps li.visited > *::before {
  background-color: var(--bs-primary) !important;
}

.multi-steps li:last-of-type {
  margin-right: 0;
}

.multi-steps li:last-of-type::after {
  display: none;
}

/*
 * Navbar
 *
 * Overrides and customizations for the Bootstrap navigation component(s).
 * The modifiers sidebar and mobile-menu are specifically designed
 * to support robust navigation within edit form pages.
 *
 */
/*------------------------------------*\
  #NAVBAR
\*------------------------------------*/
/**
 * 1. Ensure that the nav-links are clipped and the sidebar does not scroll on desktop
 *    if the main sidebar is expanded.
 *
 * '.navbar__sidebar' is extended in base/_breakpoints.scss
 */
.navbar--sidebar {
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
}
.navbar--sidebar:first-child {
  max-width: 100%; /* [1] */
}
.navbar--sidebar .nav-item {
  border-bottom: var(--border-back-darkest);
  border-bottom-width: calc(2 * var(--size-smallest));
}
.navbar--sidebar .nav-item[aria-selected=true] {
  border-bottom-color: var(--bs-primary);
  border-bottom-width: var(--size-smaller);
}
.navbar--sidebar .nav-link {
  padding: 0 var(--size-small);
  line-height: var(--height-control);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navbar--sidebar .nav-link.active {
  background-color: var(--bs-primary);
  color: var(--bs-white);
  font-weight: bold;
}
.navbar--mobile-menu .nav-link.active {
  background-color: var(--bs-primary);
  color: var(--bs-white);
  font-weight: bold;
}
.navbar--mobile-menu .nav-link {
  padding: 0 var(--size-small);
  line-height: var(--height-control);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navbar--mobile-menu .nav-item {
  border-bottom-color: var(--bs-border-color);
  border-bottom-style: solid;
  border-bottom-width: var(--size-smallest);
}
.navbar--mobile-menu .nav-item[aria-selected=true] {
  border-bottom-color: var(--bs-primary);
}

/*
 * Notification tray
 *
 * Styles pertaining to the notification tray and related custom components.
 *
 */
/*------------------------------------*\
  #NOTIFICATION-TRAY
\*------------------------------------*/
.notification-tray__container {
  top: 35px;
  right: 0;
  height: calc(100dvh - var(--height-title-bar) - var(--height-control) + 8px);
  width: 372px;
  position: fixed;
}
.notification-tray__container .k-child-animation-container {
  height: 100%;
}
.notification-tray__list {
  height: calc(100% - var(--height-control) - 2rem);
  overflow: auto;
}
.notification-tray__list .alert {
  margin: 0;
  text-align: left;
}
.notification-tray__wrap {
  background-color: var(--bs-body-bg);
  border: var(--border-back-darkest);
  border-radius: var(--radius-border) !important;
  height: 100%;
}

/*------------------------------------*\
  #NOTIFICATION-GROUP
\*------------------------------------*/
.notification-group-header {
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  max-height: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.notification-group-header__text {
  color: var(--bs-body-color);
  padding-top: 0.5rem;
}
.notification-group-header.expanded {
  max-height: 89px;
  margin-bottom: var(--size-small);
}

.notification-group, .notification-item {
  padding: var(--size-small);
  margin-bottom: var(--size-small);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.notification-group__title, .notification-group__alert-time, .notification-item__title, .notification-item__alert-time {
  color: var(--bs-emphasis-color);
}
.notification-group__alert-time, .notification-item__alert-time {
  font-size: var(--font-size-small);
}
.notification-group__buttons, .notification-item__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  opacity: 1;
  -webkit-transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.notification-group__buttons button, .notification-item__buttons button {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.notification-group__content, .notification-item__content {
  opacity: 1;
  -webkit-transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.notification-group {
  -webkit-transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1;
  display: grid;
  padding: 0;
}
.notification-group__content {
  grid-area: 1/1/2/2;
  margin: var(--size-small);
}
.notification-group.expanded {
  border: 0;
}
.notification-group.expanded .notification-group__content {
  opacity: 0;
}

.notification-item {
  overflow: hidden;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.notification-item__message {
  height: 50px;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: var(--size-small);
}

.notification-group-list {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  position: relative;
  grid-area: 1/1/2/2;
}
.notification-group-list.expanded {
  max-height: 9999px;
  opacity: 1;
}

/**
 * Popup
 *
 * The popup system styles Telerik Animation Containers used to display
 * floating UI elements (modals, prompts, dropdowns) over existing content.
 *
 * STRUCTURE:
 * - `.popup-container`: Typically applied as the Telerik Animation Container
 *   ParentClass. This handles positioning and layout.
 * - `.popup-*`: Typically applied as the Telerik Animation Container Class.
 *   These are specific to the kind of popup being shown (e.g. fullscreen menu,
 *   photo gallery, dropdown, etc).
 *
 * MODIFIERS:
 * - The `.popup-container` may use a modifier class such as
 *   `.popup-container--fullscreen`. This controls layout behavior of the outer
 *   container.
 * - The inner content should use a *matching* popup class, such as
 *   `.popup-fullscreen`, for consistent appearance and layout. These are not BEM
 *   modifiers of a single class but distinct utility-style popup types.
 * 
 * Current use cases include:
 *
 * - PhotoDisplay: Uses the --photo-display modifier. Specific to the camera
 *   gallery.
 * - PageNavigation: Uses the --fullscreen modifier for the mobile menu popup.
 * - ReceiptPrompt (TODO): Modal-overlay currently broken.
 * - SpecialFeesList: Powers the SpecialFeeEdit popup.
 * - LookupListButton: Uses the --dropdown modifier and prompt-dropdown class.
 * - LookupListTextBox: Uses the --dropdown modifier and prompt-dropdown class.
 *
 */
/*------------------------------------*\
  #POPUP
\*------------------------------------*/
/**
 * 1. A standard popup involves an animation container that will display content
 *    only partially covering the background, as opposed to a full control.
 * 2. Attribute of --fullscreen are applied at the large breakpoint
 *    at which point the display changes from fullscreen mobile to windowed
 *    preview modal on desktop.
 * 3. Ensure the photo popup gets relevant clicks.
 * 4. Moved position: fixed from popup-container to popup-container--fullscreen
 *    to resolve issue with prompt popup positioning in WeighStation.
 *    These popups should not be fixed to the viewport, but rather
 *    to the prompt container.
 * 5. Set in case the animation container does not have a height set. Must be 100%
 *    for fullscreen prompts to support inner scrolling.
 * 6. This is necessary to prevent the prompt container from capturing the click 
 *    event on the modal overlay.
 * 7. Reset some .prompt defaults as our default case requires more styles than
 *    the modified classes.
 * 8. If height is 100%, then .popup expands to 100% of the container. This keeps
 *    .popup from expanding taller than the container while also centering vertically.
 * 9. Fix for margin from input-group Bootstrap component.
 */
.popup-container {
  top: 0;
  left: 0;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}
.input-group .popup-container {
  margin-left: 0 !important; /* [9] */
}
.popup-container > .k-child-animation-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: var(--size-small);
  height: 100%;
}
.popup-container--dropdown, .popup-container--fullscreen {
  position: fixed; /* [4] */
  height: 100%; /* [5] */
}
.popup-container--dropdown > .k-child-animation-container, .popup-container--fullscreen > .k-child-animation-container {
  padding: 0;
}
@media (min-width: 992px) {
  .popup-container--dropdown {
    top: var(--height-control);
    position: absolute;
    height: 300px !important;
    max-width: none;
  }
}
.popup-container--photo-display {
  pointer-events: none; /* [6] */
}
.popup-container--photo-display > .k-child-animation-container {
  padding: 0;
}
@media (min-width: 992px) {
  .popup-container--photo-display > .k-child-animation-container {
    padding: var(--size-small);
  }
}

.popup, .popup-dropdown, .popup-fullscreen {
  background-color: var(--bs-body-bg);
  padding: var(--size-small);
  overflow: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
}

.popup { /* [1] */
  border-radius: var(--radius-border);
  border: 1px solid var(--bs-border-color);
  max-height: -webkit-fit-content;
  max-height: -moz-fit-content;
  max-height: fit-content; /* [8] */
  max-width: 100%;
}

.popup-dropdown, .popup-fullscreen {
  height: 100%;
  width: 100%;
}

@media (min-width: 992px) {
  .popup-dropdown {
    min-height: unset;
    border-radius: var(--radius-border);
    border: 1px solid var(--bs-border-color);
  }
}

.popup-photo-display {
  pointer-events: auto; /* [3] */
}
.popup-photo-display .btn-secondary {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  margin: var(--size-smaller);
}
@media (min-width: 992px) {
  .popup-photo-display { /* [2] */
    background-color: var(--bs-body-bg);
    padding: var(--size-small);
    border-radius: var(--radius-border);
    border: 1px solid var(--bs-border-color);
    margin: var(--size-small);
  }
  .popup-photo-display .btn-secondary {
    position: relative;
    margin-left: auto;
  }
}
.popup-photo-display .camera__image {
  max-height: 100dvh;
  width: auto;
}

.progress {
  border-radius: 0;
  height: 6px;
}
.progress-bar {
  border-radius: 0 3px 3px 0;
}

/**
 * Prompt
 *
 * Prompt is used to style a Telerik Animation Container within the WeighStation
 * transaction prompt system. It is intended to provide minimal styling and
 * scroll support to the prompt Animation Container while allowing
 * arbitrary content to be displayed.
 * 
 *                          |  Prompt  |  Popup  |
 * Can cover content?       |   Yes    |   No    |
 * Has border styling?      |   No     |   Yes*  | *By default, overridable
 * Within WeighStation?     |   Yes    |   Yes   |
 * Outside WeighStation?    |   No     |   Yes   |
 * Fullscreen on mobile?    |   Yes*   |   Yes** | *Optional, only for camera currently, **By default
 * Fullscreen on desktop?   |   No     |   Yes*  | *Typically contained on desktop
 * 
 * 
 */
/*------------------------------------*\
  #PROMPT
\*------------------------------------*/
/**
 * 1. A prompt-container--fullscreen may be applied to a Telerik
 *    animation container to function as a pseudo-fullscreen. This is currently
 *    used in the camera component, but may be built upon as necessary.
 *    This is currently only applied via JavaScript.
 * 2. Extended in breakpoints.scss
 * 3. Encountered an issue with the fullscreen camera where the
 *    k-child-animation-container expanded vertically by 1 padding width,
 *    allowing a slight overflow scroll below the camera. This disappeared
 *    on its own after reloading the branch so this will stay min-height for now. 
 * 4. Workaround for higher z-index on k-pager.
 */
.prompt-container--fullscreen { /* [1] */
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
}
.prompt-container--fullscreen .camera {
  width: 100dvw;
  height: 100dvh;
}
.prompt-container--fullscreen .camera__button {
  margin: var(--size-medium);
}
.prompt-container--fullscreen .camera__video {
  background-color: black;
}
.prompt-container--fullscreen .camera__controls {
  bottom: var(--size-medium);
}
.prompt-container--fullscreen .camera__label--top {
  top: var(--size-medium);
}
.prompt-container--fullscreen .camera__label--bottom { /* [2] */
  bottom: calc(4 * var(--size-medium));
}
.prompt-container > .k-child-animation-container {
  height: 100%; /* [3] */
}

.prompt {
  padding: var(--size-small);
  background-color: var(--bs-body-bg);
  overflow: auto;
}
.prompt__has-floating-button {
  padding-bottom: 90px;
}
.prompt__has-floating-button + button {
  position: absolute;
  bottom: 0;
  width: calc(100% - 3 * var(--size-small));
  height: 3.75rem !important;
  margin-bottom: var(--size-medium);
  left: var(--size-small);
  z-index: 2; /* [4] */
}

/*
 * Page Navigation
 *
 * Custom intra-page navigation component.
 *
 */
/*------------------------------------*\
  #PAGE-NAVIGATION
\*------------------------------------*/
/**
 * 1. 
 * '.page-navigation__button' is extended in base/_breakpoints.scss
 */
.page-navigation__header {
  background-color: var(--bs-secondary-bg-subtle);
  color: var(--bs-emphasis-color);
  margin-bottom: var(--size-medium);
}
.page-navigation__heading-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-navigation__heading-container > :first-child, .page-navigation__heading-container > :last-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}
.page-navigation__back-button {
  margin-left: var(--size-small);
}
.page-navigation__heading {
  padding: var(--size-small) 0;
  margin: 0;
}
.page-navigation__button-container {
  padding: 0 var(--size-small) var(--size-small) var(--size-small);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--size-small);
}
.page-navigation__button-menu {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.page-navigation__button-menu::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

/*
 * Signin
 *
 * Styles pertaining to the sign-in custom component.
 *
 */
.form-signin {
  width: 100%;
  max-width: 480px;
  padding: var(--size-medium);
  margin: auto;
  text-align: center;
}
.form-signin .button-panel {
  display: grid;
}
.form-signin .checkbox {
  /*font-weight: 400;*/
}
.form-signin .form-floating:focus-within {
  z-index: 2;
}
.form-signin #account input[type=email] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form-signin #account input[type=password] {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

/**
 * Special Fee
 *
 * Styles for the special fee UI
 *
 */
/*------------------------------------*\
  #SPECIAL-FEE
\*------------------------------------*/
.special-fee__highlighted {
  background-color: var(--bs-primary-bg-subtle);
  -webkit-box-shadow: var(--box-shadow-accent);
          box-shadow: var(--box-shadow-accent);
}
.special-fee__note-icon {
  position: absolute;
  right: 14px;
  bottom: 14px;
}
.special-fee__quantity {
  width: 3.25rem !important;
}

.special-fee-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: var(--size-small);
}
.special-fee-edit__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.special-fee-edit__buttons button {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.special-fee-edit__group {
  background-color: var(--bs-tertiary-bg);
  padding: var(--size-small);
}
.special-fee-edit__note > button {
  margin: 0 auto;
}
.special-fee-edit__note-text {
  overflow: hidden;
}
.special-fee-edit__note-text textarea {
  height: 132px;
}
.special-fee-edit__numeric-spinner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: var(--size-small);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: var(--size-small);
}
.special-fee-edit__numeric-spinner > button {
  width: var(--height-control);
}
.special-fee-edit__numeric-spinner > input {
  max-width: 75px;
  text-align: center;
}
.special-fee-edit__numeric-spinner > input[type=number] {
  -moz-appearance: textfield;
}
.special-fee-edit__numeric-spinner > input[type=number]::-webkit-inner-spin-button,
.special-fee-edit__numeric-spinner > input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.sidebar {
  height: 100%;
}
.sidebar__container {
  height: 100%;
}
.sidebar__link {
  width: 100%;
  height: 50px;
  border: 0;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: var(--font-size-large);
  padding: 1px 6px !important;
}
.sidebar__link:focus, .sidebar__link:active:focus {
  -webkit-box-shadow: var(--box-shadow-focus-inset);
          box-shadow: var(--box-shadow-focus-inset);
}
.sidebar__link svg {
  padding: 8px;
  height: 100%;
  width: auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  stroke: none;
  overflow: visible;
}
.sidebar__link__label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 10px;
}
.sidebar__link .k-svg-icon:last-child {
  margin-left: auto;
}
.sidebar__search {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: none;
  transition: none;
  display: grid;
  padding: 0;
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
[expanded] .sidebar__search {
  max-height: 999px;
  /*transition: max-height 450ms cubic-bezier(0.4, 0.0, 0.2, 1);*/
  -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: var(--size-smaller);
}

.toggle-drawer {
  position: fixed;
  height: 40px;
  width: 40px;
  padding: 0px;
  border: 0;
  background-color: transparent;
  color: var(--bs-light);
  cursor: pointer;
  margin-left: 16px;
  z-index: 100;
}
.toggle-drawer svg {
  stroke: none;
}

/**
 * Signature component
 *
 * Styles for the signature component
 *
 */
/*------------------------------------*\
  #SIGNATURE
\*------------------------------------*/
.signature-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  max-height: calc(100vh - var(--height-info-bar) - var(--height-title-bar) - 130px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: var(--bs-border-radius);
}

/*
 * Status message
 *
 * Styles pertaining to the status message custom component.
 *
 */
.status-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*
 * Weighstation
 *
 * Styles and components unique to the Weighstation interface.
 *
 */
/*------------------------------------*\
  #WEIGHSTATION
\*------------------------------------*/
/**
 * '.weighstation' maximizes the content area when used within '.content'.
 * It uses a negative margin to expand into padding: small by default, and
 * medium at medium sizes (See base/_breakpoints.scss).
 *
 * 1. Allow this to expand to fill the full viewport.
 * 2. Allow shrinking past content size: https://stackoverflow.com/a/36247448
 *
 */
.weighstation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; /* [1] */
  min-height: 0; /* [2] */
}

.weighstation .filter {
  max-width: unset;
}

.weighstation .input-group {
  width: 100% !important;
}

.weighstation .k-splitbar {
  display: none;
}

.weighstation .panel.progress h3 {
  margin-bottom: 0;
}

.weighstation .panel.progress h5 {
  font-size: var(--font-size-medium);
}

.weighstation .widgets .toolbar .dropdown-menu {
  padding: var(--size-medium);
  right: 0;
}

.weighstation-wizard {
  padding: 0px;
}

.weighstation-wizard .k-wizard-steps {
  margin-top: initial;
}

.weighstation-wizard.k-wizard .k-stepper {
  display: none !important;
}

.weighstation-wizard.k-wizard .k-wizard-buttons {
  display: none !important;
}

/*------------------------------------*\
  #WS-CONTROLS-CONTAINER
\*------------------------------------*/
/**
 * 1. Needed to allow buttons at the bottom of this pane.
 */
.ws-controls-container {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.ws-controls-container > .row {
  height: 100%; /* [1] */
}

/*------------------------------------*\
  #WS-MENU
\*------------------------------------*/
/**
 * 1. Telerik animation container driven dropdown
 * 2. Important to override base svg styles.
 * 3. Switch needs a small margin so it doesn't touch the inline label.
 */
.ws-menu { /* [1] */
  background-color: var(--bs-body-bg);
  border-radius: var(--radius-border) !important;
  border: var(--border-back-darkest);
  overflow: hidden;
}
.ws-menu__item {
  background-color: unset;
  color: var(--bs-emphasis-color);
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: var(--size-small);
  width: 100%;
  font-size: var(--font-size-medium);
  font-weight: normal;
  white-space: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ws-menu__item > svg {
  /* [2] */
  fill: var(--bs-emphasis-color) !important;
  height: 100%;
  max-width: var(--font-size-medium);
}
.ws-menu__item.text-danger-emphasis > svg {
  fill: var(--bs-danger-text-emphasis) !important;
}
.ws-menu__item--button:hover {
  background-color: var(--bs-tertiary-bg);
}
.ws-menu__caption {
  padding-left: var(--size-small);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.ws-menu .k-switch {
  margin-right: var(--size-small); /* [3] */
}

/*------------------------------------*\
  #WS-PAYMENT-ITEM
\*------------------------------------*/
.ws-payment-item {
  border-color: var(--bs-border-color);
  border-width: var(--bs-border-width);
  border-style: solid;
  font-size: var(--font-size-large);
  border-radius: var(--radius-border);
  padding: 1rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/*------------------------------------*\
  #WS-PROMPT
\*------------------------------------*/
/**
 * 1. Created this class to start handling prompts. Should be used as Class on
 *    TelerikAnimationContainer, not ParentClass.
 * 2. override .weighstation .k-animation-container
 */
/* [1] */
.ws-prompt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0px !important;
}
.ws-prompt > .k-child-animation-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0px !important;
  width: 100%;
}
.ws-prompt__item {
  top: unset !important; /* [2] */
  -ms-flex-item-align: end;
      align-self: flex-end;
  background-color: var(--bs-body-bg);
  border: var(--border-back-darkest);
  padding: var(--size-small);
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 4px 5px 0 rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.03), 0 4px 5px 0 rgba(0, 0, 0, 0.04);
  height: auto !important;
  bottom: 0;
  width: 100%;
  overflow-x: auto;
  overflow-y: auto;
  max-height: 100%;
  max-width: 100%;
}
.ws-prompt::after {
  border: var(--border-accent);
}

/*------------------------------------*\
  #WS-TITLE-BAR
\*------------------------------------*/
/**
 * 1. Special positioning for title bar menu parent container.
 */
.ws-title-bar {
  background-color: var(--bs-body-bg);
  color: var(--bs-emphasis-color);
}
.ws-title-bar h4 {
  font-weight: bolder;
  margin: 0;
  line-height: var(--height-control);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: var(--height-control);
}
.ws-title-bar__menu {
  /* [1] */
  right: 0;
  top: var(--height-control);
}
.ws-title-bar .page-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ws-title-bar .page-text {
  padding-left: var(--size-smaller);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/*------------------------------------*\
  #WS-TOOLBAR
\*------------------------------------*/
/**
 * 1. Must override CSS in weighstation.razor.
 * 2. One button width.
 * 3. Special positioning for toolbar menu parent container.
 * 4. Kendo override.
 */
.ws-toolbar {
  background-color: var(--bs-body-bg);
  pointer-events: auto !important; /* [1] */
  width: var(--height-control); /* [2] */
  position: relative;
}
.ws-toolbar__menu {
  /* [3] */
  right: var(--height-control);
  border-radius: 0 !important; /* [4] */
  top: -1px;
  height: calc(100% + 1px);
  overflow: auto;
}

/*------------------------------------*\
  #WS-TRANSACTION
\*------------------------------------*/
.ws-transaction-header {
  margin-bottom: var(--size-small);
}
.ws-transaction-header__heading {
  line-height: initial;
  margin: 0;
  color: var(--bs-emphasis-color);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
  font-size: var(--font-size-larger);
}
.ws-transaction-header__heading-icon {
  top: 4px;
  padding-left: var(--size-smaller);
}
.ws-transaction-header__index {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  text-align: end;
}
.ws-transaction-header__next-button {
  margin-right: calc(var(--bs-btn-padding-x) * -1);
}
.ws-transaction-header__steps {
  background-color: transparent;
  border: 0;
}
.ws-transaction-header__summary-button {
  min-width: 0;
  margin-left: calc(var(--bs-btn-padding-x) * -1);
}
.ws-transaction-header__text {
  display: none;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.25rem 0;
}
.ws-transaction-pane {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ws-transaction-pane__content {
  overflow: auto;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/*------------------------------------*\
  #WS-WIDGETS-PANE
\*------------------------------------*/
/**
 * 1. Override Kendo.
 */
.ws-widgets-pane {
  display: none !important; /* [1] */
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: var(--color-accent-translucent);
}

/*------------------------------------*\
  #LOGO
\*------------------------------------*/
/**
 * 1. Not best practice but Telerik added these sub-containers for
 *    k-tilelayout-item elements that require content to size properly.
 * 2. Added so this background doesn't override scrolling.
 */
#Logo {
  /* [1] */
  width: 100%;
  height: 100%;
}

.ws-logo, .ws-logo-widget {
  background-color: var(--color-accent-translucent);
  background: center/contain url("/images/psllc-weighstation-vertical-medium-color.svg") no-repeat;
  height: 100%;
  width: 100%;
  background-origin: content-box;
}

.ws-logo {
  padding: var(--size-larger);
  opacity: 0.5;
  position: absolute;
  pointer-events: none; /* [2] */
}

/**
 * Breakpoints
 *
 * Styles that are applied at specific screen sizes for responsive elements 
 * should be included in this file within the appropriate media query below.
 *
 */
@media (min-width: 576px) {
  .gutters {
    min-width: calc(100% - var(--size-large) - var(--size-large));
  }
}
@media (min-width: 768px) {
  .breadcrumb-item {
    /*max-width: var(--size-largest);*/
  }
  .prompt-container--fullscreen .camera__label--bottom {
    bottom: calc(10px + var(--size-medium));
  }
  /*.card--module {
      display: flex;*/
  /*height: 23rem;*/
  /*max-height: 23rem;*/
  /*min-height: 23rem;*/
  /*height: 14.375rem;
      max-height: 14.375rem;
      min-height: 14.375rem;
  }

  .card--module:hover img,
  .card--module:hover svg {
      opacity: 1 !important;
      padding: 16%;
  }

  .card--module > .card-body {
      border-radius: 0;
      padding: 15%;
  }

  .card--module > .card-header {
      font-size: var(--font-size-large);
      padding-left: var(--size-small);
  }*/
  .card--record {
    /*max-width: 35rem;*/
    /*min-width: 35rem;*/
    /*width: 35rem;*/
    max-width: 21.875rem;
    min-width: 21.875rem;
    width: 21.875rem;
  }
  .card--record > .card-body {
    /*max-width: 10rem !important;*/
    /*min-width: 10rem !important;*/
    /*width: 10rem !important;*/
    max-width: 6.25rem !important;
    min-width: 6.25rem !important;
    width: 6.25rem !important;
  }
  .card--record > .card-header {
    /*max-width: calc(100% - 10rem) !important;*/
    /*min-width: calc(100% - 10rem) !important;*/
    /*width: calc(100% - 10rem) !important;*/
    max-width: calc(100% - 6.25rem) !important;
    min-width: calc(100% - 6.25rem) !important;
    width: calc(100% - 6.25rem) !important;
  }
  /*.card-body {
      max-width: 100%;
      min-width: 100%;
      width: 100%;
  }

  .card-body, .card-header {
      min-height: unset;
  }

  .card-deck {
      margin: var(--size-large) var(--size-larger);
  }

  .card-header {
      border-left: none;
      max-width: 100%;
      min-width: 100%;
      padding: var(--size-smaller) var(--size-small);
      text-align: center;
      width: 100%;
  }*/
  .container--box {
    padding: var(--size-small) var(--size-medium);
  }
  .date-range-dropdown {
    height: calc(var(--size-medium) + 0.72rem) !important;
  }
  .gutters {
    min-width: calc(100% - var(--size-larger) - var(--size-larger));
  }
  body {
    font-size: var(--font-size-medium);
  }
  .site-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: var(--height-footer);
    margin-top: calc(-1 * var(--height-footer));
    max-height: var(--height-footer);
    padding: var(--size-medium);
  }
  .site-footer span {
    height: 3rem;
    line-height: 3rem;
    max-height: 3rem;
    max-width: 50%;
    min-height: 3rem;
    width: 50%;
  }
  .site-footer span + span a {
    margin-left: auto;
    text-align: right;
  }
  :root {
    --height-footer: 5rem;
    --height-info-bar: 2.5rem;
  }
}
@media (min-width: 992px) {
  #mobileMenu .k-animation-container.menu {
    display: none !important;
    visibility: hidden;
  }
  #searchButtonMobile, .k-tabstrip {
    display: block !important;
  }
  .action-bar {
    display: none;
  }
  footer {
    bottom: 0;
  }
  .mobile {
    display: none !important;
  }
  .breadcrumb {
    margin-bottom: var(--size-medium);
  }
  .button-panel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .button-panel--full {
    display: grid;
  }
  .container--box {
    padding: var(--size-medium) var(--size-large);
  }
  .container--homepage {
    max-width: min(100%, 100rem);
  }
  .date-custom-component {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    margin-bottom: -50px;
  }
  .desktop {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .form-inline {
    margin-top: 0;
  }
  .gutters {
    min-width: 60%;
  }
  /*.homepage-content {
      display: flex;
  }*/
  .invalid-tooltip {
    right: auto;
  }
  .item.validation > .message {
    margin-left: 30%;
    max-width: 70%;
    padding-left: var(--size-smaller);
  }
  .k-notification-group {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
    bottom: 0 !important;
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
    left: unset !important;
    right: 0 !important;
    top: unset !important;
  }
  .lookup-list-dropdown-parent {
    top: var(--height-control);
    position: absolute;
    height: 300px !important;
    max-width: none;
  }
  .lookup-list-dropdown-parent .lookup-list {
    border-radius: 0.375rem;
    border-width: 1px;
    border-style: solid;
    border-color: #dee2e6;
  }
  .main-picture {
    float: right;
  }
  .main-text {
    text-align: left;
  }
  .menu .content {
    margin: 0 !important;
  }
  .menu-item {
    margin-left: var(--size-small);
  }
  .navbar--sidebar {
    overflow-x: auto;
  }
  .navbar--sidebar .nav-item {
    border-bottom: 0;
    border-right: var(--border-back-darkest);
    border-right-width: calc(2 * var(--size-smallest));
  }
  .navbar--sidebar .nav-item[aria-selected=true] {
    border-right-color: var(--bs-primary);
    border-right-width: var(--size-smaller);
  }
  .notification-tray__container {
    top: calc(var(--height-info-bar) + 1px);
    height: calc(100% - (var(--height-info-bar)) - 1px);
    width: 372px;
    position: absolute;
  }
  .page-navigation__header {
    display: none;
  }
  .progress {
    border-radius: var(--bs-progress-border-radius);
  }
  .camera__controls {
    position: absolute;
    bottom: var(--size-medium);
  }
  .sidebar-menu {
    display: block !important;
  }
  .step-progress-linear {
    display: inherit !important;
    visibility: visible !important;
  }
  .step-progress-radial {
    display: none !important;
    visibility: hidden !important;
  }
  .weighstation .button.panel {
    padding: var(--size-medium);
  }
  .weighstation .k-splitbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .ws-title-bar {
    border-bottom: var(--border-back-darkest);
  }
  .ws-widgets-pane {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .ws-transaction-header {
    padding: 0 var(--size-small);
  }
  .ws-transaction-header__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  :root {
    /*--height-navbar: 4.375rem;*/
  }
}
@media (min-width: 1200px) {
  .cardconnect-cardpayment-section {
    margin-top: 0;
  }
  .company-link {
    padding-left: var(--size-medium) !important;
  }
  .gutters {
    min-width: 50%;
  }
}
/*# sourceMappingURL=wwwroot\css\site.css.map */