﻿/**
 * 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-accent: 0 0 0 calc(var(--font-size-medium) * 0.25) var(--color-accent-translucent);
  --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;
  --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; }

/**
 * 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, and
 * components/weighstation.scss.
 */
/*------------------------------------*\
  #K-BUTTON
\*------------------------------------*/
/**
 * 1. Ensures icon is centered. Revisit if there are issues.
 */
.k-button {
  gap: 0;
  /* [1] */ }

/*------------------------------------*\
  #K-BUTTON
\*------------------------------------*/
.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 expanded.
 * 5. If drawer is collapsed.
 * 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;
  -o-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;
    -o-transition: width 300ms ease-in-out;
    transition: width 300ms ease-in-out;
    /* [1] */ }
  .k-drawer-content {
    height: 100%;
    max-width: calc(100%);
    -webkit-transition: max-width 300ms ease-in-out;
    -o-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-expanded .k-drawer-content {
      max-width: calc(100% - 241px);
      /* [4] */ }
    .k-drawer-content {
      max-width: calc(100% - 56px);
      /* [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.
 * 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 {
  height: auto !important;
  /* [1] */
  max-height: var(--height-grid) !important;
  /* [2] */ }
  .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
/*/
.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 ease 0s infinite normal forwards;
          animation: truck-loader 1.5s ease 0s infinite normal forwards;
  width: 4rem !important;
  height: 4rem !important; }

.k-loader-container {
  cursor: wait; }

.k-loader-container-inner {
  overflow: hidden; }

.k-loader-primary {
  color: transparent; }

/*------------------------------------*\
  #K-NOTIFICATION
\*------------------------------------*/
/**
 * 1. inline-flex was causing major issues.
 * 2. Default group for mobile, items centered.
 * 3. Deprecated; for wider support.
 */
.k-notification {
  margin: 0 var(--size-smaller); }
  .k-notification-container {
    display: block;
    /* [1] */ }
  .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] */ }
  .k-notification-wrap {
    max-width: 500px;
    max-height: 500px; }
    .k-notification-wrap > .k-notification-content {
      -o-text-overflow: ellipsis;
         text-overflow: ellipsis;
      overflow: hidden;
      word-wrap: break-word;
      word-break: break-word;
      /* [3] */ }

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

/*------------------------------------*\
  #K-SVG-ICON
\*------------------------------------*/
.k-svg-icon {
  width: unset;
  height: unset; }

/*------------------------------------*\
  #K-TILELAYOUT
\*------------------------------------*/
/**
 * 1. Ensures toolbar does not stretch when no tiles are visible.
 * 2. max-height must match .ws-widgets-pane, .ws-transactions-pane,
 *    and .weighstation.
 */
.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;
    max-height: calc(100vh - var(--height-info-bar) - var(--height-title-bar) - 1px);
    /* [2] */ }

/**
 * 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 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(100px, 0) skew(-22deg) scale(0.25);
            transform: translate(100px, 0) skew(-22deg) scale(0.25);
    opacity: 0; }
  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); }
  75% {
    -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; } }

@keyframes truck-loader {
  0% {
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-transform: translate(100px, 0) skew(-22deg) scale(0.25);
            transform: translate(100px, 0) skew(-22deg) scale(0.25);
    opacity: 0; }
  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); }
  75% {
    -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; } }

/**
 * 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.
 *
 */
body, html {
  height: 100%; }

h1 {
  /*border-bottom: var(--border-back-darkest);*/
  /*font-size: var(--font-size-large);*/
  font-weight: bold;
  /*  margin-bottom: var(--size-medium);
    margin-top: var(--size-medium);*/
  text-align: center; }

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

h2 {
  /*border-bottom: var(--border-back-darkest);*/
  display: block;
  font-size: var(--font-size-smallest);
  font-style: italic;
  font-weight: bold;
  /*margin-bottom: var(--size-medium);*/
  /*padding-bottom: var(--size-medium);*/
  text-align: center; }

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 {
  height: auto; }

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

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

svg {
  /*    fill: var(--bs-body-color);
    height: 100%;
    overflow: visible;
    stroke: var(--bs-body-color);
    width: auto;*/ }

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

ul.details {
  /*    margin-bottom: 0;
    padding-inline-start: 0;*/ }

ul.details > li {
  /*    font-style: italic;
    list-style-type: none;*/
  /*    padding: 0 var(--size-small);
    background-color: var(--color-back-darker);
    margin: var(--size-smaller);
    border-radius: var(--radius-border);
    word-break: break-word;*/ }

/*
 * 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.
 *
 */
.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; }

.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; }

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

.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; }

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

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

/*
 * Accordion
 * 
 * Overrides and customizations for the Bootstrap accordion component.
 *
 */
.accordion-button::after {
  background-image: none;
  content: '\e034';
  width: auto;
  height: auto;
  position: relative;
  top: 1px;
  display: inline-block;
  speak: none;
  font-family: Icons;
  font-style: normal;
  font-weight: 400;
  line-height: 1; }

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

/*
 * Alert
 * 
 * Overrides and customizations for the Bootstrap alert component.
 *
 */
.alert {
  border-radius: var(--radius-border);
  margin: 0 auto var(--size-medium) auto;
  padding: var(--size-small) var(--size-medium);
  text-align: center; }

.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: .25em .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: .25rem;
  opacity: .5; }
  .btn-copy:hover {
    color: #000;
    text-decoration: none;
    opacity: .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-gray-200); }

/*
 * 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; }

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

#quickSearchInfo h1 {
  margin-bottom: 0;
  margin-top: var(--size-small);
  text-align: left; }

#quickSearchInfo h2 {
  font-style: normal;
  margin-bottom: 0;
  text-align: left; }

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

#searchButtonMobile {
  display: none !important; }

#wrap {
  /*min-height: 100%;*/ }

/*
 * Breadcrumb
 * 
 * Overrides and customizations for the Bootstrap breadcrumb component.
 *
 */
.breadcrumb {
  border-bottom: var(--border-back-darkest);
  margin-bottom: var(--size-medium); }

.breadcrumb-item {
  height: auto;
  max-width: var(--size-larger);
  overflow: hidden;
  padding: var(--size-small);
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  white-space: nowrap; }
  .breadcrumb-item > a:focus, .breadcrumb-item .control.k-dropdown::after:focus {
    outline: none !important; }
  .breadcrumb-item + .breadcrumb-item::before {
    padding-right: var(--size-medium); }

/*
 * 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; }

/* 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);
  -webkit-transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  /*&-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);
    -o-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; }

/*
 * 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-group {
  margin-bottom: var(--size-medium); }

.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: .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: .01rem;
  position: relative;
  top: -.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%; }

.required:after {
  content: "*";
  color: red; }

.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; }

.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; }
  .criteriatreeview-caret::before {
    content: "\1F782";
    color: black;
    display: inline-block;
    margin-right: 6px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg); }

.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: .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: -.5rem; }
    .criteriatreeview-toolbar .k-toolbar .k-toolbar-item {
      max-width: 100%;
      gap: 0.5rem; }

.criteriatreeview-item {
  position: relative;
  padding-left: 1rem; }
  .criteriatreeview-item::before {
    background-color: #dee2e6;
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    top: -.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;
}
*/
/*
 * Container
 * 
 * Overrides and customizations for the Bootstrap container component.
 *
 */
.container {
  padding: 0 var(--size-small); }

.container--homepage {
  padding: var(--size-medium) var(--size-large); }

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

/*
 * Card
 *
 * Overrides for the Bootstrap card component, and custom cards.
 *
 */
.card {
  margin: var(--size-small) !important;
  /*min-height: 20.5rem;*/
  overflow: hidden;
  padding-left: 0 !important;
  padding-right: 0 !important; }
  .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-header {
    /*border-bottom: none;
        border-left: var(--border-fore-lighter);
        border-radius: 0;
        display: table;*/
    /*height: calc(30% + .125rem);*/
    /*max-width: 65%;
        min-width: 65%;
        padding: 3%;
        text-align: left;
        width: 65%;*/ }
    .card-header > div {
      display: table-cell;
      /*max-width: 17.6rem;*/
      max-width: 11rem;
      vertical-align: middle; }
      .card-header > div > span {
        display: block;
        font-size: var(--font-size-medium);
        overflow: hidden;
        -o-text-overflow: ellipsis;
           text-overflow: ellipsis;
        white-space: nowrap; }
  .card-title {
    font-weight: bold; }

/*------------------------------------*\
  #CARD--BUTTON
\*------------------------------------*/
.card--button {
  text-decoration: none;
  -webkit-transition: all 150ms ease-in-out;
  -o-transition: all 150ms ease-in-out;
  transition: all 150ms ease-in-out; }
  .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%; }
  .card--button > .card-body {
    height: 5em;
    text-align: center; }

/*------------------------------------*\
  #CARD--LOOKUP
\*------------------------------------*/
.card--lookup {
  border-radius: 0;
  -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;
  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; }
  .btn-group .card--lookup {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }
  .card--lookup__iconarea {
    padding: var(--size-small) 0 var(--size-small) var(--size-small); }
  .card--lookup__container {
    width: 100%;
    margin: 0 0 var(--size-small) !important; }
  .card--lookup__button {
    display: block;
    padding: var(--size-small);
    text-align: left;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
    .card--lookup__button::before {
      -webkit-box-shadow: inset 0 -6px 11px white;
      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; }
    .card--lookup__button ul {
      margin-bottom: 0;
      padding: 0;
      height: calc(1.5rem + var(--size-smaller)*2); }
      .card--lookup__button ul > li {
        font-style: italic;
        list-style-type: none;
        padding: 0 var(--size-small);
        background-color: var(--bs-gray-200);
        margin: var(--size-smaller) var(--size-smaller) var(--size-smaller) 0;
        border-radius: var(--radius-border);
        word-break: break-word; }
  .card--lookup__content {
    height: 100%; }
  .card--lookup__key {
    color: var(--bs-heading-color);
    font-size: var(--font-size-large);
    font-weight: bold;
    line-height: 1;
    -ms-flex-item-align: center;
        align-self: center;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    .card-menu .card--lookup__key {
      padding-left: var(--size-small); }
  .card--lookup__icon-button {
    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); }
    :not(label) > .card--lookup__icon-button svg {
      fill: revert; }
  .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; }

/*------------------------------------*\
  #CARD-MENU
\*------------------------------------*/
.card-menu {
  border-radius: 0.5rem;
  border: var(--border-fore-lighter);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  background-color: var(--bs-primary);
  color: white;
  margin: 0 0 var(--size-small) !important;
  overflow: hidden;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  .card-menu > .dropdown-menu {
    min-width: 100%;
    border: 0 !important;
    border-radius: 0;
    text-align: center;
    background-color: var(--bs-body-bg);
    max-height: 0;
    -webkit-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
    display: block;
    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;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    /* Below styles are necessary to stop Boostrap Popper behaviour */
    position: relative !important;
    inset: unset !important;
    margin: 0 !important;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
    -ms-flex-item-align: start;
        align-self: flex-start;
    overflow: hidden; }
  .card-menu .dropdown-item {
    height: calc(var(--height-control)*1.2);
    padding: 0 var(--size-small);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: var(--size-smaller) var(--size-small); }
  .card-menu .text-danger svg {
    fill: var(--bs-danger) !important; }

.card-menu .dropdown-menu.show {
  max-height: 200px;
  -webkit-transition: all 500ms;
  -o-transition: all 500ms;
  transition: all 500ms;
  padding: var(--size-smaller) 0; }

.card-menu button.card {
  border-radius: 0;
  margin: 0 !important; }

/*------------------------------------*\
  #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; }
  .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; }
  .card--record img, .card--record svg {
    border-radius: 0; }

.card--receipt:hover .card-header h1 {
  color: var(--bs-dark) !important; }

.card--receipt .card-header {
  background-color: var(--bs-gray-400);
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  border: 0; }

.card--receipt .card-body {
  background-color: var(--bs-gray-200);
  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: black !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-primary);
  color: white;
  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; }

.dialog-primary .k-window-titlebar {
  background-color: var(--bs-primary);
  color: var(--bs-light); }

/*
 * Form
 *
 * Overrides and customizations for the Bootstrap form component(s).
 *
 */
.col-form-label {
  color: var(--bs-secondary);
  font-size: var(--font-size-small);
  line-height: calc(var(--font-size-small)*2); }
  .col-form-label + .col-lg-8.position-relative {
    /*margin-top: 0;*/ }

.form-check {
  min-height: var(--height-control);
  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; }

.form-control {
  min-height: var(--height-control); }

/*.form-control.k-animation-container {
    display: unset;
    width: unset;
    padding: unset;
    font-size: unset;
    font-weight: unset;
    line-height: unset;
    color: unset;
    background-color: unset;
    background-clip: unset;
    border: unset;
    appearance: none;
    border-radius: unset;
    transition: unset;
}*/
.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-select {
  min-height: var(--height-control); }

.form-select-sm {
  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: .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); }

.input-group > .btn {
  padding: 0;
  width: var(--height-control); }

.input-validation-error, .invalid {
  border: var(--border-red) !important; }
  .input-validation-error:not([type="color"]), .invalid:not([type="color"]) {
    padding-right: calc(1.5em + .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(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem); }

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

/*
 * 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; }

/*
 * 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 weighstation info bar containing the current site,
 * lane, and user name.
 *
 */
.info-bar {
  background-color: var(--bs-primary);
  color: var(--bs-light);
  border-bottom: var(--border-fore); }
  .info-bar .row {
    height: var(--height-info-bar); }
  .info-bar .col-4 {
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap; }

.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; }

/*
 * Lookuplist
 *
 * Styles pertaining to lookup lists. All hail the mighty lookup list!
 *
 * Also includes styles for the hold file card-menu, which is an attribute of
 * certain lookup lists.
 *
 */
.lookup-list-button-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

/*------------------------------------*\
  #LOOKUP-LIST
\*------------------------------------*/
.lookup-list {
  background-color: var(--bs-body-bg); }
  .lookup-list-dropdown-parent {
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    position: fixed;
    height: 100% !important; }
    .lookup-list-dropdown-parent .k-child-animation-container {
      height: 100%; }
    .lookup-list-dropdown-parent .lookup-list {
      -ms-scroll-chaining: none;
          overscroll-behavior: contain;
      overflow: auto;
      height: 100%; }
  .k-animation-container .lookup-list {
    padding: var(--size-small); }
  .lookup-list .grid-lookup-list.k-grid tr .btn {
    height: var(--size-large) !important; }
  .lookup-list .k-grid {
    border-width: 0;
    border-radius: 0;
    max-height: unset !important; }
    .lookup-list .k-grid-container {
      overflow: visible; }
    .lookup-list .k-grid-content {
      overflow: visible; }
    .lookup-list .k-grid tr, .lookup-list .k-grid tr:focus, .lookup-list .k-grid tr:hover {
      background-color: transparent !important; }
    .lookup-list .k-grid .k-grid-aria-root {
      overflow: visible; }

/*------------------------------------*\
  #LOOKUP-LIST-STANDALONE
\*------------------------------------*/
/* Lookup list that is not contained in a Weighstation grid or animation container. */
.lookup-list-standalone {
  /*height: 100%;*/
  margin-bottom: 1rem; }
  .lookup-list-standalone .k-grid-content {
    padding: var(--size-small); }
  .lookup-list-standalone .k-grid tr, .lookup-list-standalone .k-grid tr:focus, .lookup-list-standalone .k-grid tr:hover {
    background-color: transparent !important; }
  .lookup-list-standalone .k-tabstrip-content {
    overflow: visible; }

.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; }

.menu-shield {
  background-color: #000;
  display: block;
  height: 100vh;
  opacity: 0.5;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 250ms cubic-bezier(0.4, 0, 1, 1);
  -o-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; }

.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).
 *
 */
.navbar--sidebar {
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch; }
  .navbar--sidebar:first-child {
    max-width: 100%; }
  .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;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis; }
  .navbar--sidebar .nav-link.active {
    color: var(--bs-primary); }

/*
 * Notification tray
 *
 * Styles pertaining to the notification tray custom component.
 *
 */
.notification-tray__container {
  top: 0;
  right: 0;
  height: calc(100vh - (var(--height-navbar)) - 0px);
  width: 360px;
  position: fixed; }
  .notification-tray__container .k-child-animation-container {
    height: 100%; }

.notification-tray__list {
  height: calc(100% - var(--height-control) - 1rem);
  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%; }

/*
 * 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; }

.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 {
      outline: 0;
      -webkit-box-shadow: var(--box-shadow-md-dark);
              box-shadow: var(--box-shadow-md-dark); }
    .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;
      -o-text-overflow: ellipsis;
         text-overflow: ellipsis;
      padding: 10px; }
  .sidebar__search {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    display: grid;
    padding: 0;
    -webkit-transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    -o-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);
      -o-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: absolute;
  height: 40px;
  width: 40px;
  padding: 0px;
  border: 0;
  background-color: transparent;
  color: var(--bs-light);
  cursor: pointer;
  margin-left: 16px; }
  .toggle-drawer svg {
    stroke: none; }

/*
 * 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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: calc(100vh - var(--height-info-bar) - var(--height-title-bar) - 4px - var(--height-control));
  max-height: calc(100vh - var(--height-info-bar) - var(--height-title-bar) - 4px - var(--height-control)); }

.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 {
  height: calc(100% - 88px); }
  .ws-controls-container > .row {
    height: 100%; }

.ws-menu {
  background-color: var(--bs-body-bg);
  border-radius: var(--radius-border) !important;
  border: var(--border-back-darkest);
  /*border-right: 0;*/
  /*border-top: 0;*/
  overflow: hidden; }
  .ws-menu__item {
    background-color: unset;
    color: var(--bs-body-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 {
      fill: var(--bs-body-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 {
      color: var(--bs-body-color);
      background-color: var(--bs-tertiary-bg); }
  .ws-menu__caption {
    padding-left: var(--size-small);
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden; }
  .ws-menu .k-switch {
    margin-right: var(--size-small); }

.ws-payment-item {
  background-color: var(--bs-primary);
  color: var(--bs-light);
  font-size: var(--font-size-large);
  border-radius: var(--radius-border);
  padding: 1rem 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.ws-progress-panel {
  border-bottom: var(--border-back-darkest);
  margin-bottom: var(--size-small);
  padding: var(--size-smaller) var(--size-small); }
  .ws-progress-panel h3, .ws-progress-panel h5 {
    line-height: initial;
    margin: 0;
    color: var(--bs-emphasis-color);
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap; }
  .ws-progress-panel h3 {
    font-weight: 400;
    font-size: var(--font-size-larger); }
  .ws-progress-panel h5 {
    font-size: var(--font-size-medium);
    padding-left: 0.15rem; }

.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;
    -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 {
  background-color: var(--bs-body-bg);
  border-bottom: var(--border-back-darkest);
  color: var(--bs-emphasis-color); }
  .ws-title-bar h4 {
    font-weight: bolder;
    margin: 0;
    line-height: var(--height-control);
    overflow: hidden;
    -o-text-overflow: ellipsis;
       text-overflow: ellipsis;
    white-space: nowrap;
    height: var(--height-control); }
  .ws-title-bar__menu {
    right: 0;
    top: var(--height-control); }

.ws-toolbar {
  background-color: var(--bs-body-bg);
  pointer-events: auto !important;
  width: var(--height-control);
  position: relative; }
  .ws-toolbar__menu {
    right: var(--height-control);
    border-radius: 0 !important;
    top: -1px; }

.ws-transaction-pane {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: calc(100vh - var(--height-info-bar) - var(--height-title-bar) - 1px) !important; }
  .ws-transaction-pane__content {
    overflow: auto;
    height: 100%; }
  .ws-transaction-pane__prompt {
    overflow-y: auto;
    overflow-x: hidden; }
    .ws-transaction-pane__prompt > .k-child-animation-container {
      min-height: 100%;
      background-color: var(--bs-body-bg); }

.ws-widgets-pane {
  display: none !important;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: var(--color-accent-translucent);
  max-height: calc(100vh - var(--height-info-bar) - var(--height-title-bar) - 1px) !important; }

.ws-logo {
  background-color: var(--color-accent-translucent);
  background: center/contain url("/images/PDMD30YearAnnivLogo.svg") no-repeat;
  padding: var(--size-large);
  opacity: 0.5;
  position: absolute;
  height: 100%;
  width: 100%;
  background-origin: content-box;
  pointer-events: none; }

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

/**
 * 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); }
  /*.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) + .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-large); }
  .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-navbar) + var(--height-info-bar) + 1px);
    height: calc(100% - (var(--height-navbar) + var(--height-info-bar) + var(--height-footer)) - 1px);
    width: 360px;
    position: absolute; }
  .sidebar-menu {
    display: block !important; }
  .step-progress-linear {
    display: inherit !important;
    visibility: visible !important; }
  .step-progress-radial {
    display: none !important;
    visibility: hidden !important; }
  .weighstation {
    min-height: calc(100vh - var(--height-info-bar) - var(--height-title-bar) - 1px);
    max-height: calc(100vh - var(--height-info-bar) - var(--height-title-bar) - 1px); }
  .weighstation .button.panel {
    padding: var(--size-medium); }
  .weighstation .k-splitbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .ws-widgets-pane {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  :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 */